Full documentation available here.
Install Tezos ETL:
pip install tezos-etlExport blocks, balance updates and operations (Schema, Reference):
tezosetl export --start-block 1 --end-block 100 \
--provider-uri https://mainnet-tezos.giganode.io --output-dir output --output-format jsonFor the latest version, checkout the repo and call
pip install -e .
python tezosetl.pypip install -e .[dev]
echo "TEZOSETL_PROVIDER_URI variable is optional"
export TEZOSETL_PROVIDER_URI=https://mainnet-tezos.giganode.io
pytest -vvpip install tox
tox-
Install Docker https://docs.docker.com/install/
-
Build a docker image:
docker build -t tezos-etl:latest . docker image ls -
Start the export using the image:
docker run -v $HOME/output:/tezos-etl/output tezos-etl:latest export_partitioned \ -s 2018-06-30 -e 2018-07-01 -p https://mainnet-tezos.giganode.io --output-format csv