2019-06-25 11:42:17 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/filecoin-project/go-lotus/api"
|
2019-06-29 09:19:06 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/rpclib"
|
2019-06-25 11:42:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func NewRPC(addr string) api.API {
|
2019-06-29 09:19:06 +00:00
|
|
|
var res api.Struct
|
|
|
|
rpclib.NewClient(addr, "Filecoin", &res.Internal)
|
|
|
|
return &res
|
|
|
|
}
|