Skip to content

Commit a67a5cc

Browse files
committed
expose MulticallResult
1 parent 2189934 commit a67a5cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ethers-contract/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ mod multicall;
3131
#[cfg(any(test, feature = "abigen"))]
3232
#[cfg_attr(docsrs, doc(cfg(feature = "abigen")))]
3333
pub use multicall::{
34-
Multicall, MulticallContract, MulticallError, MulticallVersion, MULTICALL_ADDRESS,
34+
Multicall, MulticallContract, MulticallError, MulticallVersion, MULTICALL_ADDRESS, MulticallResult,
3535
MULTICALL_SUPPORTED_CHAIN_IDS,
3636
};
3737

ethers-contract/src/multicall/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use crate::{
1212
};
1313

1414
mod multicall_contract;
15-
use multicall_contract::multicall_3::{
15+
pub use multicall_contract::multicall_3::{
1616
Call as Multicall1Call, Call3 as Multicall3Call, Call3Value as Multicall3CallValue,
1717
Result as MulticallResult,
1818
};

0 commit comments

Comments
 (0)