Skip to content

Commit

Permalink
fix: make getNFT owners an array (#1449)
Browse files Browse the repository at this point in the history
* fix: make getNFT "owners" an array

* bump package.json version
  • Loading branch information
ryanio authored Apr 17, 2024
1 parent ec5f119 commit 0638970
Show file tree
Hide file tree
Showing 2 changed files with 2 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": "opensea-js",
"version": "7.1.6",
"version": "7.1.7",
"description": "TypeScript SDK for the OpenSea marketplace helps developers build new experiences using NFTs and our marketplace data",
"license": "MIT",
"author": "OpenSea Developers",
Expand Down
2 changes: 1 addition & 1 deletion src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export type NFT = {
owners: {
address: string;
quantity: number;
};
}[];
/** Rarity of the NFT */
rarity: null | {
strategy_id: string | null;
Expand Down

0 comments on commit 0638970

Please sign in to comment.