Ksiau

Results 7 comments of Ksiau

Check if you have installed ethereum-etl to the right version of Python

> > Check if you have installed ethereum-etl to the right version of Python > > Hi @ksiau , I have Python 3.8.10 > Which is the correct version that...

> > > > Check if you have installed ethereum-etl to the right version of Python > > > > > > > > > Hi @ksiau , I have...

> receipt_status column is in table transactions. You can join it with table traces which has column status to know the status of pre-byzantine transaction I made it wrong. `receipt_status`...

> Something like this: > > ``` > select transaction_hash, status > from bigquery-public-data.crypto_ethereum.transactions > join bigquery-public-data.crypto_ethereum.traces on transactions.hash = traces.transaction_hash > where traces.trace_address is null > ``` That way...

> Sorry I wasn't clear. `traces.trace_address is null` is not supposed to differentiate failed transactions, it filters out only top-level traces within a transaction. If you need to filter out...

By the way, I have added a way in this repo to export raw EVM opcode trace using the RPC API `debug_traceTransaction`. Do you think it is needed? If so,...