From 2989a937a4c7cdca8354ab5ca3eea3d6c55142db Mon Sep 17 00:00:00 2001 From: r4bbit <445106+0x-r4bbit@users.noreply.github.com> Date: Mon, 20 Nov 2023 15:02:51 +0100 Subject: [PATCH] chore: add goerli deployment addresses Redeployed on goerli for latest version --- README.md | 5 +++++ foundry.toml | 16 ++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index ffbee28..30636b7 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,11 @@ This projects implements smart contracts that are used by Status to enable token | **Contract** | **Address** | **Snapshot** | | --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | +| **Goerli** | | | +| CommunityTokenDeployer | [`0x81f4951ff8859d305F47A4574B206cF64C0d2645`](https://goerli.etherscan.io/address/0x81f4951ff8859d305F47A4574B206cF64C0d2645#code) | [`105ee8`](https://github.com/status-im/communities-contracts/commit/1085ee8) | +| CommunityOwnerTokenRegistry | [`0x59510D0b235c75d7bCAEb66A420e9bb0edC976AE`](https://goerli.etherscan.io/address/0x59510D0b235c75d7bCAEb66A420e9bb0edC976AE) | [`1085ee8`](https://github.com/status-im/communities-contracts/commit/1085ee8) | +| CommunityOwnerTokenFactory | [`0xf7b6EC76aCa97b395dc48f7A2861aD810B34b52e`](https://goerli.etherscan.io/address/0xf7b6EC76aCa97b395dc48f7A2861aD810B34b52e#code) | [`1085ee8`](https://github.com/status-im/communities-contracts/commit/1085ee8) | +| CommunityMasterTokenFactory | [`0x0936792b0efa243a5Ddff7035E84749E5a54FA9c`](https://goerli.etherscan.io/address/0x0936792b0efa243a5Ddff7035E84749E5a54FA9c) | [`1085ee8`](https://github.com/status-im/communities-contracts/commit/1085ee8) | | **Sepolia** | | | | CommunityTokenDeployer | [`0xCDE984e57cdb88c70b53437cc694345B646371f9`](https://sepolia.etherscan.io/address/0xCDE984e57cdb88c70b53437cc694345B646371f9) | [`ea7ef0e`](https://github.com/status-im/communities-contracts/commit/ea7ef0e) | | CommunityOwnerTokenRegistry | [`0x98E0A38A9c198F9F49a4F6b49475aE0c92aBbB66`](https://sepolia.etherscan.io/address/0x98E0A38A9c198F9F49a4F6b49475aE0c92aBbB66) | [`ea7ef0e`](https://github.com/status-im/communities-contracts/commit/ea7ef0e) | diff --git a/foundry.toml b/foundry.toml index 0bfa7d2..1c0431c 100644 --- a/foundry.toml +++ b/foundry.toml @@ -26,11 +26,11 @@ # avalanche = { key = "${API_KEY_SNOWTRACE}" } # bnb_smart_chain = { key = "${API_KEY_BSCSCAN}" } # gnosis_chain = { key = "${API_KEY_GNOSISSCAN}" } - # goerli = { key = "${API_KEY_ETHERSCAN}" } - # mainnet = { key = "${API_KEY_ETHERSCAN}" } - # optimism = { key = "${API_KEY_OPTIMISTIC_ETHERSCAN}" } + goerli = { key = "${API_KEY_ETHERSCAN}" } + mainnet = { key = "${API_KEY_ETHERSCAN}" } + optimism = { key = "${API_KEY_OPTIMISTIC_ETHERSCAN}" } # polygon = { key = "${API_KEY_POLYGONSCAN}" } - # sepolia = { key = "${API_KEY_ETHERSCAN}" } + sepolia = { key = "${API_KEY_ETHERSCAN}" } [fmt] bracket_spacing = true @@ -47,9 +47,9 @@ # avalanche = "https://avalanche-mainnet.infura.io/v3/${API_KEY_INFURA}" # bnb_smart_chain = "https://bsc-dataseed.binance.org" # gnosis_chain = "https://rpc.gnosischain.com" - # goerli = "https://goerli.infura.io/v3/${API_KEY_INFURA}" - localhost = "http://localhost:8545" + goerli = "https://eth-goerli.g.alchemy.com/v2/${API_KEY_GOERLI}" + # localhost = "http://localhost:8545" # mainnet = "https://eth-mainnet.g.alchemy.com/v2/${API_KEY_ALCHEMY}" - # optimism = "https://optimism-mainnet.infura.io/v3/${API_KEY_INFURA}" + optimism = "https://opt-mainnet.g.alchemy.com/v2/${API_KEY_OPTIMISM}" # polygon = "https://polygon-mainnet.infura.io/v3/${API_KEY_INFURA}" - # sepolia = "https://sepolia.infura.io/v3/${API_KEY_INFURA}" + sepolia = "https://eth-sepolia.g.alchemy.com/v2/${API_KEY_SEPOLIA}"