From afb58622eee921bd609627487a156a8b0189cc0c Mon Sep 17 00:00:00 2001 From: xtools-at Date: Tue, 23 Jan 2024 18:15:42 +0100 Subject: [PATCH 1/2] chore: checksum addresses --- constants/tokenConfig.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/constants/tokenConfig.js b/constants/tokenConfig.js index c89d611d..34ef53ee 100755 --- a/constants/tokenConfig.js +++ b/constants/tokenConfig.js @@ -111,7 +111,7 @@ module.exports = { minGas: 10000000, }, DomiProxyOFT: { - address: "0x45c2f8c9b4c0bdc76200448cc26c48ab6ffef83f", + address: "0x45C2F8c9B4c0bDC76200448cc26C48ab6ffef83F", withFee: true, minGas: 10000000, }, @@ -183,7 +183,7 @@ module.exports = { }, bsc: { DomiProxyOFT: { - address: "0xbbca42c60b5290f2c48871a596492f93ff0ddc82", + address: "0xBBCA42c60b5290F2c48871A596492F93fF0Ddc82", withFee: true, minGas: 10000000, }, From e867fd3d12f8215964b2c790044b718862dc9da5 Mon Sep 17 00:00:00 2001 From: xtools-at Date: Tue, 20 Feb 2024 15:14:35 +0100 Subject: [PATCH 2/2] fix: typo in nft send command --- tasks/index.js | 2 +- tasks/{sendONFT712.js => sendONFT721.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tasks/{sendONFT712.js => sendONFT721.js} (100%) diff --git a/tasks/index.js b/tasks/index.js index a3013f55..e48d8772 100644 --- a/tasks/index.js +++ b/tasks/index.js @@ -99,7 +99,7 @@ task("ownerOf", "ownerOf(tokenId) to get the owner of a token", require("./owner .addParam("tokenId", "the tokenId of ONFT") // -task("sendONFT712", "send an ONFT nftId from one chain to another", require("./sendONFT712")) +task("sendONFT721", "send an ONFT nftId from one chain to another", require("./sendONFT721")) .addParam("tokenId", "the tokenId of ONFT") .addParam("targetNetwork", "the chainId to transfer to") .addParam("contract", "ONFT contract name") diff --git a/tasks/sendONFT712.js b/tasks/sendONFT721.js similarity index 100% rename from tasks/sendONFT712.js rename to tasks/sendONFT721.js