Skip to content

Instantly share code, notes, and snippets.

@0300dbdd1b
0300dbdd1b / UTXOracle.py
Created November 17, 2023 00:51
Experimental fix of UTXOracle V7 ignoring transactions using inputs created on the same day as the transaction.
###############################################################################
# Introduction) This is UTXOracle.py
###############################################################################
# This python program estimates the daily USD price of bitcoin using only
# your bitcoin Core full node. It will work even while you are disconnected
@0300dbdd1b
0300dbdd1b / BIP39_Versioning.md
Last active October 27, 2023 21:18
Proposal for Enhancing BIP39 Mnemonic Phrases with Versioning

Proposal for Enhancing BIP39 Mnemonic Phrases with Versioning

Author:

@0300dbdd1b


@0300dbdd1b
0300dbdd1b / SeedXOR.py
Last active October 13, 2023 00:56
This script allows users to split a given mnemonic seed into multiple parts and to combine them back.
"""
███████╗███████╗███████╗██████╗ ██╗ ██╗ ██████╗ ██████╗
██╔════╝██╔════╝██╔════╝██╔══██╗╚██╗██╔╝██╔═══██╗██╔══██╗
███████╗█████╗ █████╗ ██║ ██║ ╚███╔╝ ██║ ██║██████╔╝
╚════██║██╔══╝ ██╔══╝ ██║ ██║ ██╔██╗ ██║ ██║██╔══██╗
███████║███████╗███████╗██████╔╝██╔╝ ██╗╚██████╔╝██║ ██║
╚══════╝╚══════╝╚══════╝╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝
SeedXOR - Manage BIP39 Seed Entropy
@0300dbdd1b
0300dbdd1b / remote_utxoracle.py
Last active November 10, 2023 01:49
This code is a refactoring of UTXOracle.py, enabling remote connection to the bitoin node using RPC
##############################################################
# remote_utxoracle.py #
# This code is a refactoring of UTXOracle.py #
# Enabling remote connection to the bitcoin node using RPC #
##############################################################
# Based on UTXOracle.py version 7 (https://utxo.live/oracle/UTXOracle.py)
# Using python-bitcoinrpc (https://github.com/jgarzik/python-bitcoinrpc)
# Import required libraries