From c40a0ace05bfe73f1016e86b8042fa7751558ec4 Mon Sep 17 00:00:00 2001 From: huangzhiran Date: Mon, 17 Feb 2025 18:58:43 +0800 Subject: [PATCH] add movement contract deploy script --- smartcontracts/scripts/deploy-geod.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/smartcontracts/scripts/deploy-geod.ts b/smartcontracts/scripts/deploy-geod.ts index e46ac136..2e1ebf41 100644 --- a/smartcontracts/scripts/deploy-geod.ts +++ b/smartcontracts/scripts/deploy-geod.ts @@ -1,9 +1,9 @@ import { ethers, upgrades } from 'hardhat'; async function main() { - const GeodnetDapp = await ethers.deployContract('GeodnetDapp', [process.env.MOVEMENT_VERIFIER_ADDR, process.env.MARSHALDAO_TICKER_ADDR]); + const GeodnetDapp = await ethers.deployContract('Verifier', []); await GeodnetDapp.waitForDeployment(); - console.log(`GeodnetDapp deployed to ${GeodnetDapp.target}`); + console.log(`Geodnet batch deployed to ${GeodnetDapp.target}`); } main().catch(err => {