@mojito-inc/secondary-market
Version:
Mojito secondary market is the platform to purchase NFT.
17 lines (16 loc) • 764 B
TypeScript
import { WalletType } from '../interface';
export interface PaymentDetailsContainerProps {
totalPrice: string;
ethIcon?: string;
transactionHash: string;
walletAddress: string;
copied: string;
referenceNumber: string;
onClickViewOnEtherScan: () => void;
onClickCopyReference: () => void;
onClickCopyHash: () => void;
onClickCopyWalletAddress: () => void;
walletType?: WalletType;
}
declare const PaymentDetailsContainer: ({ totalPrice, ethIcon, transactionHash, walletAddress, referenceNumber, copied, onClickCopyReference, onClickCopyHash, onClickCopyWalletAddress, onClickViewOnEtherScan, walletType, }: PaymentDetailsContainerProps) => import("react/jsx-runtime").JSX.Element;
export default PaymentDetailsContainer;