chain/getTransactionStream
Streams transactions from a head sequence given an incoming view key
Request
{
  incomingViewKey: string
  head?: string | null
}
Response
{
  type: 'connected' | 'disconnected' | 'fork'
  head: {
    sequence: number
  }
  block: RpcBlockHeader
  transactions: Transaction[]
}
Sub Objects:
interface Note {
  assetId: string
  /**
   * @deprecated Please use getAsset endpoint to get this information
   */
  assetName: string
  hash: string
  value: string
  memo: string
}
interface Transaction {
  hash: string
  isMinersFee: boolean
  notes: Note[]
  mints: RpcMint[]
  burns: RpcBurn[]
}
RPC Objects: