@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.
20 lines (16 loc) • 367 B
text/typescript
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
}