Skip to content

Commit c1ed38e

Browse files
committed
fix: $CONET balance
1 parent e48c049 commit c1ed38e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/services/listeners.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ const scanCONETDepin = async (walletAddr: string) => {
176176
return await scan_erc20_balance(
177177
walletAddr,
178178
contracts.ConetDepin.address,
179-
conetDepinProvider,
180-
contracts.ClaimableConetPoint.abi
179+
contracts.ClaimableConetPoint.abi,
180+
conetDepinProvider
181181
);
182182
};
183183

@@ -196,8 +196,8 @@ const scanETH = async (walletAddr: string) => {
196196
const scan_erc20_balance: (
197197
walletAddr: string,
198198
address: string,
199-
provider: any,
200-
abi: any
199+
abi: any,
200+
provider: any
201201
) => Promise<false | any> = (walletAddr, contractAddress, abi, provider) =>
202202
new Promise(async (resolve) => {
203203
const contract = new ethers.Contract(

0 commit comments

Comments
 (0)