# Functions
AccountInformation is an httpHandler for route GET /v1/account/{addr:[A-Z0-9]{KeyLength}}.
AssetInformation is an httpHandler for route GET /v1/asset/{index:[0-9]+}.
Assets is an httpHandler for route GET /v1/assets.
GetBlock is an httpHandler for route GET /v1/block/{round}.
GetPendingTransactions is an httpHandler for route GET /v1/transactions/pending.
GetPendingTransactionsByAddress is an httpHandler for route GET /v1/account/addr:[A-Z0-9]{KeyLength}}/transactions/pending.
GetSupply is an httpHandler for route GET /v1/ledger/supply.
GetTransactionByID is an httpHandler for route GET /v1/transaction/{txid}.
PendingTransactionInformation is an httpHandler for route GET /v1/transactions/pending/{txid:[A-Z0-9]+}.
RawTransaction is an httpHandler for route POST /v1/transactions.
SendJSON is like writeJSON, but it writes to the log instead of returning an error.
Status is an httpHandler for route GET /v1/status.
SuggestedFee is an httpHandler for route GET /v1/transactions/fee.
SuggestedParams is an httpHandler for route GET /v1/transactions/params.
TransactionInformation is an httpHandler for route GET /v1/account/{addr:[A-Z0-9]{KeyLength}}/transaction/{txid:[A-Z0-9]+}.
Transactions is an httpHandler for route GET /v1/account/{addr:[A-Z0-9]+}/transactions.
WaitForBlock is an httpHandler for route GET /v1/status/wait-for-block-after/{round:[0-9]+}.
# Structs
AccountInformationResponse contains an account information
swagger:response AccountInformationResponse.
AssetInformationResponse contains asset information
swagger:response AssetInformationResponse.
AssetsResponse contains a list of assets
swagger:response AssetsResponse.
BlockResponse contains block information
swagger:response BlockResponse.
PendingTransactionsResponse contains a (potentially truncated) list of transactions and the total number of transactions currently in the pool.
StatusResponse contains the node's status information
swagger:response StatusResponse.
SupplyResponse contains the ledger supply information
swagger:response SupplyResponse.
TransactionFeeResponse contains a suggested fee
swagger:response TransactionFeeResponse.
TransactionIDResponse contains a transaction information
swagger:response TransactionIDResponse.
TransactionParamsResponse contains the parameters for constructing a new transaction.
TransactionResponse contains a transaction information
swagger:response TransactionResponse.
TransactionsResponse contains a list of transactions
swagger:response TransactionsResponse.
# Interfaces
Response is a generic interface wrapping any data returned by the server.