@xelis/sdk 0.11.13 → 0.11.15
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.
|
@@ -185,7 +185,7 @@ export interface InvokeContractPayload {
|
|
|
185
185
|
deposits: {
|
|
186
186
|
[hash: string]: ContractDeposit;
|
|
187
187
|
};
|
|
188
|
-
|
|
188
|
+
entry_id: number;
|
|
189
189
|
max_gas: number;
|
|
190
190
|
parameters: number[][];
|
|
191
191
|
}
|
|
@@ -291,7 +291,7 @@ export interface AccountHistory {
|
|
|
291
291
|
};
|
|
292
292
|
invoke_contract?: {
|
|
293
293
|
contract: string;
|
|
294
|
-
|
|
294
|
+
entry_id: number;
|
|
295
295
|
};
|
|
296
296
|
deploy_contract?: {};
|
|
297
297
|
}
|
|
@@ -490,7 +490,7 @@ export type Access = "all" | "internal" | {
|
|
|
490
490
|
export interface Module {
|
|
491
491
|
chunks: (Chunk | Access)[];
|
|
492
492
|
constants: any[];
|
|
493
|
-
|
|
493
|
+
hook_chunk_ids: number[];
|
|
494
494
|
}
|
|
495
495
|
export interface GetContractModuleResult {
|
|
496
496
|
previous_topoheight: number | null;
|
|
@@ -524,9 +524,9 @@ export interface ContractOutputRefundDeposits {
|
|
|
524
524
|
}
|
|
525
525
|
export type ContractOutput = ContractOutputRefundGas | ContractOutputTransfer | ContractOutputExitCode | ContractOutputRefundDeposits;
|
|
526
526
|
export interface TransactionResponse extends Transaction {
|
|
527
|
-
blocks: string[];
|
|
528
|
-
executed_in_block: string;
|
|
529
527
|
in_mempool: boolean;
|
|
528
|
+
blocks?: string[];
|
|
529
|
+
executed_in_block?: string;
|
|
530
530
|
first_seen?: number;
|
|
531
531
|
}
|
|
532
532
|
export interface GetMempoolParams {
|
package/package.json
CHANGED