UNPKG

@0xsequence/connect

Version:
14 lines 593 B
import { type TokenBalance } from '@0xsequence/indexer'; import type { Chain } from 'wagmi/chains'; export interface NativeTokenInfo { chainId: number; name: string; symbol: string; logoURI: string; decimals: number; blockExplorerUrl?: string; blockExplorerName?: string; } export declare const getNativeTokenInfoByChainId: (chainId: number, wagmiChains: readonly [Chain, ...Chain[]]) => NativeTokenInfo; export declare const createNativeTokenBalance: (chainId: number, accountAddress: string, balance?: string) => TokenBalance; //# sourceMappingURL=tokens.d.ts.map