Add Infura project id to commands in docs

This commit is contained in:
medvedev1088
2020-04-16 23:23:17 +07:00
parent ae131baa0e
commit 90c4982a6b
2 changed files with 5 additions and 4 deletions

View File

@@ -23,7 +23,8 @@ Export blocks and transactions ([Schema](docs/schema.md#blockscsv), [Reference](
```bash
> ethereumetl export_blocks_and_transactions --start-block 0 --end-block 500000 \
--provider-uri https://mainnet.infura.io --blocks-output blocks.csv --transactions-output transactions.csv
--blocks-output blocks.csv --transactions-output transactions.csv \
--provider-uri https://mainnet.infura.io/v3/239a1d18eba14f0f9dc1c882de0dc872
```
Export ERC20 and ERC721 transfers ([Schema](docs/schema.md#token_transferscsv), [Reference](docs/commands.md##export_token_transfers)):
@@ -46,7 +47,7 @@ Stream blocks, transactions, logs, token_transfers continually to console ([Refe
```bash
> pip3 install ethereum-etl[streaming]
> ethereumetl stream --start-block 500000 -e block,transaction,log,token_transfer --log-file log.txt
> ethereumetl stream --provider-uri https://mainnet.infura.io/v3/239a1d18eba14f0f9dc1c882de0dc872 --start-block 500000 -e block,transaction,log,token_transfer --log-file log.txt
```
Find other commands [here](https://ethereum-etl.readthedocs.io/en/latest/commands/).

View File

@@ -186,7 +186,7 @@ You can tune `--batch-size`, `--max-workers` for performance.
#### get_block_range_for_date
```bash
> ethereumetl get_block_range_for_date --provider-uri=https://mainnet.infura.io --date 2018-01-01
> ethereumetl get_block_range_for_date --provider-uri=https://mainnet.infura.io/v3/239a1d18eba14f0f9dc1c882de0dc872 --date 2018-01-01
4832686,4838611
```
@@ -201,7 +201,7 @@ You can tune `--batch-size`, `--max-workers` for performance.
```bash
> pip3 install ethereum-etl[streaming]
> ethereumetl stream --provider-uri https://mainnet.infura.io --start-block 500000
> ethereumetl stream --provider-uri https://mainnet.infura.io/v3/239a1d18eba14f0f9dc1c882de0dc872 --start-block 500000
```
- This command outputs blocks, transactions, logs, token_transfers to the console by default.