UNPKG

@0xsequence/anypay-sdk

Version:

SDK for Anypay functionality

27 lines 730 B
import type { SequenceIndexerGateway } from "@0xsequence/indexer"; import type React from "react"; interface Token { id: number; name: string; symbol: string; balance: string; imageUrl: string; chainId: number; contractAddress: string; balanceUsdFormatted: string; tokenPriceUsd: number; contractInfo?: { decimals: number; symbol: string; name: string; }; } interface TokenListProps { onContinue: (selectedToken: Token) => void; onBack: () => void; indexerGatewayClient: SequenceIndexerGateway; theme?: "light" | "dark"; } export declare const TokenList: React.FC<TokenListProps>; export default TokenList; //# sourceMappingURL=TokenList.d.ts.map