This file contains 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
#!/bin/bash | |
D0=$(TZ=UTC date --date="$(date --date="2015-12-07T08:27:12+0000")"); | |
for block in `seq 398784 16616 $((382168 + (16616*48)))`; | |
do DD=$(TZ=UTC date --date="$(date --date="$D0") +692 hours +20 minutes"); | |
D0=$DD; | |
echo "$block - $DD"; | |
done |
This file contains 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
#!/usr/bin/env python | |
# tagchain-list - scan dash core bdb files for P2PK graffiti | |
from __future__ import print_function | |
import re | |
import os | |
from collections import OrderedDict | |
from itertools import izip, repeat |
This file contains 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
## bitwalletrecover.py - recover private keys from your darkcoin wallet | |
## (this version was not tested with bitcoin/litecoin). | |
## Requires python3, pycoin (https://pypi.python.org/pypi/pycoin), | |
## and base58 (https://pypi.python.org/pypi/base58). | |
## | |
## Starting with Python 3.4, pip is included by default with the Python binary | |
## installers. To install pip for older versions 3.x: | |
## | |
## sudo apt-get install python3-setuptools | |
## sudo easy_install3 pip |
This file contains 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
import io | |
import os | |
from bitcoinrpc.authproxy import AuthServiceProxy | |
def ParseConfig(fileBuffer): | |
assert type(fileBuffer) is type(b'') | |
f = io.StringIO(fileBuffer.decode('ascii', errors='ignore'), newline=None) | |
result = {} | |
for line in f: |
This file contains 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
# blockchain state at first block of 2017 | |
year_now = 2017 | |
now_height = 596411 | |
now_outstanding = 6990727 | |
# 200423 == average annual block discovery rate across 2 years | |
avg_blocks_per_year = float(((596411 - 395793) + (395793 - 195565)) / 2) |
This file contains 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
#!/bin/bash | |
echo "getting checksum list" | |
wget -q https://github.com/dashpay/dash/releases/download/v0.12.1.5/SHA256SUMS.asc | |
FILENAMES=$(cat SHA256SUMS.asc | grep dash | awk '{print $2}') | |
echo "downloading binaries" |
This file contains 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
#!/usr/bin/env python2 | |
def capture_probability( n_full_set, n_capture_set, rounds): | |
return (n_capture_set / n_full_set) ** rounds | |
masternode_count = 4270 | |
if __name__ == "__main__": | |
for percentage in range (5, 100, 5): |
This file contains 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
Verifying that "moocowmoo.id" is my Blockstack ID. https://onename.com/moocowmoo |
This file contains 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
#!/usr/bin/env python | |
def selection_probability(mns, blocks): | |
p_pool = mns / 10 | |
p_prob = 1.0 - ((float(p_pool - 1) / float(p_pool)) ** float(blocks)) | |
return "{:0.2f}%".format(p_prob * 100) | |
masternode_count = 4387 |
This file contains 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
#!/usr/bin/env python2 | |
now_height=460854 | |
now_outstanding=6406809 | |
def min_blok_subsidy(nHeight): | |
nSubsidy = float(5) # assume minimum subsidy | |
for i in range(210240, nHeight, 210240): | |
nSubsidy -= nSubsidy/14 | |
return nSubsidy |
NewerOlder