Skip to content
This repository was archived by the owner on Aug 30, 2022. It is now read-only.

Commit 72b41bd

Browse files
Fix fetching NFTs where names are numbers (#557)
* Fix fetching NFTs where names are numbers * v2.3.39-0
1 parent b52f56b commit 72b41bd

File tree

5 files changed

+88
-70
lines changed

5 files changed

+88
-70
lines changed

docs/sdk.pack.create.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Create Pack
1212
create(metadataWithRewards: PackMetadataInput): Promise<TransactionResultWithId<{
1313
metadata: {
1414
[x: string]: import("../core/types").Json;
15-
name?: string | undefined;
15+
name?: string | number | undefined;
1616
description?: string | null | undefined;
1717
image?: string | null | undefined;
1818
external_url?: string | null | undefined;
@@ -32,7 +32,7 @@ create(metadataWithRewards: PackMetadataInput): Promise<TransactionResultWithId<
3232

3333
<b>Returns:</b>
3434

35-
Promise&lt;[TransactionResultWithId](./sdk.transactionresultwithid.md)<!-- -->&lt;{ metadata: { \[x: string\]: import("../core/types").[Json](./sdk.json.md)<!-- -->; name?: string \| undefined; description?: string \| null \| undefined; image?: string \| null \| undefined; external\_url?: string \| null \| undefined; animation\_url?: string \| null \| undefined; uri: string; id: BigNumber; }; supply: BigNumber; }&gt;&gt;
35+
Promise&lt;[TransactionResultWithId](./sdk.transactionresultwithid.md)<!-- -->&lt;{ metadata: { \[x: string\]: import("../core/types").[Json](./sdk.json.md)<!-- -->; name?: string \| number \| undefined; description?: string \| null \| undefined; image?: string \| null \| undefined; external\_url?: string \| null \| undefined; animation\_url?: string \| null \| undefined; uri: string; id: BigNumber; }; supply: BigNumber; }&gt;&gt;
3636

3737
## Remarks
3838

0 commit comments

Comments
 (0)