Metadata-Version: 2.1
Name: evmchain-etl-table-definition-cli
Version: 1.1.0
Summary: Tools for generating table definitions for https://github.com/blockchain-etl/ethereum-etl-airflow
Home-page: https://github.com/blockchain-etl/evmchain-etl-table-definition-cli
Author: Evgeny Medvedev
Author-email: evge.medvedev@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/blockchain-etl/evmchain-etl-table-definition-cli/issues
Project-URL: Chat, https://gitter.im/ethereum-etl/Lobby
Project-URL: Source, https://github.com/blockchain-etl/evmchain-etl-table-definition-cli
Keywords: ethereum,polygon,bsc,arbitrum,fantom,celo,ronin,avalanche
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.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5.3,<4
Description-Content-Type: text/markdown
License-File: LICENSE

# EVM Chain ETL Table Definition CLI

EVM Chain ETL Table Definition CLI allows generating table definitions for 
[Ethereum ETL](https://github.com/blockchain-etl/ethereum-etl-airflow/tree/master/dags/resources/stages/parse/table_definitions),
[Polygon ETL](https://github.com/blockchain-etl/polygon-etl/tree/main/airflow/dags/resources/stages/parse/table_definitions),
[EVM Chain ETL](https://github.com/nansen-ai/evmchain-etl-table-definitions/tree/main/parse).

Read this article for more details: [How to get any Ethereum smart contract into BigQuery (in 8 mins)](https://towardsdatascience.com/how-to-get-any-ethereum-smart-contract-into-bigquery-in-8-mins-bab5db1fdeee).

## Requirements:

- Python 3.6+

## Quickstart

Install the cli:

```bash
pip install ethereum-etl-table-definition-cli
```

Generate table definitions (`example_uniswap_abi.json` can be downloaded from [here](https://github.com/blockchain-etl/ethereum-etl-table-definition-cli/blob/main/example_uniswap_abi.json)):

```bash
tabledefinition generate \
    --abi-file example_uniswap_abi.json \
    --dataset-name uniswap \
    --contract-name Uni \
    --contract-address 0x1f9840a85d5af5bf1d1762f925bdaddc4201f984
```

Output will be in the `output` directory.

---

For the latest version, check out the repo and call 

```bash
pip install -e .
python tabledefinition.py --help 
```

