@enclavemoney/enclave-wallet-sdk
Version:
A simple enclave wallet SDK for React applications
18 lines (17 loc) • 493 B
TypeScript
import React from "react";
import { ThemeMode } from "../types/theme";
interface NetworkAllocation {
name: string;
chainId: number;
amount: string;
}
interface TokenAllocationProps {
selectedNetworks: string[];
fromToken: any;
onBack: () => void;
onDone: (allocations: NetworkAllocation[]) => void;
initialAllocations?: NetworkAllocation[];
theme?: ThemeMode;
}
declare const TokenAllocation: React.FC<TokenAllocationProps>;
export default TokenAllocation;