Subscribe to VET transfers with a given criteria.
Example:
const ws = new WebSocket('ws://localhost:8669/subscriptions/transfer?sender=0x6d95e6dca01d109882fe1726a2fb9865fa41e7aa')
ws.onmessage = (event) => {
console.log(event.data)
}
OK
The address of the contract that produces the event (bytes20).
"0x0000000000000000000000000000456e65726779"
^0x[0-9a-f]{40}$
Topics are indexed parameters to an event. The first topic is always the event signature.
The data associated with the event.
"0x4de71f2d588aa8a1ea00fe8312d92966da424d9939a511fc0be81e65fad52af8"
^0x[0-9a-f]*$
Indicates whether the block containing this data has become obsolete (true) or not (false).
false
The event or transfer log metadata such as block number, block timestamp, etc.