Neeraj Kashyap

Results 49 comments of Neeraj Kashyap

@wimglenn : Are you accepting PRs on this repo? I plan to work on this since I'm using your library and also need to have an OpenAPI schema that correctly...

Had this exact same issue with Python3.8. Could not install vizdoom from pip - I still don't know why, but I decided to just build from source instead of trying...

@Andrei-Dolgolev : @Yhtiyar already started working on NFT crawl from Etherscan. Please sync up.

My proposal: ```json { "outputs": [ { "selector": "block_timestamp", "as_type": "timestamp", "display_name": "time_of_sale" }, { "selector": "data.args.to", "display_name": "purchaser" }, { "selector": "data.args.tokenId", "display_name": "tokenId" } ], "order": { "display_names":...

Alternative - use MongoDB aggregation pipelines syntax: https://docs.mongodb.com/manual/core/aggregation-pipeline/

First draft implementation: @Andrei-Dolgolev and I agreed to start with MongoDB syntax. This plays well with the react query builder. For example, [this example](https://react-querybuilder.js.org/react-querybuilder/#addRuleToNewGroups=false&autoSelectField=true&disabled=false&enableDragAndDrop=false&independentCombinators=false&resetOnFieldChange=true&resetOnOperatorChange=false&showCloneButtons=false&showCombinatorsBetweenRules=false&showNotToggle=false&validateQuery=true) generates this query: ``` {"$and":[{"firstName":{"$regex":"^Stev"}},{"lastName":{"$in":["Vai","Vaughan"]}},{"age":{"$gt":"28"}},{"$or":[{"isMusician":{"$eq":true}},{"instrument":{"$eq":"Guitar"}}]}]} ```

MongoDB style syntax for our query: ```json [ { "$match": { "data.args.from": "0x0000000000000000000000000000000000000000", "data.type": "event", "data.name": "Transfer", "data.address": "", "data.args.tokenId": { "$cast": "int", "$in": [ 11000, 12000, 13000, 14000, 15000,...

Our MongoDB style syntax introduced two extra keys: `"$cast"` and `"$map"`. Need to think about how to handle with react query builder.

Sample object: ```json { "id": "9a14bb46-215b-4878-ba4a-01b15489ed88", "resource_data": { "name": "Crypto Elephants secondary market activity", "subscriptions": [ { "subscription_id": "0869942d-3cd2-4ea5-9424-d0f3e1653173", "generic": [ {"name": "transactions_in", "filters": {"from": "0x9f8B214bF13F62cFA5160ED135E233C9dDb95974"}}, {"name": "transactions_out", "filters": {"to":...

## How will these metrics be displayed to user on frontend? ### Version 1 For each metric, a distinct bar or line graph (user can select) representing time series over...