diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-04-22 18:37:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-22 18:37:51 +0800 |
commit | a3dfb2827e9cca501d5a76e37ac0a8310deb9091 (patch) | |
tree | dc555519aa423a4f51874b39fecb3c7c7036ac6d | |
parent | 3c5be3b75d0c48c1e24875e38c814e682aa1af59 (diff) | |
parent | c7874dbf06692c984ae032044f1b1bb34c707313 (diff) | |
download | dexon-governance-abi-a3dfb2827e9cca501d5a76e37ac0a8310deb9091.tar.gz dexon-governance-abi-a3dfb2827e9cca501d5a76e37ac0a8310deb9091.tar.zst dexon-governance-abi-a3dfb2827e9cca501d5a76e37ac0a8310deb9091.zip |
Merge pull request #5 from dexon-foundation/s-deploy
add recovery contract deploy script
-rw-r--r-- | migrations/2_deploy_recovery.js | 5 | ||||
-rw-r--r-- | truffle.js | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/migrations/2_deploy_recovery.js b/migrations/2_deploy_recovery.js new file mode 100644 index 0000000..f7e823e --- /dev/null +++ b/migrations/2_deploy_recovery.js @@ -0,0 +1,5 @@ +var Recovery = artifacts.require("./Recovery.sol"); + +module.exports = function(deployer) { + deployer.deploy(Recovery); +}; @@ -40,6 +40,12 @@ module.exports = { host: "localhost", port: 8545, gas: 4712388 + }, + smoke: { + network_id: '*', + host: "localhost", + port: 8645, + gas: 4712388 } }, }; |