Releases: streamingfast/substreams-ethereum
v0.10.1
v0.10.0
- Bumped dependencies to
substreams
to 0.6 andprost
to 0.13 (see Upgrade notes)
v0.9.13
-
Fixed AbiGen when in presence of functions that was has leading underscores or casing differences.
This was generating multiple Rust struct with the same name leading to compilation errors. Now, those cases will be de-duped and you will end up with N Rust struct all suffixed from 1 to N, like
TotalSupply1
andTotalSupply2
. -
Fixed AbiGen generated
Event#NAME
andFunction#Name
static const in presence of multiple overloads.This was previously using the de-duped name but this was wrong as the intention was always to be the ABI's defined named.
v0.9.12
- Re-generated the Rust Ethereum bindings with latest Firehose Ethereum Protobuf definitions.
v0.9.11
v0.9.10
v0.9.9
v0.9.8
- Fix bug where Int was not encoded properly in ABI generator
v0.9.7
v0.9.6
- Update
block_view
with updated ethereum block athttps://github.com/streamingfast/firehose-ethereum/releases/download/v2.0.0/ethereum-v1.1.0.spkg
with added fieldDetailLevel
IMPORTANT:: Using blocks with
DetailLevel
set toExtended
(the default level),block.transactions()
returns only successful transactions.
Blocks withDetailLevel
set toBase
does not have information about transaction successfulness. Note that a failed transaction will never have logs attached to it.