Documentation
¶
Index ¶
Constants ¶
View Source
const ( // TXStatusError represents the status value returned by diamcircle-core when an error occurred from // submitting a transaction TXStatusError = "ERROR" // TXStatusPending represents the status value returned by diamcircle-core when a transaction has // been accepted for processing TXStatusPending = "PENDING" // TXStatusDuplicate represents the status value returned by diamcircle-core when a submitted // transaction is a duplicate TXStatusDuplicate = "DUPLICATE" // TXStatusTryAgainLater represents the status value returned by diamcircle-core when a submitted // transaction was not included in the previous 4 ledgers and get banned for being added in the // next few ledgers. TXStatusTryAgainLater = "TRY_AGAIN_LATER" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type InfoResponse ¶
type InfoResponse struct {
Info struct {
Build string `json:"build"`
Network string `json:"network"`
ProtocolVersion int `json:"protocol_version"`
State string `json:"state"`
Ledger LedgerInfo `json:"ledger"`
}
}
InfoResponse is the json response returned from diamcircle-core's /info endpoint.
func (*InfoResponse) IsSynced ¶
func (resp *InfoResponse) IsSynced() bool
IsSynced returns a boolean indicating whether diamcirclecore is synced with the network.
type LedgerInfo ¶
type LedgerInfo struct {
Age int `json:"age"`
BaseFee int `json:"baseFee"`
BaseReserve int `json:"baseReserve"`
CloseTime int `json:"closeTime"`
Hash string `json:"hash"`
MaxTxSetSize int `json:"maxTxSetSize"`
Num int `json:"num"`
Version int `json:"version"`
}
LedgerInfo is the part of the diamcircle-core's info json response. It's returned under `ledger` key
type TXResponse ¶
type TXResponse struct {
Exception string `json:"exception"`
Error string `json:"error"`
Status string `json:"status"`
}
TXResponse represents the response returned from a submission request sent to diamcircle-core's /tx endpoint
func (*TXResponse) IsException ¶
func (resp *TXResponse) IsException() bool
IsException returns true if the response represents an exception response from diamcircle-core
Click to show internal directories.
Click to hide internal directories.