Skip to content

Commit aeef308

Browse files
committed
fix: finance
1 parent 7b71adf commit aeef308

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sdk/sdk-legacy/core/endpoint.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const CHARTS_BACKEND_ADDRESSES: Record<number, string> = {
6565
// !& new chains
6666
};
6767

68-
const STATIC_TOKEN = "https://static.gearbox.fi/tokens/";
68+
const STATIC_TOKEN = "https://static.gearbox.finance/tokens/";
6969

7070
const LEADERBOARD_APIS: Record<number, string> = {
7171
...Object.values(CHAINS).reduce<Record<number, string>>((acc, chain) => {
@@ -115,13 +115,13 @@ export class GearboxBackendApi {
115115
account: Address,
116116
) => {
117117
const path = `${network}_${root.slice(2)}/${account.slice(2, 4)}`;
118-
const url = `https://am.gearbox.fi/${path.toLowerCase()}.json`;
118+
const url = `https://am.gearbox.finance/${path.toLowerCase()}.json`;
119119

120120
return url;
121121
};
122122

123123
static getNFTMerkleUrl = (network: NetworkType, root: Address) => {
124-
const url = `https://dm.gearbox.fi/${network.toLowerCase()}_${root}.json`;
124+
const url = `https://dm.gearbox.finance/${network.toLowerCase()}_${root}.json`;
125125

126126
return url;
127127
};

0 commit comments

Comments
 (0)