Skip to content

Commit

Permalink
feat(deployments): adds deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexangelj committed Aug 30, 2023
1 parent 0e22ec8 commit 4c456d0
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 5 deletions.
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
# Nugu

Nugu is a [CREATE3](https://github.com/ZeframLou/create3-factory) factory contract deployed at the address `0x0000a79c3d8124ed3a7f8ec8427e4dc43a2b154d` on several EVM-compatible chains. Here are the current supported networks:
Nugu is a [CREATE3](https://github.com/ZeframLou/create3-factory) factory contract.

- Ethereum Sepolia
- Polygon Mumbai
- Optimistic Goerli
- Arbitrum Goerli
## Deployments

Deployed to: `0xe50ea0e9849cb17829907Acaf764af8F37d4938E`

| Chain id | Network | Address |
| -------- | --------------- | -------------------------------------------- |
| 1 | Mainnet | `0xe50ea0e9849cb17829907Acaf764af8F37d4938E` |
| 11155111 | Sepolia | `0xe50ea0e9849cb17829907Acaf764af8F37d4938E` |
| 10 | Optimism | `0xe50ea0e9849cb17829907Acaf764af8F37d4938E` |
| 42161 | Arbitrum One | `0xe50ea0e9849cb17829907Acaf764af8F37d4938E` |
| 8453 | Base | `0xe50ea0e9849cb17829907Acaf764af8F37d4938E` |
| 84531 | Base Goerli | `0xe50ea0e9849cb17829907Acaf764af8F37d4938E` |
| 420 | OP Goerli | `0xe50ea0e9849cb17829907Acaf764af8F37d4938E` |
| 421613 | Arbitrum Goerli | `0xe50ea0e9849cb17829907Acaf764af8F37d4938E` |
13 changes: 13 additions & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,16 @@ remappings = [
src = "src"

# See more config options https://github.com/foundry-rs/foundry/tree/master/config

[rpc_endpoints]
mainnet = "${MAINNET_RPC}"
base = "${BASE_RPC}"
arbitrum = "${ARBITRUM_RPC}"
optimism = "${OPTIMISM_RPC}"
zkpolygon = "${ZKPOLYGON_RPC}"
canto = "${CANTO_RPC}"
base_testnet = "${BASE_TESTNET_RPC}"
sepolia = "${SEPOLIA_RPC}"
zkscroll_testnet = "${ZKSCROLL_TESTNET_RPC}"
optimism_testnet = "${OPTIMISM_TESTNET_RPC}"
arbitrum_testnet = "${ARBITRUM_TESTNET_RPC}"

0 comments on commit 4c456d0

Please sign in to comment.