the `call.account_creations` field had been deprecated by Substreams because of some edge cases where a new account wasn't detected. This commit removes the usage of this field in our sdk contract extraction logic and some others specific places. We decided to rely on the call type instead. This approach should be much more robust. Co-authored-by: zizou <111426680+flopell@users.noreply.github.com>
32 lines
733 B
TOML
32 lines
733 B
TOML
[package]
|
|
name = "ethereum-sfrax"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "ethereum_sfrax"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
ethabi = "17"
|
|
hex-literal = "0.4.1"
|
|
num-bigint = "0.4"
|
|
num-traits = "0.2.15"
|
|
prost = "0.11"
|
|
prost-types = "0.11"
|
|
substreams = "0.5.22"
|
|
substreams-ethereum = "0.9.9"
|
|
hex = "0.4.3"
|
|
tycho-substreams = { git = "https://github.com/propeller-heads/tycho-protocol-sdk.git", rev = "b8aeaa3" }
|
|
itertools = "0.12.0"
|
|
anyhow = "1.0.75"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1"
|
|
substreams-ethereum = "0.9"
|
|
regex = "1.10.4"
|
|
|
|
# Required so that ethabi > ethereum-types build correctly under wasm32-unknown-unknown
|
|
[target.wasm32-unknown-unknown.dependencies]
|
|
getrandom = { version = "0.2", features = ["custom"] }
|