Skip to content

Commit

Permalink
Add v0.9.19 chain specs & configs
Browse files Browse the repository at this point in the history
Closes #2419
  • Loading branch information
danforbes committed Apr 29, 2022
1 parent 91e7ffa commit 6d965cf
Show file tree
Hide file tree
Showing 19 changed files with 1,328 additions and 779 deletions.
2 changes: 1 addition & 1 deletion chain/dev/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sync = ""
digest = ""

[init]
genesis = "./chain/dev/genesis-spec.json"
genesis = "./chain/dev/dev-spec-raw.json"

[account]
key = "alice"
Expand Down
47 changes: 47 additions & 0 deletions chain/dev/dev-spec-raw.json

Large diffs are not rendered by default.

64 changes: 64 additions & 0 deletions chain/dev/dev-spec.json

Large diffs are not rendered by default.

316 changes: 0 additions & 316 deletions chain/dev/genesis-spec.json

This file was deleted.

57 changes: 0 additions & 57 deletions chain/dev/genesis.json

This file was deleted.

7 changes: 4 additions & 3 deletions chain/gssmr/config.toml → chain/gssmr/config-alice.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[global]
basepath = "~/.gossamer/gssmr"
basepath = "~/.gossamer/gssmr-alice"
log = "info"
metrics-address = "localhost:9876"

Expand All @@ -15,17 +15,18 @@ sync = ""
digest = ""

[init]
genesis = "./chain/gssmr/genesis-spec.json"
genesis = "./chain/gssmr/gssmr-spec-raw.json"

[account]
key = ""
key = "alice"
unlock = ""

[core]
roles = 4
babe-authority = true
grandpa-authority = true
grandpa-interval = 1
babe-lead = true

[network]
port = 7001
Expand Down
49 changes: 49 additions & 0 deletions chain/gssmr/config-bob.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[global]
basepath = "~/.gossamer/gssmr-bob"
log = "info"
metrics-address = "localhost:9877"

[log]
core = ""
network = ""
rpc = ""
state = ""
runtime = ""
babe = ""
grandpa = ""
sync = ""
digest = ""

[init]
genesis = "./chain/gssmr/gssmr-spec-raw.json"

[account]
key = "bob"
unlock = ""

[core]
roles = 4
babe-authority = true
grandpa-authority = true
grandpa-interval = 1

[network]
port = 7002
nobootstrap = false
nomdns = false
discovery-interval = 10
min-peers = 1
max-peers = 50

[rpc]
enabled = false
port = 8547
host = "localhost"
modules = ["system", "author", "chain", "state", "rpc", "grandpa", "offchain", "childstate", "syncstate", "payment"]
ws-port = 8548

[pprof]
enabled = false
listening-address = "localhost:6061"
block-rate = 0
mutex-rate = 0
Loading

0 comments on commit 6d965cf

Please sign in to comment.