@argonprotocol/mainchain 1.0.7 → 1.0.9
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/lib/cjs/interfaces/augment-api-query.d.ts +4 -0
- package/lib/cjs/interfaces/augment-api-tx.d.ts +3 -1
- package/lib/cjs/interfaces/lookup.d.ts +7 -1
- package/lib/cjs/interfaces/lookup.js +7 -1
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/types-lookup.d.ts +7 -1
- package/lib/esm/interfaces/augment-api-query.d.ts +4 -0
- package/lib/esm/interfaces/augment-api-tx.d.ts +3 -1
- package/lib/esm/interfaces/lookup.d.ts +7 -1
- package/lib/esm/interfaces/lookup.js +7 -1
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/types-lookup.d.ts +7 -1
- package/lib/tsconfig-cjs.tsbuildinfo +1 -1
- package/lib/tsconfig-types.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/interfaces/augment-api-query.d.ts +4 -0
- package/lib/types/interfaces/augment-api-tx.d.ts +3 -1
- package/lib/types/interfaces/lookup.d.ts +7 -1
- package/lib/types/interfaces/types-lookup.d.ts +7 -1
- package/package.json +1 -1
|
@@ -118,6 +118,10 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
118
118
|
utxosPendingConfirmation: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, ArgonPrimitivesBitcoinUtxoValue>>, []>;
|
|
119
119
|
};
|
|
120
120
|
blockRewards: {
|
|
121
|
+
/**
|
|
122
|
+
* Bool if block rewards are paused
|
|
123
|
+
**/
|
|
124
|
+
blockRewardsPaused: AugmentedQuery<ApiType, () => Observable<bool>, []>;
|
|
121
125
|
payoutsByBlock: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBlockSealBlockPayout>>, [u32]>;
|
|
122
126
|
};
|
|
123
127
|
blockSeal: {
|
|
@@ -190,7 +190,9 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
190
190
|
syncToBlock?: any;
|
|
191
191
|
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonPrimitivesInherentsBitcoinUtxoSync]>;
|
|
192
192
|
};
|
|
193
|
-
blockRewards: {
|
|
193
|
+
blockRewards: {
|
|
194
|
+
setBlockRewardsPaused: AugmentedSubmittable<(paused: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [bool]>;
|
|
195
|
+
};
|
|
194
196
|
blockSeal: {
|
|
195
197
|
apply: AugmentedSubmittable<(seal: ArgonPrimitivesInherentsBlockSealInherent | {
|
|
196
198
|
Vote: any;
|
|
@@ -1949,7 +1949,13 @@ declare const _default: {
|
|
|
1949
1949
|
/**
|
|
1950
1950
|
* Lookup247: pallet_block_rewards::pallet::Call<T>
|
|
1951
1951
|
**/
|
|
1952
|
-
PalletBlockRewardsCall:
|
|
1952
|
+
PalletBlockRewardsCall: {
|
|
1953
|
+
_enum: {
|
|
1954
|
+
set_block_rewards_paused: {
|
|
1955
|
+
paused: string;
|
|
1956
|
+
};
|
|
1957
|
+
};
|
|
1958
|
+
};
|
|
1953
1959
|
/**
|
|
1954
1960
|
* Lookup248: pallet_mint::pallet::Call<T>
|
|
1955
1961
|
**/
|
|
@@ -1894,7 +1894,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
1894
1894
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
|
1895
1895
|
}
|
|
1896
1896
|
/** @name PalletBlockRewardsCall (247) */
|
|
1897
|
-
|
|
1897
|
+
interface PalletBlockRewardsCall extends Enum {
|
|
1898
|
+
readonly isSetBlockRewardsPaused: boolean;
|
|
1899
|
+
readonly asSetBlockRewardsPaused: {
|
|
1900
|
+
readonly paused: bool;
|
|
1901
|
+
} & Struct;
|
|
1902
|
+
readonly type: 'SetBlockRewardsPaused';
|
|
1903
|
+
}
|
|
1898
1904
|
/** @name PalletMintCall (248) */
|
|
1899
1905
|
type PalletMintCall = Null;
|
|
1900
1906
|
/** @name PalletBalancesCall (249) */
|