Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Verite verification script #162

Merged
merged 1 commit into from
Dec 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,16 @@ Here is an example command to pause a hypothetical contract:
npx hardhat setPaused --address 0x5FbDB2315678afecb367f032d93F642f64180aa3 --paused true
```

### Getting a Circle Verite Verification Result

Update the config in `scripts/verite-verify.ts` with the appropriate values, then run

```sh
npx hardhat run scripts/verite-verify.ts
```

This will print out a verification result that can be send to the `verify()` method on the given contract.

### Etherscan Verification

Contract source can be uploaded and verified to Etherscan. Update `.env` to include your etherscan API key.
Expand Down
Loading