iotex-analytics icon indicating copy to clipboard operation
iotex-analytics copied to clipboard

The independent service that analyzes data from IoTeX blockchain

Results 44 iotex-analytics issues
Sort by recently updated
recently updated
newest added

Currently we do pagination on API level after obtaining all the results from database. To be more efficient, we should integrate pagination as well as sorting into MySQL queries.

enhancement

XRC20 query below: ``` { xrc20 { byPage(numPerPage: 1, page: 1) { xrc20 { hash from } } } } ``` Response: ``` { "data": { "xrc20": { "byPage": {...

We would need to add `gasFee` to the `ActionInfo` type as below: ``` type ActionInfo { actHash: String! blkHash: String! timeStamp: Int! actType: String! sender: String! recipient: String! amount: String!...

Which should provide better modularization, isolation of data processing logic. In addition, there's a bunch of useful features, e.g., backfill

enhancement