High-level tools and library to interact with Ethereum
Project description
eth-tools
Small library/CLI tool wrapping web3py.
Installation
pip install ethereum-tools
CLI Usage
Web3 provider needs to be set either through the WEB3_PROVIDER_URI
environment
variable or through the --web3-uri
CLI flag.
Fetching blocks
eth-tools fetch-blocks -s 10000000 -e 10000999 -o blocks.csv.gz
Fetching events
eth-tools fetch-events -a 0x6b175474e89094c44da98b954eedeac495271d0f --abi /path/to/abi.json -s 10000000 -e 10000999 -o events.jsonl.gz
Library usage
from web3 import Web3
from web3.providers.auto import load_provider_from_environment
from eth_tools.block_iterator import BlockIterator
provider = load_provider_from_environment()
web3 = Web3(provider)
block_iterator = BlockIterator(web3, start_block=10_000_000, end_block=10_000_999)
for block in block_iterator:
print(block.number)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ethereum-tools-0.1.1.tar.gz
(10.7 kB
view details)
Built Distribution
File details
Details for the file ethereum-tools-0.1.1.tar.gz
.
File metadata
- Download URL: ethereum-tools-0.1.1.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e684a0fd4a8f9e6375615e13dfe988c549d2f6a0faed709561f3fe90d669dfea |
|
MD5 | 32ee41c84db31f50dbffd60e410fa9ec |
|
BLAKE2b-256 | 62273a7512ff6ea8b4ca553fbd6baf2128b083088bd983272c9170fbb319e763 |
File details
Details for the file ethereum_tools-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: ethereum_tools-0.1.1-py3-none-any.whl
- Upload date:
- Size: 13.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c9e12d69fab09f522c7a18257d56a7e4b73abbbfa050fd9c2e663b4515e856a |
|
MD5 | fe85dadbec88b9b37444584e16cdada2 |
|
BLAKE2b-256 | f7957900ec717d55243b327433bb182c5fa0bb94de1f0435f6b72c3916552699 |