Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
26571d7
push new feature branch
JoeCap08055 Aug 11, 2025
48e16eb
Implement types and pallet storage for Intents and IntentGroups (#2560)
JoeCap08055 Aug 15, 2025
6307cc1
feat: types, storage, and runtime RPCs for entity Names (Intent, Inte…
JoeCap08055 Aug 20, 2025
7b6fdcf
Feat/intents extrinsics and rpcs (#2570)
JoeCap08055 Aug 29, 2025
fb63aab
2580 migrate schemas to schemas 20 (#2603)
JoeCap08055 Sep 18, 2025
8a4ff8c
2581 update messages pallet to support intents (#2616)
JoeCap08055 Oct 9, 2025
719fe74
2581 update stateful storage pallets to support intents (#2633)
JoeCap08055 Oct 31, 2025
df1c818
Merge branch 'main' into feat/schemas-permissions-development
JoeCap08055 Oct 31, 2025
81de0a1
Merge branch 'main' into feat/schemas-permissions-development
JoeCap08055 Oct 31, 2025
1736545
fix pipeline errors and format
JoeCap08055 Oct 31, 2025
089373b
fixes from CI failures
JoeCap08055 Nov 3, 2025
d4349ca
genesis schemas
JoeCap08055 Nov 4, 2025
9debed1
Apply suggestions from code review
JoeCap08055 Nov 5, 2025
d7d513a
additional unit tests for page version/page corruption
JoeCap08055 Nov 5, 2025
3b22cc5
update JS Ethereum package for new signing payloads
JoeCap08055 Nov 10, 2025
74afef9
block stateful-storage extrinsics during migration, AddProviderV2 EIP…
JoeCap08055 Nov 10, 2025
ac296bd
fix e2e tests
JoeCap08055 Nov 10, 2025
00e24bf
restore schemas rpc, lint
JoeCap08055 Nov 11, 2025
5cc97eb
lint
JoeCap08055 Nov 11, 2025
14edc3f
Makefile enhancements
JoeCap08055 Nov 11, 2025
c4a1801
remove obsolete tests
JoeCap08055 Nov 11, 2025
114e706
Merge branch 'main' into feat/schemas-permissions-development
JoeCap08055 Nov 11, 2025
7971d61
clean up e2e tests
JoeCap08055 Nov 12, 2025
f7079a3
PR review comments, e2e fixes
JoeCap08055 Nov 13, 2025
fa754ef
Apply suggestions from code review
JoeCap08055 Nov 13, 2025
39f40bb
PR review
JoeCap08055 Nov 13, 2025
df1eda4
README clarifications
JoeCap08055 Nov 13, 2025
9e7db10
Re-work stateful-storage migration benchmarks to account for a DB mis…
JoeCap08055 Nov 13, 2025
bd191b8
Fix stateful page parsing and add unit tests
JoeCap08055 Nov 14, 2025
debefbc
add NO_COLOR support to launcher script, design doc updates
JoeCap08055 Nov 14, 2025
8eadcc6
Revert stateful-storage to existing extrinsics with just logic changes
JoeCap08055 Nov 17, 2025
7447acd
fix CI
JoeCap08055 Nov 17, 2025
bbb4016
fix: formatting
JoeCap08055 Nov 17, 2025
23fd09d
format
JoeCap08055 Nov 17, 2025
1c67755
fix: import
JoeCap08055 Nov 18, 2025
7ed6569
Update weights
JoeCap08055 Nov 18, 2025
b49ea55
PR review
JoeCap08055 Nov 19, 2025
e011c1a
fix: format
JoeCap08055 Nov 19, 2025
d4e7d91
fix tests
JoeCap08055 Nov 19, 2025
d5a272a
fix tests
JoeCap08055 Nov 20, 2025
65c47fb
fix e2e test races conditions
JoeCap08055 Nov 20, 2025
3e26f98
format
JoeCap08055 Nov 20, 2025
f58b5d7
fix conflict between prettier and eslint
JoeCap08055 Nov 20, 2025
3faa303
Merge branch 'main' into feat/schemas-permissions-development
aramikm Nov 24, 2025
8064055
Merge branch 'main' into feat/schemas-permissions-development
JoeCap08055 Dec 8, 2025
5d5107a
Merge branch 'main' into feat/schemas-permissions-development
JoeCap08055 Dec 8, 2025
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
158 changes: 13 additions & 145 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ pallet-authorship = { git = "https://github.com/paritytech/polkadot-sdk", tag =
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2506-2", default-features = false }
pallet-collective = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2506-2", default-features = false }
pallet-democracy = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2506-2", default-features = false }
pallet-migrations = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2506-2", default-features = false }
pallet-multisig = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2506-2", default-features = false }
pallet-preimage = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2506-2", default-features = false }
pallet-scheduler = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2506-2", default-features = false }
Expand Down
Loading