* feat: update balancer v2 spkg to make it return old slot values This is needed for the new DCI version that uses old values to look into exactly what part of the slot change and compare with the retrigger offset * refactor: use crate registry instead of github --------- Co-authored-by: zizou <111426680+flopell@users.noreply.github.com>
27 lines
575 B
TOML
27 lines
575 B
TOML
[package]
|
|
name = "ethereum-balancer-v2"
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "ethereum_balancer_v2"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
substreams = "0.5.22"
|
|
substreams-ethereum = "0.9.9"
|
|
ethabi = "18.0.0"
|
|
hex = "0.4.3"
|
|
anyhow = "1.0.75"
|
|
num-bigint = "0.4.4"
|
|
itertools = "0.12.0"
|
|
tycho-substreams = "0.5.0"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1"
|
|
substreams-ethereum = "0.9"
|
|
|
|
# Required so that ethabi > ethereum-types build correctly under wasm32-unknown-unknown
|
|
[target.wasm32-unknown-unknown.dependencies]
|
|
getrandom = { version = "0.2", features = ["custom"] }
|