chain/exportChainStream
Exports the chain as a stream of blocks.
If the start and stop sequences are provided, only the blocks between the start and stop will be returned.
Request
{
start?: number | null
stop?: number | null
} | undefined
Response
{
start: number
stop: number
block?: {
hash: string
seq: number
prev: string
main: boolean
graffiti: string
timestamp: number
work: string
difficulty: string
head: boolean
latest: boolean
}
}