feat: initialize Kurdistan SDK - independent fork of Polkadot SDK
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
[settings]
|
||||
timeout = 3600
|
||||
node_spawn_timeout = 600
|
||||
|
||||
[relaychain]
|
||||
chain = "rococo-local"
|
||||
default_command = "polkadot"
|
||||
default_image = "docker.io/parity/polkadot:latest"
|
||||
default_args = ["-lteyrchain=debug"]
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "alice"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = false
|
||||
balance = 2000000000000
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "bob"
|
||||
args = ["--database=paritydb-experimental"]
|
||||
validator = true
|
||||
invulnerable = false
|
||||
bootnode = true
|
||||
balance = 2000000000000
|
||||
@@ -0,0 +1,104 @@
|
||||
[settings]
|
||||
timeout = 3600
|
||||
node_spawn_timeout = 600
|
||||
|
||||
[relaychain]
|
||||
chain = "polkadot"
|
||||
default_command = "polkadot"
|
||||
default_image = "docker.io/parity/polkadot:latest"
|
||||
|
||||
[relaychain.default_resources.requests]
|
||||
memory = "500M"
|
||||
cpu = "100000"
|
||||
|
||||
[relaychain.default_resources.limits]
|
||||
memory = "4000M"
|
||||
cpu = "10Gi"
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "alice"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 1000000000
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "bob"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 2000000000000
|
||||
|
||||
[[teyrchains]]
|
||||
id = 1000
|
||||
chain = "myteyrchain"
|
||||
register_para = true
|
||||
onboard_as_teyrchain = false
|
||||
balance = 2000000000000
|
||||
default_db_snapshot = "https://storage.com/path/to/db_snapshot.tgz"
|
||||
chain_spec_path = "/path/to/my/chain/spec.json"
|
||||
cumulus_based = true
|
||||
evm_based = false
|
||||
|
||||
[[teyrchains.collators]]
|
||||
name = "john"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 5000000000
|
||||
|
||||
[[teyrchains.collators]]
|
||||
name = "charles"
|
||||
validator = false
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 0
|
||||
|
||||
[[teyrchains.collators]]
|
||||
name = "frank"
|
||||
validator = true
|
||||
invulnerable = false
|
||||
bootnode = true
|
||||
balance = 1000000000
|
||||
|
||||
[[teyrchains]]
|
||||
id = 2000
|
||||
chain = "myotherteyrchain"
|
||||
add_to_genesis = true
|
||||
balance = 2000000000000
|
||||
chain_spec_path = "/path/to/my/other/chain/spec.json"
|
||||
cumulus_based = true
|
||||
evm_based = false
|
||||
|
||||
[[teyrchains.collators]]
|
||||
name = "mike"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 5000000000
|
||||
|
||||
[[teyrchains.collators]]
|
||||
name = "georges"
|
||||
validator = false
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 0
|
||||
|
||||
[[teyrchains.collators]]
|
||||
name = "victor"
|
||||
validator = true
|
||||
invulnerable = false
|
||||
bootnode = true
|
||||
balance = 1000000000
|
||||
|
||||
[[hrmp_channels]]
|
||||
sender = 1000
|
||||
recipient = 2000
|
||||
max_capacity = 150
|
||||
max_message_size = 5000
|
||||
|
||||
[[hrmp_channels]]
|
||||
sender = 2000
|
||||
recipient = 1000
|
||||
max_capacity = 200
|
||||
max_message_size = 8000
|
||||
+72
@@ -0,0 +1,72 @@
|
||||
[settings]
|
||||
timeout = 3600
|
||||
node_spawn_timeout = 600
|
||||
|
||||
[relaychain]
|
||||
chain = "polkadot"
|
||||
default_command = "polkadot"
|
||||
default_image = "docker.io/parity/polkadot:latest"
|
||||
default_db_snapshot = "https://storage.com/path/to/db_snapshot.tgz"
|
||||
default_args = ["--flag", "-name=value"]
|
||||
|
||||
[relaychain.default_resources.requests]
|
||||
memory = "500M"
|
||||
cpu = "100000"
|
||||
|
||||
[relaychain.default_resources.limits]
|
||||
memory = "4000M"
|
||||
cpu = "10Gi"
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "alice"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 1000000000
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "bob"
|
||||
image = "mycustomimage:latest"
|
||||
command = "my-custom-command"
|
||||
args = ["-myothername=value"]
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 2000000000000
|
||||
db_snapshot = "https://storage.com/path/to/other/db_snapshot.tgz"
|
||||
|
||||
[relaychain.nodes.resources.requests]
|
||||
memory = "250Mi"
|
||||
cpu = "1000"
|
||||
|
||||
[relaychain.nodes.resources.limits]
|
||||
memory = "2Gi"
|
||||
cpu = "5Gi"
|
||||
|
||||
[[teyrchains]]
|
||||
id = 1000
|
||||
chain = "myteyrchain"
|
||||
add_to_genesis = true
|
||||
balance = 2000000000000
|
||||
default_command = "my-default-command"
|
||||
default_image = "mydefaultimage:latest"
|
||||
default_db_snapshot = "https://storage.com/path/to/other_snapshot.tgz"
|
||||
chain_spec_path = "/path/to/my/chain/spec.json"
|
||||
cumulus_based = true
|
||||
evm_based = false
|
||||
|
||||
[[teyrchains.collators]]
|
||||
name = "john"
|
||||
image = "anotherimage:latest"
|
||||
command = "my-non-default-command"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 5000000000
|
||||
|
||||
[[teyrchains.collators]]
|
||||
name = "charles"
|
||||
validator = false
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 0
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
[settings]
|
||||
timeout = 3600
|
||||
node_spawn_timeout = 600
|
||||
|
||||
[relaychain]
|
||||
chain = "rococo-local"
|
||||
default_command = "polkadot"
|
||||
default_image = "docker.io/parity/polkadot:latest"
|
||||
default_args = ["-lteyrchain=debug"]
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "alice"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = false
|
||||
balance = 2000000000000
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "bob"
|
||||
args = ["--database=paritydb-experimental"]
|
||||
validator = true
|
||||
invulnerable = false
|
||||
bootnode = true
|
||||
balance = 2000000000000
|
||||
|
||||
[[teyrchains]]
|
||||
id = 1000
|
||||
chain = "myteyrchain"
|
||||
onboard_as_teyrchain = false
|
||||
balance = 2000000000000
|
||||
default_db_snapshot = "https://storage.com/path/to/db_snapshot.tgz"
|
||||
chain_spec_path = "/path/to/my/chain/spec.json"
|
||||
cumulus_based = true
|
||||
|
||||
[teyrchains.collator]
|
||||
name = "john"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 5000000000
|
||||
|
||||
[[teyrchains]]
|
||||
id = 1000
|
||||
chain = "myteyrchain"
|
||||
onboard_as_teyrchain = false
|
||||
balance = 2000000000000
|
||||
default_db_snapshot = "https://storage.com/path/to/db_snapshot.tgz"
|
||||
chain_spec_path = "/path/to/my/chain/spec.json"
|
||||
cumulus_based = true
|
||||
evm_based = true
|
||||
|
||||
[[teyrchains.collators]]
|
||||
name = "john"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 5000000000
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
[relaychain]
|
||||
chain = "rococo-local"
|
||||
default_command = "polkadot"
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "alice"
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "bob"
|
||||
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
[relaychain]
|
||||
chain = "rococo-local"
|
||||
default_command = "polkadot"
|
||||
wasm_override = "/some/path/runtime.wasm"
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "alice"
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "bob"
|
||||
|
||||
[[teyrchains]]
|
||||
id = 1000
|
||||
wasm_override = "https://some.com/runtime.wasm"
|
||||
|
||||
[teyrchains.collator]
|
||||
name = "john"
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
[relaychain]
|
||||
default_command = "polkadot"
|
||||
chain_spec_path = "./rc.json"
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "alice"
|
||||
validator = true
|
||||
rpc_port = 9944
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "bob"
|
||||
validator = true
|
||||
rpc_port = 9945
|
||||
args = [
|
||||
"-lruntime::system=debug,runtime::session=trace,runtime::staking::ah-client=trace,runtime::ah-client=debug",
|
||||
]
|
||||
|
||||
[[teyrchains]]
|
||||
id = 1100
|
||||
chain_spec_path = "./teyrchain.json"
|
||||
|
||||
[teyrchains.collator]
|
||||
name = "charlie"
|
||||
rpc_port = 9946
|
||||
args = [
|
||||
"-lruntime::system=debug,runtime::multiblock-election=trace,runtime::staking=debug,runtime::staking::rc-client=trace,runtime::rc-client=debug",
|
||||
]
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
[settings]
|
||||
timeout = 3600
|
||||
node_spawn_timeout = 600
|
||||
|
||||
[relaychain]
|
||||
chain = "rococo-local"
|
||||
default_command = "polkadot"
|
||||
default_image = "docker.io/parity/polkadot:latest"
|
||||
default_args = ["-lteyrchain=debug"]
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "alice"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = false
|
||||
balance = 2000000000000
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "bob"
|
||||
args = ["--database=paritydb-experimental"]
|
||||
validator = true
|
||||
invulnerable = false
|
||||
bootnode = true
|
||||
balance = 2000000000000
|
||||
|
||||
[[teyrchains]]
|
||||
id = 1000
|
||||
chain = "myteyrchain"
|
||||
onboard_as_teyrchain = false
|
||||
balance = 2000000000000
|
||||
default_db_snapshot = "https://storage.com/path/to/db_snapshot.tgz"
|
||||
chain_spec_path = "/path/to/my/chain/spec.json"
|
||||
cumulus_based = true
|
||||
|
||||
[teyrchains.collator]
|
||||
name = "alice"
|
||||
validator = true
|
||||
invulnerable = true
|
||||
bootnode = true
|
||||
balance = 5000000000
|
||||
Reference in New Issue
Block a user