mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-11-22 09:47:13 +01:00
22 lines
596 B
JavaScript
22 lines
596 B
JavaScript
// Generates Hasher artifact at compile-time using Truffle's external compiler
|
|
// mechanism
|
|
const path = require('path')
|
|
const fs = require('fs')
|
|
const genContract = require('circomlib/src/mimcsponge_gencontract.js')
|
|
|
|
// where Truffle will expect to find the results of the external compiler
|
|
// command
|
|
const outputPath = path.join(__dirname, '..', 'build', 'Hasher.json')
|
|
|
|
function main() {
|
|
const contract = {
|
|
contractName: 'Hasher',
|
|
abi: genContract.abi,
|
|
bytecode: genContract.createCode('mimcsponge', 220),
|
|
}
|
|
|
|
fs.writeFileSync(outputPath, JSON.stringify(contract))
|
|
}
|
|
|
|
main()
|