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 => {