Royalties and Fee Configuration
0x v4 supports configurable royalties and fees.
Usage
interface Fee {
recipient: string // The address to send the fee to
amount: string // The amount (based in the same erc20Token) to charge for fee
feeData?: string | undefined; // optional feeData callback
}Example Code Implementing Fees
Last updated