Skip to content

Commit 32c088c

Browse files
authored
Remove Multicall (#3758)
1 parent 663311f commit 32c088c

File tree

6 files changed

+0
-510
lines changed

6 files changed

+0
-510
lines changed

crates/contracts/build.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -516,9 +516,6 @@ fn main() {
516516
.add_network_str(SEPOLIA, "0x8262d639c38470F38d2eff15926F7071c28057Af")
517517
});
518518

519-
// Contract for batching multiple `eth_call`s into a single one.
520-
generate_contract("Multicall");
521-
522519
// Test Contract for incrementing arbitrary counters.
523520
generate_contract("Counter");
524521

crates/contracts/solidity/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ ARTIFACTDIR := ../artifacts
1010
CONTRACTS := \
1111
AnyoneAuthenticator.sol \
1212
Balances.sol \
13-
Multicall.sol \
1413
Signatures.sol \
1514
Solver.sol \
1615
Spardose.sol \

crates/contracts/solidity/Multicall.sol

Lines changed: 0 additions & 70 deletions
This file was deleted.

crates/contracts/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ include_contracts! {
7171
pub mod support {
7272
include_contracts! {
7373
Balances;
74-
Multicall;
7574
Signatures;
7675
}
7776
}

crates/ethrpc/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub mod extensions;
66
pub mod http;
77
pub mod instrumented;
88
pub mod mock;
9-
pub mod multicall;
109

1110
use {
1211
self::{buffered::BufferedTransport, http::HttpTransport},

0 commit comments

Comments
 (0)