-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add truffle-plugin-verify for etherscan verification
- Loading branch information
1 parent
4f02599
commit 54d619e
Showing
5 changed files
with
1,366 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ build-legacy | |
tmp | ||
bin | ||
.outputParameter | ||
flatten | ||
|
||
## Core latex/pdflatex auxiliary files: | ||
*.aux | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* globals artifacts */ | ||
|
||
const ApprovedTransfer = artifacts.require("ApprovedTransfer"); | ||
const GuardianStorage = artifacts.require("GuardianStorage"); | ||
|
||
module.exports = (deployer, network) => { | ||
console.log(`## ${network} network ##`); | ||
deployer.deploy( | ||
ApprovedTransfer, | ||
"0x22Ce12a6dFCF7d67c3DbEF01B19707077b528223", | ||
"0x3bD35C298Ea89EfA0EF2dB208aB562E9e3F89DF4", | ||
"0x0479B49a95c6bF395F1fC7d0118b44c752C7c410", | ||
"0x0A1545B32D7cdea1EeD2fb259A82AcFE5e75962C", | ||
"0xc778417E063141139Fce010982780140Aa0cD5Ab"); | ||
|
||
deployer.deploy(GuardianStorage); | ||
}; |
Oops, something went wrong.