Skip to content

Commit

Permalink
fff (#576)
Browse files Browse the repository at this point in the history
* Add Support for Klaos-Nova Chain Specification (#560)

* from genesis klaos nova

* set nova

* nova specs raw

* add klaos-nova

* klaos nova bootnode 0 (#561)

* fix id (#562)

* nonce type is u32 mimicing parachains (#568)

* update nova to runtime 1201 (#569)

* Release/v0.14 (#572)

* nonce type is u32 mimicing parachains (#567)

* update to v0.14.1 (#570)

* update to v0.14.1

* update Cargo.lock

* Update Chain Spec for LAOS Family (#573)

* use pure accounts that do not clash with collection addresses

* change laos omega protocol_id

* set new wasm

* laossun v4

* rename spects

* raw specs

* Release/v0.14 (#577)

* nonce type is u32 mimicing parachains (#567)

* update to v0.14.1 (#570)

* update to v0.14.1

* update Cargo.lock

---------

Co-authored-by: ccubu <60666948+ccubu@users.noreply.github.com>
  • Loading branch information
asiniscalchi and ccubu authored Apr 15, 2024
1 parent 2699a58 commit 6f28e79
Show file tree
Hide file tree
Showing 11 changed files with 850 additions and 515 deletions.
7 changes: 5 additions & 2 deletions node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,14 @@ fn load_spec(id: &str) -> std::result::Result<Box<dyn ChainSpec>, String> {
"klaos" => Box::new(chain_spec::klaos::ChainSpec::from_json_bytes(
&include_bytes!("../../specs/klaos.raw.json")[..],
)?),
"klaos-nova" => Box::new(chain_spec::klaos::ChainSpec::from_json_bytes(
&include_bytes!("../../specs/klaos-nova.raw.json")[..],
)?),
"giedi" => Box::new(chain_spec::klaos::ChainSpec::from_json_bytes(
&include_bytes!("../../specs/giedi.raw.json")[..],
)?),
"laossun" => Box::new(chain_spec::laos::ChainSpec::from_json_bytes(
&include_bytes!("../../specs/laossun.raw.json")[..],
"laos-sun" => Box::new(chain_spec::laos::ChainSpec::from_json_bytes(
&include_bytes!("../../specs/laos-sun.raw.json")[..],
)?),
"klaos-dev" => Box::new(chain_spec::klaos::development_config()),
"klaos-local" | "klaos-local-v" => Box::new(chain_spec::klaos::local_testnet_config()),
Expand Down
215 changes: 215 additions & 0 deletions specs/klaos-nova.plain.json

Large diffs are not rendered by default.

117 changes: 117 additions & 0 deletions specs/klaos-nova.raw.json

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions specs/laos-omega.plain.json

Large diffs are not rendered by default.

90 changes: 45 additions & 45 deletions specs/laos-omega.raw.json

Large diffs are not rendered by default.

139 changes: 139 additions & 0 deletions specs/laos-sun.raw.json

Large diffs are not rendered by default.

262 changes: 262 additions & 0 deletions specs/laos-sun_v4.plain.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions specs/laos.plain.json

Large diffs are not rendered by default.

84 changes: 42 additions & 42 deletions specs/laos.raw.json

Large diffs are not rendered by default.

139 changes: 0 additions & 139 deletions specs/laossun.raw.json

This file was deleted.

262 changes: 0 additions & 262 deletions specs/laossun_v3.plain.json

This file was deleted.

0 comments on commit 6f28e79

Please sign in to comment.