event/onTransactionGossip
Streams serialized transactions on gossip events
Request Body
undefined
Response
{
  serializedTransaction: string
  valid: boolean
}
Example
# Request
curl -X POST -N http://localhost:8021/event/onTransactionGossip
# Response
{
  "data": {
    "serializedTransaction": "01010000...e931fd04"
    "valid": true
  }
}