Bitcoin Forum
June 25, 2024, 03:20:29 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Development & Technical Discussion / Re: [For Developers] n0nce's Bitcoin Testnet Faucet [~10 tBTC] on: January 21, 2024, 01:27:37 PM
Hi,

I am working on a Bitcoin testnet exchange; it is for fun mostly and would appreciate to get more testnet coins than what existing faucets release per day. 

mqbbyRUtJXaYMjQFGxxJyaPnsrdozXibze

Thanks
How much do you need?

10 tBTC would suffice. Thanks!
2  Economy / Marketplace / Re: Don't buy "wallet.dat" files with lost passwords. EXCHANGE THEM! on: December 27, 2023, 09:34:38 AM
Why would anyone sell a wallet with a huge balance for a low value, ask yourself an obvious question like that, answer, they wouldnt.

I don't know exactly. I received 1900 files with balance for free and it take me 6 weeks to find out that minimum 300pcs is 100% fake.

Akaron, could you please share those wallets with me?

bitxchg at gmail

You'll get 1/2 of any wallet I open
3  Bitcoin / Development & Technical Discussion / Re: [For Developers] n0nce's Bitcoin Testnet Faucet [~10 tBTC] on: December 24, 2023, 01:31:57 PM
Hi,

I am working on a Bitcoin testnet exchange; it is for fun mostly and would appreciate to get more testnet coins than what existing faucets release per day. 

mqbbyRUtJXaYMjQFGxxJyaPnsrdozXibze

Thanks
4  Bitcoin / Project Development / Re: List of all Bitcoin addresses with a balance on: December 29, 2021, 05:14:17 AM
You deserve praise for making the list available and keeping updates running.

Have fun converting base58 and bech32 addresses to hash160, python style:

Code:
import segwit_addr
import base58
import argparse
import sys
import hashlib
import binascii

parser = argparse.ArgumentParser()
parser.add_argument('address', help='Enter bech32 address')
args = parser.parse_args()

address = sys.argv[1]

def validate_base58(a):
    base58Decoder = base58.b58decode(a).hex()
    prefixAndHash = base58Decoder[:len(base58Decoder)-8]
    checksum = base58Decoder[len(base58Decoder)-8:]
    hash = prefixAndHash
    for x in range(1,3):
        hash = hashlib.sha256(binascii.unhexlify(hash)).hexdigest()
        #print("Hash#", x, " : ", hash)
    #print("--------------------------------------")
    if(checksum == hash[:8]):
        return True
    else:
        return False

if validate_base58(address) is True:
    base58_decoded = base58.b58decode_check(address).hex()[2:]
    print (base58_decoded)
else:
    decoded = segwit_addr.decode('bc', address)
    if decoded[0] == 0:
        #print(decoded[2])
        hash160_bin = []
        for x in decoded[1]:
            hash160_bin.append(f'{x:08b}')

        hash160_hex = []
        for x in hash160_bin:
            hash160_hex.append(f'{int(x, 2):X}')

        print(''.join(hash160_hex))

and running it:

Code:
# python3 segwit_addr_decode.py 1P5ZEDWTKTFGxQjZphgWPQUpe554WKDfHQ
f22f5563839ba6ba5aa8d3726fcbc675cb3e4c9e

# python3 segwit_addr_decode.py 34xp4vRoCGJym3xR7yCVPFHoCNxv4Twseo
23e522dfc6656a8fda3d47b4fa53f7585ac758cd

# python3 segwit_addr_decode.py bc1qxv55wuzz4qsfgss3uq2zwg5y88d7qv5hg67d2d
3329477042A820944211E01427228439DBE03297

useful information on bech32 encoding: https://en.bitcoin.it/wiki/Bech32
test segwit address: https://bitcoin.sipa.be/bech32/demo/demo.html
test base58 encoded address: http://lenschulwitz.com/base58
5  Economy / Exchanges / Re: is CEX.IO a SCAM? on: January 12, 2018, 09:24:58 PM
CEX.io has stolen my money as it appears so far.

I have account up112960293 and in December I have changed my phone and in the process I lost the 2FA app and I can't log in.
Guess what ? This played very well for cex.io as they probably have major liquidity issues !!!
I have opened tickets 574201, 546283 and others and they respond to these tickets usually in a few hours saying that it will be processed shortly and I need to send documents and proof I am the owner of the account which I kept sending again and again.

No response !!! and I am locked out for over 20 days now.

I guess this is the perfect scenario in which they can spend and use my funds w/o really any issue while I can't login to my account.

In the crypto world of millionaires I gues $2500 is nothing but hey, that's a deposit that I made from my salary and... there are no millions there.
I feel scammed and tricked but in the same time powerless to do too much.

Any advice of what I can do now from anyone?
6  Bitcoin / Development & Technical Discussion / Re: Get list of all addresses with a balance over x? on: December 28, 2017, 03:30:42 PM
Who knows if the balances_498754.csv file shared above contains the compressed or uncompressed format of the bitcoin public address?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!