100 lines
2.3 KiB
HCL
100 lines
2.3 KiB
HCL
vega_binary_path = "vega"
|
|
|
|
network "testnet" {
|
|
ethereum {
|
|
chain_id = "1440"
|
|
network_id = "1441"
|
|
endpoint = "http://127.0.0.1:8545/"
|
|
}
|
|
|
|
faucet "faucet-1" {
|
|
wallet_pass = "f4uc3tw4ll3t-v3g4-p4ssphr4e3"
|
|
|
|
template = <<-EOT
|
|
[Node]
|
|
Port = 3002
|
|
IP = "127.0.0.1"
|
|
EOT
|
|
}
|
|
|
|
pre_start {
|
|
docker_service "ganache-1" {
|
|
image = "vegaprotocol/ganache:latest"
|
|
cmd = "ganache-cli"
|
|
args = [
|
|
"--blockTime", "1",
|
|
"--chainId", "1440",
|
|
"--networkId", "1441",
|
|
"-h", "0.0.0.0",
|
|
"-p", "8545",
|
|
"-m", "ozone access unlock valid olympic save include omit supply green clown session",
|
|
"--db", "/app/ganache-db",
|
|
]
|
|
static_port {
|
|
value = 8545
|
|
to = 8545
|
|
}
|
|
auth_soft_fail = true
|
|
}
|
|
docker_service "postgres-1" {
|
|
image = "vegaprotocol/timescaledb:2.8.0-pg14"
|
|
cmd = "postgres"
|
|
args = []
|
|
env = {
|
|
POSTGRES_USER="vega"
|
|
POSTGRES_PASSWORD="vega"
|
|
POSTGRES_DBS="vega0,vega1,vega2,vega3,vega4,vega5,vega6,vega7,vega8"
|
|
}
|
|
|
|
static_port {
|
|
value = 5232
|
|
to = 5432
|
|
}
|
|
resources {
|
|
cpu = 600
|
|
memory = 900
|
|
}
|
|
|
|
volume_mounts = ["${network_home_path}:${network_home_path}"]
|
|
|
|
auth_soft_fail = true
|
|
}
|
|
}
|
|
|
|
genesis_template_file = "./genesis.tmpl"
|
|
smart_contracts_addresses_file = "./public_smart_contracts_addresses.json"
|
|
|
|
node_set "validators" {
|
|
count = 2
|
|
mode = "validator"
|
|
|
|
node_wallet_pass = "n0d3w4ll3t-p4ssphr4e3"
|
|
vega_wallet_pass = "w4ll3t-p4ssphr4e3"
|
|
ethereum_wallet_pass = "ch41nw4ll3t-3th3r3um-p4ssphr4e3"
|
|
|
|
config_templates {
|
|
vega_file = "./node_set_templates/default/vega_validators.tmpl"
|
|
tendermint_file = "./node_set_templates/default/tendermint_validators.tmpl"
|
|
}
|
|
}
|
|
|
|
node_set "full" {
|
|
count = 1
|
|
mode = "full"
|
|
use_data_node = true
|
|
|
|
pre_start_probe {
|
|
postgres {
|
|
connection = "user=vega dbname=vega{{ .NodeNumber }} password=vega port=5232 sslmode=disable"
|
|
query = "select 10 + 10"
|
|
}
|
|
}
|
|
|
|
config_templates {
|
|
vega_file = "./node_set_templates/default/vega_full.tmpl"
|
|
tendermint_file = "./node_set_templates/default/tendermint_full.tmpl"
|
|
data_node_file = "./node_set_templates/default/data_node_full_external_postgres.tmpl"
|
|
}
|
|
}
|
|
}
|