Skip to content

How can i get the transaction hash after fulfilling an order #696

Closed Answered by bymi15
bymi15 asked this question in Q&A

You must be logged in to vote

Found a workaround where i retrieve the actions and execute the transaction individually:

const { actions } = await seaport.fulfillOrder({
        order,
        accountAddress: fulfiller,
});

for (const action of actions) {
  const tx = await action.transactionMethods.transact();
  console.log(tx.hash);
}

Replies: 1 comment

You must be logged in to vote
0 replies
Answer selected by bymi15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant