Rework as a thin wrapper around upstream UTXOracle v9.1 - #1
Merged
Conversation
Replaces the forked v9 "Intraday" script and Embassy-era leftovers with a verbatim vendor of current upstream UTXOracle.py (v9.1, RPC-only). - vendor upstream UTXOracle.py verbatim (RPC-only: no bitcoin-cli, no raw block files, so the Bitcoin Core 28+/Knots blocks-XOR issue does not apply) - entrypoint writes a bitcoin.conf pointing at bitcoind.startos and serves the generated HTML; strips the upstream YouTube iframe so the page makes no external requests - store the run mode in store.json on the startos volume; pass it to the container via the UTXORACLE_MODE env var (no main volume, no config file) - Configure action: Today / Yesterday / Specific Date union with a date picker - completion health check moved to TypeScript (remove check-complete.sh) - correct the license field to UTXOracle License 1.0 (matches LICENSE) - loosen bitcoind dependency to >=28.3:9 with [bitcoind, sync-progress] - sync s9pk.mk/.gitignore, add .dockerignore; drop dead generate-html.py and the unused Rust webserver submodule - replace the padded icon.png with a crisp icon.svg (white wireframe cube on a dark rounded square) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
MattDHill
approved these changes
Jun 19, 2026
Author
|
Thanks for the review and merge, @MattDHill! 🙏 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reworks the package from the forked v9 "Intraday" script into a thin wrapper around current upstream UTXOracle.py (v9.1, RPC-only).
Summary
UTXOracle.pyverbatim (RPC-only: nobitcoin-cli, no raw block files — so the Bitcoin Core 28+/Knots on-disk block-XOR issue does not apply)bitcoin.confpointing atbitcoind.startosand serves the generated HTML; strips the upstream YouTube live-stream iframe so the served page makes no external requestsstore.jsonon thestartosvolume, passed to the container via theUTXORACLE_MODEenv var (nomainvolume, no in-container config file)check-complete.sh)UTXOracle License 1.0to match the shippedLICENSE(wasMIT)>=28.3:9with[bitcoind, sync-progress]s9pk.mk/.gitignore, add.dockerignore; drop deadgenerate-html.pyand the unused Rustwebserversubmoduleicon.pngwith a crispicon.svgVerified on a StartOS box against Bitcoin Knots across all three modes; each served page makes zero external requests.
Companion upstream PR Unbesteveable/UTXOracle#5 adds a
--no-embedflag; once it lands, the wrapper's iframe-strippingsedcan be removed.🤖 Generated with Claude Code