@xelis/sdk 0.11.42 → 0.11.43
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 -1
- package/package.json +1 -1
|
@@ -842,7 +842,17 @@ export interface ContractLogScheduledExecution {
|
|
|
842
842
|
value: {
|
|
843
843
|
contract: string;
|
|
844
844
|
hash: string;
|
|
845
|
-
kind:
|
|
845
|
+
kind: {
|
|
846
|
+
topo_height: {
|
|
847
|
+
topoheight: number;
|
|
848
|
+
};
|
|
849
|
+
} | {
|
|
850
|
+
block_end: {
|
|
851
|
+
chunk_id: number;
|
|
852
|
+
max_gas: number;
|
|
853
|
+
params: [];
|
|
854
|
+
};
|
|
855
|
+
};
|
|
846
856
|
};
|
|
847
857
|
}
|
|
848
858
|
export interface ContractLogExitPayload {
|
package/package.json
CHANGED