Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use UTL API directly for address token info #298

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/components/common/Address.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import React from 'react';
import { useState } from 'react';
import useAsyncEffect from 'use-async-effect';

import { getTokenInfo } from '@/app/utils/token-info';
import { getTokenInfoWithoutOnChainFallback } from '@/app/utils/token-info';

import { Copyable } from './Copyable';

Expand Down Expand Up @@ -125,7 +125,7 @@ const useTokenInfo = (fetchTokenLabelInfo: boolean | undefined, pubkey: string)
if (!fetchTokenLabelInfo) return;
if (!info) {
try {
const token = await getTokenInfo(new PublicKey(pubkey), cluster, url);
const token = await getTokenInfoWithoutOnChainFallback(new PublicKey(pubkey), cluster);
if (isMounted()) {
setInfo(token);
}
Expand Down
36 changes: 33 additions & 3 deletions app/utils/token-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,36 @@ export async function getTokenInfo(
return token;
}

type UtlApiResponse = {
content: Token[]
}

export async function getTokenInfoWithoutOnChainFallback(
address: PublicKey,
cluster: Cluster
): Promise<Token | undefined> {
const chainId = getChainId(cluster);
if (!chainId) return undefined;

// Request token info directly from UTL API
// We don't use the SDK here because we don't want it to fallback to an on-chain request
const response = await fetch(`https://token-list-api.solana.cloud/v1/mints?chainId=${chainId}`, {
body: JSON.stringify({ addresses: [address.toBase58()] }),
headers: {
"Content-Type": "application/json",
},
method: 'POST',
})

if (response.status >= 400) {
console.error(`Error calling UTL API for address ${address} on chain ID ${chainId}. Status ${response.status}`);
return undefined
}

const fetchedData = await response.json() as UtlApiResponse;
return fetchedData.content[0];
}

async function getFullLegacyTokenInfoUsingCdn(
address: PublicKey,
chainId: ChainId
Expand Down Expand Up @@ -111,9 +141,9 @@ export async function getFullTokenInfo(
if (!sdkTokenInfo) {
return legacyCdnTokenInfo
? {
...legacyCdnTokenInfo,
verified: true,
}
...legacyCdnTokenInfo,
verified: true,
}
: undefined;
}

Expand Down