mirror of https://github.com/status-im/go-waku.git
78 lines
2.4 KiB
Go
78 lines
2.4 KiB
Go
//go:build gowaku_rln
|
|
// +build gowaku_rln
|
|
|
|
package main
|
|
|
|
import (
|
|
wcli "github.com/status-im/go-waku/waku/cliutils"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func rlnFlags() []cli.Flag {
|
|
return []cli.Flag{
|
|
&cli.BoolFlag{
|
|
Name: "rln-relay",
|
|
Value: false,
|
|
Usage: "Enable spam protection through rln-relay",
|
|
Destination: &options.RLNRelay.Enable,
|
|
},
|
|
&cli.IntFlag{
|
|
Name: "rln-relay-membership-index",
|
|
Value: 0,
|
|
Usage: "(experimental) the index of node in the rln-relay group: a value between 0-99 inclusive",
|
|
Destination: &options.RLNRelay.MembershipIndex,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "rln-relay-pubsub-topic",
|
|
Value: "/waku/2/default-waku/proto",
|
|
Usage: "the pubsub topic for which rln-relay gets enabled",
|
|
Destination: &options.RLNRelay.PubsubTopic,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "rln-relay-content-topic",
|
|
Value: "/toy-chat/2/luzhou/proto",
|
|
Usage: "the content topic for which rln-relay gets enabled",
|
|
Destination: &options.RLNRelay.ContentTopic,
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "rln-relay-dynamic",
|
|
Usage: "Enable waku-rln-relay with on-chain dynamic group management",
|
|
Destination: &options.RLNRelay.Dynamic,
|
|
},
|
|
&cli.PathFlag{
|
|
Name: "rln-relay-cred-path",
|
|
Usage: "RLN relay membership credentials file",
|
|
Value: "",
|
|
Destination: &options.RLNRelay.CredentialsPath,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "rln-relay-cred-password",
|
|
Value: "",
|
|
Usage: "Password for encrypting RLN credentials",
|
|
Destination: &options.RLNRelay.CredentialsPassword,
|
|
},
|
|
// TODO: this is a good candidate option for subcommands
|
|
// TODO: consider accepting a private key file and passwd
|
|
&cli.GenericFlag{
|
|
Name: "rln-relay-eth-account-private-key",
|
|
Usage: "Ethereum account private key used for registering in member contract",
|
|
Value: &wcli.PrivateKeyValue{
|
|
Value: &options.RLNRelay.ETHPrivateKey,
|
|
},
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "rln-relay-eth-client-address",
|
|
Usage: "Ethereum testnet client address",
|
|
Value: "ws://localhost:8545",
|
|
Destination: &options.RLNRelay.ETHClientAddress,
|
|
},
|
|
&cli.GenericFlag{
|
|
Name: "rln-relay-eth-contract-address",
|
|
Usage: "Address of membership contract ",
|
|
Value: &wcli.AddressValue{
|
|
Value: &options.RLNRelay.MembershipContractAddress,
|
|
},
|
|
},
|
|
}
|
|
}
|