mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-11-22 09:47:13 +01:00
22 lines
692 B
JavaScript
22 lines
692 B
JavaScript
/* global artifacts */
|
|
const path = require('path')
|
|
|
|
const genContract = require('circomlib/src/mimcsponge_gencontract.js')
|
|
const Artifactor = require('@truffle/artifactor')
|
|
|
|
module.exports = function(deployer) {
|
|
return deployer.then( async () => {
|
|
const contractsDir = path.join(__dirname, '..', 'build/contracts')
|
|
let artifactor = new Artifactor(contractsDir)
|
|
let contractName = 'Hasher'
|
|
await artifactor.save({
|
|
contractName,
|
|
abi: genContract.abi,
|
|
unlinked_binary: genContract.createCode('mimcsponge', 220),
|
|
}).then(async () => {
|
|
const hasherContract = artifacts.require(contractName)
|
|
await deployer.deploy(hasherContract)
|
|
})
|
|
})
|
|
}
|