Skip to content

Commit

Permalink
[CI Skip] bump/beta 13.0.2-1-x
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
github-actions[bot] committed Sep 16, 2024
1 parent b04e7b0 commit ce6e1e8
Show file tree
Hide file tree
Showing 34 changed files with 201 additions and 183 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
1 Aleš Ferlan fix: use H160 for address in getTransactionCount (#5472)
1 Brad Larson [NEW] Support for custom headers with providers (#2423)
1 Btwiuse Arch Add side effect check workaround (#4994) (#5009)
1 Cameron Marshall implement xcm dry run api (#5970)
1 chriswmercer little readme tweak (#279)
1 codingsh #2182 - add: search for docs (#2232)
1 coolcorexix Investigate 4559 v2 (#4608)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
},
"sideEffects": false,
"type": "module",
"version": "13.0.2-0-x",
"version": "13.0.2-1-x",
"versions": {
"git": "13.0.2-0-x",
"git": "13.0.2-1-x",
"npm": "13.0.1"
},
"workspaces": [
Expand Down
12 changes: 6 additions & 6 deletions packages/api-augment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.0.2-0-x",
"version": "13.0.2-1-x",
"main": "index.js",
"dependencies": {
"@polkadot/api-base": "13.0.2-0-x",
"@polkadot/rpc-augment": "13.0.2-0-x",
"@polkadot/types": "13.0.2-0-x",
"@polkadot/types-augment": "13.0.2-0-x",
"@polkadot/types-codec": "13.0.2-0-x",
"@polkadot/api-base": "13.0.2-1-x",
"@polkadot/rpc-augment": "13.0.2-1-x",
"@polkadot/types": "13.0.2-1-x",
"@polkadot/types-augment": "13.0.2-1-x",
"@polkadot/types-codec": "13.0.2-1-x",
"@polkadot/util": "^13.1.1",
"tslib": "^2.7.0"
}
Expand Down
19 changes: 18 additions & 1 deletion packages/api-augment/src/kusama/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import type { BeefyAuthoritySet, BeefyEquivocationProof, BeefyNextAuthoritySet,
import type { CheckInherentsResult, InherentData } from '@polkadot/types/interfaces/blockbuilder';
import type { BlockHash } from '@polkadot/types/interfaces/chain';
import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
import type { CallDryRunEffects, XcmDryRunApiError, XcmDryRunEffects } from '@polkadot/types/interfaces/dryRunApi';
import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
import type { GenesisBuildErr } from '@polkadot/types/interfaces/genesisBuilder';
import type { AuthorityList, GrandpaEquivocationProof, SetId } from '@polkadot/types/interfaces/grandpa';
Expand All @@ -21,12 +22,13 @@ import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError } from '@polkadot/
import type { NpPoolId } from '@polkadot/types/interfaces/nompools';
import type { ApprovalVotingParams, AsyncBackingParams, BackingState, CandidateCommitments, CandidateEvent, CandidateHash, CommittedCandidateReceipt, CoreIndex, CoreState, DisputeProof, DisputeState, ExecutorParams, GroupRotationInfo, InboundDownwardMessage, InboundHrmpMessage, NodeFeatures, OccupiedCoreAssumption, ParaId, ParaValidatorIndex, PendingSlashes, PersistedValidationData, PvfCheckStatement, ScrapedOnChainVotes, SessionInfo, ValidationCode, ValidationCodeHash, ValidatorSignature } from '@polkadot/types/interfaces/parachains';
import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
import type { AccountId, Balance, Block, BlockNumber, Call, ExtrinsicInclusionMode, Hash, Header, Index, KeyTypeId, Slot, ValidatorId, Weight, WeightV2 } from '@polkadot/types/interfaces/runtime';
import type { AccountId, Balance, Block, BlockNumber, Call, ExtrinsicInclusionMode, Hash, Header, Index, KeyTypeId, OriginCaller, RuntimeCall, Slot, ValidatorId, Weight, WeightV2 } from '@polkadot/types/interfaces/runtime';
import type { SessionIndex } from '@polkadot/types/interfaces/session';
import type { ValidatorIndex } from '@polkadot/types/interfaces/staking';
import type { RuntimeVersion } from '@polkadot/types/interfaces/state';
import type { ApplyExtrinsicResult } from '@polkadot/types/interfaces/system';
import type { TransactionSource, TransactionValidity } from '@polkadot/types/interfaces/txqueue';
import type { VersionedMultiLocation, VersionedXcm } from '@polkadot/types/interfaces/xcm';
import type { XcmPaymentApiError } from '@polkadot/types/interfaces/xcmPaymentApi';
import type { Error } from '@polkadot/types/interfaces/xcmRuntimeApi';
import type { XcmVersionedAssetId, XcmVersionedLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
Expand Down Expand Up @@ -170,6 +172,21 @@ declare module '@polkadot/api-base/types/calls' {
**/
[key: string]: DecoratedCallBase<ApiType>;
};
/** 0x91b1c8b16328eb92/1 */
dryRunApi: {
/**
* Dry run call
**/
dryRunCall: AugmentedCall<ApiType, (origin: OriginCaller | { System: any } | string | Uint8Array, call: RuntimeCall | IMethod | string | Uint8Array) => Observable<Result<CallDryRunEffects, XcmDryRunApiError>>>;
/**
* Dry run XCM program
**/
dryRunXcm: AugmentedCall<ApiType, (originLocation: VersionedMultiLocation | { V0: any } | { V1: any } | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, xcm: VersionedXcm | { V0: any } | { V1: any } | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array) => Observable<Result<XcmDryRunEffects, XcmDryRunApiError>>>;
/**
* Generic call
**/
[key: string]: DecoratedCallBase<ApiType>;
};
/** 0xfbc577b9d747efd6/1 */
genesisBuilder: {
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/api-augment/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

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

export const packageInfo = { name: '@polkadot/api-augment', path: 'auto', type: 'auto', version: '13.0.2-0-x' };
export const packageInfo = { name: '@polkadot/api-augment', path: 'auto', type: 'auto', version: '13.0.2-1-x' };
6 changes: 3 additions & 3 deletions packages/api-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.0.2-0-x",
"version": "13.0.2-1-x",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-core": "13.0.2-0-x",
"@polkadot/types": "13.0.2-0-x",
"@polkadot/rpc-core": "13.0.2-1-x",
"@polkadot/types": "13.0.2-1-x",
"@polkadot/util": "^13.1.1",
"rxjs": "^7.8.1",
"tslib": "^2.7.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/api-base/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

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

export const packageInfo = { name: '@polkadot/api-base', path: 'auto', type: 'auto', version: '13.0.2-0-x' };
export const packageInfo = { name: '@polkadot/api-base', path: 'auto', type: 'auto', version: '13.0.2-1-x' };
16 changes: 8 additions & 8 deletions packages/api-contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.0.2-0-x",
"version": "13.0.2-1-x",
"main": "index.js",
"dependencies": {
"@polkadot/api": "13.0.2-0-x",
"@polkadot/api-augment": "13.0.2-0-x",
"@polkadot/types": "13.0.2-0-x",
"@polkadot/types-codec": "13.0.2-0-x",
"@polkadot/types-create": "13.0.2-0-x",
"@polkadot/api": "13.0.2-1-x",
"@polkadot/api-augment": "13.0.2-1-x",
"@polkadot/types": "13.0.2-1-x",
"@polkadot/types-codec": "13.0.2-1-x",
"@polkadot/types-create": "13.0.2-1-x",
"@polkadot/util": "^13.1.1",
"@polkadot/util-crypto": "^13.1.1",
"rxjs": "^7.8.1",
"tslib": "^2.7.0"
},
"devDependencies": {
"@polkadot/api-augment": "13.0.2-0-x",
"@polkadot/api-augment": "13.0.2-1-x",
"@polkadot/keyring": "^13.1.1",
"@polkadot/types-support": "13.0.2-0-x"
"@polkadot/types-support": "13.0.2-1-x"
}
}
2 changes: 1 addition & 1 deletion packages/api-contract/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

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

export const packageInfo = { name: '@polkadot/api-contract', path: 'auto', type: 'auto', version: '13.0.2-0-x' };
export const packageInfo = { name: '@polkadot/api-contract', path: 'auto', type: 'auto', version: '13.0.2-1-x' };
24 changes: 12 additions & 12 deletions packages/api-derive/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.0.2-0-x",
"version": "13.0.2-1-x",
"main": "index.js",
"dependencies": {
"@polkadot/api": "13.0.2-0-x",
"@polkadot/api-augment": "13.0.2-0-x",
"@polkadot/api-base": "13.0.2-0-x",
"@polkadot/rpc-core": "13.0.2-0-x",
"@polkadot/types": "13.0.2-0-x",
"@polkadot/types-codec": "13.0.2-0-x",
"@polkadot/api": "13.0.2-1-x",
"@polkadot/api-augment": "13.0.2-1-x",
"@polkadot/api-base": "13.0.2-1-x",
"@polkadot/rpc-core": "13.0.2-1-x",
"@polkadot/types": "13.0.2-1-x",
"@polkadot/types-codec": "13.0.2-1-x",
"@polkadot/util": "^13.1.1",
"@polkadot/util-crypto": "^13.1.1",
"rxjs": "^7.8.1",
"tslib": "^2.7.0"
},
"devDependencies": {
"@polkadot/api": "13.0.2-0-x",
"@polkadot/api-augment": "13.0.2-0-x",
"@polkadot/rpc-augment": "13.0.2-0-x",
"@polkadot/rpc-provider": "13.0.2-0-x",
"@polkadot/types-support": "13.0.2-0-x"
"@polkadot/api": "13.0.2-1-x",
"@polkadot/api-augment": "13.0.2-1-x",
"@polkadot/rpc-augment": "13.0.2-1-x",
"@polkadot/rpc-provider": "13.0.2-1-x",
"@polkadot/types-support": "13.0.2-1-x"
}
}
2 changes: 1 addition & 1 deletion packages/api-derive/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

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

export const packageInfo = { name: '@polkadot/api-derive', path: 'auto', type: 'auto', version: '13.0.2-0-x' };
export const packageInfo = { name: '@polkadot/api-derive', path: 'auto', type: 'auto', version: '13.0.2-1-x' };
28 changes: 14 additions & 14 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,29 +18,29 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.0.2-0-x",
"version": "13.0.2-1-x",
"main": "index.js",
"dependencies": {
"@polkadot/api-augment": "13.0.2-0-x",
"@polkadot/api-base": "13.0.2-0-x",
"@polkadot/api-derive": "13.0.2-0-x",
"@polkadot/api-augment": "13.0.2-1-x",
"@polkadot/api-base": "13.0.2-1-x",
"@polkadot/api-derive": "13.0.2-1-x",
"@polkadot/keyring": "^13.1.1",
"@polkadot/rpc-augment": "13.0.2-0-x",
"@polkadot/rpc-core": "13.0.2-0-x",
"@polkadot/rpc-provider": "13.0.2-0-x",
"@polkadot/types": "13.0.2-0-x",
"@polkadot/types-augment": "13.0.2-0-x",
"@polkadot/types-codec": "13.0.2-0-x",
"@polkadot/types-create": "13.0.2-0-x",
"@polkadot/types-known": "13.0.2-0-x",
"@polkadot/rpc-augment": "13.0.2-1-x",
"@polkadot/rpc-core": "13.0.2-1-x",
"@polkadot/rpc-provider": "13.0.2-1-x",
"@polkadot/types": "13.0.2-1-x",
"@polkadot/types-augment": "13.0.2-1-x",
"@polkadot/types-codec": "13.0.2-1-x",
"@polkadot/types-create": "13.0.2-1-x",
"@polkadot/types-known": "13.0.2-1-x",
"@polkadot/util": "^13.1.1",
"@polkadot/util-crypto": "^13.1.1",
"eventemitter3": "^5.0.1",
"rxjs": "^7.8.1",
"tslib": "^2.7.0"
},
"devDependencies": {
"@polkadot/api-augment": "13.0.2-0-x",
"@polkadot/types-support": "13.0.2-0-x"
"@polkadot/api-augment": "13.0.2-1-x",
"@polkadot/types-support": "13.0.2-1-x"
}
}
2 changes: 1 addition & 1 deletion packages/api/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

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

export const packageInfo = { name: '@polkadot/api', path: 'auto', type: 'auto', version: '13.0.2-0-x' };
export const packageInfo = { name: '@polkadot/api', path: 'auto', type: 'auto', version: '13.0.2-1-x' };
8 changes: 4 additions & 4 deletions packages/rpc-augment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.0.2-0-x",
"version": "13.0.2-1-x",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-core": "13.0.2-0-x",
"@polkadot/types": "13.0.2-0-x",
"@polkadot/types-codec": "13.0.2-0-x",
"@polkadot/rpc-core": "13.0.2-1-x",
"@polkadot/types": "13.0.2-1-x",
"@polkadot/types-codec": "13.0.2-1-x",
"@polkadot/util": "^13.1.1",
"tslib": "^2.7.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/rpc-augment/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

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

export const packageInfo = { name: '@polkadot/rpc-augment', path: 'auto', type: 'auto', version: '13.0.2-0-x' };
export const packageInfo = { name: '@polkadot/rpc-augment', path: 'auto', type: 'auto', version: '13.0.2-1-x' };
10 changes: 5 additions & 5 deletions packages/rpc-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.0.2-0-x",
"version": "13.0.2-1-x",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-augment": "13.0.2-0-x",
"@polkadot/rpc-provider": "13.0.2-0-x",
"@polkadot/types": "13.0.2-0-x",
"@polkadot/rpc-augment": "13.0.2-1-x",
"@polkadot/rpc-provider": "13.0.2-1-x",
"@polkadot/types": "13.0.2-1-x",
"@polkadot/util": "^13.1.1",
"rxjs": "^7.8.1",
"tslib": "^2.7.0"
},
"devDependencies": {
"@polkadot/keyring": "^13.1.1",
"@polkadot/rpc-augment": "13.0.2-0-x"
"@polkadot/rpc-augment": "13.0.2-1-x"
}
}
2 changes: 1 addition & 1 deletion packages/rpc-core/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

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

export const packageInfo = { name: '@polkadot/rpc-core', path: 'auto', type: 'auto', version: '13.0.2-0-x' };
export const packageInfo = { name: '@polkadot/rpc-core', path: 'auto', type: 'auto', version: '13.0.2-1-x' };
6 changes: 3 additions & 3 deletions packages/rpc-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.0.2-0-x",
"version": "13.0.2-1-x",
"main": "index.js",
"dependencies": {
"@polkadot/keyring": "^13.1.1",
"@polkadot/types": "13.0.2-0-x",
"@polkadot/types-support": "13.0.2-0-x",
"@polkadot/types": "13.0.2-1-x",
"@polkadot/types-support": "13.0.2-1-x",
"@polkadot/util": "^13.1.1",
"@polkadot/util-crypto": "^13.1.1",
"@polkadot/x-fetch": "^13.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/rpc-provider/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

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

export const packageInfo = { name: '@polkadot/rpc-provider', path: 'auto', type: 'auto', version: '13.0.2-0-x' };
export const packageInfo = { name: '@polkadot/rpc-provider', path: 'auto', type: 'auto', version: '13.0.2-1-x' };
20 changes: 10 additions & 10 deletions packages/typegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.0.2-0-x",
"version": "13.0.2-1-x",
"main": "index.js",
"bin": {
"polkadot-types-chain-info": "./scripts/polkadot-types-chain-info.mjs",
Expand All @@ -28,15 +28,15 @@
"polkadot-types-internal-metadata": "./scripts/polkadot-types-internal-metadata.mjs"
},
"dependencies": {
"@polkadot/api": "13.0.2-0-x",
"@polkadot/api-augment": "13.0.2-0-x",
"@polkadot/rpc-augment": "13.0.2-0-x",
"@polkadot/rpc-provider": "13.0.2-0-x",
"@polkadot/types": "13.0.2-0-x",
"@polkadot/types-augment": "13.0.2-0-x",
"@polkadot/types-codec": "13.0.2-0-x",
"@polkadot/types-create": "13.0.2-0-x",
"@polkadot/types-support": "13.0.2-0-x",
"@polkadot/api": "13.0.2-1-x",
"@polkadot/api-augment": "13.0.2-1-x",
"@polkadot/rpc-augment": "13.0.2-1-x",
"@polkadot/rpc-provider": "13.0.2-1-x",
"@polkadot/types": "13.0.2-1-x",
"@polkadot/types-augment": "13.0.2-1-x",
"@polkadot/types-codec": "13.0.2-1-x",
"@polkadot/types-create": "13.0.2-1-x",
"@polkadot/types-support": "13.0.2-1-x",
"@polkadot/util": "^13.1.1",
"@polkadot/util-crypto": "^13.1.1",
"@polkadot/x-ws": "^13.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/typegen/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

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

export const packageInfo = { name: '@polkadot/typegen', path: 'auto', type: 'auto', version: '13.0.2-0-x' };
export const packageInfo = { name: '@polkadot/typegen', path: 'auto', type: 'auto', version: '13.0.2-1-x' };
6 changes: 3 additions & 3 deletions packages/types-augment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.0.2-0-x",
"version": "13.0.2-1-x",
"main": "index.js",
"dependencies": {
"@polkadot/types": "13.0.2-0-x",
"@polkadot/types-codec": "13.0.2-0-x",
"@polkadot/types": "13.0.2-1-x",
"@polkadot/types-codec": "13.0.2-1-x",
"@polkadot/util": "^13.1.1",
"tslib": "^2.7.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/types-augment/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

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

export const packageInfo = { name: '@polkadot/types-augment', path: 'auto', type: 'auto', version: '13.0.2-0-x' };
export const packageInfo = { name: '@polkadot/types-augment', path: 'auto', type: 'auto', version: '13.0.2-1-x' };
Loading

0 comments on commit ce6e1e8

Please sign in to comment.