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
64401a5
Changed block length + dispatch ratio
antkve Dec 15, 2025
373eda4
Added advance_block and changed storage sizes
antkve Dec 15, 2025
c538a1a
Added max write throughput test
antkve Dec 17, 2025
86f2d20
Added polkadot bulletin parachain
antkve Dec 28, 2025
14b8141
Fixed tests
antkve Jan 8, 2026
53362a2
Tweaked storage.rs
antkve Jan 9, 2026
ea5050a
Updated migrations
antkve Jan 20, 2026
588566e
Merge branch 'main' into ak-adjust-westend
antkve Jan 21, 2026
cde5688
Merge branch 'main' into ak-add-polkadot-parachain-2
franciscoaguirre Jan 26, 2026
1aee67d
Added constants.rs + removed relative imports
antkve Jan 26, 2026
53825c2
API change adjustments to fix compilation
antkve Jan 26, 2026
d315f18
XCM config tweaks for Bulletin Polkadot Parachain (#201)
franciscoaguirre Jan 27, 2026
79a532a
Merge branch 'main' into ak-add-polkadot-parachain-2
franciscoaguirre Jan 27, 2026
6881e94
Created apis.rs, migrations.rs, benchmarks.rs
antkve Jan 28, 2026
5d1d70b
Fixed tests to match new governance location, location conversion and…
antkve Jan 28, 2026
45b94e1
Feeless payment
antkve Jan 28, 2026
d87f1fc
Format
antkve Jan 28, 2026
00bd699
Lock
antkve Jan 28, 2026
9f92bb6
Taplo format
antkve Jan 28, 2026
cfb66e3
More taplo format
antkve Jan 28, 2026
b79aaaa
fix: duplicated dependencies
franciscoaguirre Jan 28, 2026
746ea91
Updated runtime syntax
antkve Jan 28, 2026
22ae5d3
Added ProvideCidConfig extension
antkve Jan 28, 2026
f78b06e
fix: unnecessary import
franciscoaguirre Jan 29, 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
4 changes: 1 addition & 3 deletions .config/taplo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# all options https://taplo.tamasfe.dev/configuration/formatter-options.html

exclude = [
"target/**",
]
exclude = ["target/**"]

# global rules
[formatting]
Expand Down
71 changes: 71 additions & 0 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,19 @@ hex = { version = "0.4" }
jsonrpsee = { version = "0.24.3" }
log = { version = "0.4.17", default-features = false }
parachain-info = { git = "https://github.com/paritytech/polkadot-sdk.git", package = "staging-parachain-info", rev = "81a3af9830ea8b6ff64b066b73b04bb3b675add5", default-features = false }
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot-sdk.git", rev = "81a3af9830ea8b6ff64b066b73b04bb3b675add5", default-features = false }
polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk.git", rev = "81a3af9830ea8b6ff64b066b73b04bb3b675add5", default-features = false }
scale-info = { version = "2.11.6", default-features = false }
serde = { version = "1.0.126" }
serde_json = { version = "1.0.132", default-features = false }
smallvec = { version = "1.11.0", default-features = false }
static_assertions = { version = "1.1" }
testnet-parachains-constants = { git = "https://github.com/paritytech/polkadot-sdk.git", package = "testnet-parachains-constants", rev = "81a3af9830ea8b6ff64b066b73b04bb3b675add5", default-features = false }
tracing = { version = "0.1.41", default-features = false }
westend-runtime-constants = { git = "https://github.com/paritytech/polkadot-sdk.git", package = "westend-runtime-constants", rev = "81a3af9830ea8b6ff64b066b73b04bb3b675add5", default-features = false }

# Local workspace members
bulletin-polkadot-parachain-runtime = { path = "runtimes/bulletin-polkadot-parachain" }
bulletin-polkadot-runtime = { path = "runtimes/bulletin-polkadot" }
bulletin-westend-runtime = { path = "runtimes/bulletin-westend" }
pallet-relayer-set = { path = "pallets/relayer-set", default-features = false }
Expand Down Expand Up @@ -178,6 +181,7 @@ members = [
"pallets/validator-set",
"runtime",
"runtimes/bulletin-polkadot",
"runtimes/bulletin-polkadot-parachain",
"runtimes/bulletin-westend",
"runtimes/bulletin-westend/integration-tests",
]
Expand Down
14 changes: 3 additions & 11 deletions pallets/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,6 @@ polkadot-sdk-frame = { workspace = true, default-features = false, features = [

[features]
default = ["std"]
runtime-benchmarks = [
"polkadot-sdk-frame/runtime-benchmarks",
]
std = [
"codec/std",
"polkadot-sdk-frame/std",
"scale-info/std",
]
try-runtime = [
"polkadot-sdk-frame/try-runtime",
]
runtime-benchmarks = ["polkadot-sdk-frame/runtime-benchmarks"]
std = ["codec/std", "polkadot-sdk-frame/std", "scale-info/std"]
try-runtime = ["polkadot-sdk-frame/try-runtime"]
15 changes: 3 additions & 12 deletions pallets/relayer-set/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,6 @@ polkadot-sdk-frame = { workspace = true, default-features = false, features = [

[features]
default = ["std"]
runtime-benchmarks = [
"polkadot-sdk-frame/runtime-benchmarks",
]
std = [
"codec/std",
"log/std",
"polkadot-sdk-frame/std",
"scale-info/std",
]
try-runtime = [
"polkadot-sdk-frame/try-runtime",
]
runtime-benchmarks = ["polkadot-sdk-frame/runtime-benchmarks"]
std = ["codec/std", "log/std", "polkadot-sdk-frame/std", "scale-info/std"]
try-runtime = ["polkadot-sdk-frame/try-runtime"]
5 changes: 1 addition & 4 deletions pallets/transaction-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,4 @@ std = [
"sp-transaction-storage-proof/std",
"tracing/std",
]
try-runtime = [
"pallets-common/try-runtime",
"polkadot-sdk-frame/try-runtime",
]
try-runtime = ["pallets-common/try-runtime", "polkadot-sdk-frame/try-runtime"]
5 changes: 4 additions & 1 deletion pallets/validator-set/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
[package]
name = 'pallet-validator-set'
version = '1.0.0'
authors = ['Gautam Dhameja <[email protected]>', 'Parity Technologies <[email protected]>']
authors = [
'Gautam Dhameja <[email protected]>',
'Parity Technologies <[email protected]>',
]
edition.workspace = true
repository.workspace = true
license = 'Apache-2.0'
Expand Down
Loading
Loading