Stream Scheduler Subgraph
Repo
Subgraph Explorers
Mainnets
Testnets
Basic Example Queries
You can test these out in the Ethereum Mainnet sandbox.
Fetching all Flow Schedules for a certain sender
{
flowScheduleCreatedEvents(where: {sender: "0xbd5a76f59df49527e47df66d7d7b5590a237871d"}) {
id
order
sender
receiver
startAmount
startDate
startDateMaxDelay
superToken
flowRate
}
}
Fetching all Flow Deletion tasks executed before a certain time
{
deleteTasks(where: {executedAt_lt: "1688457635"}) {
sender
receiver
superToken
}
}
Last updated
Was this helpful?