@iotexproject/kit 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8406,8 +8406,14 @@ export interface ItemNFT {
|
|
|
8406
8406
|
type: string;
|
|
8407
8407
|
custom_image: string;
|
|
8408
8408
|
custom_metadata: any;
|
|
8409
|
+
name: string;
|
|
8410
|
+
symbol: string;
|
|
8409
8411
|
image: string;
|
|
8410
8412
|
image_detail: string;
|
|
8413
|
+
bucket_info: {
|
|
8414
|
+
key: string;
|
|
8415
|
+
value: string;
|
|
8416
|
+
}[] | null;
|
|
8411
8417
|
}
|
|
8412
8418
|
declare class NFT extends BaseDBModule {
|
|
8413
8419
|
getNFTsByAccount({ address, page, pageSize }: {
|