mirror of
https://github.com/fluencelabs/lazy-snark
synced 2025-06-17 17:01:35 +00:00
test solidity-zokratos integration
This commit is contained in:
@ -1,5 +1,12 @@
|
||||
var Verifier = artifacts.require('verifier');
|
||||
var VerifierProxy = artifacts.require('VerifierProxy');
|
||||
var Lazy = artifacts.require('Lazy');
|
||||
|
||||
module.exports = function(deployer) {
|
||||
deployer.deploy(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)
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user