Welcome to the documentation for our Blockchain Services Python module. This module provides a simplified interface for interacting with Bitcoin-like and Ethereum-like blockchains. Below, you'll find an overview of the main classes and their functionalities.
Please refer to the /docs folder for detailed documentation on how to use the provided services.
Each documentation file provides detailed explanations of the classes, methods, and parameters available for interacting with the respective blockchain services.
To get started, navigate to the /docs folder and explore the documentation for the blockchain services provided in this repository.
If you encounter any issues or have suggestions for improvements, please feel free to open an issue or pull request on GitHub.
create_wallet(tag: str) -> strsatoshi_to_btc(amwount: int) -> floatbalance() -> floatget_balance(wallet: str) -> floattransfer_to_main(main_address: str, transit_tag: str, amount: float) -> dictsend(wallet: str, amount: float) -> strget_sum_and_address(tag: str, transaction_id: str) -> dictload_wallet(wallet: str) -> dictunload_wallet(wallet: str) -> dictget_confs(txid: str) -> intget_unspent_wallet_data(tag: str, repository) -> dict
get_base_wallet_balance(self)send_from_base_wallet(self, wallet, amount)get_balance_from_node(self, wallet) -> intget_transactions_list(self, blockhash) -> list[str]get_data_by_txid(self, txid: str) -> dictsend_from_tag(self, to_address: str, from_tag: str, amount: float) -> dictcreate_wallet(self, tag: str)get_address_from_name(self, tag: str)get_tag_transaction(self, tag: str, transaction_id: str)