github.com/status-im/status-go@v1.1.0/common/status_node_service.go (about) 1 package common 2 3 import ( 4 "github.com/ethereum/go-ethereum/p2p" 5 "github.com/ethereum/go-ethereum/rpc" 6 ) 7 8 type StatusService interface { 9 Start() error 10 Stop() error 11 Protocols() []p2p.Protocol 12 APIs() []rpc.API 13 }