Skip to content

Commit

Permalink
fix(web): user can accept auction offer (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
gershon authored Dec 6, 2024
1 parent cf36e29 commit 75a0141
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ const AcceptOffer: React.FC<AcceptOfferProps> = ({
if (isListed && listing.is_auction) {
await fulfillAuction({
brokerId: env.NEXT_PUBLIC_BROKER_ID,
orderHash: listing.order_hash,
relatedOrderHash: offerOrderHash,
orderHash: BigInt(listing.order_hash),
relatedOrderHash: BigInt(offerOrderHash),
starknetAccount: account,
startAmount: offerPrice,
tokenAddress: collectionAddress,
Expand Down

0 comments on commit 75a0141

Please sign in to comment.