UNPKG

@enclavemoney/enclave-wallet-sdk

Version:

A simple enclave wallet SDK for React applications

16 lines (15 loc) 426 B
import React from "react"; interface NetworkAllocation { name: string; chainId: number; amount: string; } interface TokenAllocationProps { selectedNetworks: string[]; fromToken: any; onBack: () => void; onDone: (allocations: NetworkAllocation[]) => void; initialAllocations?: NetworkAllocation[]; } declare const TokenAllocation: React.FC<TokenAllocationProps>; export default TokenAllocation;