Skip to content

Commit

Permalink
Added --verify where needed.
Browse files Browse the repository at this point in the history
  • Loading branch information
KyrylR committed Jun 21, 2024
1 parent 8592143 commit 8b8df2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ In the `.env` file, you need to add the following parameters:
After that, you can run the following command to upgrade the Bridge contract to BridgeV2 on the Ethereum Sepolia network:

```bash
npx hardhat migrate --network sepolia --from 10
npx hardhat migrate --network sepolia --from 10 --verify
```

If you made a mistake in the variables configuration and migration 11 failed, you can fix those and then only run migration 11.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"private-network": "npx hardhat node",
"generate-types": "TYPECHAIN_FORCE=true npx hardhat typechain",
"generate-go-bindings": "npx hardhat gobind --outdir ./go-bindings",
"deploy-ethereum": "npx hardhat migrate --network eth_mainnet --only 1",
"deploy-sepolia": "npx hardhat migrate --network sepolia --only 1",
"deploy-ethereum": "npx hardhat migrate --network eth_mainnet --only 1 --verify",
"deploy-sepolia": "npx hardhat migrate --network sepolia --only 1 --verify",
"deploy-qtum-mainnet": "npx hardhat migrate --network qtumMainnet --only 1",
"deploy-qtum-testnet": "npx hardhat migrate --network qtumTestnet --only 1",
"lint-fix": "npm run lint-sol-fix && npm run lint-ts-fix && npm run lint-json-fix",
Expand Down

0 comments on commit 8b8df2b

Please sign in to comment.