Skip to content

Commit

Permalink
chore: add goerli deployment addresses
Browse files Browse the repository at this point in the history
Redeployed on goerli for latest version
  • Loading branch information
0x-r4bbit committed Nov 20, 2023
1 parent 1085ee8 commit 2989a93
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) |
Expand Down
16 changes: 8 additions & 8 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}"

0 comments on commit 2989a93

Please sign in to comment.