Documentation ¶
Index ¶
- func Bool(v bool) (p *bool)
- func IsHTTPStatusErrorCode(err error, code int) bool
- type Account
- type Accounting
- type Addresses
- type Balance
- type Balances
- type Bin
- type CashoutStatusResponse
- type CashoutStatusResult
- type Cheque
- type ChequebookBalanceResponse
- type Client
- type ClientOptions
- type DebugStore
- type DebugStoreService
- type HTTPStatusError
- type Health
- type MetricSnapshotView
- type NodeService
- func (n *NodeService) Accounting(ctx context.Context) (resp Accounting, err error)
- func (n *NodeService) Addresses(ctx context.Context) (resp Addresses, err error)
- func (n *NodeService) Balance(ctx context.Context, a swarm.Address) (resp Balance, err error)
- func (n *NodeService) Balances(ctx context.Context) (resp Balances, err error)
- func (n *NodeService) Cashout(ctx context.Context, a swarm.Address) (resp TransactionHashResponse, err error)
- func (n *NodeService) CashoutStatus(ctx context.Context, a swarm.Address) (resp CashoutStatusResponse, err error)
- func (n *NodeService) ChequebookBalance(ctx context.Context) (resp ChequebookBalanceResponse, err error)
- func (n *NodeService) HasChunk(ctx context.Context, a swarm.Address) (bool, error)
- func (n *NodeService) Health(ctx context.Context) (resp Health, err error)
- func (n *NodeService) Peers(ctx context.Context) (resp Peers, err error)
- func (n *NodeService) Readiness(ctx context.Context) (resp Readiness, err error)
- func (n *NodeService) Settlement(ctx context.Context, a swarm.Address) (resp Settlement, err error)
- func (n *NodeService) Settlements(ctx context.Context) (resp Settlements, err error)
- func (n *NodeService) Topology(ctx context.Context) (resp Topology, err error)
- type Peer
- type PeerInfo
- type Peers
- type PingPongService
- type Pong
- type PostageService
- func (p *PostageService) CreatePostageBatch(ctx context.Context, amount int64, depth uint64, label string) (batchID string, err error)
- func (p *PostageService) DilutePostageBatch(ctx context.Context, batchID string, newDepth uint64, gasPrice string) (err error)
- func (p *PostageService) PostageBatches(ctx context.Context) ([]PostageStampResponse, error)
- func (p *PostageService) PostageStamp(ctx context.Context, batchID string) (PostageStampResponse, error)
- func (p *PostageService) ReserveState(ctx context.Context) (ReserveState, error)
- func (p *PostageService) TopUpPostageBatch(ctx context.Context, batchID string, amount int64, gasPrice string) (err error)
- type PostageStampResponse
- type Readiness
- type ReserveState
- type Settlement
- type Settlements
- type StakingService
- type Topology
- type TransactionHashResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Bool ¶
Bool is a helper routine that allocates a new bool value to store v and returns a pointer to it.
func IsHTTPStatusErrorCode ¶ added in v0.8.5
IsHTTPStatusErrorCode return whether the error is HTTPStatusError with a specific HTTP status code.
Types ¶
type Account ¶ added in v0.11.4
type Account struct { Balance *bigint.BigInt `json:"balance"` ConsumedBalance *bigint.BigInt `json:"consumedBalance"` GhostBalance *bigint.BigInt `json:"ghostBalance"` ReservedBalance *bigint.BigInt `json:"reservedBalance"` ShadowReservedBalance *bigint.BigInt `json:"shadowReservedBalance"` SurplusBalance *bigint.BigInt `json:"surplusBalance"` ThresholdReceived *bigint.BigInt `json:"thresholdReceived"` ThresholdGiven *bigint.BigInt `json:"thresholdGiven"` CurrentThresholdReceived *bigint.BigInt `json:"currentThresholdReceived"` CurrentThresholdGiven *bigint.BigInt `json:"currentThresholdGiven"` }
Account represents node's account with a given peer
type Accounting ¶ added in v0.11.4
Accounting represents node's accounts with all peers
type Addresses ¶
type Addresses struct { Ethereum string `json:"ethereum"` Overlay swarm.Address `json:"overlay"` PublicKey string `json:"public_key"` Underlay []string `json:"underlay"` PSSPublicKey string `json:"pss_public_key"` }
Addresses represents node's addresses
type Balances ¶ added in v0.8.5
type Balances struct {
Balances []Balance `json:"balances"`
}
Balances represents node's balances with all peers
type Bin ¶ added in v0.8.5
type Bin struct { Population int `json:"population"` Connected int `json:"connected"` DisconnectedPeers []PeerInfo `json:"disconnectedPeers"` ConnectedPeers []PeerInfo `json:"connectedPeers"` }
Bin represents Kademlia bin
type CashoutStatusResponse ¶ added in v0.8.5
type CashoutStatusResult ¶ added in v0.8.5
type ChequebookBalanceResponse ¶ added in v0.8.5
type Client ¶
type Client struct { // Services that API provides. Node *NodeService PingPong *PingPongService Postage *PostageService Stake *StakingService // contains filtered or unexported fields }
Client manages communication with the Bee Debug API.
type ClientOptions ¶
ClientOptions holds optional parameters for the Client.
type DebugStore ¶ added in v0.13.0
DebugStore represents DebugStore's response
type DebugStoreService ¶ added in v0.13.0
type DebugStoreService service
DebugStoreService represents Bee's debug store service
func (*DebugStoreService) GetDebugStore ¶ added in v0.13.0
func (d *DebugStoreService) GetDebugStore(ctx context.Context) (DebugStore, error)
GetDebugStore gets db indices
type HTTPStatusError ¶ added in v0.8.5
type HTTPStatusError struct {
Code int
}
HTTPStatusError represents the error derived from the HTTP response status code.
func NewHTTPStatusError ¶ added in v0.8.5
func NewHTTPStatusError(code int) *HTTPStatusError
NewHTTPStatusError creates a new instance of HTTPStatusError based on the provided code.
func (*HTTPStatusError) Error ¶ added in v0.8.5
func (e *HTTPStatusError) Error() string
type Health ¶ added in v0.8.5
type Health struct {
Status string `json:"status"`
}
Health represents node's health
type MetricSnapshotView ¶ added in v0.10.6
type MetricSnapshotView struct { LastSeenTimestamp int64 `json:"lastSeenTimestamp"` SessionConnectionRetry uint64 `json:"sessionConnectionRetry"` ConnectionTotalDuration float64 `json:"connectionTotalDuration"` SessionConnectionDuration float64 `json:"sessionConnectionDuration"` SessionConnectionDirection string `json:"sessionConnectionDirection"` LatencyEWMA int64 `json:"latencyEWMA"` Reachability string `json:"reachability"` }
MetricSnapshotView represents snapshot of metrics counters in more human readable form.
type NodeService ¶
type NodeService service
NodeService represents Bee's Node service
func (*NodeService) Accounting ¶ added in v0.11.4
func (n *NodeService) Accounting(ctx context.Context) (resp Accounting, err error)
Accounting returns node's accounts with all peers
func (*NodeService) Addresses ¶
func (n *NodeService) Addresses(ctx context.Context) (resp Addresses, err error)
Addresses returns node's addresses
func (*NodeService) Balances ¶ added in v0.8.5
func (n *NodeService) Balances(ctx context.Context) (resp Balances, err error)
Balances returns node's balances with all peers
func (*NodeService) Cashout ¶ added in v0.8.5
func (n *NodeService) Cashout(ctx context.Context, a swarm.Address) (resp TransactionHashResponse, err error)
func (*NodeService) CashoutStatus ¶ added in v0.8.5
func (n *NodeService) CashoutStatus(ctx context.Context, a swarm.Address) (resp CashoutStatusResponse, err error)
func (*NodeService) ChequebookBalance ¶ added in v0.8.5
func (n *NodeService) ChequebookBalance(ctx context.Context) (resp ChequebookBalanceResponse, err error)
func (*NodeService) Health ¶ added in v0.8.5
func (n *NodeService) Health(ctx context.Context) (resp Health, err error)
Health returns node's health
func (*NodeService) Peers ¶
func (n *NodeService) Peers(ctx context.Context) (resp Peers, err error)
Peers returns node's peers
func (*NodeService) Readiness ¶ added in v0.8.5
func (n *NodeService) Readiness(ctx context.Context) (resp Readiness, err error)
Readiness returns node's readiness
func (*NodeService) Settlement ¶ added in v0.8.5
func (n *NodeService) Settlement(ctx context.Context, a swarm.Address) (resp Settlement, err error)
Settlement returns node's settlement with a given peer
func (*NodeService) Settlements ¶ added in v0.8.5
func (n *NodeService) Settlements(ctx context.Context) (resp Settlements, err error)
Settlements returns node's settlements with all peers
type PeerInfo ¶ added in v0.10.6
type PeerInfo struct { Address swarm.Address `json:"address"` Metrics *MetricSnapshotView `json:"metrics,omitempty"` }
PeerInfo is a view of peer information exposed to a user.
type PingPongService ¶ added in v0.8.5
type PingPongService service
PingPongService represents Bee's PingPong service
type Pong ¶ added in v0.8.5
type Pong struct {
RTT string `json:"rtt"`
}
Pong represents Ping's response
type PostageService ¶ added in v0.8.5
type PostageService service
PostageService represents Bee's Postage service
func (*PostageService) CreatePostageBatch ¶ added in v0.8.5
func (p *PostageService) CreatePostageBatch(ctx context.Context, amount int64, depth uint64, label string) (batchID string, err error)
Sends a create postage request to a node that returns the batchID
func (*PostageService) DilutePostageBatch ¶ added in v0.8.5
func (p *PostageService) DilutePostageBatch(ctx context.Context, batchID string, newDepth uint64, gasPrice string) (err error)
Sends a dilute batch request to a node that returns the batchID
func (*PostageService) PostageBatches ¶ added in v0.8.5
func (p *PostageService) PostageBatches(ctx context.Context) ([]PostageStampResponse, error)
Fetches the list postage stamp batches
func (*PostageService) PostageStamp ¶ added in v0.11.3
func (p *PostageService) PostageStamp(ctx context.Context, batchID string) (PostageStampResponse, error)
func (*PostageService) ReserveState ¶ added in v0.8.5
func (p *PostageService) ReserveState(ctx context.Context) (ReserveState, error)
Returns the batchstore reservestate of the node
func (*PostageService) TopUpPostageBatch ¶ added in v0.8.5
func (p *PostageService) TopUpPostageBatch(ctx context.Context, batchID string, amount int64, gasPrice string) (err error)
Sends a topup batch request to a node that returns the batchID
type PostageStampResponse ¶ added in v0.8.5
type PostageStampResponse struct { BatchID string `json:"batchID"` Utilization uint32 `json:"utilization"` Usable bool `json:"usable"` Label string `json:"label"` Depth uint8 `json:"depth"` Amount *bigint.BigInt `json:"amount"` BucketDepth uint8 `json:"bucketDepth"` BlockNumber uint64 `json:"blockNumber"` ImmutableFlag bool `json:"immutableFlag"` Exists bool `json:"exists"` BatchTTL int64 `json:"batchTTL"` }
type Readiness ¶ added in v0.8.5
type Readiness struct {
Status string `json:"status"`
}
Readiness represents node's readiness
type ReserveState ¶ added in v0.8.5
type ReserveState struct { Radius uint8 `json:"radius"` StorageRadius uint8 `json:"storageRadius"` }
func (ReserveState) String ¶ added in v0.8.5
func (rs ReserveState) String() string
type Settlement ¶ added in v0.8.5
type Settlement struct { Peer string `json:"peer"` Received *bigint.BigInt `json:"received"` Sent *bigint.BigInt `json:"sent"` }
Settlement represents node's settlement with a peer
type Settlements ¶ added in v0.8.5
type Settlements struct { Settlements []Settlement `json:"settlements"` TotalReceived *bigint.BigInt `json:"totalReceived"` TotalSent *bigint.BigInt `json:"totalSent"` }
Settlements represents node's settlements with all peers
type StakingService ¶ added in v0.11.11
type StakingService service
StakingService represents Bee's staking service
func (*StakingService) DepositStake ¶ added in v0.11.11
func (s *StakingService) DepositStake(ctx context.Context, amount *big.Int) (txHash string, err error)
DepositStake deposits stake
func (*StakingService) GetStakedAmount ¶ added in v0.11.11
GetStakedAmount gets stake
func (*StakingService) WithdrawStake ¶ added in v0.11.13
func (s *StakingService) WithdrawStake(ctx context.Context) (txHash string, err error)
WithdrawStake withdraws stake
type Topology ¶ added in v0.8.5
type Topology struct { BaseAddr swarm.Address `json:"baseAddr"` Population int `json:"population"` Connected int `json:"connected"` Timestamp time.Time `json:"timestamp"` NnLowWatermark int `json:"nnLowWatermark"` Depth int `json:"depth"` Bins map[string]Bin `json:"bins"` LightNodes Bin `json:"lightNodes"` Reachability string `json:"reachability"` // current reachability status NetworkAvailability string `json:"networkAvailability"` // network availability }
Topology represents Kademlia topology
type TransactionHashResponse ¶ added in v0.8.5
type TransactionHashResponse struct {
TransactionHash string `json:"transactionHash"`
}