@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
16 lines (15 loc) • 471 B
TypeScript
import React from 'react';
import type { Address } from 'viem';
interface WithdrawSuccessProps {
depositAddress: Address;
amount: number;
token: string;
tokenIconSrc: string;
chainId: string;
txHash: string;
bottomBarId: string;
onNewWithdrawal: () => void;
onClose: () => void;
}
export declare const WithdrawSuccess: ({ depositAddress, bottomBarId, onNewWithdrawal, onClose, }: WithdrawSuccessProps) => React.JSX.Element;
export {};