From 67cf61ea747b07a50ac676ac080b451cd5d845ab Mon Sep 17 00:00:00 2001 From: Prosper Date: Sat, 26 Oct 2024 12:52:45 +0100 Subject: [PATCH] chore: update Celo gateway contract addresses and deployment script --- README.md | 16 ++++++++++++++++ scripts/config.ts | 3 ++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 297abcb..b408f50 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,22 @@ npx hardhat run scripts/tron/updateProtocolFee.ts + + Celo + Gateway Proxy + 0xF418217E3f81092eF44b81C5C8336e6A6fDB0E4b + + + Gateway Implementation + 0x8508c1C9f29BD1e73B5A9bD8FB87720927c681FA + + + Gateway Admin + 0xc38D6817F736b1cb44785e14A8cb7152385d3210 + + + + Tron Gateway Proxy diff --git a/scripts/config.ts b/scripts/config.ts index f8c2fec..cf0aa29 100644 --- a/scripts/config.ts +++ b/scripts/config.ts @@ -121,12 +121,13 @@ const NETWORKS = { * @dev Celo Mainnet */ 42220: { + GATEWAY_IMPLEMENTATION: "0x8508c1C9f29BD1e73B5A9bD8FB87720927c681FA", RPC_URL: `https://forno.celo.org`, SUPPORTED_TOKENS: { USDC: "0xcebA9300f2b948710d2653dD7B07f33A8B32118C", }, TREASURY_FEE_PERCENT: 100, // in BPS i.e 0.1% - GATEWAY_CONTRACT: "0x8FD1f78d88Dd008E557273b5Cd517487C2A9A7de", + GATEWAY_CONTRACT: "0xF418217E3f81092eF44b81C5C8336e6A6fDB0E4b", IMPERSONATE_ACCOUNT: "", },