aboutsummaryrefslogtreecommitdiffstats
path: root/params/bootnodes.go
diff options
context:
space:
mode:
authorMission Liao <mission.liao@dexon.org>2019-02-25 19:08:17 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:57 +0800
commit27d1254cd5459b69217b4b7877493a008e9dbe3e (patch)
tree125e8c41dd2c5a3fbde1d968d111c2f71dcec10e /params/bootnodes.go
parent5832a21db625bfa98a3b7909bb6996dd1fd2e4d3 (diff)
downloaddexon-27d1254cd5459b69217b4b7877493a008e9dbe3e.tar
dexon-27d1254cd5459b69217b4b7877493a008e9dbe3e.tar.gz
dexon-27d1254cd5459b69217b4b7877493a008e9dbe3e.tar.bz2
dexon-27d1254cd5459b69217b4b7877493a008e9dbe3e.tar.lz
dexon-27d1254cd5459b69217b4b7877493a008e9dbe3e.tar.xz
dexon-27d1254cd5459b69217b4b7877493a008e9dbe3e.tar.zst
dexon-27d1254cd5459b69217b4b7877493a008e9dbe3e.zip
params: add Yilan network (#207)
* Add Yilan network * Fixup: remove dummy log
Diffstat (limited to 'params/bootnodes.go')
-rw-r--r--params/bootnodes.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/params/bootnodes.go b/params/bootnodes.go
index 2530215bf..d655680fb 100644
--- a/params/bootnodes.go
+++ b/params/bootnodes.go
@@ -28,12 +28,18 @@ var TestnetBootnodes = []string{
"enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@35.234.27.122:30301",
}
-// TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the
+// TaipeiBootnodes are the enode URLs of the P2P bootstrap nodes running on the
// Taipei test network.
var TaipeiBootnodes = []string{
"enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@34.80.219.23:30301",
}
+// YilanBootnodes are the enode URLs of the P2P bootstrap nodes running on the
+// Yilan test network.
+var YilanBootnodes = []string{
+ "enode://0478aa13c91aa0db8e93b668313b7eb0532fbdb24f64772375373b14dbe326c238ad09ab4469f6442c9a9753f1275aeec2e531912c14a958ed1feb4ae7e227ef@34.80.4.56:30301",
+}
+
// DiscoveryV5Bootnodes are the enode URLs of the P2P bootstrap nodes for the
// experimental RLPx v5 topic-discovery network.
var DiscoveryV5Bootnodes = []string{}