rubic-sdk
Version:
Simplify dApp creation
16 lines (15 loc) • 403 B
TypeScript
import { PriceTokenAmount } from "../../../../../../common/tokens";
export interface OnChainPlatformFee {
percent: number;
token: PriceTokenAmount;
}
export interface OnChainProxyFeeInfo {
/**
* Fee in native token, attached as additional value.
*/
fixedFeeToken: PriceTokenAmount;
/**
* Fee in percents of source token.
*/
platformFee: OnChainPlatformFee;
}