Versions in this module Expand all Collapse all v0 v0.0.2 Nov 24, 2019 Changes in this version type RestClient + func (client RestClient) SendRawTransactionBytes(bytes []byte) (response v1.TransactionID, err error) v0.0.1 Nov 19, 2019 Changes in this version + type BytesBase64 []byte + func (b *BytesBase64) UnmarshalText(text []byte) error + func (b BytesBase64) MarshalText() (text []byte, err error) + type RestClient struct + func MakeRestClient(url url.URL, apiToken string) RestClient + func (client RestClient) AccountInformation(address string) (response v1.Account, err error) + func (client RestClient) AssetInformation(index uint64) (response v1.AssetParams, err error) + func (client RestClient) Assets(assetIdx, max uint64) (response v1.AssetList, err error) + func (client RestClient) Block(round uint64) (response v1.Block, err error) + func (client RestClient) GetGoRoutines(ctx context.Context) (goRoutines string, err error) + func (client RestClient) GetPendingTransactions(maxTxns uint64) (response v1.PendingTransactions, err error) + func (client RestClient) HealthCheck() error + func (client RestClient) LedgerSupply() (response v1.Supply, err error) + func (client RestClient) PendingTransactionInformation(transactionID string) (response v1.Transaction, err error) + func (client RestClient) SendRawTransaction(txn transactions.SignedTxn) (response v1.TransactionID, err error) + func (client RestClient) SendRawTransactionGroup(txgroup []transactions.SignedTxn) error + func (client RestClient) Status() (response v1.NodeStatus, err error) + func (client RestClient) StatusAfterBlock(blockNum uint64) (response v1.NodeStatus, err error) + func (client RestClient) SuggestedFee() (response v1.TransactionFee, err error) + func (client RestClient) SuggestedParams() (response v1.TransactionParams, err error) + func (client RestClient) TransactionInformation(accountAddress, transactionID string) (response v1.Transaction, err error) + func (client RestClient) TransactionsByAddr(addr string, first, last, max uint64) (response v1.TransactionList, err error) + func (client RestClient) Versions() (response common.Version, err error)