Guest User

Untitled

a guest
Nov 23rd, 2021
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. {
  2. bsc: ethereum(network: bsc) {
  3. site_1: dexTrades(
  4. options: {asc: ["block.height", "transaction.index"], limit: 1}
  5. baseCurrency: {is: "0x5ddff6f22ee5df31403b9de994b4c70c8755a8ac"}
  6. quoteCurrency: {is: "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c"}
  7. ) {
  8. block {
  9. utc_date: timestamp {
  10. iso8601
  11. time(format: "%Y-%m-%d %H:%M:%S")
  12. }
  13. height
  14. }
  15. side
  16. baseAmount
  17. quotePrice
  18. quoteAmount
  19. quotePriceUSD: quoteAmount(in: USD)
  20. baseCurrency {
  21. decimals
  22. name
  23. symbol
  24. tokenId
  25. tokenType
  26. }
  27. quoteCurrency {
  28. decimals
  29. name
  30. symbol
  31. }
  32. transaction {
  33. index
  34. hash
  35. txFrom {
  36. address
  37. }
  38. to {
  39. address
  40. }
  41. }
  42. }
  43. }
  44. }
  45.  
Advertisement
Add Comment
Please, Sign In to add comment