mirror of https://github.com/status-im/go-waku.git
187 lines
5.2 KiB
Go
187 lines
5.2 KiB
Go
package waku
|
||
|
||
import (
|
||
"time"
|
||
|
||
"github.com/urfave/cli/v2"
|
||
)
|
||
|
||
// RendezvousOptions are settings for enabling the rendezvous protocol for
|
||
// discovering new nodes
|
||
type RendezvousOptions struct {
|
||
Enable bool
|
||
Nodes cli.StringSlice
|
||
}
|
||
|
||
// RendezvousServerOptions are settings to enable the waku node to act as a
|
||
// rendezvous server
|
||
type RendezvousServerOptions struct {
|
||
Enable bool
|
||
DBPath string
|
||
}
|
||
|
||
// DiscV5Options are settings to enable a modified version of Ethereum’s Node
|
||
// Discovery Protocol v5 as a means for ambient node discovery.
|
||
type DiscV5Options struct {
|
||
Enable bool
|
||
Nodes cli.StringSlice
|
||
Port int
|
||
AutoUpdate bool
|
||
}
|
||
|
||
// RelayOptions are settings to enable the relay protocol which is a pubsub
|
||
// approach to peer-to-peer messaging with a strong focus on privacy,
|
||
// censorship-resistance, security and scalability.
|
||
type RelayOptions struct {
|
||
Enable bool
|
||
Topics cli.StringSlice
|
||
PeerExchange bool
|
||
MinRelayPeersToPublish int
|
||
}
|
||
|
||
type RLNRelayOptions struct {
|
||
Enable bool
|
||
CredentialsFile string
|
||
MembershipIndex int
|
||
PubsubTopic string
|
||
ContentTopic string
|
||
Dynamic bool
|
||
IDKey string
|
||
IDCommitment string
|
||
ETHPrivateKey string
|
||
ETHClientAddress string
|
||
MembershipContractAddress string
|
||
}
|
||
|
||
// FilterOptions are settings used to enable filter protocol. This is a protocol
|
||
// that enables subscribing to messages that a peer receives. This is a more
|
||
// lightweight version of WakuRelay specifically designed for bandwidth
|
||
// restricted devices.
|
||
type FilterOptions struct {
|
||
Enable bool
|
||
DisableFullNode bool
|
||
Nodes cli.StringSlice
|
||
Timeout int
|
||
}
|
||
|
||
// LightpushOptions are settings used to enable the lightpush protocol. This is
|
||
// a lightweight protocol used to avoid having to run the relay protocol which
|
||
// is more resource intensive. With this protocol a message is pushed to a peer
|
||
// that supports both the lightpush protocol and relay protocol. That peer will
|
||
// broadcast the message and return a confirmation that the message was
|
||
// broadcasted
|
||
type LightpushOptions struct {
|
||
Enable bool
|
||
Nodes cli.StringSlice
|
||
}
|
||
|
||
// StoreOptions are settings used for enabling the store protocol, used to
|
||
// retrieve message history from other nodes as well as acting as a store
|
||
// node and provide message history to nodes that ask for it.
|
||
type StoreOptions struct {
|
||
Enable bool
|
||
PersistMessages bool
|
||
ShouldResume bool
|
||
RetentionMaxSeconds int
|
||
RetentionMaxMessages int
|
||
Nodes cli.StringSlice
|
||
}
|
||
|
||
// SwapOptions are settings used for configuring the swap protocol
|
||
type SwapOptions struct {
|
||
Enable bool
|
||
Mode int
|
||
PaymentThreshold int
|
||
DisconnectThreshold int
|
||
}
|
||
|
||
func (s *StoreOptions) RetentionMaxSecondsDuration() time.Duration {
|
||
return time.Duration(s.RetentionMaxSeconds) * time.Second
|
||
}
|
||
|
||
// DNSDiscoveryOptions are settings used for enabling DNS-based discovery
|
||
// protocol that stores merkle trees in DNS records which contain connection
|
||
// information for nodes. It's very useful for bootstrapping a p2p network.
|
||
type DNSDiscoveryOptions struct {
|
||
Enable bool
|
||
URL string
|
||
Nameserver string
|
||
}
|
||
|
||
// MetricsOptions are settings used to start a prometheus server for obtaining
|
||
// useful node metrics to monitor the health of behavior of the go-waku node.
|
||
type MetricsOptions struct {
|
||
Enable bool
|
||
Address string
|
||
Port int
|
||
}
|
||
|
||
// RPCServerOptions are settings used to start a json rpc server
|
||
type RPCServerOptions struct {
|
||
Enable bool
|
||
Port int
|
||
Address string
|
||
Admin bool
|
||
Private bool
|
||
}
|
||
|
||
// RESTServerOptions are settings used to start a rest http server
|
||
type RESTServerOptions struct {
|
||
Enable bool
|
||
Port int
|
||
Address string
|
||
Admin bool
|
||
Private bool
|
||
RelayCacheCapacity int
|
||
}
|
||
|
||
// WSOptions are settings used for enabling websockets and secure websockets
|
||
// support
|
||
type WSOptions struct {
|
||
Enable bool
|
||
Port int
|
||
Address string
|
||
Secure bool
|
||
KeyPath string
|
||
CertPath string
|
||
}
|
||
|
||
// Options contains all the available features and settings that can be
|
||
// configured via flags when executing go-waku as a service.
|
||
type Options struct {
|
||
Port int
|
||
Address string
|
||
Dns4DomainName string
|
||
NodeKey string
|
||
KeyFile string
|
||
KeyPasswd string
|
||
GenerateKey bool
|
||
Overwrite bool
|
||
StaticNodes cli.StringSlice
|
||
KeepAlive int
|
||
UseDB bool
|
||
DBPath string
|
||
AdvertiseAddress string
|
||
Version bool
|
||
ShowAddresses bool
|
||
LogLevel string
|
||
LogEncoding string
|
||
NAT string
|
||
PersistPeers bool
|
||
|
||
Websocket WSOptions
|
||
Relay RelayOptions
|
||
Store StoreOptions
|
||
Swap SwapOptions
|
||
Filter FilterOptions
|
||
LightPush LightpushOptions
|
||
RLNRelay RLNRelayOptions
|
||
DiscV5 DiscV5Options
|
||
Rendezvous RendezvousOptions
|
||
RendezvousServer RendezvousServerOptions
|
||
DNSDiscovery DNSDiscoveryOptions
|
||
Metrics MetricsOptions
|
||
RPCServer RPCServerOptions
|
||
RESTServer RESTServerOptions
|
||
}
|