Business logic to abstract the raw nano node RPC logic
Project description
nanohelp
Business logic to abstract the raw nano node RPC logic
Documentation
https://nanohelp.readthedocs.io/en/latest/
Installation
pip install nanohelp
Usage
from nanohelp.secret import SecretManager
from nanohelp.wallet import WalletManager
# Initialize a SecretManager
secret_manager = SecretManager()
# Initialize a WalletManager, passing in the secret manager
wallet_manager = WalletManager(secret_manager)
# Define user and project details
user1 = "user1"
user2 = "user2"
project_id = "my-project"
# Create a new wallet for User1, this also generates and stores a new private key
wallet_id_user1, account_address_user1 = wallet_manager.create_wallet(user1)
# Create a new wallet for User2
wallet_id_user2, account_address_user2 = wallet_manager.create_wallet(user2)
# Transaction from User1's account to User2's account
amount = 1000 # amount of Nano to be sent
transaction_block = wallet_manager.make_transaction(
wallet_id_user1,
account_address_user1,
account_address_user2,
amount,
secret_manager.get_private_key(project_id, user1)
)
# Print transaction block
print(f"Transaction block: {transaction_block}")
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
nanohelp-0.1.13.tar.gz
(4.8 kB
view details)
Built Distribution
File details
Details for the file nanohelp-0.1.13.tar.gz
.
File metadata
- Download URL: nanohelp-0.1.13.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ee369e48607b2d4d0a46365f873e19ae4dd1db0f18b565f20e54e7dbde990be |
|
MD5 | edd91e43826cf0f475333f09596cda0b |
|
BLAKE2b-256 | 48be4595c728b19db73af611fd4552d731b7e3cacd63d3e5a4a8768e9414c7b2 |
Provenance
File details
Details for the file nanohelp-0.1.13-py3-none-any.whl
.
File metadata
- Download URL: nanohelp-0.1.13-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d83017e0773396367bf62b97384ebfcfbb75d6917b6d522d1d5ff686286fb77 |
|
MD5 | bd6c45b10b8bdcd872d6ece23a03cde3 |
|
BLAKE2b-256 | e92d1a90ab9dce76d1b1823986b0c2581133e91d333e1661b11d91a6cbc54635 |