ipld-eth-server/pkg/core/rpc_client.go

10 lines
222 B
Go
Raw Normal View History

package core
import "context"
type RpcClient interface {
CallContext(ctx context.Context, result interface{}, method string, args ...interface{}) error
IpcPath() string
SupportedModules() (map[string]string, error)
}