You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
postgres=# \d
List of relations
Schema | Name | Type | Owner
--------+--------------+-------+----------
public | transactions | table | postgres
public | users | table | postgres
(2 rows)
postgres=#
postgres=# select count(*) from transactions;
count
0
(1 row)
my try
postgres logs seems ok . no errors log
ethereum-etl cli stdout is also ok , no erros, just some INFO log for "INSERT INTO transactions xxxx"
The text was updated successfully, but these errors were encountered:
Hi, I have encountered the same situation - whichever block i tried seems run successfully in terminal, but there's no data inserted in the database. And it seems like there's no error as well. Do you mind to give some advice on how to debug this?
im trying to extract transactions data to my local postgres db
everything works well , but when a count rows data, its empty.
my enviroment
ethereumetl, version 2.3.1
os: macos apple m2
postgres version 15.4 , deploy in macos [localhost]
my command
ethereumetl stream --start-block 200000 -e transaction --provider-uri https://rpc.ankr.com/eth --output=postgresql+pg8000://postgres:[email protected]:5432/postgres
cli output
postgres output
no data, very sad !!!
postgres=# \d
List of relations
Schema | Name | Type | Owner
--------+--------------+-------+----------
public | transactions | table | postgres
public | users | table | postgres
(2 rows)
postgres=#
postgres=# select count(*) from transactions;
count
(1 row)
my try
postgres logs seems ok . no errors log
ethereum-etl cli stdout is also ok , no erros, just some INFO log for "INSERT INTO transactions xxxx"
The text was updated successfully, but these errors were encountered: