WalletSyncDataRequest

@Serializable
data class WalletSyncDataRequest(val blockHashCheckpoints: List<String> = listOf(), val startHeight: Long = 0, val startTimestamp: Long = 0, val blockCount: Long = 5, val skipCoinbaseTransactions: Boolean = false)

Request for getting the latest wallet sync data.

Author

Marcus Cvjeticanin

Since

0.1.0

Parameters

blockHashCheckpoints

List of block hashes to check if we have the latest data

startHeight

Start height for the sync

startTimestamp

Start timestamp for the sync

blockCount

Number of blocks to sync

skipCoinbaseTransactions

Skip coinbase transactions

Constructors

Link copied to clipboard
constructor(blockHashCheckpoints: List<String> = listOf(), startHeight: Long = 0, startTimestamp: Long = 0, blockCount: Long = 5, skipCoinbaseTransactions: Boolean = false)

Properties

Link copied to clipboard
val blockCount: Long = 5
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val startHeight: Long = 0
Link copied to clipboard