Metadata-Version: 2.1
Name: avalanche-etl
Version: 0.0.1
Summary: Tools for exporting Avalanche blockchain data to CSV or JSON
Home-page: https://github.com/shaikhzhas/avalanche-etl
Author: Zhassulan Shaikhygali
Author-email: shaikh.zhas@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/shaikhzhas/avalanche-etl/issues
Project-URL: Source, https://github.com/shaikhzhas/avalanche-etl
Keywords: avalanche,blockchain,etl
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.7.2,<4
Description-Content-Type: text/markdown
Provides-Extra: streaming
Provides-Extra: streaming-kinesis
Provides-Extra: dev

# Avalanche ETL

Avalanche ETL lets you convert Avalanche blockchain data into convenient formats like JSONs, CSVs and relational databases.
This is a fork of [Ethereum ETL](https://github.com/blockchain-etl/ethereum-etl).

[Full documentation available here](http://avalanche-etl.readthedocs.io/).

***Notice: Avalanche ETL is still on the beta version. However, CLIs are all functional.***

## Quickstart
Install Avalanche ETL:

```bash
pip3 install avalanche-etl
```

Export blocks and transactions

```bash
> avalancheetl export_blocks_and_transactions --start-block 0 --end-block 5000 \
--blocks-output blocks.json --transactions-output transactions.json
```

Export ERC20 and ERC721 transfers

```bash
> avalancheetl export_token_transfers --start-block 0 --end-block 5000 \
--output token_transfers.json
```

Export traces

```bash
> avalancheetl export_traces --start-block 0 --end-block 5000 \
--output traces.json
```

Find other commands [here](avalancheetl/cli/__init__.py).

For the latest version, check out the repo and call 
```bash
> pip3 install -e . 
> python3 avalancheetl.py
```

### Running in Docker

1. Install Docker https://docs.docker.com/install/

2. Build a docker image
    ```bash
    > docker build -t avalanche-etl:latest .
    > docker image ls
    ```

3. Run a container out of the image
    ```bash
    > docker run -v $HOME/output:/avalanche-etl/output avalanche-etl:latest export_all -s 0 -e 5499999 -b 100000
    > docker run -v $HOME/output:/avalanche-etl/output avalanche-etl:latest export_all -s 2018-01-01 -e 2018-01-01
    ```


