ivan

Results 18 comments of ivan

Yes, we have an open PR that aims to remove all pinned versions of the libraries: https://github.com/santiment/sanpy/pull/144

The PR has been merged on June 15

This matrix would be extremely large (~2000+ assets multiplied by ~800 assets). The full matrix could probably approach 100MB in size. What can be done, though, is execute a query...

I guess you try to execute this: `san.get("age_distribution/santiment")`, which turns this into the following graphql: ```graphql { getMetric(metric: "age_distribution") { timeseriesData( slug: "santiment" from: "utc_now-30d" to: "utc_now" interval: "1d" aggregation:...

This metric requires a contract address and not a slug in order to work. @spiderjako please finish your PR https://github.com/santiment/sanpy/pull/149 that allows using custom selectors and share an example how...

This can now be better handled with sanpy version 0.11.1. The above shared example with custom `execute_gql` call can now be replaced with: ```python import san san.get( "contract_transactions_count", selector={"contractAddress": "0x00000000219ab540356cBB839Cbe05303d7705Fa"},...

Hi @phisanti, The library's intended use is to call the metrics, so for the rest of the functionality, there is no function implemented. But if you know the GraphQL request...

I think we should proceed with moving this to production once httpx is stable

You can just put a `WIP` label on it and leave it open

I've created this label