From 49169b059b78ad2fa3dbf41d107f3b0a6ece6655 Mon Sep 17 00:00:00 2001 From: nanli777torn Date: Sun, 8 Jun 2025 16:30:50 +0300 Subject: [PATCH 1/3] Update src/constants.js --- src/constants.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/constants.js b/src/constants.js index 01466c1..fa5b376 100644 --- a/src/constants.js +++ b/src/constants.js @@ -24,6 +24,15 @@ const networkConfig = { }, nativeCurrency: 'bnb', }, + netId61: { + gasPrices: { + instant: 1, + fast: 1, + standard: , + low: 51, + }, + nativeCurrency: 'etc', + }, netId10: { gasPrices: { instant: 0.001, -- 2.45.2 From 9e3774aacac88a9255cd2ea5ea90ec2e8968b399 Mon Sep 17 00:00:00 2001 From: nanli777torn Date: Sun, 8 Jun 2025 16:44:24 +0300 Subject: [PATCH 2/3] add etc proxyLight --- src/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.js b/src/config.js index 3e576f4..db03237 100644 --- a/src/config.js +++ b/src/config.js @@ -21,7 +21,7 @@ module.exports = { tornadoServiceFee: Number(process.env.RELAYER_FEE), rewardAccount: process.env.REWARD_ACCOUNT, gasPrices, - proxyLight, + proxyLight: netId == 61 ? '0xac97AB4fBd872ea762974CbBB0Ee72351afe16F3' : proxyLight, nativeCurrency, minimumBalance: netId === 137 || netId === 43114 ? '10000000000000000000' : '100000000000000000', // 10 or 0.1 } -- 2.45.2 From f828de7979bd611173367d451846ea01ac41eba6 Mon Sep 17 00:00:00 2001 From: nanli777torn Date: Mon, 9 Jun 2025 16:08:45 +0300 Subject: [PATCH 3/3] update etc --- src/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants.js b/src/constants.js index fa5b376..de64ab3 100644 --- a/src/constants.js +++ b/src/constants.js @@ -28,8 +28,8 @@ const networkConfig = { gasPrices: { instant: 1, fast: 1, - standard: , - low: 51, + standard: 1, + low: 1, }, nativeCurrency: 'etc', }, -- 2.45.2