git.delta.rocks / unique-network / refs/commits / 33f82c3619f8

difftreelog

chore regenerate types

Daniel Shiposha2022-11-28parent: #cc3ebd7.patch.diff
in: master

6 files changed

modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
82 appPromotionDailyRate: Perbill & AugmentedConst<ApiType>;82 appPromotionDailyRate: Perbill & AugmentedConst<ApiType>;
83 dayRelayBlocks: u32 & AugmentedConst<ApiType>;83 dayRelayBlocks: u32 & AugmentedConst<ApiType>;
84 defaultMinGasPrice: u64 & AugmentedConst<ApiType>;84 defaultMinGasPrice: u64 & AugmentedConst<ApiType>;
85<<<<<<< HEAD
85 defaultWeightToFeeCoefficient: u32 & AugmentedConst<ApiType>;86 defaultWeightToFeeCoefficient: u32 & AugmentedConst<ApiType>;
86 maxXcmAllowedLocations: u32 & AugmentedConst<ApiType>;87 maxXcmAllowedLocations: u32 & AugmentedConst<ApiType>;
88=======
89 defaultWeightToFeeCoefficient: u64 & AugmentedConst<ApiType>;
90>>>>>>> chore: regenerate types
87 /**91 /**
88 * Generic const92 * Generic const
89 **/93 **/
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
162 configuration: {162 configuration: {
163 appPromomotionConfigurationOverride: AugmentedQuery<ApiType, () => Observable<PalletConfigurationAppPromotionConfiguration>, []> & QueryableStorageEntry<ApiType, []>;163 appPromomotionConfigurationOverride: AugmentedQuery<ApiType, () => Observable<PalletConfigurationAppPromotionConfiguration>, []> & QueryableStorageEntry<ApiType, []>;
164 minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;164 minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
165<<<<<<< HEAD
165 weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;166 weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
166 xcmAllowedLocationsOverride: AugmentedQuery<ApiType, () => Observable<Option<Vec<XcmV1MultiLocation>>>, []> & QueryableStorageEntry<ApiType, []>;167 xcmAllowedLocationsOverride: AugmentedQuery<ApiType, () => Observable<Option<Vec<XcmV1MultiLocation>>>, []> & QueryableStorageEntry<ApiType, []>;
168=======
169 weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
170>>>>>>> chore: regenerate types
167 /**171 /**
168 * Generic query172 * Generic query
169 **/173 **/
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
217 configuration: {217 configuration: {
218 setAppPromotionConfigurationOverride: AugmentedSubmittable<(configuration: PalletConfigurationAppPromotionConfiguration | { recalculationInterval?: any; pendingInterval?: any; intervalIncome?: any; maxStakersPerCalculation?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletConfigurationAppPromotionConfiguration]>;218 setAppPromotionConfigurationOverride: AugmentedSubmittable<(configuration: PalletConfigurationAppPromotionConfiguration | { recalculationInterval?: any; pendingInterval?: any; intervalIncome?: any; maxStakersPerCalculation?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletConfigurationAppPromotionConfiguration]>;
219 setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;219 setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
220<<<<<<< HEAD
220 setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;221 setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
221 setXcmAllowedLocations: AugmentedSubmittable<(locations: Option<Vec<XcmV1MultiLocation>> | null | Uint8Array | Vec<XcmV1MultiLocation> | (XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<Vec<XcmV1MultiLocation>>]>;222 setXcmAllowedLocations: AugmentedSubmittable<(locations: Option<Vec<XcmV1MultiLocation>> | null | Uint8Array | Vec<XcmV1MultiLocation> | (XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<Vec<XcmV1MultiLocation>>]>;
223=======
224 setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
225>>>>>>> chore: regenerate types
222 /**226 /**
223 * Generic tx227 * Generic tx
224 **/228 **/
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
1303export interface PalletConfigurationCall extends Enum {1303export interface PalletConfigurationCall extends Enum {
1304 readonly isSetWeightToFeeCoefficientOverride: boolean;1304 readonly isSetWeightToFeeCoefficientOverride: boolean;
1305 readonly asSetWeightToFeeCoefficientOverride: {1305 readonly asSetWeightToFeeCoefficientOverride: {
1306 readonly coeff: Option<u32>;1306 readonly coeff: Option<u64>;
1307 } & Struct;1307 } & Struct;
1308 readonly isSetMinGasPriceOverride: boolean;1308 readonly isSetMinGasPriceOverride: boolean;
1309 readonly asSetMinGasPriceOverride: {1309 readonly asSetMinGasPriceOverride: {
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
1<<<<<<< HEAD
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2/* eslint-disable */3/* eslint-disable */
34
3457 **/3458 **/
3458 PalletEthereumFakeTransactionFinalizer: 'Null'3459 PalletEthereumFakeTransactionFinalizer: 'Null'
3459};3460};
3461=======
3462export default {}
3463>>>>>>> chore: regenerate types
34603464
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
2675 interface PalletConfigurationCall extends Enum {2675 interface PalletConfigurationCall extends Enum {
2676 readonly isSetWeightToFeeCoefficientOverride: boolean;2676 readonly isSetWeightToFeeCoefficientOverride: boolean;
2677 readonly asSetWeightToFeeCoefficientOverride: {2677 readonly asSetWeightToFeeCoefficientOverride: {
2678 readonly coeff: Option<u32>;2678 readonly coeff: Option<u64>;
2679 } & Struct;2679 } & Struct;
2680 readonly isSetMinGasPriceOverride: boolean;2680 readonly isSetMinGasPriceOverride: boolean;
2681 readonly asSetMinGasPriceOverride: {2681 readonly asSetMinGasPriceOverride: {