The 1.97 priv key balance is almost gone, this address is getting everything out of it 1aamWKicYga3AN8UgywedHzEG12KbUUJJ
Each TX is 0.0011 BTC with Transaction Fee 0.00109 lol
It's probably a script running because doing this manually is impossible.
IF this is a script, then I have a couple of questions to people who are more inside the blockchain technology than I am.
First of all: There are a lot of dust transactions to and from this address. Some of these transactions took place around the time of the past stress tests.
This may be pure coincidence. However, here is a question I found regarding an unrelated transaction:
https://github.com/coinbase/toshi/issues/199The same couple of addresses can be found in a lot of the transactions of 1aamWKicYga3AN8UgywedHzEG12KbUUJJ. So what does this mean? The address 14p5cGy5DZmtNMQwTQiytBvxMVuTmFMSyU, for example, can be found in Peter Todd's python-bitcoinlib:
def test_from_bare_checksig_scriptPubKey(self):
def T(hex_scriptpubkey, expected_str_address):
scriptPubKey = CScript(x(hex_scriptpubkey))
addr = P2PKHBitcoinAddress.from_scriptPubKey(scriptPubKey)
self.assertEqual(str(addr), expected_str_address)
# now test that CBitcoinAddressError is raised with accept_non_canonical_pushdata=False
with self.assertRaises(CBitcoinAddressError):
P2PKHBitcoinAddress.from_scriptPubKey(scriptPubKey, accept_bare_checksig=False)
# compressed
T('21000000000000000000000000000000000000000000000000000000000000000000ac', '14p5cGy5DZmtNMQwTQiytBvxMVuTmFMSyU')
# uncompressed
T('4100000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000ac', '1QLFaVVt99p1y18zWSZnespzhkFxjwBbdP')
# non-canonical encoding
T('4c21000000000000000000000000000000000000000000000000000000000000000000ac', '14p5cGy5DZmtNMQwTQiytBvxMVuTmFMSyU')
Would anybody mind to help me understand this?