Skip to content

Commit

Permalink
Final sale deploy parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
izqui committed May 14, 2017
1 parent bf12052 commit 46de9e4
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions migrations/2_deploy_sale.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,14 @@ var SaleWallet = artifacts.require("SaleWallet");
module.exports = function(deployer, network, accounts) {
if (network.indexOf('dev') > -1) return // dont deploy on tests

const aragonMs = '0xcafE1A77e84698c83CA8931F54A755176eF75f2C'
const communityMs = aragonMs
const aragonMs = '0xcafE1A77e84698c83CA8931F54A755176eF75f2C'
const communityMs = '0xbEEFbEeF03c7E5a1C29E0Aa675f8E16AEe0A5FAd'

const initialBlock = 3687670 // edit
const finalBlock = initialBlock + 5760 * 28

// cap is 0.5 eth for secret 101
const initialBlock = 3723000
const finalBlock = 3881000

deployer.deploy(MiniMeTokenFactory);
deployer.deploy(AragonTokenSale, initialBlock, finalBlock, aragonMs, communityMs, 100, 66, 2, '0x2c8fa44fb6c1b5a01f7f02517202b78f0ec147ddb71e71fea740f6b0e422fcbe')
deployer.deploy(AragonTokenSale, initialBlock, finalBlock, aragonMs, communityMs, 100, 66, 2, '0x663fae46b5b6ef5cc01783af56194e693b71fe529ac917716e460f18f86742b6')
.then(() => {
return MiniMeTokenFactory.deployed()
.then(f => {
Expand Down

0 comments on commit 46de9e4

Please sign in to comment.