Skip to content

Commit

Permalink
Add truffle-plugin-verify for etherscan verification
Browse files Browse the repository at this point in the history
  • Loading branch information
elenadimitrova committed Nov 4, 2020
1 parent f38ba0d commit 381180b
Show file tree
Hide file tree
Showing 5 changed files with 1,366 additions and 84 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-legacy
tmp
bin
.outputParameter
flatten

## Core latex/pdflatex auxiliary files:
*.aux
Expand Down
17 changes: 17 additions & 0 deletions migrations/2_deploy_contracts.js
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);
};
Loading

0 comments on commit 381180b

Please sign in to comment.