mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 04:04:21 +01:00
26 lines
379 B
Go
26 lines
379 B
Go
package common
|
|
|
|
type Network struct {
|
|
Name string
|
|
SecKey string
|
|
PubKey string
|
|
RelayKey string
|
|
Addr string
|
|
}
|
|
|
|
var MainNet = Network{
|
|
Name: "mainnet",
|
|
SecKey: "asec",
|
|
PubKey: "apub",
|
|
RelayKey: "arelay",
|
|
Addr: "ark",
|
|
}
|
|
|
|
var TestNet = Network{
|
|
Name: "testnet",
|
|
SecKey: "tasec",
|
|
PubKey: "tapub",
|
|
RelayKey: "tarelay",
|
|
Addr: "tark",
|
|
}
|