From 55c7031ff797e1765db7db4340413819e1a71597 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Tue, 29 Oct 2024 12:56:39 +0300 Subject: [PATCH] gateway testnet --- examples/hello/package.json | 4 ++-- examples/hello/tasks/deploy.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/hello/package.json b/examples/hello/package.json index 658706bf..d597e549 100644 --- a/examples/hello/package.json +++ b/examples/hello/package.json @@ -7,7 +7,7 @@ "test": "echo \"Error: no test specified\" && exit 1", "lint:fix": "npx eslint . --ext .js,.ts --fix", "lint": "npx eslint . --ext .js,.ts", - "deploy": "npx hardhat compile --force && npx hardhat deploy --network localhost && npx hardhat deploy --name Echo --network localhost --gateway 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0" + "deploy": "npx hardhat compile --force && npx hardhat deploy --network zeta_testnet && npx hardhat deploy --name Echo --network base_sepolia --gateway 0x4f8b2c28a670ae47049fae0a114af0204752df0d" }, "keywords": [], "author": "", @@ -59,4 +59,4 @@ "@solana/web3.js": "^1.95.2", "@zetachain/protocol-contracts": "10.0.0-rc10" } -} +} \ No newline at end of file diff --git a/examples/hello/tasks/deploy.ts b/examples/hello/tasks/deploy.ts index 877d2b34..ee1cce45 100644 --- a/examples/hello/tasks/deploy.ts +++ b/examples/hello/tasks/deploy.ts @@ -32,5 +32,5 @@ task("deploy", "Deploy the contract", main) .addOptionalParam( "gateway", "Gateway address (default: ZetaChain Gateway)", - "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0" + "0x6c533f7fe93fae114d0954697069df33c9b74fd7" );