Files
brk/TODO.md
2025-07-11 01:51:04 +02:00

3.9 KiB
Raw Blame History

TODO

  • crates
    • cli
      • check disk space on first launch
      • add custom path support for config.toml
      • maybe add bitcoind download and launch support
      • test read/write speed, add warning if too low (<2gb/s)
      • pull latest version and notify is out of date
    • computer
      • add rollback of states (in stateful)
      • add support for per index computation
      • fix feerate which is always ZERO due to coinbase transaction
      • before computing multiple sources check their length, panic if not equal
      • add oracle price dataset (https://utxo.live/oracle/UTXOracle.py)
      • add address counts relative to all datasets
      • make decade, quarter, year datasets computed instead of eager
      • add 6 months (semester) interval datasets to builder
      • some datasets in indexes can probably be removed
      • add revived/sent supply datasets
      • add in-sats version of all price datasets (average and co)
      • add p2pk group (sum of p2pk33 and p2pk65)
      • add chopiness datasets
      • add utxo count, address count, supply data for by reused addresses in groups by address type
      • add more date ranges (3-6 months and more)
      • add puell multiple dataset
      • add pi cycle dataset
      • add emas of price
      • add 7d and 30d ema to sell side risk ratio and sopr
      • don't compute everything for all cohorts as some datasets combinations are irrelevant
        • addresses/utxos by amount don't need mvrvz for example
      • add all possible charts from:
    • indexer
    • interface
      • create pagination enum
        • from to
        • from option
        • to option
        • page + option default 1000 max 1000
      • from/to/count params dont cap all combinations
        • example: from -10,000 count 10, wont work if underlying vec isnt 10k or more long
    • parser
      • save vec file instead of json
      • support lock file, process in read only if already opened in write mode
      • if less than X (10 maybe ?) get block using rpc instead of parsing the block files
    • server
      • api
        • add extensions support (.json .csv …)
        • if format instead of extension then don't download file
      • add support for https (rustls)
    • vec
      • add native lock file support (once it's available in stable rust)
      • improve compressed mode (slow reads)
      • add ema support
  • docs
    • README
      • add a comparison table with alternatives
      • add contribution section where help is needed
        • documentation/mcp/datasets/different front ends
      • add faq
  • websites
    • default
      • explorer
        • blocks
        • transactions
        • addresses
        • miners
        • maybe xpubs
      • charts
        • improve some names and colors
        • remove sum series when it's a duplicate of the base (in subsidy for example)
        • selected unit sometimes changes when going back end forth
        • add support for custom charts
        • separate z-score charts from "realized price" (with their own prices), have 4y, 2y and 1y
        • price scale format depends on unit, hide digits for sats for example (if/when possible)
      • table
        • pagination
        • exports (.json, .csv,…)
      • search
        • datasets add legend, and keywords ?
        • height/address/txid
      • api
        • add api page with interactivity
      • global
        • fix navigation/history
        • move share button to footer ?
        • Use ichart.createPane() in wrapper
        • improve behavior when local storage is unavailable
          • by having a global state
  • global
    • check TODOs in codebase