From eeb39b82fc21866cdc99a2627043ef3c4b2681bc Mon Sep 17 00:00:00 2001 From: Anton Yemelyanov Date: Wed, 27 Dec 2023 14:23:36 +0200 Subject: [PATCH] update servers --- Servers.toml | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/Servers.toml b/Servers.toml index 5dc38e6..fc0a326 100644 --- a/Servers.toml +++ b/Servers.toml @@ -1,15 +1,24 @@ [[server]] -name = "aspectron alpha" +# if port is not present, port is automatically +# determined by the protocol+network combination +# this means the address is capable of serving +# multiple networks. Supported networks must be +# specified in the network field. +name = "local network agnostic server" location = "EU" protocol = "wrpc:borsh" -network = ["testnet-10"] -address = "1.2.3.4" +network = ["mainnet","testnet-10"] +address = "127.0.0.1" [[server]] -name = "community alpha" +# if the port is present, this means the address +# is only capable of serving a single network +# on a dedicated port. The network field should +# contains a single network entry. +name = "local testnet server" location = "EU" -protocol = "wrpc:json" +protocol = "wrpc:borsh" network = ["testnet-10"] -address = "4.5.6.7" -port = 3030 +address = "127.0.0.1" +port = 17210