@xelis/sdk 0.11.30 → 0.11.31
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.
|
@@ -359,7 +359,11 @@ export interface AssetData {
|
|
|
359
359
|
name: string;
|
|
360
360
|
ticker: string;
|
|
361
361
|
max_supply: "none" | MaxSupplyFixed | MaxSupplyMintable;
|
|
362
|
-
owner: "none" |
|
|
362
|
+
owner: "none" | {
|
|
363
|
+
creator: AssetCreator;
|
|
364
|
+
} | {
|
|
365
|
+
owner: AssetOwner;
|
|
366
|
+
};
|
|
363
367
|
topoheight: number;
|
|
364
368
|
}
|
|
365
369
|
export interface AssetWithData extends AssetData {
|
package/package.json
CHANGED