Documentation
¶
Index ¶
- type BackupConfig
- type Block
- type BlockPair
- type Config
- type FinalizedBundle
- type FinalizedBundleResponse
- type FinalizedBundlesResponse
- type GenesisDoc
- type HeightResponse
- type LightBlock
- type Pagination
- type PoolResponse
- type Snapshot
- type SyncProcess
- type TendermintBsyncBundle
- type TendermintBsyncDataItem
- type TendermintBundle
- type TendermintDataItem
- type TendermintSSyncConfig
- type TendermintSsyncBundle
- type TendermintSsyncDataItem
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BackupConfig ¶ added in v1.0.0
type FinalizedBundle ¶
type FinalizedBundle struct {
Id string `json:"id,omitempty"`
StorageId string `json:"storage_id,omitempty"`
StorageProviderId string `json:"storage_provider_id,omitempty"`
CompressionId string `json:"compression_id,omitempty"`
FromKey string `json:"from_key,omitempty"`
ToKey string `json:"to_key,omitempty"`
DataHash string `json:"data_hash,omitempty"`
}
type FinalizedBundleResponse ¶
type FinalizedBundleResponse = struct {
FinalizedBundle FinalizedBundle `json:"finalized_bundle"`
}
type FinalizedBundlesResponse ¶ added in v1.0.0
type FinalizedBundlesResponse = struct {
FinalizedBundles []FinalizedBundle `json:"finalized_bundles"`
Pagination Pagination `json:"pagination"`
}
type GenesisDoc ¶
type GenesisDoc = tmTypes.GenesisDoc
type HeightResponse ¶ added in v0.5.0
type HeightResponse struct {
Result struct {
Response struct {
LastBlockHeight string `json:"last_block_height"`
} `json:"response"`
} `json:"result"`
}
type LightBlock ¶ added in v1.0.0
type LightBlock = tmTypes.LightBlock
type Pagination ¶
type Pagination struct {
NextKey []byte `json:"next_key"`
}
type PoolResponse ¶
type SyncProcess ¶ added in v0.5.0
type TendermintBsyncBundle ¶ added in v0.3.0
type TendermintBsyncBundle = []TendermintBsyncDataItem
type TendermintBsyncDataItem ¶ added in v0.3.0
type TendermintBundle ¶ added in v0.3.0
type TendermintBundle = []TendermintDataItem
type TendermintDataItem ¶ added in v0.3.0
type TendermintSSyncConfig ¶ added in v1.0.0
type TendermintSsyncBundle ¶ added in v1.0.0
type TendermintSsyncBundle = []TendermintSsyncDataItem
type TendermintSsyncDataItem ¶ added in v1.0.0
type TendermintSsyncDataItem struct {
Key string `json:"key"`
Value struct {
Snapshot *Snapshot `json:"snapshot"`
Block *Block `json:"block"`
SeenCommit *tmTypes.Commit `json:"seenCommit"`
State *state.State `json:"state"`
ChunkIndex uint32 `json:"chunkIndex"`
Chunk []byte `json:"chunk"`
} `json:"value"`
}
Click to show internal directories.
Click to hide internal directories.