From b52a9ce0e5f72e62086f84a6a639a6de0bfd5c7e Mon Sep 17 00:00:00 2001 From: Michal Iskierko Date: Tue, 21 Nov 2023 10:46:12 +0100 Subject: [PATCH] fix: updating community token deployer addresses Fix #12748 --- contracts/community-tokens/deployer/address.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/contracts/community-tokens/deployer/address.go b/contracts/community-tokens/deployer/address.go index 3a9c5b558..6dd608298 100644 --- a/contracts/community-tokens/deployer/address.go +++ b/contracts/community-tokens/deployer/address.go @@ -8,9 +8,13 @@ import ( var errorNotAvailableOnChainID = errors.New("deployer contract not available for chainID") -// TODO add addresses for other chains +// addresses can be found on https://github.com/status-im/communities-contracts#deployments var contractAddressByChainID = map[uint64]common.Address{ - 420: common.HexToAddress("0xfFa8A255D905c909379859eA45B959D090DDC2d4"), // Optimism Goerli + 5: common.HexToAddress("0x81f4951ff8859d305F47A4574B206cF64C0d2645"), // Goerli + 420: common.HexToAddress("0xfFa8A255D905c909379859eA45B959D090DDC2d4"), // Optimism Goerli + 421613: common.HexToAddress("0x7Ff554af5b6624db2135E4364F416d1D397f43e6"), // Arbitrum Goerli + 11155111: common.HexToAddress("0xCDE984e57cdb88c70b53437cc694345B646371f9"), // Sepolia + 421614: common.HexToAddress("0x7Ff554af5b6624db2135E4364F416d1D397f43e6"), // Arbitrum Sepolia } func ContractAddress(chainID uint64) (common.Address, error) {