Python client for interacting with the Hyperlabs Bitcoin API
Project description
APIBTC - Current Status
Please Note: Currently, our publicly hosted API endpoint is available exclusively on the Bitcoin regtest network for development and testing purposes.
- API Documentation (Swagger): The
regtestAPI documentation is available via Swagger here. - Mainnet Environment: We do not provide a publicly hosted
mainnetAPI endpoint. You can run your ownmainnetinstance using the provided Docker image. - More Information: For further details about the project, Docker images, and setup instructions, please visit the main project website.
⚠️ Important: The public API operates on regtest. Do not send real Bitcoin (BTC) to any addresses generated or used via this public regtest endpoint.
from apibtc import Wallet
from mnemonic import Mnemonic
from bip32utils import BIP32Key
# Declare API url
BASE_URL = "API_BASE_URL"
# Create two wallets
# Wallet 1 - Invoice Creator
mnemon1 = Mnemonic('english')
words1 = mnemon1.generate(128)
private_key1 = BIP32Key.fromEntropy(mnemon1.to_seed(words1)).PrivateKey().hex()
wallet1 = Wallet(base_url=BASE_URL, privkey=private_key1)
# Wallet 2 - Invoice Payer
mnemon2 = Mnemonic('english')
words2 = mnemon2.generate(128)
private_key2 = BIP32Key.fromEntropy(mnemon2.to_seed(words2)).PrivateKey().hex()
wallet2 = Wallet(base_url=BASE_URL, privkey=private_key2)
# Payment flow
# Create invoice with wallet1
invoice = wallet1.addinvoice(satoshis=1000, memo="Payment from wallet2", expiry=3600)
# Pay invoice with wallet2
wallet2.sendpayment(paymentrequest=invoice['payment_request'], timeout=30, feelimit=100)
# Check balances after payment
print("Wallet1 balance:", wallet1.getbalance())
print("Wallet2 balance:", wallet2.getbalance())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file apibtc-1.0.11.tar.gz.
File metadata
- Download URL: apibtc-1.0.11.tar.gz
- Upload date:
- Size: 34.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ae22826d7db80125b3d7354f75e36c61f6d12f4233168d583b41b301a4b5605
|
|
| MD5 |
d26c358381dc34d88f0f2e5e54a01cd2
|
|
| BLAKE2b-256 |
7150ed5ad1c1aad0ece7135c67bd9a8885958d992b9582878a18f5caeb7faf1d
|
File details
Details for the file apibtc-1.0.11-py3-none-any.whl.
File metadata
- Download URL: apibtc-1.0.11-py3-none-any.whl
- Upload date:
- Size: 29.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9556d0098461e7c707e19853b543d41ab4863f904812142117432f9b5524921
|
|
| MD5 |
ae3229738761469f091e0bf991d53a2b
|
|
| BLAKE2b-256 |
0fb26b85719788e9af10fef50ff2a445b709e33ad9c3a60829464a13c723bbec
|