Blockchain

SubscribeForLogsByAddressesAndTypes

Subscribes to log events related to a given list of addresses and of any of the log types provided. If addresses is empty it does not filter by address. If log_types is empty it won't filter by log types. Thus the behavior is to assume all addresses or log_types are to be provided if the corresponding vec is empty.

const res = await fetch("http://127.0.0.1:8648", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
  jsonrpc: "2.0",
  method: "subscribeForLogsByAddressesAndTypes",
  params: ["addresses", ""],
  id: 1
})
});
const data = await res.json();

Parameters

PropType / Default
addresses
string
logTypes
array

Returns

PropType / Default
returnValue
number

On this page