Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the Kusama Coretime Chain runtime #212

Merged
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
f3fef79
Add Kusama Coretime
seadanda Jan 16, 2024
2f737fc
Add PriceAdapter
seadanda Mar 1, 2024
167860c
Add Changelog
seadanda Mar 1, 2024
adde260
Add missing weight
seadanda Mar 5, 2024
16bfe23
Merge branch 'main' into donal-coretime-kusama
seadanda Mar 5, 2024
54e341a
Fix pallet_xcm benchmarks
seadanda Mar 5, 2024
9f8786f
Add weights from Kusama relay
seadanda Mar 5, 2024
ce92340
Apply suggestions from code review
seadanda Mar 7, 2024
18c79cc
Remove unnecessary migration
seadanda Mar 7, 2024
470b218
Rescue FungibleTransactor from previous clobber
seadanda Mar 7, 2024
08de737
Remove unnecessary clones in XCMs
seadanda Mar 7, 2024
8cbed69
Update AdaptPrice implementation
seadanda Mar 8, 2024
8e443e9
Edit wording slightly
seadanda Mar 8, 2024
71f8f15
Merge branch 'main' into donal-coretime-kusama
seadanda Mar 10, 2024
be6c473
Remove unused CoreCount storage
seadanda Mar 14, 2024
e9d2efb
Use `RelayTreasuryPalletAccount` and add `DescribeAllTerminal` and `D…
seadanda Mar 14, 2024
061dac1
Add proxy to coretime chain
seadanda Mar 15, 2024
73824d9
Tidy up
seadanda Mar 15, 2024
0c4dcde
Remove XCM calls to missing relay functionality
seadanda Mar 15, 2024
af5aad8
Fix leadin and add bounds tests for PriceAdapter
seadanda Mar 15, 2024
30c8496
Merge branch 'main' into donal-coretime-kusama
seadanda Mar 15, 2024
dea1e71
Remove specific WASM for fast-runtime
seadanda Mar 18, 2024
149a95c
Merge branch 'main' into donal-coretime-kusama
seadanda Mar 18, 2024
cc858b2
Remove fast-runtime binary reference
seadanda Mar 20, 2024
8a8c55a
Update licenses
seadanda Mar 20, 2024
5abb10a
Make Coretime async backing ready
s0me0ne-unkn0wn Mar 18, 2024
b3e917b
Merge branch 'main' into donal-coretime-kusama
joepetrowski Mar 21, 2024
264c5c3
fmt
joepetrowski Mar 21, 2024
530b741
Merge branch 'main' into donal-coretime-kusama
joepetrowski Mar 21, 2024
8fcce21
Apply suggestions from bko code review
seadanda Mar 21, 2024
9bfa404
Update lock file
seadanda Mar 21, 2024
5560a6d
Added to the `runtime-matrix.json`
bkontur Mar 21, 2024
ef14269
Added to chain-spec-generator
bkontur Mar 21, 2024
a19707e
Set PriceAdapter for benchmarks
bkontur Mar 21, 2024
71683db
Fresh weights
bkontur Mar 21, 2024
1a1b2ea
Transfer revenue into holding account to be burnt later
seadanda Mar 25, 2024
a14b993
Merge remote-tracking branch 'origin/main' into donal-coretime-kusama
bkchr Mar 25, 2024
4a69881
Fix merge issue
bkchr Mar 25, 2024
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
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rustflags = [
"-Aclippy::all",
"-Dclippy::correctness",
"-Aclippy::if-same-then-else",
"-Aclippy::clone-double-ref",
"-Asuspicious_double_ref_op",
seadanda marked this conversation as resolved.
Show resolved Hide resolved
"-Dclippy::complexity",
"-Aclippy::zero-prefixed-literal", # 00_1000_000
"-Aclippy::type_complexity", # raison d'etre
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Enable Coretime and on-demand on Kusama ([polkadot-fellows/runtimes#159](https://github.com/polkadot-fellows/runtimes/pull/159))
- Enable Elastic Scaling node side feature for Kusama ([polkadot-fellows/runtimes#205](https://github.com/polkadot-fellows/runtimes/pull/205))
- Cancel Parachain Auctions ([polkadot-fellows/runtimes#215](https://github.com/polkadot-fellows/runtimes/pull/215))
- Add the Kusama Coretime Chain ([polkadot-fellows/runtimes#212](https://github.com/polkadot-fellows/runtimes/pull/212))

### Changed

Expand Down
Loading
Loading