@xelis/sdk 0.11.34 → 0.11.36
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/types/daemon/types.d.ts +11 -5
- package/package.json +1 -1
|
@@ -316,6 +316,8 @@ export interface Transaction {
|
|
|
316
316
|
data: TransactionData;
|
|
317
317
|
fee: number;
|
|
318
318
|
fee_limit: number;
|
|
319
|
+
fee_paid: number;
|
|
320
|
+
fee_refund: number;
|
|
319
321
|
nonce: number;
|
|
320
322
|
source_commitments: SourceCommitment[];
|
|
321
323
|
range_proof: number[];
|
|
@@ -431,13 +433,17 @@ export interface MaxSupplyMintable {
|
|
|
431
433
|
}
|
|
432
434
|
export type MaxSupplyMode = "none" | MaxSupplyFixed | MaxSupplyMintable;
|
|
433
435
|
export interface AssetOwnerCreator {
|
|
434
|
-
|
|
435
|
-
|
|
436
|
+
creator: {
|
|
437
|
+
contract: string;
|
|
438
|
+
id: number;
|
|
439
|
+
};
|
|
436
440
|
}
|
|
437
441
|
export interface AssetOwnerOwner {
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
442
|
+
owner: {
|
|
443
|
+
origin: string;
|
|
444
|
+
origin_id: number;
|
|
445
|
+
owner: string;
|
|
446
|
+
};
|
|
441
447
|
}
|
|
442
448
|
export type AssetOwner = "none" | AssetOwnerCreator | AssetOwnerOwner;
|
|
443
449
|
export interface AssetData {
|
package/package.json
CHANGED