UNPKG

soso-widget

Version:

LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.

17 lines (16 loc) 392 B
import type { ContractCall, TokenAmount } from '@lifi/sdk'; export interface NFTBaseProps { imageUrl?: string; collectionName?: string; assetName?: string; isLoading?: boolean; owner?: NFTOwner; token: TokenAmount; } export interface NFTProps extends NFTBaseProps { contractCall?: ContractCall; } export interface NFTOwner { name?: string; url?: string; }