summaryrefslogtreecommitdiffstats
path: root/migrations
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2019-04-22 18:37:51 +0800
committerGitHub <noreply@github.com>2019-04-22 18:37:51 +0800
commita3dfb2827e9cca501d5a76e37ac0a8310deb9091 (patch)
treedc555519aa423a4f51874b39fecb3c7c7036ac6d /migrations
parent3c5be3b75d0c48c1e24875e38c814e682aa1af59 (diff)
parentc7874dbf06692c984ae032044f1b1bb34c707313 (diff)
downloaddexon-governance-abi-a3dfb2827e9cca501d5a76e37ac0a8310deb9091.tar
dexon-governance-abi-a3dfb2827e9cca501d5a76e37ac0a8310deb9091.tar.gz
dexon-governance-abi-a3dfb2827e9cca501d5a76e37ac0a8310deb9091.tar.bz2
dexon-governance-abi-a3dfb2827e9cca501d5a76e37ac0a8310deb9091.tar.lz
dexon-governance-abi-a3dfb2827e9cca501d5a76e37ac0a8310deb9091.tar.xz
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
Diffstat (limited to 'migrations')
-rw-r--r--migrations/2_deploy_recovery.js5
1 files changed, 5 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);
+};