Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4167b8a
build: ⬆️ Upgrade polkadot-sdk deps to stable2506
snowmead Mar 16, 2026
fb3d272
refactor: ♻️ Remove deprecated RuntimeEvent from pallet Config traits
snowmead Mar 16, 2026
96c6b7d
style: 🎨 cargo fmt --all
snowmead Mar 16, 2026
40cfa3e
build: 🔧 Regenerate TypeScript types for stable2506 runtime APIs
snowmead Mar 17, 2026
1eeec2d
style: 🧹 Fix warnings from stable2506 upgrade
snowmead Mar 17, 2026
17a801f
fix: 🐛 Fix compilation with runtime-benchmarks and try-runtime features
snowmead Mar 17, 2026
f865e4a
build: 📦 Bump api-augment and types-bundle to 0.4.8
snowmead Mar 17, 2026
d0c9b24
style: 🎨 cargo fmt --all
snowmead Mar 17, 2026
ce223ae
fix: 🐛 Adapt transaction watcher and integration tests for fatxpool (…
snowmead Mar 24, 2026
b1ead15
Merge remote-tracking branch 'origin/main' into feat/upgrade-polkadot…
snowmead Mar 25, 2026
e3e3aed
fmt
snowmead Mar 25, 2026
a0c3850
typegen
snowmead Mar 25, 2026
34af65f
fix: remove unnecessary system_addReservedPeer from fisherman tests
snowmead Mar 25, 2026
c5d6c73
fix: resolve CI lint, typecheck, and version-bump failures
snowmead Mar 25, 2026
74f5d8e
style: fix biome formatting in reorg-accept test
snowmead Mar 25, 2026
ebf9450
Merge branch 'main' into feat/upgrade-polkadot-sdk-2506
snowmead Mar 25, 2026
b05e4e7
fix: adapt integration tests for fatxpool timing (stable2506)
snowmead Mar 26, 2026
bdbbb30
Merge remote-tracking branch 'origin/main' into feat/upgrade-polkadot…
snowmead Mar 26, 2026
f69b31f
revert: remove speculative test changes, keep only proven fixes
snowmead Mar 26, 2026
9be375a
revert: remove all fatxpool test fixes, use original test code
snowmead Mar 26, 2026
e5cc4d5
fix: use single-state txpool for manual-seal dev nodes (stable2506)
snowmead Mar 26, 2026
a791a9c
fix: restore upgrade test adaptations reverted in previous commit
snowmead Mar 26, 2026
e04383b
revert: use main test code with single-state pool
snowmead Mar 26, 2026
5159357
fix: add --pool-type=single-state to compose templates and service ge…
snowmead Mar 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6,954 changes: 3,674 additions & 3,280 deletions Cargo.lock

Large diffs are not rendered by default.

278 changes: 139 additions & 139 deletions Cargo.toml

Large diffs are not rendered by default.

669 changes: 363 additions & 306 deletions api-augment/dist/parachain/interfaces/lookup.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion api-augment/dist/parachain/interfaces/lookup.js.map

Large diffs are not rendered by default.

476 changes: 245 additions & 231 deletions api-augment/dist/solochain-evm/interfaces/lookup.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion api-augment/dist/solochain-evm/interfaces/lookup.js.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,11 @@ declare module '@polkadot/api-base/types/errors' {
* Local XCM execution incomplete.
**/
LocalExecutionIncomplete: AugmentedError<ApiType>;
/**
* Local XCM execution incomplete with the actual XCM error and the index of the
* instruction that caused the error.
**/
LocalExecutionIncompleteWithError: AugmentedError<ApiType>;
/**
* A remote lock with the corresponding data could not be found.
**/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1679,6 +1679,11 @@ declare module '@polkadot/api-base/types/events' {
[key: string]: AugmentedEvent<ApiType>;
};
session: {
/**
* The `NewSession` event in the current block also implies a new validator set to be
* queued.
**/
NewQueued: AugmentedEvent<ApiType, []>;
/**
* New session has happened. Note that the argument is the session index, not the
* block number as the type might suggest.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
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 { CollationInfo } from '@polkadot/types/interfaces/cumulus';
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';
Expand Down Expand Up @@ -81,23 +80,6 @@ declare module '@polkadot/api-base/types/calls' {
**/
[key: string]: DecoratedCallBase<ApiType>;
};
/** 0xea93e3f16f3d6962/2 */
collectCollationInfo: {
/**
* Collect information about a collation.
**/
collectCollationInfo: AugmentedCall<ApiType, (header: Header | {
parentHash?: any;
number?: any;
stateRoot?: any;
extrinsicsRoot?: any;
digest?: any;
} | string | Uint8Array) => Observable<CollationInfo>>;
/**
* Generic call
**/
[key: string]: DecoratedCallBase<ApiType>;
};
/** 0xdf6acb689907609b/5 */
core: {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1464,6 +1464,8 @@ declare module '@polkadot/api-base/types/submittable' {
relayChainState?: any;
downwardMessages?: any;
horizontalMessages?: any;
relayParentDescendants?: any;
collatorPeerId?: any;
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [CumulusPrimitivesParachainInherentParachainInherentData]>;
sudoSendUpwardMessage: AugmentedSubmittable<(message: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
/**
Expand Down
Loading
Loading