Skip to content

Commit

Permalink
verify
Browse files Browse the repository at this point in the history
  • Loading branch information
hujw77 committed Aug 8, 2024
1 parent f01fa12 commit 2f61cbe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ all :; @forge build
fmt :; @forge fmt
clean :; @forge clean
test :; @forge test
deploy :; @forge script script/Deploy.s.sol:Deploy --rpc-url "https://koi-rpc.darwinia.network" --broadcast
dry-run:; @forge script script/Deploy.s.sol:Deploy --rpc-url "https://koi-rpc.darwinia.network"
deploy :; @forge script script/Deploy.s.sol:Deploy --broadcast --verify
dry-run:; @forge script script/Deploy.s.sol:Deploy

sync :; @git submodule update --recursive

Expand Down
6 changes: 4 additions & 2 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ optimizer_runs = 999999
evm_version = "london"
bytecode_hash = "ipfs"
extra_output_files = ["metadata"]
eth_rpc_url = "https://koi-rpc.darwinia.network"
etherscan_api_key = "xxx"

[rpc_endpoints]
koi = "https://koi-rpc.darwinia.network"
crab = "https://crab-rpc.darwinia.network"

[etherscan]
koi = { key = "xxx", url = "https://koi-scan.darwinia.network/api" }
crab = { key = "xxx", url = "https://crab-scan.darwinia.network/api" }
koi = { key = "xxx", url = "https://koi-scan.darwinia.network/api", chain = 701 }
crab = { key = "xxx", url = "https://crab-scan.darwinia.network/api", chain = 44 }

0 comments on commit 2f61cbe

Please sign in to comment.