📄️ accounts
Returns a list of addresses owned by client.
📄️ blockNumber
Returns a list of addresses owned by client.
📄️ call
Executes a new message call immediately without creating a transaction on the block chain.
📄️ coinbase
Returns the client coinbase address.
📄️ compilersLLL
Returns compiled LLL code.
📄️ compileSolidity
Returns compiled solidity code.
📄️ compileSerpent
Returns compiled serpent code.
📄️ estimateGas
Generates and returns an estimate of how much gas is necessary to allow the transaction to complete. The transaction will not be added to the blockchain. Note that the estimate may be significantly more than the amount of gas actually used by the transaction, for a variety of reasons including EVM mechanics and node performance.
📄️ gasPrice
Returns the current price per gas in nexi.
📄️ getBlockByHash
Returns information about a block by hash.
📄️ getBlockByNumber
Returns information about a block by block number.
📄️ getBlockTransactionCountByHash
Returns the number of transactions in a block from a block matching the given block hash.
📄️ getBlockTransactionCountByNumber
Returns the number of transactions in a block matching the given block number.
📄️ getBalance
Returns the balance of the account of given address.
📄️ getCode
Returns code at a given address.
📄️ getCompilers
Returns a list of available compilers in the client.
📄️ getFilterChanges
Polling method for a filter, which returns an array of logs which occurred since last poll.
📄️ getLogs
Returns an array of all logs matching a given filter object.
📄️ getStorageAt
Returns the value from a storage position at a given address.
📄️ getTransactionByBlockHashAndIndex
Returns information about a transaction by block hash and transaction index position.
📄️ getTransactionByBlockNumberAndIndex
Returns information about a transaction by block number and transaction index position.
📄️ getTransactionByHash
Returns the information about a transaction requested by transaction hash.
📄️ getTransactionReceipt
Returns the receipt of a transaction by transaction hash.
📄️ getTransactionCount
Returns the number of transactions sent from an address.
📄️ getUncleByBlockHashAndIndex
Returns information about a uncle of a block by hash and uncle index position.
📄️ getUncleByBlockNumberAndIndex
Returns information about a uncle of a block by number and uncle index position.
📄️ getWork
Returns the hash of the current block, the seedHash, and the boundary condition to be met ("target").
📄️ hashrate
Returns the number of hashes per second that the node is mining with.
📄️ mining
Returns true if client is actively mining new blocks.
📄️ newBlockFilter
Creates a filter in the node, to notify when a new block arrives. To check if the state has changed, call jumbo_getFilterChanges.
📄️ newFilter
Creates a filter object, based on filter options, to notify when the state changes (logs). To check if the state has changed, call jumbo_getFilterChanges.
📄️ newPendingTransactionFilter
Creates a filter in the node, to notify when new pending transactions arrive. To check if the state has changed, call jumbo_getFilterChanges.
📄️ sendRawTransaction
Creates new message call transaction or a contract creation for signed transactions.
📄️ sendTransaction
Creates new message call transaction or a contract creation, if the data field contains code.
📄️ sign
The sign method calculates an Jumbochain specific signature with\n" + len(message) + message))).
📄️ submitHashrate
Used for submitting mining hashrate.
📄️ submitWork
Used for submitting a proof-of-work solution.
📄️ syncing
Returns an object with data about the sync status or false.
📄️ uninstallFilter
Uninstalls a filter with given id. Should always be called when watch is no longer needed. Additonally Filters timeout when they aren't requested with jumbo_getFilterChanges for a period of time.