UNPKG

rubic-sdk

Version:
16 lines (15 loc) 388 B
import { TokenAmount } from "../../../../../../common/tokens"; export interface OnChainPlatformFee { percent: number; token: TokenAmount; } export interface OnChainProxyFeeInfo { /** * Fee in native token, attached as additional value. */ fixedFeeToken: TokenAmount; /** * Fee in percents of source token. */ platformFee: OnChainPlatformFee; }