diff --git a/Cargo.lock b/Cargo.lock index 04e93c9e1..9b7cd9ab3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -266,7 +266,7 @@ dependencies = [ [[package]] name = "alloy-ethers-typecast" version = "0.2.0" -source = "git+https://github.com/rainlanguage/alloy-ethers-typecast?rev=f7b5bfd0687f16c77dbfdd4905b2434793fa7885#f7b5bfd0687f16c77dbfdd4905b2434793fa7885" +source = "git+https://github.com/rainlanguage/alloy-ethers-typecast?rev=bcc3a04394aefe191fef4ae8e6e94381a419c99a#bcc3a04394aefe191fef4ae8e6e94381a419c99a" dependencies = [ "alloy", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index ac52a8d39..9f5b16820 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ tracing = "0.1.37" tracing-subscriber = "0.3.17" reqwest = { version = "0.11.17", features = ["json"] } once_cell = "1.17.1" -alloy-ethers-typecast = { git = "https://github.com/rainlanguage/alloy-ethers-typecast", rev = "f7b5bfd0687f16c77dbfdd4905b2434793fa7885" } +alloy-ethers-typecast = { git = "https://github.com/rainlanguage/alloy-ethers-typecast", rev = "bcc3a04394aefe191fef4ae8e6e94381a419c99a" } eyre = "0.6" rain-error-decoding = { git = "https://github.com/rainlanguage/rain.error", rev = "bf08b5ab305287fc49408a441d6375f35dc280db" } wasm-bindgen-utils = "0.0.10" diff --git a/crates/dispair/src/lib.rs b/crates/dispair/src/lib.rs index b128ab285..af2b49842 100644 --- a/crates/dispair/src/lib.rs +++ b/crates/dispair/src/lib.rs @@ -1,5 +1,5 @@ use alloy::primitives::*; -use alloy_ethers_typecast::transaction::{ +use alloy_ethers_typecast::{ ReadContractParametersBuilder, ReadContractParametersBuilderError, ReadableClient, ReadableClientError, }; diff --git a/crates/parser/src/error.rs b/crates/parser/src/error.rs index 42d1b9037..3ec0eba18 100644 --- a/crates/parser/src/error.rs +++ b/crates/parser/src/error.rs @@ -1,4 +1,4 @@ -use alloy_ethers_typecast::transaction::{ReadContractParametersBuilderError, ReadableClientError}; +use alloy_ethers_typecast::{ReadContractParametersBuilderError, ReadableClientError}; use thiserror::Error; #[derive(Error, Debug)] diff --git a/crates/parser/src/v2.rs b/crates/parser/src/v2.rs index bcc754c9b..8445de9ac 100644 --- a/crates/parser/src/v2.rs +++ b/crates/parser/src/v2.rs @@ -1,6 +1,6 @@ use crate::error::ParserError; use alloy::primitives::*; -use alloy_ethers_typecast::transaction::{ReadContractParametersBuilder, ReadableClient}; +use alloy_ethers_typecast::{ReadContractParametersBuilder, ReadableClient}; use rain_interpreter_bindings::IParserPragmaV1::*; use rain_interpreter_bindings::IParserV2::*; use rain_interpreter_dispair::DISPair;