status-go/eth-node/types/node.go

27 lines
540 B
Go
Raw Normal View History

package types
import (
"fmt"
"go.uber.org/zap"
2020-01-02 09:10:19 +00:00
enstypes "github.com/status-im/status-go/eth-node/types/ens"
)
// EnodeID is a unique identifier for each node.
type EnodeID [32]byte
// ID prints as a long hexadecimal number.
func (n EnodeID) String() string {
return fmt.Sprintf("%x", n[:])
}
type Node interface {
NewENSVerifier(logger *zap.Logger) enstypes.ENSVerifier
GetWaku(ctx interface{}) (Waku, error)
GetWakuV2(ctx interface{}) (Waku, error)
AddPeer(url string) error
RemovePeer(url string) error
PeersCount() int
}