包详细信息

@metamask/ethjs-contract

MetaMask54.6kMIT0.4.1

A simple contract object for the Ethereum RPC.

ethereum, events, rpc

自述文件

ethjs-contract


A simple contract module for the Ethereum RPC layer.

NOTE. Module not ready for use, still in heavy development.

Install

npm install --save @metamask/ethjs-contract

Usage

const HttpProvider = require('ethjs-provider-http');
const Eth = require('ethjs-query');
const EthContract = require('@metamask/ethjs-contract');
const eth = new Eth(new HttpProvider('http://localhost:8545'));
const contract = new EthContract(eth);

const SimpleStore = contract(abi, bytecode, defaultTxObject);
const simpleStore = SimpleStore.at('0x000...');
const simpleStore = SimpleStore.new((error, result) => {
  // result null '0x928sdfk...'
});

simpleStore.set(45000, (error, result) => {
  // result null '0x2dfj24...'
});

simpleStore.get().catch((error) => {
  // error null
}).then(result) => {
  // result <BigNumber ...>
});

const filter = simpleStore.SetComplete()
.new({ toBlock: 'latest' }, (error, result) => {
  // result null <BigNumber ...> filterId
});
filter.watch((err, result) => {
  // result null FilterResult {...}
});
filter.uninstall()
.then(result) => {
  // result Boolean
});

About

A simple contract object for the Ethereum RPC layer.

Contributing

Please help better the ecosystem by submitting issues and pull requests to default. We need all the help we can get to build the absolute best linting standards and utilities. We follow the AirBNB linting standard and the unix philosophy.

Guides

You'll find more detailed information on using ethjs-contract and tailoring it to your needs in our guides:

  • User guide - Usage, configuration, FAQ and complementary tools.
  • Developer guide - Contributing to ethjs-contract and writing your own code and coverage.

Help out

There is always a lot of work to do, and will have many rules to maintain. So please help out in any way that you can:

  • Create, enhance, and debug ethjs rules (see our guide to "Working on rules").
  • Improve documentation.
  • Chime in on any open issue or pull request.
  • Open new issues about your ideas for making ethjs-contract better, and pull requests to show us how your idea works.
  • Add new tests to absolutely anything.
  • Create or contribute to ecosystem tools, like modules for encoding or contracts.
  • Spread the word.

Please consult our Code of Conduct docs before helping out.

We communicate via issues and pull requests.

Important documents

Licence

This project is licensed under the MIT license, Copyright (c) 2016 Nick Dodson. For more information see LICENSE.md.

The MIT License

Copyright (c) 2016 Nick Dodson. nickdodson.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

更新日志

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

0.4.1

Changed

  • Update @metamask/ethjs-filter from ^0.2.0 to ^0.3.0 (#21)
  • Update @metamask/ethjs-util from ^0.2.0 to ^0.3.0 (#21)

Fixed

  • Remove dependency babel-runtime@^6.26.0 (#21)

0.4.0

Changed

  • BREAKING: @babel/runtime@^7.0.0 is now a peerDependency (#6)
  • Built using webpack@3.12.0 instead of webpack@2.10.0-beta.15 (#6)

Removed

  • Remove implicit peerDependency babel-runtime (#6)

0.3.4

Changed

  • Unpin ethjs-abi from 0.2.0 to ^0.2.0, allowing ethjs-abi@0.2.1 (#19)

0.3.3

Changed

  • Update from ethjs-filter@0.1.8 to @metamask/ethjs-filter@^0.2.0 (#16)

0.3.2

Changed

  • Replace ethjs- packages with @metamask forks (#12)

Fixed

  • Update and unpin dependency js-sha3 from 0.5.5 to ^0.9.2 (#11)

0.3.1

Fixed

  • Restore support for Node.js versions >=10 (#9)

0.3.0

Changed

  • Rename package from ethjs-contract to @metamask/ethjs-contract (#7)
  • Restrict compatible node versions to ^8.17 (#2)

Fixed

  • Add missing dependency promise-to-callback (#5)

0.1.6

Changed

  • Bn formatting update

0.1.5

Removed

  • Removed ethjs-sha3 for js-sha3.

0.1.4

Fixed

  • Fix object mutation with eth_call, eth_sendTransaction

0.1.3

Changed

  • Webpack config updates
  • Build config updates

0.1.2

Changed

  • Updated ethjs-abi module
  • More docs

0.1.1

Changed

  • New Event object
  • Package upgrades and fixes
  • More docs

0.1.0

Changed

  • promises, full coverage
    • Promises and callbacks on calls, new, event watchers
    • More coverage
    • Package upgrades

0.0.1

Added

  • ethjs-contract
    • Basic testing
    • Basic docs
    • License