Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions smartcontracts/scripts/deploy-geod.ts
Original file line number Diff line number Diff line change
@@ -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 => {
Expand Down
Loading