@edgex-web/components
Version:
EdgeX Universal UI Components Library - Reusable React components for deposit, withdraw and other common UI patterns
24 lines (23 loc) • 791 B
TypeScript
import { default as React } from 'react';
interface WithdrawWalletViewProps {
withdrawAmount: string;
curSelectToken: string;
tokenInfo: any;
curSelectTokenData: any;
currentActiveChain: any;
currentEquity: number;
decimals: number;
platformBalance?: string;
fee?: string;
walletType?: 'evm' | 'mpc';
receiverAddress?: string;
accountType?: 'perpetual' | 'spot';
poolBalanceMap?: Record<number, string>;
onWithdrawAmountChange: (amount: string) => void;
onReceiverAddressChange?: (address: string) => void;
onAmountChanged?: (amount: string) => void;
showPoolBalanceInsufficientTip?: boolean;
}
export declare const WithdrawWalletView: React.FC<WithdrawWalletViewProps>;
export {};
//# sourceMappingURL=WalletView.d.ts.map