@mojito-inc/secondary-market
Version:
Mojito secondary market is the platform to purchase NFT.
17 lines (16 loc) • 560 B
TypeScript
interface TransferTokenProps {
tokenId: string;
tokenType: string;
contractAddress: string;
toAddress: string;
signer: any;
walletAddress: string;
maxFeePerGas: number;
maxPriorityFeePerGas: number;
}
interface TransactionStatusProps {
status: boolean;
message: string | 'Error' | 'Reject';
}
export declare function transferToken({ tokenId, tokenType, contractAddress, toAddress, signer, walletAddress, maxFeePerGas, maxPriorityFeePerGas, }: TransferTokenProps): Promise<TransactionStatusProps | undefined>;
export {};