Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
feat: added MultiCall to EOS EVM & EOS EVM Testnet (#420)
Browse files Browse the repository at this point in the history
* Add MultiCall

* Add MultiCall to EOS EVM Testnet

* add changeset

* Update little-insects-bow.md

---------

Co-authored-by: jxom <[email protected]>
  • Loading branch information
DenisCarriere and jxom authored Jul 12, 2023
1 parent 8504c8b commit 6bf0ab9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/little-insects-bow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wagmi/chains": patch
---

Added Multicall to EOS EVM & EOS EVM Testnet
6 changes: 6 additions & 0 deletions packages/chains/src/eos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,10 @@ export const eos = {
url: 'https://explorer.evm.eosnetwork.com',
},
},
contracts: {
multicall3: {
address: '0xca11bde05977b3631167028862be2a173976ca11',
blockCreated: 7943933,
},
},
} as const satisfies Chain
6 changes: 6 additions & 0 deletions packages/chains/src/eosTestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,11 @@ export const eosTestnet = {
url: 'https://explorer.testnet.evm.eosnetwork.com',
},
},
contracts: {
multicall3: {
address: '0xca11bde05977b3631167028862be2a173976ca11',
blockCreated: 9067940,
},
},
testnet: true,
} as const satisfies Chain

0 comments on commit 6bf0ab9

Please sign in to comment.