diff --git a/apps/arkmarket/src/app/token/[contractAddress]/[tokenId]/components/token-actions-accept-best-offer.tsx b/apps/arkmarket/src/app/token/[contractAddress]/[tokenId]/components/token-actions-accept-best-offer.tsx index ee86758c..9894d4a0 100644 --- a/apps/arkmarket/src/app/token/[contractAddress]/[tokenId]/components/token-actions-accept-best-offer.tsx +++ b/apps/arkmarket/src/app/token/[contractAddress]/[tokenId]/components/token-actions-accept-best-offer.tsx @@ -94,8 +94,8 @@ export default function TokenActionsAcceptBestOffer({ if (isAuction) { await fulfillAuction({ brokerId: env.NEXT_PUBLIC_BROKER_ID, - orderHash: BigInt(tokenMarketData.top_offer.order_hash), - relatedOrderHash: BigInt(tokenMarketData.listing.order_hash), + orderHash: BigInt(tokenMarketData.listing.order_hash), + relatedOrderHash: BigInt(tokenMarketData.top_offer.order_hash), starknetAccount: account, tokenAddress: token.collection_address, tokenId: token.token_id,