UNPKG

@enclavemoney/enclave-wallet-playground

Version:

A simple playground for enclave wallet SDK

19 lines (18 loc) 525 B
import React from "react"; import { ThemeMode, Theme } 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; customTheme?: Theme; } declare const TokenAllocation: React.FC<TokenAllocationProps>; export default TokenAllocation;