Skip to content

Commit 6110ccf

Browse files
committed
(fix) Updated the official tokens JSON files URLs
1 parent ad916d4 commit 6110ccf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/common/network.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ import (
1313

1414
const (
1515
// nolint:gosec // not credentials, just the link to the public tokens list
16-
MainnetTokensListURL = "https://github.com/InjectiveLabs/injective-lists/raw/master/tokens/mainnet.json"
16+
MainnetTokensListURL = "https://github.com/InjectiveLabs/injective-lists/raw/master/json/tokens/mainnet.json"
1717
// nolint:gosec // not credentials, just the link to the public tokens list
18-
TestnetTokensListURL = "https://github.com/InjectiveLabs/injective-lists/raw/master/tokens/testnet.json"
18+
TestnetTokensListURL = "https://github.com/InjectiveLabs/injective-lists/raw/master/json/tokens/testnet.json"
1919
// nolint:gosec // not credentials, just the link to the public tokens list
20-
DevnetTokensListURL = "https://github.com/InjectiveLabs/injective-lists/raw/master/tokens/devnet.json"
20+
DevnetTokensListURL = "https://github.com/InjectiveLabs/injective-lists/raw/master/json/tokens/devnet.json"
2121
)
2222

2323
func cookieByName(cookies []*http.Cookie, key string) *http.Cookie {

0 commit comments

Comments
 (0)