Skip to content

Commit 0638970

Browse files
authored
fix: make getNFT owners an array (#1449)
* fix: make getNFT "owners" an array * bump package.json version
1 parent ec5f119 commit 0638970

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opensea-js",
3-
"version": "7.1.6",
3+
"version": "7.1.7",
44
"description": "TypeScript SDK for the OpenSea marketplace helps developers build new experiences using NFTs and our marketplace data",
55
"license": "MIT",
66
"author": "OpenSea Developers",

src/api/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export type NFT = {
227227
owners: {
228228
address: string;
229229
quantity: number;
230-
};
230+
}[];
231231
/** Rarity of the NFT */
232232
rarity: null | {
233233
strategy_id: string | null;

0 commit comments

Comments
 (0)