xBrainWallet
xBrainWallet copied to clipboard
Support
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.
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.
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 xVoli used 11Month in atomic . no block my all requests.
On xbrainon.py or brainwallet.py?
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))