UNPKG

@atomiqlabs/sdk

Version:

atomiq labs SDK for cross-chain swaps between smart chains and bitcoin

12 lines (11 loc) 298 B
import {FeeType} from "../../enums/FeeType"; import {Fee} from "./Fee"; /** * Breakdown of fees by type (swap fee, network fee, etc.) * * @category Pricing */ export type FeeBreakdown<ChainIdentifier extends string = string> = { type: FeeType, fee: Fee<ChainIdentifier> }[];