From fbb89cb13f0ff87217483c7134971732449d026d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Iskierko?= <61889657+endulab@users.noreply.github.com> Date: Mon, 26 Feb 2024 17:54:02 +0100 Subject: [PATCH] fix: Add missing address for Optimism Sepolia (#4810) Issue #13705 --- VERSION | 2 +- contracts/community-tokens/deployer/address.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 6067d0470..b145359cb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.175.4 +0.175.5 diff --git a/contracts/community-tokens/deployer/address.go b/contracts/community-tokens/deployer/address.go index 696f9013b..28422c53f 100644 --- a/contracts/community-tokens/deployer/address.go +++ b/contracts/community-tokens/deployer/address.go @@ -18,6 +18,7 @@ var contractAddressByChainID = map[uint64]common.Address{ 421613: common.HexToAddress("0x7Ff554af5b6624db2135E4364F416d1D397f43e6"), // Arbitrum Goerli 11155111: common.HexToAddress("0xCDE984e57cdb88c70b53437cc694345B646371f9"), // Sepolia 421614: common.HexToAddress("0x7Ff554af5b6624db2135E4364F416d1D397f43e6"), // Arbitrum Sepolia + 11155420: common.HexToAddress("0xcE2A896eEA2F585BC0C3753DC8116BbE2AbaE541"), // Optimism Sepolia } func ContractAddress(chainID uint64) (common.Address, error) {