UNPKG

@lifi/widget

Version:

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

18 lines (17 loc) 428 B
import type { TokenAmount } from '@lifi/sdk'; import type { WidgetContract } from '../../types'; export interface NFTBaseProps { imageUrl?: string; collectionName?: string; assetName?: string; isLoading?: boolean; owner?: NFTOwner; token?: TokenAmount; } export interface NFTProps extends NFTBaseProps { contract?: WidgetContract; } export interface NFTOwner { name?: string; url?: string; }