Skip to content

Commit

Permalink
fix(web): update invalid params (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
gershon authored Dec 6, 2024
1 parent 9a924db commit e1c7ef4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit e1c7ef4

Please sign in to comment.