Skip to content

Commit

Permalink
Feat/add pulsechain mainnet & testnet (#78)
Browse files Browse the repository at this point in the history
* feat: add multicall3 for pulsechain mainnet & testnet

* fix typo missing

---------

Co-authored-by: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com>
  • Loading branch information
johnny-vu and BobTheBuidler authored Sep 13, 2023
1 parent b658995 commit a5f4744
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion multicall/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ class Network(IntEnum):
ArbitrumGorli = 421613
Sepolia = 11155111
Aurora = 1313161554
Harmony = 1666600000
Harmony = 1666600000
PulseChain = 369
PulseChainTestnet = 943

MULTICALL_ADDRESSES: Dict[int,str] = {
Network.Mainnet: '0xeefBa1e63905eF1D7ACbA5a8513c70307C1cE441',
Expand Down Expand Up @@ -166,6 +168,8 @@ class Network(IntEnum):
Network.Sepolia: '0xcA11bde05977b3631167028862bE2a173976CA11',
Network.Aurora: '0xcA11bde05977b3631167028862bE2a173976CA11',
Network.Harmony: '0xcA11bde05977b3631167028862bE2a173976CA11',
Network.PulseChain: '0xcA11bde05977b3631167028862bE2a173976CA11',
Network.PulseChainTestnet: '0xcA11bde05977b3631167028862bE2a173976CA11',
Network.Base: '0xcA11bde05977b3631167028862bE2a173976CA11',
}

Expand Down

0 comments on commit a5f4744

Please sign in to comment.