@first-ledger/kit-adapter
Version:
A streamlined toolkit for querying and parsing blockchain network data, encompassing account details, transactions, and metadata, using nu-client with built-in caching for enhanced performance and access efficiency.
20 lines (19 loc) • 326 B
text/typescript
export interface TokenItem {
name?: string;
ticker: string;
balance: string;
contract?: string;
issuer?: string;
img?: string;
price?: string;
value?: string;
hex?: string;
meta: {
isNative: boolean;
isLPToken: boolean;
xrpl?: {
pool?: undefined;
details?: undefined;
};
};
}