lotus/api/api.go

83 lines
1.2 KiB
Go
Raw Normal View History

package api
import (
"context"
2019-07-08 21:01:15 +00:00
"github.com/libp2p/go-libp2p-core/peer"
)
2019-07-02 13:05:43 +00:00
// Version provides various build-time information
type Version struct {
Version string
// TODO: git commit / os / genesis cid?
}
2019-07-02 13:05:43 +00:00
// API is a low-level interface to the Filecoin network
type API interface {
// chain
// // head
// messages
// // wait
// // send
// // status
// // mpool
// // // ls / show / rm
// dag
// // get block
// // (cli: show / info)
// network
2019-07-08 19:07:16 +00:00
NetPeers(context.Context) ([]peer.AddrInfo, error) // TODO: check serialization
NetConnect(context.Context, peer.AddrInfo) error
NetAddrsListen(context.Context) (MultiaddrSlice, error)
// // ping
// Struct
// miner
// // create
// // owner
// // power
// // set-price
// // set-perrid
// // UX ?
// wallet
// // import
// // export
// // list
// // (on cli - cmd to list associations)
// dht
// // need ?
// paych
// // todo
// retrieval
// // retrieve piece
// Other
// // ID (on cli - print with other info)
2019-07-02 13:05:43 +00:00
// ID returns peerID of libp2p node backing this API
ID(context.Context) (peer.ID, error)
2019-07-02 13:05:43 +00:00
// Version provides information about API provider
Version(context.Context) (Version, error)
}