Skip to content

Instantly share code, notes, and snippets.

@PaulRBerg
Created August 19, 2021 22:32
Show Gist options
  • Save PaulRBerg/bc181126aaf4df28c4abae9612c9f221 to your computer and use it in GitHub Desktop.
Save PaulRBerg/bc181126aaf4df28c4abae9612c9f221 to your computer and use it in GitHub Desktop.
GraphQL query for getting the Sablier v1.1 streams created by a given sender
{
streams(where: { sender: "ADDRESS_HERE"}) {
id
deposit
cancellation {
id
recipientBalance
senderBalance
}
recipient
token {
id
decimals
symbol
}
startTime
stopTime
withdrawals {
id
amount
timestamp
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment