Created
October 2, 2020 12:18
-
-
Save buddies2705/0e78c9d6c1a17290dca355b2b28afe14 to your computer and use it in GitHub Desktop.
Aave Flashloan events from Bitquery GraphQL APIs
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
{ | |
ethereum { | |
smartContractEvents(options: {desc: "block.height", limit: 10}, | |
smartContractEvent: {is: "FlashLoan"}, | |
smartContractAddress: | |
{is: "0x398eC7346DcD622eDc5ae82352F02bE94C62d119"}) { | |
block { | |
height | |
timestamp { | |
iso8601 | |
unixtime | |
} | |
} | |
arguments { | |
value | |
argument | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment