xBrainWallet icon indicating copy to clipboard operation
xBrainWallet copied to clipboard

Support

Open VuzzyM opened this issue 3 years ago • 4 comments
trafficstars

Hello.

how to find out the balance of your brainwallet.py every wallet? I'm not talking about the xbrainon version.

And I won't be banned from atomicwallet for spam?

VuzzyM avatar May 09 '22 16:05 VuzzyM

i used atomic wallet node for value checking each wallet (bitcoin):



def xBal(address) :
    urlblock = "https://bitcoin.atomicwallet.io/address/" + address
    respone_block = requests.get(urlblock)
    byte_string = respone_block.content
    source_code = html.fromstring(byte_string)
    xpatch_txid = '/html/body/main/div/div[2]/div[1]/table/tbody/tr[3]/td[2]'
    treetxid = source_code.xpath(xpatch_txid)
    xVol = str(treetxid[0].text_content())
    return xVol

i used 11Month in atomic . no block my all requests.

Pymmdrza avatar May 10 '22 00:05 Pymmdrza

Hello.

how to find out the balance of your brainwallet.py every wallet? I'm not talking about the xbrainon version.

And I won't be banned from atomicwallet for spam?

i used atomic wallet node for value checking each wallet (bitcoin):



def xBal(address) :
    urlblock = "https://bitcoin.atomicwallet.io/address/" + address
    respone_block = requests.get(urlblock)
    byte_string = respone_block.content
    source_code = html.fromstring(byte_string)
    xpatch_txid = '/html/body/main/div/div[2]/div[1]/table/tbody/tr[3]/td[2]'
    treetxid = source_code.xpath(xpatch_txid)
    xVol = str(treetxid[0].text_content())
    return xVol

i used 11Month in atomic . no block my all requests.

Pymmdrza avatar May 10 '22 00:05 Pymmdrza

Hello. how to find out the balance of your brainwallet.py every wallet? I'm not talking about the xbrainon version. And I won't be banned from atomicwallet for spam?

i used atomic wallet node for value checking each wallet (bitcoin):



def xBal(address) :
    urlblock = "https://bitcoin.atomicwallet.io/address/" + address
    respone_block = requests.get(urlblock)
    byte_string = respone_block.content
    source_code = html.fromstring(byte_string)
    xpatch_txid = '/html/body/main/div/div[2]/div[1]/table/tbody/tr[3]/td[2]'
    treetxid = source_code.xpath(xpatch_txid)
    xVol = str(treetxid[0].text_content())
    return xVol

i used 11Month in atomic . no block my all requests.

On xbrainon.py or brainwallet.py?

VuzzyM avatar May 10 '22 06:05 VuzzyM

Hello.

how to find out the balance of your brainwallet.py every wallet? I'm not talking about the xbrainon version.

And I won't be banned from atomicwallet for spam?

This File Checked Balance if Transaction > 0 with This Code 👍🏼

           f = open('BrainWalletXWalletWinnerNow.txt' , 'a')
            f.write('\nADDRESS =' + str(address) + '   BAL= ' + str(bal))
            f.write('\nPRiVATEKEY =' + str(private_key))
            f.write('\nPasspharse = ' + str(passphrase))

ProSource

Pymmdrza avatar May 10 '22 08:05 Pymmdrza