git.delta.rocks / unique-network / refs/commits / 589437134e5d

difftreelog

chore regenerate types

Fahrrader2023-02-22parent: #a75da46.patch.diff
in: master

4 files changed

modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
713 maintenance: {713 maintenance: {
714 disable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;714 disable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
715 enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;715 enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
716 /**
717 * Execute a runtime call stored as a preimage.
718 *
719 * `weight_bound` is the maximum weight that the caller is willing
720 * to allow the extrinsic to be executed with.
721 **/
716 executePreimage: AugmentedSubmittable<(hash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;722 executePreimage: AugmentedSubmittable<(hash: H256 | string | Uint8Array, weightBound: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256, SpWeightsWeightV2Weight]>;
717 /**723 /**
718 * Generic tx724 * Generic tx
719 **/725 **/
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
2004 readonly isExecutePreimage: boolean;2004 readonly isExecutePreimage: boolean;
2005 readonly asExecutePreimage: {2005 readonly asExecutePreimage: {
2006 readonly hash_: H256;2006 readonly hash_: H256;
2007 readonly weightBound: SpWeightsWeightV2Weight;
2007 } & Struct;2008 } & Struct;
2008 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';2009 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';
2009}2010}
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
3011 _alias: {3011 _alias: {
3012 hash_: 'hash',3012 hash_: 'hash',
3013 },3013 },
3014 hash_: 'H256'3014 hash_: 'H256',
3015 weightBound: 'SpWeightsWeightV2Weight'
3015 }3016 }
3016 }3017 }
3017 },3018 },
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
3250 readonly isExecutePreimage: boolean;3250 readonly isExecutePreimage: boolean;
3251 readonly asExecutePreimage: {3251 readonly asExecutePreimage: {
3252 readonly hash_: H256;3252 readonly hash_: H256;
3253 readonly weightBound: SpWeightsWeightV2Weight;
3253 } & Struct;3254 } & Struct;
3254 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';3255 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';
3255 }3256 }