Skip to content

Commit 62b3bb3

Browse files
api, api-{augment, base, contract, derive}, rpc-{augment, core, provider}, types, types-{augment, codec, create, known} 9.11.3
1 parent 42ae831 commit 62b3bb3

File tree

77 files changed

+698
-14487
lines changed

Some content is hidden

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

77 files changed

+698
-14487
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} 9.11.3
56
- hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 10.2.6
67
- hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 10.2.5
78
- api, api-{augment, base, contract, derive}, rpc-{augment, core, provider}, types, types-{augment, codec, create, known} 9.11.2

api-augment/kusama/errors.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1470,14 +1470,14 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
14701470
* Invalid signature on statement.
14711471
**/
14721472
InvalidSignature: AugmentedError<ApiType>;
1473-
/**
1474-
* Too many spam slots used by some specific validator.
1475-
**/
1476-
PotentialSpam: AugmentedError<ApiType>;
14771473
/**
14781474
* A dispute where there are only votes on one side.
14791475
**/
14801476
SingleSidedDispute: AugmentedError<ApiType>;
1477+
/**
1478+
* Unconfirmed dispute statement sets provided
1479+
**/
1480+
UnconfirmedDispute: AugmentedError<ApiType>;
14811481
/**
14821482
* Validator index on statement is out of bounds for session.
14831483
**/

api-augment/kusama/query.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1297,14 +1297,6 @@ declare module 'https://deno.land/x/polkadot/api-base/types/storage.ts' {
12971297
* references sessions.
12981298
**/
12991299
lastPrunedSession: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
1300-
/**
1301-
* Maps session indices to a vector indicating the number of potentially-spam disputes
1302-
* each validator is participating in. Potentially-spam disputes are remote disputes which have
1303-
* fewer than `byzantine_threshold + 1` validators.
1304-
*
1305-
* The i'th entry of the vector corresponds to the i'th validator in the session.
1306-
**/
1307-
spamSlots: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<u32>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
13081300
/**
13091301
* Generic query
13101302
**/

api-augment/kusama/tx.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -602,10 +602,6 @@ declare module 'https://deno.land/x/polkadot/api-base/types/submittable.ts' {
602602
* Set the dispute conclusion by time out period.
603603
**/
604604
setDisputeConclusionByTimeOutPeriod: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
605-
/**
606-
* Set the maximum number of dispute spam slots.
607-
**/
608-
setDisputeMaxSpamSlots: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
609605
/**
610606
* Set the dispute period, in number of sessions to keep for disputes.
611607
**/

api-augment/packageInfo.ts

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

44
// Do not edit, auto-generated by @polkadot/dev
55

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

api-augment/polkadot/errors.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1222,14 +1222,14 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
12221222
* Invalid signature on statement.
12231223
**/
12241224
InvalidSignature: AugmentedError<ApiType>;
1225-
/**
1226-
* Too many spam slots used by some specific validator.
1227-
**/
1228-
PotentialSpam: AugmentedError<ApiType>;
12291225
/**
12301226
* A dispute where there are only votes on one side.
12311227
**/
12321228
SingleSidedDispute: AugmentedError<ApiType>;
1229+
/**
1230+
* Unconfirmed dispute statement sets provided
1231+
**/
1232+
UnconfirmedDispute: AugmentedError<ApiType>;
12331233
/**
12341234
* Validator index on statement is out of bounds for session.
12351235
**/

api-augment/polkadot/query.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,14 +1150,6 @@ declare module 'https://deno.land/x/polkadot/api-base/types/storage.ts' {
11501150
* references sessions.
11511151
**/
11521152
lastPrunedSession: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
1153-
/**
1154-
* Maps session indices to a vector indicating the number of potentially-spam disputes
1155-
* each validator is participating in. Potentially-spam disputes are remote disputes which have
1156-
* fewer than `byzantine_threshold + 1` validators.
1157-
*
1158-
* The i'th entry of the vector corresponds to the i'th validator in the session.
1159-
**/
1160-
spamSlots: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<u32>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
11611153
/**
11621154
* Generic query
11631155
**/

api-augment/polkadot/tx.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -602,10 +602,6 @@ declare module 'https://deno.land/x/polkadot/api-base/types/submittable.ts' {
602602
* Set the dispute conclusion by time out period.
603603
**/
604604
setDisputeConclusionByTimeOutPeriod: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
605-
/**
606-
* Set the maximum number of dispute spam slots.
607-
**/
608-
setDisputeMaxSpamSlots: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
609605
/**
610606
* Set the dispute period, in number of sessions to keep for disputes.
611607
**/

api-augment/substrate/consts.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -805,20 +805,6 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
805805
**/
806806
[key: string]: Codec;
807807
};
808-
preimage: {
809-
/**
810-
* The base deposit for placing a preimage on chain.
811-
**/
812-
baseDeposit: u128 & AugmentedConst<ApiType>;
813-
/**
814-
* The per-byte deposit for placing a preimage on chain.
815-
**/
816-
byteDeposit: u128 & AugmentedConst<ApiType>;
817-
/**
818-
* Generic const
819-
**/
820-
[key: string]: Codec;
821-
};
822808
proxy: {
823809
/**
824810
* The base amount of currency needed to reserve for creating an announcement.

api-augment/substrate/errors.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -468,10 +468,6 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
468468
* A contract with the same AccountId already exists.
469469
**/
470470
DuplicateContract: AugmentedError<ApiType>;
471-
/**
472-
* The topics passed to `seal_deposit_events` contains at least one duplicate.
473-
**/
474-
DuplicateTopics: AugmentedError<ApiType>;
475471
/**
476472
* An indetermistic code was used in a context where this is not permitted.
477473
**/
@@ -1218,6 +1214,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
12181214
* The approval had a deadline that expired, so the approval isn't valid anymore.
12191215
**/
12201216
ApprovalExpired: AugmentedError<ApiType>;
1217+
/**
1218+
* The provided attribute can't be found.
1219+
**/
1220+
AttributeNotFound: AugmentedError<ApiType>;
12211221
/**
12221222
* The witness data given does not match the current state of the chain.
12231223
**/
@@ -1278,6 +1278,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
12781278
* The provided max supply is less than the number of items a collection already has.
12791279
**/
12801280
MaxSupplyTooSmall: AugmentedError<ApiType>;
1281+
/**
1282+
* The given item has no metadata set.
1283+
**/
1284+
MetadataNotFound: AugmentedError<ApiType>;
12811285
/**
12821286
* The method is disabled by system settings.
12831287
**/

0 commit comments

Comments
 (0)