Skip to content

Commit b79b300

Browse files
api, api-{augment, base, contract, derive}, rpc-{augment, core, provider}, types, types-{augment, codec, create, known} 10.4.1
1 parent 24cdc4d commit b79b300

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+1284
-998
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## master
44

5+
- api, api-{augment, base, contract, derive}, rpc-{augment, core, provider}, types, types-{augment, codec, create, known} 10.4.1
56
- phishing 0.21.1
67
- hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 12.0.1
78
- wasm-{bridge, crypto, crypto-{asmjs, init, wasm}, util} 7.1.1

api-augment/kusama/events.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
7272
* An account was created with some free balance.
7373
**/
7474
Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;
75+
/**
76+
* Some balance was frozen.
77+
**/
78+
Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
7579
/**
7680
* Total issuance was increased by `amount`, creating a credit to be balanced.
7781
**/
@@ -109,6 +113,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
109113
* Some amount was suspended from an account (it can be restored later).
110114
**/
111115
Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
116+
/**
117+
* Some balance was thawed.
118+
**/
119+
Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
112120
/**
113121
* Transfer succeeded.
114122
**/
@@ -623,6 +631,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
623631
* An account was created with some free balance.
624632
**/
625633
Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;
634+
/**
635+
* Some balance was frozen.
636+
**/
637+
Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
626638
/**
627639
* Total issuance was increased by `amount`, creating a credit to be balanced.
628640
**/
@@ -660,6 +672,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
660672
* Some amount was suspended from an account (it can be restored later).
661673
**/
662674
Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
675+
/**
676+
* Some balance was thawed.
677+
**/
678+
Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
663679
/**
664680
* Transfer succeeded.
665681
**/

api-augment/kusama/query.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/storage.ts' {
367367
[key: string]: QueryableStorageEntry<ApiType>;
368368
};
369369
dmp: {
370+
/**
371+
* The number to multiply the base delivery fee by.
372+
**/
373+
deliveryFeeFactor: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u128>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
370374
/**
371375
* A mapping that stores the downward message queue MQC head for each para.
372376
*

api-augment/kusama/tx.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -949,12 +949,6 @@ declare module 'https://deno.land/x/polkadot/api-base/types/submittable.ts' {
949949
**/
950950
[key: string]: SubmittableExtrinsicFunction<ApiType>;
951951
};
952-
dmp: {
953-
/**
954-
* Generic tx
955-
**/
956-
[key: string]: SubmittableExtrinsicFunction<ApiType>;
957-
};
958952
electionProviderMultiPhase: {
959953
/**
960954
* Trigger the governance fallback.

api-augment/packageInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

22

3-
export const packageInfo = { name: '@polkadot/api-augment', path: new URL(import.meta.url).pathname, type: 'deno', version: '10.3.4' };
3+
export const packageInfo = { name: '@polkadot/api-augment', path: new URL(import.meta.url).pathname, type: 'deno', version: '10.4.1' };

api-augment/polkadot/consts.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,16 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
176176
**/
177177
[key: string]: Codec;
178178
};
179+
council: {
180+
/**
181+
* The maximum weight of a dispatch call that can be proposed and executed.
182+
**/
183+
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
184+
/**
185+
* Generic const
186+
**/
187+
[key: string]: Codec;
188+
};
179189
crowdloan: {
180190
/**
181191
* The minimum amount that may be contributed into a crowdloan. Should almost certainly be at
@@ -784,6 +794,16 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
784794
**/
785795
[key: string]: Codec;
786796
};
797+
technicalCommittee: {
798+
/**
799+
* The maximum weight of a dispatch call that can be proposed and executed.
800+
**/
801+
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
802+
/**
803+
* Generic const
804+
**/
805+
[key: string]: Codec;
806+
};
787807
timestamp: {
788808
/**
789809
* The minimum period between blocks. Beware that this is different to the *expected*

api-augment/polkadot/events.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
7272
* An account was created with some free balance.
7373
**/
7474
Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;
75+
/**
76+
* Some balance was frozen.
77+
**/
78+
Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
7579
/**
7680
* Total issuance was increased by `amount`, creating a credit to be balanced.
7781
**/
@@ -109,6 +113,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
109113
* Some amount was suspended from an account (it can be restored later).
110114
**/
111115
Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
116+
/**
117+
* Some balance was thawed.
118+
**/
119+
Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
112120
/**
113121
* Transfer succeeded.
114122
**/

api-augment/polkadot/query.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/storage.ts' {
466466
[key: string]: QueryableStorageEntry<ApiType>;
467467
};
468468
dmp: {
469+
/**
470+
* The number to multiply the base delivery fee by.
471+
**/
472+
deliveryFeeFactor: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u128>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
469473
/**
470474
* A mapping that stores the downward message queue MQC head for each para.
471475
*

api-augment/polkadot/tx.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,12 +1339,6 @@ declare module 'https://deno.land/x/polkadot/api-base/types/submittable.ts' {
13391339
**/
13401340
[key: string]: SubmittableExtrinsicFunction<ApiType>;
13411341
};
1342-
dmp: {
1343-
/**
1344-
* Generic tx
1345-
**/
1346-
[key: string]: SubmittableExtrinsicFunction<ApiType>;
1347-
};
13481342
electionProviderMultiPhase: {
13491343
/**
13501344
* Trigger the governance fallback.

api-augment/substrate/consts.ts

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,16 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
3838
**/
3939
[key: string]: Codec;
4040
};
41+
allianceMotion: {
42+
/**
43+
* The maximum weight of a dispatch call that can be proposed and executed.
44+
**/
45+
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
46+
/**
47+
* Generic const
48+
**/
49+
[key: string]: Codec;
50+
};
4151
assets: {
4252
/**
4353
* The amount of funds that must be reserved when creating a new approval.
@@ -281,6 +291,16 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
281291
**/
282292
[key: string]: Codec;
283293
};
294+
council: {
295+
/**
296+
* The maximum weight of a dispatch call that can be proposed and executed.
297+
**/
298+
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
299+
/**
300+
* Generic const
301+
**/
302+
[key: string]: Codec;
303+
};
284304
democracy: {
285305
/**
286306
* Period in blocks where an external proposal may not be re-submitted after being vetoed.
@@ -1182,6 +1202,16 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
11821202
**/
11831203
[key: string]: Codec;
11841204
};
1205+
technicalCommittee: {
1206+
/**
1207+
* The maximum weight of a dispatch call that can be proposed and executed.
1208+
**/
1209+
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
1210+
/**
1211+
* Generic const
1212+
**/
1213+
[key: string]: Codec;
1214+
};
11851215
timestamp: {
11861216
/**
11871217
* The minimum period between blocks. Beware that this is different to the *expected*

0 commit comments

Comments
 (0)