Next scheduled rescrape ... in 4 days
Version 1
Last scraped
Scraped on 24/07/2025, 23:21:55 UTC
I am getting:

Code:
AttributeError: module 'secp256k1' has no attribute 'create_burn_address'

Tried the same way you have posted here.

Steps:
1. Git clone or download this to any Folder in your pc. https://github.com/iceland2k14/secp256k1
2. cd to same folder and then run python commands or scripts you desire. That will work.

The reason for failure is that you might have another library with the same name secp256k1 from some other repo.

Yep! It works! Thank you very much!

Code:
#!/usr/bin/env python3

import secp256k1 as ice
print(ice.create_burn_address('pbies', 'x'))
Original archived Re: base58encode_check to a string
Scraped on 24/07/2025, 23:17:23 UTC
I am getting:

Code:
AttributeError: module 'secp256k1' has no attribute 'create_burn_address'

Tried the same way you have posted here.

Steps:
1. Git clone or download this to any Folder in your pc. https://github.com/iceland2k14/secp256k1
2. cd to same folder and then run python commands or scripts you desire. That will work.

The reason for failure is that you might have another library with the same name secp256k1 from some other repo.

Yep! It works! Thank you very much!