rubic-sdk
Version:
Simplify dApp creation
16 lines (15 loc) • 388 B
TypeScript
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;
}