@xelis/sdk 0.11.38 → 0.11.39
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.
|
@@ -636,7 +636,7 @@ export type Access = "all" | "internal" | {
|
|
|
636
636
|
export interface Module {
|
|
637
637
|
chunks: (Chunk | Access)[];
|
|
638
638
|
constants: any[];
|
|
639
|
-
|
|
639
|
+
hook_chunk_ids: number[];
|
|
640
640
|
}
|
|
641
641
|
export interface GetContractModuleResult {
|
|
642
642
|
previous_topoheight: number | null;
|
|
@@ -755,7 +755,7 @@ export interface GetContractScheduledExecutionsAtTopoheightParams {
|
|
|
755
755
|
export interface ScheduledExecution {
|
|
756
756
|
hash: string;
|
|
757
757
|
contract: string;
|
|
758
|
-
|
|
758
|
+
chunk_id: number;
|
|
759
759
|
params: any[];
|
|
760
760
|
max_gas: number;
|
|
761
761
|
}
|
package/package.json
CHANGED