diff --git a/src/components/chain/Market.js b/src/components/chain/Market.js index 2375448..aea4ed7 100644 --- a/src/components/chain/Market.js +++ b/src/components/chain/Market.js @@ -95,16 +95,13 @@ export class ImtblMarket { orderSignature, currencyAmount ){ - const amount = (BigInt(currencyAmount) * 2n / 100n).toString() + // const amount = (BigInt(currencyAmount) * 2n / 100n).toString() const order = await this.client.createListing({ orderComponents: preparedListing.orderComponents, orderHash: preparedListing.orderHash, orderSignature, // Optional maker marketplace fee - makerFees: [{ - amount, - recipientAddress: makeFeeAddress, // Replace address with your own marketplace address - }], + makerFees: [], }); console.log('order:', order); return order