Skip to content

Commit

Permalink
update servers
Browse files Browse the repository at this point in the history
  • Loading branch information
aspect committed Dec 27, 2023
1 parent 9d3cf1a commit eeb39b8
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions Servers.toml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit eeb39b8

Please sign in to comment.