Author

Topic: Can someone help with python or SAGE code ? (Read 213 times)

member
Activity: 211
Merit: 20
$$$$$$$$$$$$$$$$$$$$$$$$$
September 05, 2021, 02:19:00 PM
#9
I do not believe! Moderators deleted my post I wrote here... Disgraceful!

I don't see it in loyce.club archives so either it was never in this thread to begin with or it was deleted too quickly (within 5 minutes of posting).


They'll probably delete this one too... I better stay a long time out of here!
legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
September 05, 2021, 01:43:24 PM
#8
I do not believe! Moderators deleted my post I wrote here... Disgraceful!

I don't see it in loyce.club archives so either it was never in this thread to begin with or it was deleted too quickly (within 5 minutes of posting).
member
Activity: 211
Merit: 20
$$$$$$$$$$$$$$$$$$$$$$$$$
September 05, 2021, 12:23:40 PM
#7

I do not believe! Moderators deleted my post I wrote here... Disgraceful!
member
Activity: 814
Merit: 20
$$P2P BTC BRUTE.JOIN NOW ! https://uclck.me/SQPJk
September 03, 2021, 12:00:04 PM
#6
Bro !!! Thank you very mach for your help. I was temporally basy, so I well come back to my fake base point generator and script some time late.

Fake base point generator?

Wait a minute. How would a fake base point generator help you find points any faster than a random brute-force?

If sites like keys.lol know privkey from equel to my fake bsae poit - very easy help..... Remember example then Brainless find privkey to my fake base point...
legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
September 03, 2021, 11:38:27 AM
#5
Bro !!! Thank you very mach for your help. I was temporally basy, so I well come back to my fake base point generator and script some time late.

Fake base point generator?

Wait a minute. How would a fake base point generator help you find points any faster than a random brute-force?
legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
September 02, 2021, 09:22:10 AM
#4
What is SAGE?

https://en.wikipedia.org/wiki/SageMath

He is asking for help with some script he made with this programming language.



COBRAS, I'm assuming your code is either not working or doesn't exist at all? I'm inclining more to the second possibility.

I didn't finish this as I have other work to do now, but I'll complete it at a later date.

Code:
# Some python code
# Create compressed public key from points
def point2compressed(x, y):
    if (y % 2 == 0):
        prefix = "02"
    else:
        prefix = "03"
    hx = hex(x)[2:].zfill(64)
    return prefix + hx

# create uncompressed public key from points
def point2uncompressed(x, y):
    hx = hex(x)[2:].zfill(64)
    hy = hex(y)[2:].zfill(64)
    return "04" + hx

#NOTE: code after this line is untested and probably broken

# public key to HASH160
from hashlib import sha256
import bytearray
def hash160(pubkey):
    #TODO This currently doesn't add the required prefix/suffix at the hash.
    hexkey = bytearray.fromhex(pubkey)
    h = sha256()
    h.update(hexkey)
    hash160 = h.digest()
    return hash160
   
#pip install base58
def legacy_address(hash160):
    #TODO

def nested_segwit_address(hash160):
    #TODO

#pip install bech32
def native_segwit_address(hash160):
    #TODO


#pip install requests
import requests
def has_balance(address):
    r = requests.get("https://api.blockchair.com/bitcoin/addresses?address={}".format(address))
    if r.status != 200:
       throw Exception("Got Status {} from Blockchair".format(r.status))
    return r.json()


member
Activity: 814
Merit: 20
$$P2P BTC BRUTE.JOIN NOW ! https://uclck.me/SQPJk
What is SAGE? I assume you mean the transactions related with its legacy addresses. Well, the public key with these coordinates is:
Code:
04e34a65a26877b80299ea0efe5d801cf30e09c2894b1100f5f2509e926739eef515c393ff61a2036b4d54ef9286c99f00ca580a6b6aed5c5778dca83a7d9fa280

These are its addresses:
Code:
16YUtotH4Dsp9teiVevjVnLJfZjgQJQtPH (uncompressed)
1CsgVKvxJ4QwVwwPUTpSJ3qKhuDvepeVaa (compressed)

Both of them have never received any funds. Could you explain us more properly what you want?

Im generate private keys what Im use after, but I need I have a coordinates (x,y) for example X: (xe34a65a26877b80299ea0efe5d801cf30e09c2894b1100f5f2509e926739eef5 Y: 0x15c393ff61a2036b4d54ef9286c99f00ca580a6b6aed5c5778dca83a7d9fa280) of public key bitcoin and need check does public key has a transaction ?

Help me please with code ?

I very need this asap.

Thank you very mach  priv+pub what have a transaction, empty or not empty this does not meter. Then I find a sach address I check sites like keys.lol and search privy for them , after I get privkey I will continue use this privkey in my formula.....

Understand now ?

If someone make code for me, I will give him my old wallet dat with 2BTC inside with lost password.
legendary
Activity: 1344
Merit: 6415
Farewell, Leo
What is SAGE? I assume you mean the transactions related with its legacy addresses. Well, the public key with these coordinates is:
Code:
04e34a65a26877b80299ea0efe5d801cf30e09c2894b1100f5f2509e926739eef515c393ff61a2036b4d54ef9286c99f00ca580a6b6aed5c5778dca83a7d9fa280

These are its addresses:
Code:
16YUtotH4Dsp9teiVevjVnLJfZjgQJQtPH (uncompressed)
1CsgVKvxJ4QwVwwPUTpSJ3qKhuDvepeVaa (compressed)

Both of them have never received any funds. Could you explain us more properly what you want?
member
Activity: 814
Merit: 20
$$P2P BTC BRUTE.JOIN NOW ! https://uclck.me/SQPJk
Help me please with bitcoin address transaction count in SAGE ?

I have a coordinates (x,y) for example X: (xe34a65a26877b80299ea0efe5d801cf30e09c2894b1100f5f2509e926739eef5 Y: 0x15c393ff61a2036b4d54ef9286c99f00ca580a6b6aed5c5778dca83a7d9fa280) of public key bitcoin and need check does public key has a transaction ?

Help me please with code ?

I very need this asap.

Thank you very mach
Jump to: