Eth API¶
-
class
web3.eth.Eth¶
The web3.eth object exposes the following properties and methods to
interact with the RPC APIs under the eth_ namespace.
Often, when a property or method returns a mapping of keys to values, it
will return an AttributeDict which acts like a dict but you can
access the keys as attributes and cannot modify its fields. For example,
you can find the latest block number in these two ways:
>>> block = web3.eth.getBlock('latest') AttributeDict({ 'hash': '0xe8ad537a261e6fff80d551d8d087ee0f2202da9b09b64d172a5f45e818eb472a', 'number': 4022281, # ... etc ... }) >>> block['number'] 4022281 >>> block.number 4022281 >>> block.number = 4022282 Traceback # ... etc ... TypeError: This data is immutable -- create a copy instead of modifying >>> next_block = web3.utils.datastructures.AttributeDict(block, number=4022282) >>> next_block.number 4022282
Properties¶
The following properties are available on the web3.eth namespace.
-
Eth.defaultAccount¶ The ethereum address that will be used as the default
fromaddress for all transactions.
-
Eth.defaultBlock¶ The default block number that will be used for any RPC methods that accept a block identifier. Defaults to
'latest'.
-
Eth.syncing¶ - Delegates to
eth_syncingRPC Method
Returns either
Falseif the node is not syncing or a dictionary showing sync status.>>> web3.eth.syncing AttributeDict({ 'currentBlock': 2177557, 'highestBlock': 2211611, 'knownStates': 0, 'pulledStates': 0, 'startingBlock': 2177365, })
- Delegates to
-
Eth.coinbase¶ - Delegates to
eth_coinbaseRPC Method
Returns the current Coinbase address.
>>> web3.eth.coinbase '0xd3cda913deb6f67967b99d67acdfa1712c293601'
- Delegates to
-
Eth.mining¶ - Delegates to
eth_miningRPC Method
Returns boolean as to whether the node is currently mining.
>>> web3.eth.mining False
- Delegates to
-
Eth.hashrate¶ - Delegates to
eth_hashrateRPC Method
Returns the current number of hashes per second the node is mining with.
>>> web3.eth.hashrate 906
- Delegates to
-
Eth.gasPrice¶ - Delegates to
eth_gasPriceRPC Method
Returns the current gas price in Wei.
>>> web3.eth.gasPrice 20000000000
- Delegates to
-
Eth.accounts¶ - Delegates to
eth_accountsRPC Method
Returns the list of known accounts.
>>> web3.eth.accounts ['0xd3cda913deb6f67967b99d67acdfa1712c293601']
- Delegates to
-
Eth.blockNumber¶ - Delegates to
eth_blockNumberRPC Method
Returns the number of the most recent block
>>> web3.eth.blockNumber 2206939
- Delegates to
Methods¶
The following methods are available on the web3.eth namespace.
-
Eth.getBalance(account, block_identifier=eth.defaultBlock)¶ - Delegates to
eth_getBalanceRPC Method
Returns the balance of the given
accountat the block specified byblock_identifier.>>> web3.eth.getBalance('0xd3cda913deb6f67967b99d67acdfa1712c293601') 77320681768999138915
- Delegates to
-
Eth.getStorageAt(account, position, block_identifier=eth.defaultBlock)¶ - Delegates to
eth_getStorageAtRPC Method
Returns the value from a storage position for the given
accountat the block specified byblock_identifier.>>> web3.eth.getStorageAt('0x6c8f2a135f6ed072de4503bd7c4999a1a17f824b', 0) '0x00000000000000000000000000000000000000000000000000120a0b063499d4'
- Delegates to
-
Eth.getCode(account, block_identifier=eth.defaultBlock)¶ - Delegates to
eth_getCodeRPC Method
Returns the bytecode for the given
accountat the block specified byblock_identifier.# For a contract address. >>> web3.eth.getCode('0x6c8f2a135f6ed072de4503bd7c4999a1a17f824b') '0x6060604052361561027c5760e060020a60003504630199.....' # For a private key address. >>> web3.eth.getCode('0xd3cda913deb6f67967b99d67acdfa1712c293601') '0x'
- Delegates to
-
Eth.getBlock(block_identifier=eth.defaultBlock, full_transactions=False)¶ - Delegates to
eth_getBlockByNumberoreth_getBlockByHashRPC Methods
Returns the block specified by
block_identifier. Delegates toeth_getBlockByNumberifblock_identifieris an integer or one of the predefined block parameters'latest', 'earliest', 'pending', otherwise delegates toeth_getBlockByHash.If
full_transactionsisTruethen the'transactions'key will contain full transactions objects. Otherwise it will be an array of transaction hashes.>>> web3.eth.getBlock(2000000) AttributeDict({ 'difficulty': 49824742724615, 'extraData': '0xe4b883e5bda9e7a59ee4bb99e9b1bc', 'gasLimit': 4712388, 'gasUsed': 21000, 'hash': '0xc0f4906fea23cf6f3cce98cb44e8e1449e455b28d684dfa9ff65426495584de6', 'logsBloom': '0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000', 'miner': '0x61c808d82a3ac53231750dadc13c777b59310bd9', 'nonce': '0x3b05c6d5524209f1', 'number': 2000000, 'parentHash': '0x57ebf07eb9ed1137d41447020a25e51d30a0c272b5896571499c82c33ecb7288', 'receiptRoot': '0x84aea4a7aad5c5899bd5cfc7f309cc379009d30179316a2a7baa4a2ea4a438ac', 'sha3Uncles': '0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347', 'size': 650, 'stateRoot': '0x96dbad955b166f5119793815c36f11ffa909859bbfeb64b735cca37cbf10bef1', 'timestamp': 1470173578, 'totalDifficulty': 44010101827705409388, 'transactions': ['0xc55e2b90168af6972193c1f86fa4d7d7b31a29c156665d15b9cd48618b5177ef'], 'transactionsRoot': '0xb31f174d27b99cdae8e746bd138a01ce60d8dd7b224f7c60845914def05ecc58', 'uncles': [], })
- Delegates to
-
Eth.getBlockTransactionCount(block_identifier)¶ - Delegates to
eth_getBlockTransactionCountByNumberoreth_getBlockTransactionCountByHashRPC Methods
Returns the number of transactions in the block specified by
block_identifier. Delegates toeth_getBlockTransactionCountByNumberifblock_identifieris an integer or one of the predefined block parameters'latest', 'earliest', 'pending', otherwise delegates toeth_getBlockTransactionCountByHash.>>> web3.eth.getBlockTransactionCount(46147) 1 >>> web3.eth.getBlockTransactionCount('0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd') # block 46147 1
- Delegates to
-
Eth.getUncle(block_identifier)¶ Note
Not Implemented
-
Eth.getTransaction(transaction_hash)¶ - Delegates to
eth_getTransactionByHAshRPC Method
Returns the transaction specified by
transaction_hash>>> web3.eth.getTransaction('0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060') AttributeDict({ 'blockHash': '0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd', 'blockNumber': 46147, 'from': '0xa1e4380a3b1f749673e270229993ee55f35663b4', 'gas': 21000, 'gasPrice': 50000000000000, 'hash': '0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060', 'input': '0x', 'nonce': 0, 'to': '0x5df9b87991262f6ba471f09758cde1c0fc1de734', 'transactionIndex': 0, 'value': 31337, })
- Delegates to
-
Eth.getTransactionFromBlock(block_identifier, transaction_index)¶ - Delegates to
eth_getTransactionByBlockNumberAndIndexoreth_getTransactionByBlockHashAndIndexRPC Methods
Returns the transaction at the index specified by
transaction_indexfrom the block specified byblock_identifier. Delegates toeth_getTransactionByBlockNumberAndIndexifblock_identifieris an integer or one of the predefined block parameters'latest', 'earliest', 'pending', otherwise delegates toeth_getTransactionByBlockHashAndIndex.>>> web3.eth.getTransactionFromBlock(46147, 0) AttributeDict({ 'blockHash': '0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd', 'blockNumber': 46147, 'from': '0xa1e4380a3b1f749673e270229993ee55f35663b4', 'gas': 21000, 'gasPrice': 50000000000000, 'hash': '0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060', 'input': '0x', 'nonce': 0, 'to': '0x5df9b87991262f6ba471f09758cde1c0fc1de734', 'transactionIndex': 0, 'value': 31337, }) >>> web3.eth.getTransactionFromBlock('0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd', 0) AttributeDict({ 'blockHash': '0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd', 'blockNumber': 46147, 'from': '0xa1e4380a3b1f749673e270229993ee55f35663b4', 'gas': 21000, 'gasPrice': 50000000000000, 'hash': '0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060', 'input': '0x', 'nonce': 0, 'to': '0x5df9b87991262f6ba471f09758cde1c0fc1de734', 'transactionIndex': 0, 'value': 31337, })
- Delegates to
-
Eth.getTransactionReceipt(transaction_hash)¶ - Delegates to
eth_getTransactionReceiptRPC Method
Returns the transaction receipt specified by
transaction_hash. If the transaction has not yet been mined returnsNone>>> web3.eth.getTransactionReceipt('0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060') # not yet mined None # wait for it to be mined.... >>> web3.eth.getTransactionReceipt('0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060') AttributeDict({ 'blockHash': '0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd', 'blockNumber': 46147, 'contractAddress': None, 'cumulativeGasUsed': 21000, 'from': '0xa1e4380a3b1f749673e270229993ee55f35663b4', 'gasUsed': 21000, 'logs': [], 'root': '96a8e009d2b88b1483e6941e6812e32263b05683fac202abc622a3e31aed1957', 'to': '0x5df9b87991262f6ba471f09758cde1c0fc1de734', 'transactionHash': '0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060', 'transactionIndex': 0, })
- Delegates to
-
Eth.getTransactionCount(account, block_identifier=web3.eth.defaultBlock)¶ - Delegates to
eth_getTransactionCountRPC Method
Returns the number of transactions that have been sent from
accountas of the block specified byblock_identifier.>>> web3.eth.getTransactionCount('0xd3cda913deb6f67967b99d67acdfa1712c293601') 340
- Delegates to
-
Eth.sendTransaction(transaction)¶ - Delegates to
eth_sendTransactionRPC Method
Signs and sends the given
transactionThe
transactionparameter should be a dictionary with the following fields.from:bytes or text, 20 Bytes - (optional, default:web3.eth.defaultAccount) The address the transaction is send from.to:bytes or text, 20 Bytes - (optional when creating new contract) The address the transaction is directed to.gas:integer- (optional, default: 90000) Integer of the gas provided for the transaction execution. It will return unused gas.gasPrice:integer- (optional, default: To-Be-Determined) Integer of the gasPrice used for each paid gasvalue:integer- (optional) Integer of the value send with this transactiondata:bytes or text- The compiled code of a contract OR the hash of the invoked method signature and encoded parameters. For details see Ethereum Contract ABI.nonce:integer- (optional) Integer of a nonce. This allows to overwrite your own pending transactions that use the same nonce.
If the
transactionspecifies adatavalue but does not specifygasthen thegasvalue will be populated using theweb3.eth.estimateGas()function with an additional buffer of100000gas up to thegasLimitof the latest block. In the event that the value returned byweb3.eth.estimateGas()method is greater than thegasLimitaValueErrorwill be raised.>>> web3.eth.sendTransaction({'to': '0xd3cda913deb6f67967b99d67acdfa1712c293601', 'from': web3.eth.coinbase, 'value': 12345}) '0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331'
- Delegates to
-
Eth.sendRawTransaction(raw_transaction)¶ - Delegates to
eth_sendRawTransactionRPC Method
Sends a signed and serialized transaction.
>>> import rlp >>> from ethereum.transactions import Transaction >>> tx = Transaction( nonce=web3.eth.getTransactionCount(web3.eth.coinbase), gasprice=web3.eth.gasPrice, startgas=100000, to='0xd3cda913deb6f67967b99d67acdfa1712c293601', value=12345, data=b'', ) >>> tx.sign(the_private_key_for_the_from_account) >>> raw_tx = rlp.encode(tx) >>> raw_tx_hex = web3.toHex(raw_tx) >>> web3.eth.sendRawTransaction(raw_tx_hex) '0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331'
- Delegates to
-
Eth.sign(account, data)¶ - Delegates to
eth_signRPC Method
Signs the given
datawith the private key of the givenaccount. The account must be unlocked.>>> web3.eth.sign('0xd3cda913deb6f67967b99d67acdfa1712c293601', 'some-text-to-sign') '0x1a8bbe6eab8c72a219385681efefe565afd3accee35f516f8edf5ae82208fbd45a58f9f9116d8d88ba40fcd29076d6eada7027a3b412a9db55a0164547810cc401'
- Delegates to
-
Eth.call(transaction, block_identifier=web3.eth.defaultBlock)¶ - Delegates to
eth_callRPC Method
Executes the given transaction locally without creating a new transaction on the blockchain. Returns the return value of the executed contract.
The
transactionparameter is handled in the same manner as theweb3.eth.sendTransaction()method.>>> web3.eth.sign('0xd3cda913deb6f67967b99d67acdfa1712c293601', 'some-text-to-sign') '0x1a8bbe6eab8c72a219385681efefe565afd3accee35f516f8edf5ae82208fbd45a58f9f9116d8d88ba40fcd29076d6eada7027a3b412a9db55a0164547810cc401'
- Delegates to
-
Eth.estimateGas(transaction)¶ - Delegates to
eth_estimateGasRPC Method
Executes the given transaction locally without creating a new transaction on the blockchain. Returns amount of gas consumed by execution which can be used as a gas estimate.
>>> web3.eth.estimateGas({'to': '0xd3cda913deb6f67967b99d67acdfa1712c293601', 'from': web3.eth.coinbase, 'value': 12345}) 21000
- Delegates to
Filters¶
The following methods are available on the web3.eth object for interacting
with the filtering API.
-
Eth.filter(filter_params)¶ - Delegates to
eth_newFilter,eth_newBlockFilter, andeth_newPendingTransactionFilterRPC Methods.
This method delegates to one of three RPC methods depending on the value of
filter_params.- If
filter_paramsis the string'pending'then a new filter is registered using theeth_newPendingTransactionFilterRPC method. This will create a new filter that will be called for each new unmined transaction that the node receives. - If
filter_paramsis the string'latest'then a new filter is registered using theeth_newBlockFilterRPC method. This will create a new filter that will be called each time the node receives a new block. - If
filter_paramsis a dictionary then a new filter is registered using theeth_newFilterRPC method. This will create a new filter that will be called for all log entries that match the providedfilter_params.
This method returns a
web3.utils.filters.Filterobject which can then be used to either directly fetch the results of the filter or to register callbacks which will be called with each result of the filter.When creating a new log filter, the
filter_paramsshould be a dictionary with the following keys.fromBlock:integer/tag- (optional, default: “latest”) Integer block number, or “latest” for the last mined block or “pending”, “earliest” for not yet mined transactions.toBlock:integer/tag- (optional, default: “latest”) Integer block number, or “latest” for the last mined block or “pending”, “earliest” for not yet mined transactions.address:stringor list ofstrings, each 20 Bytes - (optional) Contract address or a list of addresses from which logs should originate.topics: list of 32 bytestringsornull- (optional) Array of topics that should be used for filtering. Topics are order-dependent. This parameter can also be a list of topic lists in which case filtering will match any of the provided topic arrays.
See Filtering for more information about filtering.
>>> web3.eth.filter('latest') <BlockFilter at 0x10b72dc28> >>> web3.eth.filter('pending') <TransactionFilter at 0x10b780340> >>> web3.eth.filter({'fromBlock': 1000000, 'toBlock': 1000100, 'address': '0x6c8f2a135f6ed072de4503bd7c4999a1a17f824b'}) <LogFilter at 0x10b7803d8>
- Delegates to
-
Eth.getFilterChanges(self, filter_id)¶ - Delegates to
eth_getFilterChangesRPC Method.
Returns all new entries which occurred since the last call to this method for the given
filter_id>>> filt = web3.eth.filter() >>> web3.eth.getFilterChanges(filt.filter_id) [ { 'address': '0xdc3a9db694bcdd55ebae4a89b22ac6d12b3f0c24', 'blockHash': '0xb72256286ca528e09022ffd408856a73ef90e7216ac560187c6e43b4c4efd2f0', 'blockNumber': 2217196, 'data': '0x0000000000000000000000000000000000000000000000000000000000000001', 'logIndex': 0, 'topics': ['0xe65b00b698ba37c614af350761c735c5f4a82b4ab365a1f1022d49d9dfc8e930', '0x000000000000000000000000754c50465885f1ed1fa1a55b95ee8ecf3f1f4324', '0x296c7fb6ccafa3e689950b947c2895b07357c95b066d5cdccd58c301f41359a3'], 'transactionHash': '0xfe1289fd3915794b99702202f65eea2e424b2f083a12749d29b4dd51f6dce40d', 'transactionIndex': 1, }, ... ]
- Delegates to
-
Eth.getFilterLogs(self, filter_id)¶ - Delegates to
eth_getFilterLogsRPC Method.
Returns all entries for the given
filter_id>>> filt = web3.eth.filter() >>> web3.eth.getFilterLogs(filt.filter_id) [ { 'address': '0xdc3a9db694bcdd55ebae4a89b22ac6d12b3f0c24', 'blockHash': '0xb72256286ca528e09022ffd408856a73ef90e7216ac560187c6e43b4c4efd2f0', 'blockNumber': 2217196, 'data': '0x0000000000000000000000000000000000000000000000000000000000000001', 'logIndex': 0, 'topics': ['0xe65b00b698ba37c614af350761c735c5f4a82b4ab365a1f1022d49d9dfc8e930', '0x000000000000000000000000754c50465885f1ed1fa1a55b95ee8ecf3f1f4324', '0x296c7fb6ccafa3e689950b947c2895b07357c95b066d5cdccd58c301f41359a3'], 'transactionHash': '0xfe1289fd3915794b99702202f65eea2e424b2f083a12749d29b4dd51f6dce40d', 'transactionIndex': 1, }, ... ]
- Delegates to
-
Eth.uninstallFilter(self, filter_id)¶ - Delegates to
eth_uninstallFilterRPC Method.
Uninstalls the filter specified by the given
filter_id. Returns boolean as to whether the filter was successfully uninstalled.>>> filt = web3.eth.filter() >>> web3.eth.uninstallFilter(filt.filter_id) True >>> web3.eth.uninstallFilter(filt.filter_id) False # already uninstalled.
- Delegates to
Contracts¶
-
Eth.contract(address=None, contract_name=None, ContractFactoryClass=Contract, **contract_factory_kwargs)¶ If
addressis provided then this method will return an instance of the contract defined byabi. Otherwise the newly created contract class will be returned.contract_namewill be used as the name of the contract class. IfNonethen the name of theContractFactoryClasswill be used.ContractFactoryClasswill be used as the base Contract class.The following arguments are accepted for contract class creation.
abiasmastbytecodebytecode_runtimeclone_bindev_docinterfacemetadataopcodessrc_mapsrc_map_runtimeuser_doc
See Contracts for more information about how to use contracts.
-
Eth.setContractFactory(contractFactoryClass)¶ Modify the default contract factory from
ContracttocontractFactoryClass. Future calls toEth.contract()will then default tocontractFactoryClass.An example of an alternative Contract Factory is
ConciseContract.