Skip to content
Open
Changes from all commits
Commits
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 submodules/ajuna
Submodule ajuna updated 39 files
+39 −16 .github/workflows/check-migration.yml
+1 −1 .github/workflows/check-pull-request.yml
+4 −2 .github/workflows/runtimes-matrix.json
+5,586 −3,097 Cargo.lock
+116 −112 Cargo.toml
+11 −4 node/Cargo.toml
+15 −37 node/src/chain_spec/ajuna.rs
+2 −17 node/src/chain_spec/chain_spec_utils.rs
+69 −0 node/src/chain_spec/mod.rs
+0 −127 node/src/cli.rs
+0 −424 node/src/command.rs
+49 −21 node/src/main.rs
+0 −65 node/src/rpc.rs
+0 −403 node/src/service.rs
+183 −171 runtime/ajuna/Cargo.toml
+80 −7 runtime/ajuna/src/assets.rs
+8 −2 runtime/ajuna/src/gov.rs
+222 −93 runtime/ajuna/src/lib.rs
+3 −2 runtime/ajuna/src/proxy_type.rs
+0 −118 runtime/ajuna/src/tx_payment.rs
+1 −1 runtime/ajuna/src/weights/block_weights.rs
+156 −66 runtime/ajuna/src/weights/cumulus_pallet_xcmp_queue.rs
+1 −1 runtime/ajuna/src/weights/extrinsic_weights.rs
+127 −0 runtime/ajuna/src/weights/frame_system_extensions.rs
+4 −0 runtime/ajuna/src/weights/mod.rs
+172 −115 runtime/ajuna/src/weights/pallet_assets.rs
+226 −184 runtime/ajuna/src/weights/pallet_collective.rs
+328 −182 runtime/ajuna/src/weights/pallet_identity.rs
+70 −55 runtime/ajuna/src/weights/pallet_message_queue.rs
+222 −0 runtime/ajuna/src/weights/pallet_migrations.rs
+108 −88 runtime/ajuna/src/weights/pallet_multisig.rs
+780 −0 runtime/ajuna/src/weights/pallet_nfts.rs
+114 −83 runtime/ajuna/src/weights/pallet_proxy.rs
+63 −0 runtime/ajuna/src/weights/pallet_transaction_payment.rs
+59 −42 runtime/ajuna/src/weights/pallet_utility.rs
+232 −218 runtime/ajuna/src/weights/pallet_xcm.rs
+1 −1 runtime/ajuna/src/weights/rocksdb_weights.rs
+32 −16 runtime/ajuna/src/xcm_config.rs
+9 −4 rust-toolchain.toml
Loading