File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- import { getCoingecoNetworkId } from '~/utils/chains'
1
+ import { getCoingeckoNetworkId } from '~/utils/chains'
2
2
3
3
const BASE_URL = 'https://streamr-public.s3.amazonaws.com/truswallet-assets/blockchains'
4
4
5
5
export const getTokenLogoUrl = (
6
6
tokenContractAddress : string ,
7
7
chainId : number ,
8
8
) : string => {
9
- const networkId = getCoingecoNetworkId ( chainId )
9
+ const networkId = getCoingeckoNetworkId ( chainId )
10
10
11
11
/**
12
12
* For more details see:
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ export function getMarketplaceChainConfigs(
198
198
return result
199
199
}
200
200
201
- export function getCoingecoNetworkId ( chainIdOrChainKey : ChainKey | number ) {
201
+ export function getCoingeckoNetworkId ( chainIdOrChainKey : ChainKey | number ) {
202
202
const { config, configExtension } = getChainEntry ( getChainKey ( chainIdOrChainKey ) )
203
203
204
204
return configExtension . coingeckoNetworkId || config . name
You can’t perform that action at this time.
0 commit comments