@salad-labs/loopz-typescript
Version:
The Official Loopz TypeScript SDK
15 lines • 426 B
TypeScript
/**
* Represents the fees associated with trading NFTs, including both a flat fee and a percentage fee.
*/
type Fee = {
/**
* @property {string} flatFee - An array of objects representing flat fees.
*/
flatFee: string;
/**
* @property {number} percentageFee - An array of objects representing percentage fees.
*/
percentageFee: number;
};
export { Fee };
//# sourceMappingURL=fee.d.ts.map