UNPKG

@multiversx/sdk-dapp-swap

Version:

A library to hold the main logic for swapping between tokens on the MultiversX blockchain

16 lines 488 B
import { AssetsType, UserEsdtType } from './tokens.types'; export interface SelectOptionType { label: string; value: string; token: UserEsdtType; assets?: AssetsType; } export declare type TokenOptionType = SelectOptionType; export declare enum SwapFormValuesEnum { firstToken = "firstToken", secondToken = "secondToken", firstAmount = "firstAmount", secondAmount = "secondAmount", activeRoute = "activeRoute" } //# sourceMappingURL=form.types.d.ts.map