chore: update deploy scripts
This commit is contained in:
parent
3ce9856d5b
commit
a92bb0d950
|
@ -9,14 +9,14 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
|
|||
|
||||
const poseidonHasherAddress = (await deployments.get("PoseidonHasher"))
|
||||
.address;
|
||||
const rlnVerifierAddress = (await deployments.get("Verifier")).address;
|
||||
|
||||
await deploy("RLN", {
|
||||
from: deployer,
|
||||
log: true,
|
||||
args: [1000000000000000, 20, poseidonHasherAddress, rlnVerifierAddress],
|
||||
args: [[], poseidonHasherAddress],
|
||||
});
|
||||
};
|
||||
|
||||
export default func;
|
||||
func.tags = ["RLN"];
|
||||
func.dependencies = ["PoseidonHasher", "RlnVerifier"];
|
||||
func.dependencies = ["PoseidonHasher"];
|
|
@ -1,16 +0,0 @@
|
|||
import { HardhatRuntimeEnvironment } from "hardhat/types";
|
||||
import { DeployFunction } from "hardhat-deploy/types";
|
||||
|
||||
const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
|
||||
const { deployments, getUnnamedAccounts } = hre;
|
||||
const { deploy } = deployments;
|
||||
|
||||
const [deployer] = await getUnnamedAccounts();
|
||||
|
||||
await deploy("Verifier", {
|
||||
from: deployer,
|
||||
log: true,
|
||||
});
|
||||
};
|
||||
export default func;
|
||||
func.tags = ["RlnVerifier"];
|
Loading…
Reference in New Issue