@enclavemoney/enclave-wallet-sdk
Version:
A simple enclave wallet SDK for React applications
28 lines (27 loc) • 631 B
TypeScript
import React from "react";
import { ThemeMode } from "../../types/theme";
interface Token {
symbol: string;
name: string;
icon?: string;
logoURI?: string;
address: string;
chainId: number;
decimals: number;
balance?: string;
amount?: string;
chainIds?: any[];
price?: number;
priceUsd?: number;
}
declare const TransferToken: React.FC<{
onBack: () => void;
onClose: () => void;
walletSdkKey: string;
username: string;
theme?: ThemeMode;
initialToken?: Token | null;
initialAmount?: string;
initialRecipient?: string;
}>;
export default TransferToken;