Skip to content

Commit 2bff05a

Browse files
committed
chore: remove unnecessary log
1 parent 55c029e commit 2bff05a

File tree

2 files changed

+12
-15
lines changed

2 files changed

+12
-15
lines changed

src/adapters/axelar/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ const adapter: BridgeAdapter = {
353353
blast: constructParams("blast"),
354354
bsc: constructParams("bsc"),
355355
celo: constructParams("celo"),
356-
cfg: constructParams("cfg"), //cfg
356+
cfg: constructParams("centrifuge"), //cfg
357357
ethereum: constructParams("ethereum"),
358358
fantom: constructParams("fantom"),
359359
filecoin: constructParams("filecoin"),

src/adapters/squid/utils.ts

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -120,20 +120,17 @@ const getSymbol = (rawSymbol: string) => {
120120
}
121121

122122
export const fetchAssets = () => {
123-
return retry(() =>
124-
fetch("https://api.axelarscan.io/", {
125-
method: "POST",
126-
headers: {
127-
"Content-Type": "application/json",
128-
},
129-
body: JSON.stringify({
130-
method: "getAssets",
131-
}),
132-
}).then((res: any) => {
133-
console.log(res, 'the res')
134-
res.json()
135-
})
136-
);
123+
return retry(() =>
124+
fetch("https://api.axelarscan.io/", {
125+
method: "POST",
126+
headers: {
127+
"Content-Type": "application/json",
128+
},
129+
body: JSON.stringify({
130+
method: "getAssets",
131+
}),
132+
}).then((res: any) => res.json())
133+
);
137134
}
138135

139136
export const isStablecoin = (tokenAddress: string, chain: string) => {

0 commit comments

Comments
 (0)