UNPKG

@bayswap/sdk

Version:

SDK for BaySwap smart contract

16 lines (15 loc) 521 B
export interface PoolTypes { poolType: string; coinXType: string; coinYType: string; curveType: string; } export declare const parsingPoolTypes: (types: string) => PoolTypes; export declare const standardizeStakeLPType: (types: string) => string; export declare const enrichPrefixZero: (type_: string) => string; export interface StakePoolTypes { poolType: string; stakeCoinType: string; rewardCoinType: string; } export declare const parsingStakePoolTypes: (types: string) => StakePoolTypes;