@xelis/sdk 0.11.34 → 0.11.35
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.
|
@@ -431,13 +431,17 @@ export interface MaxSupplyMintable {
|
|
|
431
431
|
}
|
|
432
432
|
export type MaxSupplyMode = "none" | MaxSupplyFixed | MaxSupplyMintable;
|
|
433
433
|
export interface AssetOwnerCreator {
|
|
434
|
-
|
|
435
|
-
|
|
434
|
+
creator: {
|
|
435
|
+
contract: string;
|
|
436
|
+
id: number;
|
|
437
|
+
};
|
|
436
438
|
}
|
|
437
439
|
export interface AssetOwnerOwner {
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
440
|
+
owner: {
|
|
441
|
+
origin: string;
|
|
442
|
+
origin_id: number;
|
|
443
|
+
owner: string;
|
|
444
|
+
};
|
|
441
445
|
}
|
|
442
446
|
export type AssetOwner = "none" | AssetOwnerCreator | AssetOwnerOwner;
|
|
443
447
|
export interface AssetData {
|
package/package.json
CHANGED