Skip to content

Commit

Permalink
support mantle
Browse files Browse the repository at this point in the history
  • Loading branch information
hujw77 committed Nov 15, 2023
1 parent c111bef commit 0918905
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ all :; @forge build --force
fmt :; @forge fmt
clean :; @forge clean
test :; @forge test
deploy :; @forge script script/Deploy.s.sol:Deploy --chain-id ${chain-id} --broadcast --verify
deploy :; @forge script script/Deploy.s.sol:Deploy --chain-id ${chain-id} --legacy --broadcast --verify
install:; @cargo install --path ./cli
sync :; @git submodule update --recursive

Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,10 @@ CREATE3Factory:
Address: 0x0000000000C76fe1798a428F60b27c6724e03408
Salt: 0xbdfe2ef43e1e3ce6492866175ab332d54a06ed033ec746975e32aa0c45dbbce0
```

### Support Chains
- arbitrum
- crab
- darwinia
- polygon
- mantle
5 changes: 4 additions & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ crab = "https://crab-rpc.darwinia.network"
darwinia = "https://rpc.darwinia.network"
arbitrum = "https://arb1.arbitrum.io/rpc"
polygon = "https://polygon-rpc.com"
ethereum = "https://mainnet.infura.io/v3/${INFURA_KEY}"
mantle = "https://rpc.mantle.xyz"

[etherscan]
polygon = { key = "${ETHERSCAN_POLYGON_KEY}"}
ethereum = { key = "${ETHERSCAN_API_KEY}" }
polygon = { key = "${ETHERSCAN_POLYGON_KEY}" }
arbitrum = { key = "${ETHERSCAN_ARBITRUM_KEY}" }
arbitrum-goerli = { key = "${ETHERSCAN_ARBITRUM_KEY}" }
arbitrum-sepolia = { key = "${ETHERSCAN_ARBITRUM_KEY}" }
Expand Down

0 comments on commit 0918905

Please sign in to comment.