Skip to content

Commit

Permalink
chore: fix seaport version
Browse files Browse the repository at this point in the history
  • Loading branch information
chybisov committed May 5, 2023
1 parent 7f20d8a commit 94e0e8c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ export const NFTOpenSea: React.FC<NFTOpenSeaProps> = ({

const fulfillOrder = async () => {
try {
const seaport = new Seaport(account.signer as any);
const seaport = new Seaport(account.signer as any, {
seaportVersion: '1.5',
});

const { actions } = await seaport.fulfillOrder({
order: order.protocolData,
Expand Down

0 comments on commit 94e0e8c

Please sign in to comment.