mirror of
https://github.com/arnaucube/miksi-core.git
synced 2026-02-07 11:36:47 +01:00
8 lines
269 B
JavaScript
8 lines
269 B
JavaScript
const DepositVerifier = artifacts.require("../test/build/DepositVerifier");
|
|
const WithdrawVerifier = artifacts.require("../test/build/WithdrawVerifier");
|
|
|
|
module.exports = function(deployer) {
|
|
deployer.deploy(DepositVerifier);
|
|
deployer.deploy(WithdrawVerifier);
|
|
};
|