github.com/status-im/status-go@v1.1.0/eth-node/types/subscribe.go (about)

     1  package types
     2  
     3  // SubscriptionOptions represents the parameters passed to Subscribe()
     4  // to customize the subscription behavior.
     5  type SubscriptionOptions struct {
     6  	PrivateKeyID string
     7  	SymKeyID     string
     8  	PoW          float64
     9  	PubsubTopic  string
    10  	Topics       [][]byte
    11  }