Created
August 19, 2021 22:32
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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