47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
package protocol
|
|
|
|
import (
|
|
"crypto/ecdsa"
|
|
|
|
"github.com/libp2p/go-libp2p/core/peer"
|
|
|
|
"github.com/status-im/status-go/eth-node/types"
|
|
)
|
|
|
|
func (m *Messenger) AddStorePeer(address string) (peer.ID, error) {
|
|
return m.transport.AddStorePeer(address)
|
|
}
|
|
|
|
func (m *Messenger) AddRelayPeer(address string) (peer.ID, error) {
|
|
return m.transport.AddStorePeer(address)
|
|
}
|
|
|
|
func (m *Messenger) DialPeer(address string) error {
|
|
return m.transport.DialPeer(address)
|
|
}
|
|
|
|
func (m *Messenger) DialPeerByID(peerID string) error {
|
|
return m.transport.DialPeerByID(peerID)
|
|
}
|
|
|
|
func (m *Messenger) DropPeer(peerID string) error {
|
|
return m.transport.DropPeer(peerID)
|
|
}
|
|
|
|
func (m *Messenger) Peers() map[string]types.WakuV2Peer {
|
|
return m.transport.Peers()
|
|
}
|
|
|
|
func (m *Messenger) ListenAddresses() ([]string, error) {
|
|
return m.transport.ListenAddresses()
|
|
}
|
|
|
|
// Subscribe to a pubsub topic, passing an optional public key if the pubsub topic is protected
|
|
func (m *Messenger) SubscribeToPubsubTopic(topic string, optPublicKey *ecdsa.PublicKey) error {
|
|
return m.transport.SubscribeToPubsubTopic(topic, optPublicKey)
|
|
}
|
|
|
|
func (m *Messenger) StorePubsubTopicKey(topic string, privKey *ecdsa.PrivateKey) error {
|
|
return m.transport.StorePubsubTopicKey(topic, privKey)
|
|
}
|