mirror of
https://github.com/fluencelabs/lazy-snark
synced 2025-04-25 06:52:14 +00:00
13 lines
383 B
JavaScript
13 lines
383 B
JavaScript
var Verifier = artifacts.require('Verifier');
|
|
var VerifierProxy = artifacts.require('VerifierProxy');
|
|
var Lazy = artifacts.require('Lazy');
|
|
|
|
|
|
module.exports = async function(deployer, network, accounts) {
|
|
deployer.then(async() => {
|
|
await deployer.deploy(Verifier)
|
|
await deployer.deploy(VerifierProxy, Verifier.address)
|
|
await deployer.deploy(Lazy, VerifierProxy.address)
|
|
})
|
|
}
|