-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|