Package-level declarations

Types

Link copied to clipboard
@Serializable
data class FeeResponse(val address: String, val amount: Long, val status: String)

Fee response from the node.

Link copied to clipboard
@Serializable
data class HeightResponse(val height: Long, val networkHeight: Long, val status: String)

Height response from the node.

Link copied to clipboard
@Serializable
data class InfoResponse(val altBlocksCount: Long, val difficulty: Long, val greyPeerlistSize: Long, val hashrate: Long, val height: Long, val incomingConnectionsCount: Long, val lastKnownBlockIndex: Long, val majorVersion: Int, val minorVersion: Int, val networkHeight: Long, val outgoingConnectionsCount: Long, val startTime: Long, val status: String, val supportedHeight: Long, val synced: Boolean, val testnet: Boolean, val txCount: Long, val txPoolSize: Long, val upgradeHeights: List<Int>, val version: String, val whitePeerlistSize: Long)

Info response from the node.

Link copied to clipboard
@Serializable
data class PeersResponse(val grayPeers: List<String>, val peers: List<String>, val status: String)

Peers response from the node.