Skip to content

Commit

Permalink
Hotfix/opensea token offer (#19)
Browse files Browse the repository at this point in the history
* fix opensea token offer missing API key

* update version
  • Loading branch information
Anorth1997 authored Sep 6, 2023
1 parent ded59e8 commit 030c186
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nftgo/gotrading",
"version": "1.0.5",
"version": "1.0.6",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 3 additions & 1 deletion src/modules/utils/post-order/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,9 @@ export class SeaportV1D5Handler implements IPostOrderHandler {
},
signature: order.data.signature,
protocol_address: Models.SeaportV1D5.Addresses.Exchange[Models.Utils.Network.Ethereum],
});
},
{ 'X-Api-Key': apiKey },
true);
return result;
} catch (error) {
throw error;
Expand Down

0 comments on commit 030c186

Please sign in to comment.