-
-
Save baydakovss/3e420a33d30a428ac9265b72fff2e1f8 to your computer and use it in GitHub Desktop.
GraphQL API to get the newly created Ethereum Tokens
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 { | |
smartContractCalls(options: {desc: "block.height", limit: 10}, smartContractMethod: {is: "Contract Creation"}, smartContractType: {is: Token}) { | |
block { | |
height | |
timestamp { | |
time | |
} | |
} | |
smartContract { | |
contractType | |
address { | |
address | |
annotation | |
} | |
currency { | |
name | |
symbol | |
decimals | |
tokenType | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment