> For the complete documentation index, see [llms.txt](https://docs.cyclone.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cyclone.xyz/korean/analytics.md).

# Analytics

## Dashboard

You are welcome to use the dashboard here - <https://cyclone.xyz/analytics> - which shows the $CYC supply, number of deposits, pool value in USD along with other information, in real time.

![](https://423379942-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MNeAQGL5skC11vu82Sy%2F-MS0268RPHw0b3_aJTIl%2F-MS03pKKGMgZKh-WX2qq%2Fscreencapture-cyclone-xyz-analytics-2021-01-26-15_41_46.png?alt=media\&token=e993e535-85bd-457f-ab45-06f8abe8093a)

## GraphQL

We have decoded and indexed Cyclone contracts data so every one can run powerful analysis with simple GraphQL queries through <https://analytics.cyclone.xyz/playground>. Some typical queries look like below.

![](https://423379942-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MNeAQGL5skC11vu82Sy%2F-MRT7eff_5aCef9nrGs1%2F-MRT7t86WTEoLuibF46g%2FScreen%20Shot%202021-01-19%20at%208.52.53%20PM.png?alt=media\&token=cce7fef7-e074-4ef8-a229-b75112ad7fa3)

### Total IOTX Deposited in All Pools

`query { tokensInPoolPerDay(count: 7) { name values { timestamp value } } }`

### Total IOTX Deposited and the Fee Associated

`query { total { iotx fee } }`

### Total IOTX Deposited per Day

`query { totalPoolPerDay(count: 7) { timestamp value } }`

### Points a User Gets for the airdrop

`query { airdropScore(address: "io1tmt2vp28afp2vd3h598n0lwu6sj3lyc64apjw3") }`

### 15 Luckiest Deposits in Pool 1

`query { luckyDrawTopN(poolAddress: "io1rqm2keejw4jypgl0w6hr96r054ns63u0hqrfuy", n: 15) { hash address method } }`

### 15 Luckiest Deposits in Pool 2

`query { luckyDrawTopN(poolAddress: "io1gkeeljp4grwskgq3tl2xqglqy546nhhmytnqqp", n: 15) { hash address method } }`

### 15 Luckiest Deposits in Pool 3

`query { luckyDrawTopN(poolAddress: "io1mlcgsv4ma0t6gffpxg2gva3lwqnlj5msradxk6", n: 15) { hash address method } }`
