Meterify API Documentation
The meterify
package is a wrapper to house all Meter-related modules, and depends on the web3.js
library. If you are writing applications or scripts executing in Node.js or a browser environment, you should use Meterify.
Property | Type | Description |
web3Instance |
| A |
host |
| The Meter host URL (and port, if applicable) |
timeout |
| Request timeout value |
Parameters of the meterify
return object
Property | Type | Description |
BatchRequest |
| Sets a |
currentProvider |
| Get or set the current provider. |
timeout |
| Request timeout value |
eth |
| An Eth object (see: eth (insert link)) |
extension |
| |
givenProvider |
| Return the given provider object. |
providers |
| A list of providers. |
provider |
| The current provider object. |
_requestManager |
| A RequestManager object. |
setProvider |
| Set the current provider. |
utils |
| A |
Example
This code...
...returns an object:
Notes on meterify
and web3
meterify
and web3
The RESTful API of Meter differs from Ethereum's JSON-RPC, and there are some methods in web3
are not supported by meterify
.
Supported Web3 Methods
web3 instance ├── eth │ ├── getBlockNumber │ ├── getBalance │ ├── getStorageAt │ ├── getCode │ ├── getBlock │ ├── getTransaction │ ├── getTransactionReceipt │ ├── sendTransaction │ ├── sendSignedTransaction │ ├── call │ ├── estimateGas │ ├── getPastLogs │ ├── subscribe │ ├── clearSubscriptions │ ├── getEnergy │ ├── getChainTag │ ├── getBlockRef │ ├── accounts │ └── Contract │ ├── Constructor(new Contract()) │ ├── clone │ ├── deploy │ ├── methods │ ├── methods.myMethod.call │ ├── methods.myMethod.send │ ├── methods.myMethod.estimateGas │ ├── methods.myMethod.encodeABI │ ├── events │ ├── once │ ├── events.myEvent │ ├── events.allEvents │ └── getPastEvents └── utils
MODULES
eth
For meterify.eth
see the eth
reference documentation.
utils
For meterify.utils
see the utils
reference documentation.
module.options
A module does provide several options for configuring the transaction confirmation workflow, or for defining default values.
For the currently available option properties on a module: see the options
reference documentation.
Last updated