Documentation ¶
Overview ¶
Package client implements a very simple wrapper for GoShimmer's web API.
Index ¶
- Variables
- type BasicAuth
- type GoShimmerAPI
- func (api *GoShimmerAPI) AddManualPeers(peers []*peer.Peer) error
- func (api *GoShimmerAPI) BaseURL() string
- func (api *GoShimmerAPI) BroadcastCollectiveBeacon(payload []byte) (string, error)
- func (api *GoShimmerAPI) Data(data []byte) (string, error)
- func (api *GoShimmerAPI) GetAddressOutputs(base58EncodedAddress string) (*json_models.GetAddressResponse, error)
- func (api *GoShimmerAPI) GetAddressUnspentOutputs(base58EncodedAddress string) (*json_models.GetAddressResponse, error)
- func (api *GoShimmerAPI) GetAllMana() (*jsonmodels.GetAllManaResponse, error)
- func (api *GoShimmerAPI) GetAllowedManaPledgeNodeIDs() (*jsonmodels.AllowedManaPledgeResponse, error)
- func (api *GoShimmerAPI) GetAttachments(base58EncodedTxnID string) (*value.AttachmentsResponse, error)
- func (api *GoShimmerAPI) GetAutopeeringNeighbors(knownPeers bool) (*jsonmodels.GetNeighborsResponse, error)
- func (api *GoShimmerAPI) GetBranch(base58EncodedBranchID string) (*json_models.Branch, error)
- func (api *GoShimmerAPI) GetBranchChildren(base58EncodedBranchID string) (*json_models.GetBranchChildrenResponse, error)
- func (api *GoShimmerAPI) GetBranchConflicts(base58EncodedBranchID string) (*json_models.GetBranchConflictsResponse, error)
- func (api *GoShimmerAPI) GetCommittee() (*jsonmodels.CommitteeResponse, error)
- func (api *GoShimmerAPI) GetConsensusEventLogs(nodeIDs []string) (*jsonmodels.GetEventLogsResponse, error)
- func (api *GoShimmerAPI) GetMana(shortNodeID string) (*jsonmodels.GetManaResponse, error)
- func (api *GoShimmerAPI) GetManaFullNodeID(fullNodeID string) (*jsonmodels.GetManaResponse, error)
- func (api *GoShimmerAPI) GetManaPercentile(fullNodeID string) (*jsonmodels.GetPercentileResponse, error)
- func (api *GoShimmerAPI) GetManualConnectedPeers() ([]*peer.Peer, error)
- func (api *GoShimmerAPI) GetMessage(base58EncodedID string) (*jsonmodels.Message, error)
- func (api *GoShimmerAPI) GetMessageMetadata(base58EncodedID string) (*jsonmodels.MessageMetadata, error)
- func (api *GoShimmerAPI) GetNHighestAccessMana(n int) (*jsonmodels.GetNHighestResponse, error)
- func (api *GoShimmerAPI) GetNHighestConsensusMana(n int) (*jsonmodels.GetNHighestResponse, error)
- func (api *GoShimmerAPI) GetOnlineAccessMana() (*jsonmodels.GetOnlineResponse, error)
- func (api *GoShimmerAPI) GetOnlineConsensusMana() (*jsonmodels.GetOnlineResponse, error)
- func (api *GoShimmerAPI) GetOutput(base58EncodedOutputID string) (*json_models.Output, error)
- func (api *GoShimmerAPI) GetOutputConsumers(base58EncodedOutputID string) (*json_models.GetOutputConsumersResponse, error)
- func (api *GoShimmerAPI) GetOutputMetadata(base58EncodedOutputID string) (*json_models.OutputMetadata, error)
- func (api *GoShimmerAPI) GetOwnMana() (*jsonmodels.GetManaResponse, error)
- func (api *GoShimmerAPI) GetPastConsensusManaVector(t int64) (*jsonmodels.PastConsensusManaVectorResponse, error)
- func (api *GoShimmerAPI) GetPastConsensusVectorMetadata() (*jsonmodels.PastConsensusVectorMetadataResponse, error)
- func (api *GoShimmerAPI) GetPending(outputID string) (*jsonmodels.PendingResponse, error)
- func (api *GoShimmerAPI) GetRandomness() (*jsonmodels.RandomnessResponse, error)
- func (api *GoShimmerAPI) GetTransaction(base58EncodedTransactionID string) (*json_models.Transaction, error)
- func (api *GoShimmerAPI) GetTransactionAttachments(base58EncodedTransactionID string) (*json_models.GetTransactionAttachmentsResponse, error)
- func (api *GoShimmerAPI) GetTransactionByID(base58EncodedTxnID string) (*value.GetTransactionByIDResponse, error)
- func (api *GoShimmerAPI) GetTransactionConsensusMetadata(base58EncodedTransactionID string) (*json_models.TransactionConsensusMetadata, error)
- func (api *GoShimmerAPI) GetTransactionInclusionState(base58EncodedTransactionID string) (*json_models.TransactionInclusionState, error)
- func (api *GoShimmerAPI) GetTransactionMetadata(base58EncodedTransactionID string) (*json_models.TransactionMetadata, error)
- func (api *GoShimmerAPI) GetUnspentOutputs(addresses []string) (*value.UnspentOutputsResponse, error)
- func (api *GoShimmerAPI) Info() (*jsonmodels.InfoResponse, error)
- func (api *GoShimmerAPI) Missing() (*jsonmodels.MissingResponse, error)
- func (api *GoShimmerAPI) PastConeExist(base58EncodedMessageID string) (*jsonmodels.PastconeResponse, error)
- func (api *GoShimmerAPI) PostAddressUnspentOutputs(base58EncodedAddresses []string) (*json_models.PostAddressesUnspentOutputsResponse, error)
- func (api *GoShimmerAPI) PostTransaction(transactionBytes []byte) (*json_models.PostTransactionResponse, error)
- func (api *GoShimmerAPI) RemoveManualPeers(keys []ed25519.PublicKey) error
- func (api *GoShimmerAPI) SendFaucetRequest(base58EncodedAddr string, powTarget int, pledgeIDs ...string) (*jsonmodels.FaucetResponse, error)
- func (api *GoShimmerAPI) SendPayload(payload []byte) (string, error)
- func (api *GoShimmerAPI) SendTransaction(txnBytes []byte) (string, error)
- func (api *GoShimmerAPI) SendTransactionByJSON(txn value.SendTransactionByJSONRequest) (string, error)
- func (api *GoShimmerAPI) ToggleSpammer(enable bool, mpm int) (*jsonmodels.SpammerResponse, error)
- func (api *GoShimmerAPI) ValueObjects() (*jsonmodels.ObjectsResponse, error)
- type Option
Constants ¶
This section is empty.
Variables ¶
var ( // ErrBadRequest defines the "bad request" error. ErrBadRequest = errors.New("bad request") // ErrInternalServerError defines the "internal server error" error. ErrInternalServerError = errors.New("internal server error") // ErrNotFound defines the "not found" error. ErrNotFound = errors.New("not found") ErrUnauthorized = errors.New("unauthorized") // ErrUnknownError defines the "unknown error" error. ErrUnknownError = errors.New("unknown error") // ErrNotImplemented defines the "operation not implemented/supported/available" error. ErrNotImplemented = errors.New("operation not implemented/supported/available") )
Functions ¶
This section is empty.
Types ¶
type BasicAuth ¶ added in v0.3.0
type BasicAuth struct { Enabled bool `json:"enabled,omitempty"` Username string `json:"username,omitempty"` Password string `json:"password,omitempty"` }
BasicAuth defines the basic-auth struct.
func (BasicAuth) Credentials ¶ added in v0.3.0
Credentials returns the username and password of a given BasicAuth.
type GoShimmerAPI ¶
type GoShimmerAPI struct {
// contains filtered or unexported fields
}
GoShimmerAPI is an API wrapper over the web API of GoShimmer.
func NewGoShimmerAPI ¶
func NewGoShimmerAPI(baseURL string, setters ...Option) *GoShimmerAPI
NewGoShimmerAPI returns a new *GoShimmerAPI with the given baseURL and options.
func (*GoShimmerAPI) AddManualPeers ¶ added in v0.5.8
func (api *GoShimmerAPI) AddManualPeers(peers []*peer.Peer) error
AddManualPeers adds the provided list of peers to the manual peering layer.
func (*GoShimmerAPI) BaseURL ¶ added in v0.2.0
func (api *GoShimmerAPI) BaseURL() string
BaseURL returns the baseURL of the API.
func (*GoShimmerAPI) BroadcastCollectiveBeacon ¶ added in v0.2.0
func (api *GoShimmerAPI) BroadcastCollectiveBeacon(payload []byte) (string, error)
BroadcastCollectiveBeacon sends the given collective beacon (payload) by creating a message in the backend.
func (*GoShimmerAPI) Data ¶ added in v0.2.0
func (api *GoShimmerAPI) Data(data []byte) (string, error)
Data sends the given data (payload) by creating a message in the backend.
func (*GoShimmerAPI) GetAddressOutputs ¶ added in v0.6.0
func (api *GoShimmerAPI) GetAddressOutputs(base58EncodedAddress string) (*json_models.GetAddressResponse, error)
GetAddressOutputs gets the spent and unspent outputs of an address.
func (*GoShimmerAPI) GetAddressUnspentOutputs ¶ added in v0.6.0
func (api *GoShimmerAPI) GetAddressUnspentOutputs(base58EncodedAddress string) (*json_models.GetAddressResponse, error)
GetAddressUnspentOutputs gets the unspent outputs of an address.
func (*GoShimmerAPI) GetAllMana ¶ added in v0.5.0
func (api *GoShimmerAPI) GetAllMana() (*jsonmodels.GetAllManaResponse, error)
GetAllMana returns the mana perception of the node in the network.
func (*GoShimmerAPI) GetAllowedManaPledgeNodeIDs ¶ added in v0.5.0
func (api *GoShimmerAPI) GetAllowedManaPledgeNodeIDs() (*jsonmodels.AllowedManaPledgeResponse, error)
GetAllowedManaPledgeNodeIDs returns the list of allowed mana pledge IDs.
func (*GoShimmerAPI) GetAttachments ¶ added in v0.2.0
func (api *GoShimmerAPI) GetAttachments(base58EncodedTxnID string) (*value.AttachmentsResponse, error)
GetAttachments gets the attachments of a transaction ID
func (*GoShimmerAPI) GetAutopeeringNeighbors ¶ added in v0.5.8
func (api *GoShimmerAPI) GetAutopeeringNeighbors(knownPeers bool) (*jsonmodels.GetNeighborsResponse, error)
GetAutopeeringNeighbors gets the chosen/accepted neighbors. If knownPeers is set, also all known peers to the node are returned additionally.
func (*GoShimmerAPI) GetBranch ¶ added in v0.6.0
func (api *GoShimmerAPI) GetBranch(base58EncodedBranchID string) (*json_models.Branch, error)
GetBranch gets the branch information.
func (*GoShimmerAPI) GetBranchChildren ¶ added in v0.6.0
func (api *GoShimmerAPI) GetBranchChildren(base58EncodedBranchID string) (*json_models.GetBranchChildrenResponse, error)
GetBranchChildren gets the children of a branch.
func (*GoShimmerAPI) GetBranchConflicts ¶ added in v0.6.0
func (api *GoShimmerAPI) GetBranchConflicts(base58EncodedBranchID string) (*json_models.GetBranchConflictsResponse, error)
GetBranchConflicts gets the conflict branches of a branch.
func (*GoShimmerAPI) GetCommittee ¶ added in v0.2.0
func (api *GoShimmerAPI) GetCommittee() (*jsonmodels.CommitteeResponse, error)
GetCommittee gets the current committee.
func (*GoShimmerAPI) GetConsensusEventLogs ¶ added in v0.5.0
func (api *GoShimmerAPI) GetConsensusEventLogs(nodeIDs []string) (*jsonmodels.GetEventLogsResponse, error)
GetConsensusEventLogs returns the consensus event logs or the nodeIDs specified.
func (*GoShimmerAPI) GetMana ¶ added in v0.5.0
func (api *GoShimmerAPI) GetMana(shortNodeID string) (*jsonmodels.GetManaResponse, error)
GetMana returns the access and consensus mana a node has based on its shortNodeID.
func (*GoShimmerAPI) GetManaFullNodeID ¶ added in v0.5.0
func (api *GoShimmerAPI) GetManaFullNodeID(fullNodeID string) (*jsonmodels.GetManaResponse, error)
GetManaFullNodeID returns the access and consensus mana of the node specified in the argument. Note, that for the node to understand which nodeID we are referring to, short node ID is not sufficient.
func (*GoShimmerAPI) GetManaPercentile ¶ added in v0.5.0
func (api *GoShimmerAPI) GetManaPercentile(fullNodeID string) (*jsonmodels.GetPercentileResponse, error)
GetManaPercentile returns the mana percentile for access and consensus mana of a node.
func (*GoShimmerAPI) GetManualConnectedPeers ¶ added in v0.5.8
func (api *GoShimmerAPI) GetManualConnectedPeers() ([]*peer.Peer, error)
GetManualConnectedPeers gets the list of connected neighbors from the manual peering layer.
func (*GoShimmerAPI) GetMessage ¶ added in v0.5.3
func (api *GoShimmerAPI) GetMessage(base58EncodedID string) (*jsonmodels.Message, error)
GetMessage is the handler for the /messages/:messageID endpoint.
func (*GoShimmerAPI) GetMessageMetadata ¶ added in v0.5.3
func (api *GoShimmerAPI) GetMessageMetadata(base58EncodedID string) (*jsonmodels.MessageMetadata, error)
GetMessageMetadata is the handler for the /messages/:messageID/metadata endpoint.
func (*GoShimmerAPI) GetNHighestAccessMana ¶ added in v0.5.0
func (api *GoShimmerAPI) GetNHighestAccessMana(n int) (*jsonmodels.GetNHighestResponse, error)
GetNHighestAccessMana returns the N highest access mana holders in the network, sorted in descending order.
func (*GoShimmerAPI) GetNHighestConsensusMana ¶ added in v0.5.0
func (api *GoShimmerAPI) GetNHighestConsensusMana(n int) (*jsonmodels.GetNHighestResponse, error)
GetNHighestConsensusMana returns the N highest consensus mana holders in the network, sorted in descending order.
func (*GoShimmerAPI) GetOnlineAccessMana ¶ added in v0.5.0
func (api *GoShimmerAPI) GetOnlineAccessMana() (*jsonmodels.GetOnlineResponse, error)
GetOnlineAccessMana returns the sorted list of online access mana of nodes.
func (*GoShimmerAPI) GetOnlineConsensusMana ¶ added in v0.5.0
func (api *GoShimmerAPI) GetOnlineConsensusMana() (*jsonmodels.GetOnlineResponse, error)
GetOnlineConsensusMana returns the sorted list of online consensus mana of nodes.
func (*GoShimmerAPI) GetOutput ¶ added in v0.6.0
func (api *GoShimmerAPI) GetOutput(base58EncodedOutputID string) (*json_models.Output, error)
GetOutput gets the output corresponding to OutputID.
func (*GoShimmerAPI) GetOutputConsumers ¶ added in v0.6.0
func (api *GoShimmerAPI) GetOutputConsumers(base58EncodedOutputID string) (*json_models.GetOutputConsumersResponse, error)
GetOutputConsumers gets the consumers of the output corresponding to OutputID.
func (*GoShimmerAPI) GetOutputMetadata ¶ added in v0.6.0
func (api *GoShimmerAPI) GetOutputMetadata(base58EncodedOutputID string) (*json_models.OutputMetadata, error)
GetOutputMetadata gets the metadata of the output corresponding to OutputID.
func (*GoShimmerAPI) GetOwnMana ¶ added in v0.5.0
func (api *GoShimmerAPI) GetOwnMana() (*jsonmodels.GetManaResponse, error)
GetOwnMana returns the access and consensus mana of the node this api client is communicating with.
func (*GoShimmerAPI) GetPastConsensusManaVector ¶ added in v0.5.0
func (api *GoShimmerAPI) GetPastConsensusManaVector(t int64) (*jsonmodels.PastConsensusManaVectorResponse, error)
GetPastConsensusManaVector returns the consensus base mana vector of a time in the past.
func (*GoShimmerAPI) GetPastConsensusVectorMetadata ¶ added in v0.5.0
func (api *GoShimmerAPI) GetPastConsensusVectorMetadata() (*jsonmodels.PastConsensusVectorMetadataResponse, error)
GetPastConsensusVectorMetadata returns the consensus base mana vector metadata of a time in the past.
func (*GoShimmerAPI) GetPending ¶ added in v0.5.0
func (api *GoShimmerAPI) GetPending(outputID string) (*jsonmodels.PendingResponse, error)
GetPending returns the mana (bm2) that will be pledged by spending the output specified.
func (*GoShimmerAPI) GetRandomness ¶ added in v0.2.0
func (api *GoShimmerAPI) GetRandomness() (*jsonmodels.RandomnessResponse, error)
GetRandomness gets the current randomness.
func (*GoShimmerAPI) GetTransaction ¶ added in v0.6.0
func (api *GoShimmerAPI) GetTransaction(base58EncodedTransactionID string) (*json_models.Transaction, error)
GetTransaction gets the transaction of the corresponding to TransactionID.
func (*GoShimmerAPI) GetTransactionAttachments ¶ added in v0.6.0
func (api *GoShimmerAPI) GetTransactionAttachments(base58EncodedTransactionID string) (*json_models.GetTransactionAttachmentsResponse, error)
GetTransactionAttachments gets the attachments (messageIDs) of the transaction corresponding to TransactionID.
func (*GoShimmerAPI) GetTransactionByID ¶ added in v0.2.0
func (api *GoShimmerAPI) GetTransactionByID(base58EncodedTxnID string) (*value.GetTransactionByIDResponse, error)
GetTransactionByID gets the transaction of a transaction ID
func (*GoShimmerAPI) GetTransactionConsensusMetadata ¶ added in v0.6.0
func (api *GoShimmerAPI) GetTransactionConsensusMetadata(base58EncodedTransactionID string) (*json_models.TransactionConsensusMetadata, error)
GetTransactionConsensusMetadata gets the consensus metadata of the transaction corresponding to TransactionID.
func (*GoShimmerAPI) GetTransactionInclusionState ¶ added in v0.6.0
func (api *GoShimmerAPI) GetTransactionInclusionState(base58EncodedTransactionID string) (*json_models.TransactionInclusionState, error)
GetTransactionInclusionState gets inclusion state of the transaction corresponding to TransactionID.
func (*GoShimmerAPI) GetTransactionMetadata ¶ added in v0.6.0
func (api *GoShimmerAPI) GetTransactionMetadata(base58EncodedTransactionID string) (*json_models.TransactionMetadata, error)
GetTransactionMetadata gets metadata of the transaction corresponding to TransactionID.
func (*GoShimmerAPI) GetUnspentOutputs ¶ added in v0.2.0
func (api *GoShimmerAPI) GetUnspentOutputs(addresses []string) (*value.UnspentOutputsResponse, error)
GetUnspentOutputs return unspent output IDs of addresses
func (*GoShimmerAPI) Info ¶ added in v0.2.0
func (api *GoShimmerAPI) Info() (*jsonmodels.InfoResponse, error)
Info gets the info of the node.
func (*GoShimmerAPI) Missing ¶ added in v0.2.4
func (api *GoShimmerAPI) Missing() (*jsonmodels.MissingResponse, error)
Missing returns all the missing messages and their count.
func (*GoShimmerAPI) PastConeExist ¶ added in v0.2.2
func (api *GoShimmerAPI) PastConeExist(base58EncodedMessageID string) (*jsonmodels.PastconeResponse, error)
PastConeExist checks that all of the messages in the past cone of a message are existing on the node down to the genesis. Returns the number of messages in the past cone as well.
func (*GoShimmerAPI) PostAddressUnspentOutputs ¶ added in v0.6.0
func (api *GoShimmerAPI) PostAddressUnspentOutputs(base58EncodedAddresses []string) (*json_models.PostAddressesUnspentOutputsResponse, error)
PostAddressUnspentOutputs gets the unspent outputs of several addresses.
func (*GoShimmerAPI) PostTransaction ¶ added in v0.6.0
func (api *GoShimmerAPI) PostTransaction(transactionBytes []byte) (*json_models.PostTransactionResponse, error)
PostTransaction sends the transaction(bytes) to the Tangle and returns its transaction ID.
func (*GoShimmerAPI) RemoveManualPeers ¶ added in v0.5.8
func (api *GoShimmerAPI) RemoveManualPeers(keys []ed25519.PublicKey) error
RemoveManualPeers remove the provided list of peers from the manual peering layer.
func (*GoShimmerAPI) SendFaucetRequest ¶ added in v0.2.0
func (api *GoShimmerAPI) SendFaucetRequest(base58EncodedAddr string, powTarget int, pledgeIDs ...string) (*jsonmodels.FaucetResponse, error)
SendFaucetRequest requests funds from faucet nodes by sending a faucet request payload message.
func (*GoShimmerAPI) SendPayload ¶ added in v0.2.0
func (api *GoShimmerAPI) SendPayload(payload []byte) (string, error)
SendPayload send a message with the given payload.
func (*GoShimmerAPI) SendTransaction ¶ added in v0.2.0
func (api *GoShimmerAPI) SendTransaction(txnBytes []byte) (string, error)
SendTransaction sends the transaction(bytes) to the Value Tangle and returns transaction ID.
func (*GoShimmerAPI) SendTransactionByJSON ¶ added in v0.2.2
func (api *GoShimmerAPI) SendTransactionByJSON(txn value.SendTransactionByJSONRequest) (string, error)
SendTransactionByJSON sends the transaction(JSON) to the Value Tangle and returns transaction ID and message ID.
func (*GoShimmerAPI) ToggleSpammer ¶
func (api *GoShimmerAPI) ToggleSpammer(enable bool, mpm int) (*jsonmodels.SpammerResponse, error)
ToggleSpammer toggles the node internal spammer.
func (*GoShimmerAPI) ValueObjects ¶ added in v0.2.4
func (api *GoShimmerAPI) ValueObjects() (*jsonmodels.ObjectsResponse, error)
ValueObjects returns the list of value objects.
type Option ¶ added in v0.3.0
type Option func(*GoShimmerAPI)
Option is a function which sets the given option.
func WithBasicAuth ¶ added in v0.3.0
WithBasicAuth returns a new BasicAuth.
func WithHTTPClient ¶ added in v0.3.0
WithHTTPClient sets the http Client.