2019-07-12 11:04:45 -04:00
|
|
|
require('dotenv').config({ path: '../.env' })
|
|
|
|
const Mixer = artifacts.require("Mixer");
|
|
|
|
const Verifier = artifacts.require("Verifier");
|
|
|
|
const MiMC = artifacts.require("MiMC");
|
|
|
|
|
|
|
|
|
|
|
|
module.exports = function(deployer) {
|
|
|
|
return deployer.then(async () => {
|
|
|
|
const { MERKLE_TREE_HEIGHT, AMOUNT, EMPTY_ELEMENT } = process.env
|
|
|
|
const verifier = await Verifier.deployed()
|
2019-07-12 18:26:27 -04:00
|
|
|
const miMC = await MiMC.deployed()
|
2019-07-12 11:04:45 -04:00
|
|
|
await Mixer.link(MiMC, miMC.address)
|
|
|
|
await deployer.deploy(Mixer, verifier.address, AMOUNT, MERKLE_TREE_HEIGHT, EMPTY_ELEMENT)
|
|
|
|
})
|
|
|
|
};
|