barkd-client 0.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- barkd_client-0.1.4/PKG-INFO +114 -0
- barkd_client-0.1.4/README.md +95 -0
- barkd_client-0.1.4/barkd_client/__init__.py +375 -0
- barkd_client-0.1.4/barkd_client/api/__init__.py +13 -0
- barkd_client-0.1.4/barkd_client/api/bitcoin_api.py +285 -0
- barkd_client-0.1.4/barkd_client/api/boards_api.py +813 -0
- barkd_client-0.1.4/barkd_client/api/default_api.py +271 -0
- barkd_client-0.1.4/barkd_client/api/exits_api.py +1999 -0
- barkd_client-0.1.4/barkd_client/api/fees_api.py +1650 -0
- barkd_client-0.1.4/barkd_client/api/lightning_api.py +1389 -0
- barkd_client-0.1.4/barkd_client/api/notifications_api.py +285 -0
- barkd_client-0.1.4/barkd_client/api/onchain_api.py +2120 -0
- barkd_client-0.1.4/barkd_client/api/wallet_api.py +6601 -0
- barkd_client-0.1.4/barkd_client/api_client.py +806 -0
- barkd_client-0.1.4/barkd_client/api_response.py +21 -0
- barkd_client-0.1.4/barkd_client/configuration.py +587 -0
- barkd_client-0.1.4/barkd_client/exceptions.py +219 -0
- barkd_client-0.1.4/barkd_client/models/__init__.py +172 -0
- barkd_client-0.1.4/barkd_client/models/address.py +88 -0
- barkd_client-0.1.4/barkd_client/models/ark_address_response.py +88 -0
- barkd_client-0.1.4/barkd_client/models/ark_info.py +125 -0
- barkd_client-0.1.4/barkd_client/models/bad_request_error.py +88 -0
- barkd_client-0.1.4/barkd_client/models/balance.py +104 -0
- barkd_client-0.1.4/barkd_client/models/bark_network.py +40 -0
- barkd_client-0.1.4/barkd_client/models/bitcoind_auth.py +138 -0
- barkd_client-0.1.4/barkd_client/models/bitcoind_auth_one_of.py +92 -0
- barkd_client-0.1.4/barkd_client/models/bitcoind_auth_one_of1.py +92 -0
- barkd_client-0.1.4/barkd_client/models/bitcoind_auth_one_of1_user_pass.py +90 -0
- barkd_client-0.1.4/barkd_client/models/bitcoind_auth_one_of_cookie.py +88 -0
- barkd_client-0.1.4/barkd_client/models/block_ref.py +91 -0
- barkd_client-0.1.4/barkd_client/models/board_fees.py +93 -0
- barkd_client-0.1.4/barkd_client/models/board_request.py +89 -0
- barkd_client-0.1.4/barkd_client/models/chain_source_config.py +138 -0
- barkd_client-0.1.4/barkd_client/models/chain_source_config_one_of.py +92 -0
- barkd_client-0.1.4/barkd_client/models/chain_source_config_one_of1.py +92 -0
- barkd_client-0.1.4/barkd_client/models/chain_source_config_one_of1_esplora.py +88 -0
- barkd_client-0.1.4/barkd_client/models/chain_source_config_one_of_bitcoind.py +94 -0
- barkd_client-0.1.4/barkd_client/models/child_transaction_info.py +98 -0
- barkd_client-0.1.4/barkd_client/models/connected_response.py +88 -0
- barkd_client-0.1.4/barkd_client/models/create_wallet_request.py +129 -0
- barkd_client-0.1.4/barkd_client/models/create_wallet_response.py +88 -0
- barkd_client-0.1.4/barkd_client/models/encoded_vtxo_response.py +88 -0
- barkd_client-0.1.4/barkd_client/models/exit_awaiting_delta_state.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_claim_all_request.py +96 -0
- barkd_client-0.1.4/barkd_client/models/exit_claim_in_progress_state.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_claim_response.py +88 -0
- barkd_client-0.1.4/barkd_client/models/exit_claim_vtxos_request.py +98 -0
- barkd_client-0.1.4/barkd_client/models/exit_claimable_state.py +105 -0
- barkd_client-0.1.4/barkd_client/models/exit_claimed_state.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error.py +474 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of.py +99 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of1.py +100 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of10.py +99 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of11.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of12.py +99 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of13.py +100 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of14.py +104 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of15.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of16.py +105 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of17.py +100 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of18.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of19.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of2.py +95 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of20.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of21.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of22.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of23.py +99 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of24.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of25.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of3.py +100 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of4.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of5.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of6.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of7.py +99 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of8.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_error_one_of9.py +100 -0
- barkd_client-0.1.4/barkd_client/models/exit_processing_state.py +99 -0
- barkd_client-0.1.4/barkd_client/models/exit_progress_request.py +101 -0
- barkd_client-0.1.4/barkd_client/models/exit_progress_response.py +106 -0
- barkd_client-0.1.4/barkd_client/models/exit_progress_status.py +105 -0
- barkd_client-0.1.4/barkd_client/models/exit_start_request.py +88 -0
- barkd_client-0.1.4/barkd_client/models/exit_start_response.py +88 -0
- barkd_client-0.1.4/barkd_client/models/exit_start_state.py +89 -0
- barkd_client-0.1.4/barkd_client/models/exit_state.py +194 -0
- barkd_client-0.1.4/barkd_client/models/exit_state_one_of.py +98 -0
- barkd_client-0.1.4/barkd_client/models/exit_state_one_of1.py +108 -0
- barkd_client-0.1.4/barkd_client/models/exit_state_one_of2.py +106 -0
- barkd_client-0.1.4/barkd_client/models/exit_state_one_of3.py +109 -0
- barkd_client-0.1.4/barkd_client/models/exit_state_one_of4.py +106 -0
- barkd_client-0.1.4/barkd_client/models/exit_state_one_of5.py +106 -0
- barkd_client-0.1.4/barkd_client/models/exit_status_request.py +100 -0
- barkd_client-0.1.4/barkd_client/models/exit_transaction_package.py +103 -0
- barkd_client-0.1.4/barkd_client/models/exit_transaction_status.py +118 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx.py +94 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_origin.py +152 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_origin_one_of.py +106 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_origin_one_of1.py +102 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_origin_one_of2.py +101 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_status.py +208 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_status_one_of.py +95 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_status_one_of1.py +97 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_status_one_of2.py +95 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_status_one_of3.py +102 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_status_one_of4.py +103 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_status_one_of5.py +103 -0
- barkd_client-0.1.4/barkd_client/models/exit_tx_status_one_of6.py +109 -0
- barkd_client-0.1.4/barkd_client/models/fee_estimate_query.py +89 -0
- barkd_client-0.1.4/barkd_client/models/fee_estimate_response.py +95 -0
- barkd_client-0.1.4/barkd_client/models/fee_schedule.py +116 -0
- barkd_client-0.1.4/barkd_client/models/import_vtxo_request.py +88 -0
- barkd_client-0.1.4/barkd_client/models/internal_server_error.py +88 -0
- barkd_client-0.1.4/barkd_client/models/invoice_info.py +88 -0
- barkd_client-0.1.4/barkd_client/models/lightning_invoice_request.py +96 -0
- barkd_client-0.1.4/barkd_client/models/lightning_pay_request.py +103 -0
- barkd_client-0.1.4/barkd_client/models/lightning_pay_response.py +88 -0
- barkd_client-0.1.4/barkd_client/models/lightning_receive_fees.py +91 -0
- barkd_client-0.1.4/barkd_client/models/lightning_receive_info.py +120 -0
- barkd_client-0.1.4/barkd_client/models/lightning_send_fees.py +101 -0
- barkd_client-0.1.4/barkd_client/models/mailbox_sync_response.py +89 -0
- barkd_client-0.1.4/barkd_client/models/movement.py +137 -0
- barkd_client-0.1.4/barkd_client/models/movement_destination.py +95 -0
- barkd_client-0.1.4/barkd_client/models/movement_status.py +40 -0
- barkd_client-0.1.4/barkd_client/models/movement_subsystem.py +90 -0
- barkd_client-0.1.4/barkd_client/models/movement_timestamp.py +98 -0
- barkd_client-0.1.4/barkd_client/models/next_round_start.py +89 -0
- barkd_client-0.1.4/barkd_client/models/not_found_error.py +90 -0
- barkd_client-0.1.4/barkd_client/models/offboard_all_fee_estimate_query.py +88 -0
- barkd_client-0.1.4/barkd_client/models/offboard_all_request.py +93 -0
- barkd_client-0.1.4/barkd_client/models/offboard_fees.py +101 -0
- barkd_client-0.1.4/barkd_client/models/offboard_result.py +88 -0
- barkd_client-0.1.4/barkd_client/models/offboard_vtxos_request.py +95 -0
- barkd_client-0.1.4/barkd_client/models/onchain_balance.py +99 -0
- barkd_client-0.1.4/barkd_client/models/onchain_drain_request.py +88 -0
- barkd_client-0.1.4/barkd_client/models/onchain_fee_rates_response.py +93 -0
- barkd_client-0.1.4/barkd_client/models/onchain_send_many_request.py +95 -0
- barkd_client-0.1.4/barkd_client/models/onchain_send_request.py +91 -0
- barkd_client-0.1.4/barkd_client/models/payment_method.py +97 -0
- barkd_client-0.1.4/barkd_client/models/pending_board_info.py +99 -0
- barkd_client-0.1.4/barkd_client/models/pending_round_info.py +122 -0
- barkd_client-0.1.4/barkd_client/models/ppm_expiry_fee_entry.py +91 -0
- barkd_client-0.1.4/barkd_client/models/refresh_fees.py +99 -0
- barkd_client-0.1.4/barkd_client/models/refresh_request.py +88 -0
- barkd_client-0.1.4/barkd_client/models/round_participation_info.py +98 -0
- barkd_client-0.1.4/barkd_client/models/round_status.py +194 -0
- barkd_client-0.1.4/barkd_client/models/round_status_one_of.py +97 -0
- barkd_client-0.1.4/barkd_client/models/round_status_one_of1.py +97 -0
- barkd_client-0.1.4/barkd_client/models/round_status_one_of2.py +97 -0
- barkd_client-0.1.4/barkd_client/models/round_status_one_of3.py +95 -0
- barkd_client-0.1.4/barkd_client/models/round_status_one_of4.py +97 -0
- barkd_client-0.1.4/barkd_client/models/round_status_one_of5.py +95 -0
- barkd_client-0.1.4/barkd_client/models/send.py +88 -0
- barkd_client-0.1.4/barkd_client/models/send_onchain_fee_estimate_query.py +91 -0
- barkd_client-0.1.4/barkd_client/models/send_onchain_request.py +91 -0
- barkd_client-0.1.4/barkd_client/models/send_request.py +103 -0
- barkd_client-0.1.4/barkd_client/models/send_response.py +88 -0
- barkd_client-0.1.4/barkd_client/models/tip_response.py +89 -0
- barkd_client-0.1.4/barkd_client/models/transaction_info.py +90 -0
- barkd_client-0.1.4/barkd_client/models/utxo_info.py +98 -0
- barkd_client-0.1.4/barkd_client/models/vtxo_info.py +110 -0
- barkd_client-0.1.4/barkd_client/models/vtxo_request_info.py +93 -0
- barkd_client-0.1.4/barkd_client/models/vtxo_state_info.py +152 -0
- barkd_client-0.1.4/barkd_client/models/vtxo_state_info_one_of.py +95 -0
- barkd_client-0.1.4/barkd_client/models/vtxo_state_info_one_of1.py +95 -0
- barkd_client-0.1.4/barkd_client/models/vtxo_state_info_one_of2.py +98 -0
- barkd_client-0.1.4/barkd_client/models/vtxos_query.py +93 -0
- barkd_client-0.1.4/barkd_client/models/wallet_delete_request.py +90 -0
- barkd_client-0.1.4/barkd_client/models/wallet_delete_response.py +90 -0
- barkd_client-0.1.4/barkd_client/models/wallet_exists_response.py +93 -0
- barkd_client-0.1.4/barkd_client/models/wallet_notification.py +152 -0
- barkd_client-0.1.4/barkd_client/models/wallet_notification_one_of.py +101 -0
- barkd_client-0.1.4/barkd_client/models/wallet_notification_one_of1.py +101 -0
- barkd_client-0.1.4/barkd_client/models/wallet_notification_one_of2.py +95 -0
- barkd_client-0.1.4/barkd_client/models/wallet_vtxo_info.py +116 -0
- barkd_client-0.1.4/barkd_client/py.typed +0 -0
- barkd_client-0.1.4/barkd_client/rest.py +264 -0
- barkd_client-0.1.4/barkd_client.egg-info/PKG-INFO +114 -0
- barkd_client-0.1.4/barkd_client.egg-info/SOURCES.txt +346 -0
- barkd_client-0.1.4/barkd_client.egg-info/dependency_links.txt +1 -0
- barkd_client-0.1.4/barkd_client.egg-info/requires.txt +4 -0
- barkd_client-0.1.4/barkd_client.egg-info/top_level.txt +1 -0
- barkd_client-0.1.4/pyproject.toml +95 -0
- barkd_client-0.1.4/setup.cfg +7 -0
- barkd_client-0.1.4/setup.py +49 -0
- barkd_client-0.1.4/test/test_address.py +53 -0
- barkd_client-0.1.4/test/test_ark_address_response.py +53 -0
- barkd_client-0.1.4/test/test_ark_info.py +137 -0
- barkd_client-0.1.4/test/test_bad_request_error.py +53 -0
- barkd_client-0.1.4/test/test_balance.py +62 -0
- barkd_client-0.1.4/test/test_bark_network.py +34 -0
- barkd_client-0.1.4/test/test_bitcoin_api.py +39 -0
- barkd_client-0.1.4/test/test_bitcoind_auth.py +61 -0
- barkd_client-0.1.4/test/test_bitcoind_auth_one_of.py +55 -0
- barkd_client-0.1.4/test/test_bitcoind_auth_one_of1.py +57 -0
- barkd_client-0.1.4/test/test_bitcoind_auth_one_of1_user_pass.py +55 -0
- barkd_client-0.1.4/test/test_bitcoind_auth_one_of_cookie.py +53 -0
- barkd_client-0.1.4/test/test_block_ref.py +55 -0
- barkd_client-0.1.4/test/test_board_fees.py +57 -0
- barkd_client-0.1.4/test/test_board_request.py +53 -0
- barkd_client-0.1.4/test/test_boards_api.py +53 -0
- barkd_client-0.1.4/test/test_chain_source_config.py +61 -0
- barkd_client-0.1.4/test/test_chain_source_config_one_of.py +57 -0
- barkd_client-0.1.4/test/test_chain_source_config_one_of1.py +55 -0
- barkd_client-0.1.4/test/test_chain_source_config_one_of1_esplora.py +53 -0
- barkd_client-0.1.4/test/test_chain_source_config_one_of_bitcoind.py +55 -0
- barkd_client-0.1.4/test/test_child_transaction_info.py +59 -0
- barkd_client-0.1.4/test/test_connected_response.py +53 -0
- barkd_client-0.1.4/test/test_create_wallet_request.py +58 -0
- barkd_client-0.1.4/test/test_create_wallet_response.py +53 -0
- barkd_client-0.1.4/test/test_default_api.py +39 -0
- barkd_client-0.1.4/test/test_encoded_vtxo_response.py +53 -0
- barkd_client-0.1.4/test/test_exit_awaiting_delta_state.py +61 -0
- barkd_client-0.1.4/test/test_exit_claim_all_request.py +54 -0
- barkd_client-0.1.4/test/test_exit_claim_in_progress_state.py +61 -0
- barkd_client-0.1.4/test/test_exit_claim_response.py +53 -0
- barkd_client-0.1.4/test/test_exit_claim_vtxos_request.py +60 -0
- barkd_client-0.1.4/test/test_exit_claimable_state.py +62 -0
- barkd_client-0.1.4/test/test_exit_claimed_state.py +61 -0
- barkd_client-0.1.4/test/test_exit_error.py +83 -0
- barkd_client-0.1.4/test/test_exit_error_one_of.py +57 -0
- barkd_client-0.1.4/test/test_exit_error_one_of1.py +57 -0
- barkd_client-0.1.4/test/test_exit_error_one_of10.py +57 -0
- barkd_client-0.1.4/test/test_exit_error_one_of11.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of12.py +57 -0
- barkd_client-0.1.4/test/test_exit_error_one_of13.py +57 -0
- barkd_client-0.1.4/test/test_exit_error_one_of14.py +61 -0
- barkd_client-0.1.4/test/test_exit_error_one_of15.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of16.py +59 -0
- barkd_client-0.1.4/test/test_exit_error_one_of17.py +57 -0
- barkd_client-0.1.4/test/test_exit_error_one_of18.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of19.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of2.py +53 -0
- barkd_client-0.1.4/test/test_exit_error_one_of20.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of21.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of22.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of23.py +57 -0
- barkd_client-0.1.4/test/test_exit_error_one_of24.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of25.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of3.py +57 -0
- barkd_client-0.1.4/test/test_exit_error_one_of4.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of5.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of6.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of7.py +57 -0
- barkd_client-0.1.4/test/test_exit_error_one_of8.py +55 -0
- barkd_client-0.1.4/test/test_exit_error_one_of9.py +57 -0
- barkd_client-0.1.4/test/test_exit_processing_state.py +63 -0
- barkd_client-0.1.4/test/test_exit_progress_request.py +53 -0
- barkd_client-0.1.4/test/test_exit_progress_response.py +66 -0
- barkd_client-0.1.4/test/test_exit_progress_status.py +56 -0
- barkd_client-0.1.4/test/test_exit_start_request.py +57 -0
- barkd_client-0.1.4/test/test_exit_start_response.py +53 -0
- barkd_client-0.1.4/test/test_exit_start_state.py +53 -0
- barkd_client-0.1.4/test/test_exit_state.py +92 -0
- barkd_client-0.1.4/test/test_exit_state_one_of.py +55 -0
- barkd_client-0.1.4/test/test_exit_state_one_of1.py +65 -0
- barkd_client-0.1.4/test/test_exit_state_one_of2.py +63 -0
- barkd_client-0.1.4/test/test_exit_state_one_of3.py +64 -0
- barkd_client-0.1.4/test/test_exit_state_one_of4.py +63 -0
- barkd_client-0.1.4/test/test_exit_state_one_of5.py +63 -0
- barkd_client-0.1.4/test/test_exit_status_request.py +53 -0
- barkd_client-0.1.4/test/test_exit_transaction_package.py +62 -0
- barkd_client-0.1.4/test/test_exit_transaction_status.py +63 -0
- barkd_client-0.1.4/test/test_exit_tx.py +55 -0
- barkd_client-0.1.4/test/test_exit_tx_origin.py +65 -0
- barkd_client-0.1.4/test/test_exit_tx_origin_one_of.py +56 -0
- barkd_client-0.1.4/test/test_exit_tx_origin_one_of1.py +59 -0
- barkd_client-0.1.4/test/test_exit_tx_origin_one_of2.py +59 -0
- barkd_client-0.1.4/test/test_exit_tx_status.py +75 -0
- barkd_client-0.1.4/test/test_exit_tx_status_one_of.py +53 -0
- barkd_client-0.1.4/test/test_exit_tx_status_one_of1.py +59 -0
- barkd_client-0.1.4/test/test_exit_tx_status_one_of2.py +53 -0
- barkd_client-0.1.4/test/test_exit_tx_status_one_of3.py +59 -0
- barkd_client-0.1.4/test/test_exit_tx_status_one_of4.py +57 -0
- barkd_client-0.1.4/test/test_exit_tx_status_one_of5.py +57 -0
- barkd_client-0.1.4/test/test_exit_tx_status_one_of6.py +63 -0
- barkd_client-0.1.4/test/test_exits_api.py +81 -0
- barkd_client-0.1.4/test/test_fee_estimate_query.py +53 -0
- barkd_client-0.1.4/test/test_fee_estimate_response.py +63 -0
- barkd_client-0.1.4/test/test_fee_schedule.py +111 -0
- barkd_client-0.1.4/test/test_fees_api.py +74 -0
- barkd_client-0.1.4/test/test_import_vtxo_request.py +57 -0
- barkd_client-0.1.4/test/test_internal_server_error.py +53 -0
- barkd_client-0.1.4/test/test_invoice_info.py +53 -0
- barkd_client-0.1.4/test/test_lightning_api.py +67 -0
- barkd_client-0.1.4/test/test_lightning_invoice_request.py +54 -0
- barkd_client-0.1.4/test/test_lightning_pay_request.py +55 -0
- barkd_client-0.1.4/test/test_lightning_pay_response.py +53 -0
- barkd_client-0.1.4/test/test_lightning_receive_fees.py +55 -0
- barkd_client-0.1.4/test/test_lightning_receive_info.py +67 -0
- barkd_client-0.1.4/test/test_lightning_send_fees.py +65 -0
- barkd_client-0.1.4/test/test_mailbox_sync_response.py +53 -0
- barkd_client-0.1.4/test/test_movement.py +116 -0
- barkd_client-0.1.4/test/test_movement_destination.py +59 -0
- barkd_client-0.1.4/test/test_movement_status.py +34 -0
- barkd_client-0.1.4/test/test_movement_subsystem.py +55 -0
- barkd_client-0.1.4/test/test_movement_timestamp.py +56 -0
- barkd_client-0.1.4/test/test_next_round_start.py +53 -0
- barkd_client-0.1.4/test/test_not_found_error.py +59 -0
- barkd_client-0.1.4/test/test_notifications_api.py +39 -0
- barkd_client-0.1.4/test/test_offboard_all_fee_estimate_query.py +53 -0
- barkd_client-0.1.4/test/test_offboard_all_request.py +52 -0
- barkd_client-0.1.4/test/test_offboard_fees.py +65 -0
- barkd_client-0.1.4/test/test_offboard_result.py +53 -0
- barkd_client-0.1.4/test/test_offboard_vtxos_request.py +58 -0
- barkd_client-0.1.4/test/test_onchain_api.py +88 -0
- barkd_client-0.1.4/test/test_onchain_balance.py +63 -0
- barkd_client-0.1.4/test/test_onchain_drain_request.py +53 -0
- barkd_client-0.1.4/test/test_onchain_fee_rates_response.py +57 -0
- barkd_client-0.1.4/test/test_onchain_send_many_request.py +58 -0
- barkd_client-0.1.4/test/test_onchain_send_request.py +55 -0
- barkd_client-0.1.4/test/test_payment_method.py +55 -0
- barkd_client-0.1.4/test/test_pending_board_info.py +67 -0
- barkd_client-0.1.4/test/test_pending_round_info.py +80 -0
- barkd_client-0.1.4/test/test_ppm_expiry_fee_entry.py +55 -0
- barkd_client-0.1.4/test/test_refresh_fees.py +63 -0
- barkd_client-0.1.4/test/test_refresh_request.py +57 -0
- barkd_client-0.1.4/test/test_round_participation_info.py +69 -0
- barkd_client-0.1.4/test/test_round_status.py +57 -0
- barkd_client-0.1.4/test/test_round_status_one_of.py +55 -0
- barkd_client-0.1.4/test/test_round_status_one_of1.py +55 -0
- barkd_client-0.1.4/test/test_round_status_one_of2.py +55 -0
- barkd_client-0.1.4/test/test_round_status_one_of3.py +53 -0
- barkd_client-0.1.4/test/test_round_status_one_of4.py +55 -0
- barkd_client-0.1.4/test/test_round_status_one_of5.py +53 -0
- barkd_client-0.1.4/test/test_send.py +53 -0
- barkd_client-0.1.4/test/test_send_onchain_fee_estimate_query.py +55 -0
- barkd_client-0.1.4/test/test_send_onchain_request.py +55 -0
- barkd_client-0.1.4/test/test_send_request.py +55 -0
- barkd_client-0.1.4/test/test_send_response.py +53 -0
- barkd_client-0.1.4/test/test_tip_response.py +53 -0
- barkd_client-0.1.4/test/test_transaction_info.py +55 -0
- barkd_client-0.1.4/test/test_utxo_info.py +56 -0
- barkd_client-0.1.4/test/test_vtxo_info.py +68 -0
- barkd_client-0.1.4/test/test_vtxo_request_info.py +57 -0
- barkd_client-0.1.4/test/test_vtxo_state_info.py +54 -0
- barkd_client-0.1.4/test/test_vtxo_state_info_one_of.py +53 -0
- barkd_client-0.1.4/test/test_vtxo_state_info_one_of1.py +53 -0
- barkd_client-0.1.4/test/test_vtxo_state_info_one_of2.py +54 -0
- barkd_client-0.1.4/test/test_vtxos_query.py +52 -0
- barkd_client-0.1.4/test/test_wallet_api.py +205 -0
- barkd_client-0.1.4/test/test_wallet_delete_request.py +55 -0
- barkd_client-0.1.4/test/test_wallet_delete_response.py +55 -0
- barkd_client-0.1.4/test/test_wallet_exists_response.py +52 -0
- barkd_client-0.1.4/test/test_wallet_notification.py +113 -0
- barkd_client-0.1.4/test/test_wallet_notification_one_of.py +113 -0
- barkd_client-0.1.4/test/test_wallet_notification_one_of1.py +113 -0
- barkd_client-0.1.4/test/test_wallet_notification_one_of2.py +53 -0
- barkd_client-0.1.4/test/test_wallet_vtxo_info.py +70 -0
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: barkd_client
|
|
3
|
+
Version: 0.1.4
|
|
4
|
+
Summary: barkd REST API
|
|
5
|
+
Home-page: https://gitlab.com/ark-bitcoin/barkd-clients
|
|
6
|
+
Author: Second Team
|
|
7
|
+
Author-email: Second Team <hello@second.tech>
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
|
|
10
|
+
Keywords: OpenAPI,OpenAPI-Generator,barkd REST API
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: urllib3<3.0.0,>=2.1.0
|
|
14
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
15
|
+
Requires-Dist: pydantic>=2
|
|
16
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
22
|
+
# barkd-client
|
|
23
|
+
|
|
24
|
+
Auto-generated Python client for the **barkd REST API**, built from its OpenAPI specification.
|
|
25
|
+
|
|
26
|
+
## Installation
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
pip install barkd-client
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Usage
|
|
33
|
+
|
|
34
|
+
```python
|
|
35
|
+
import barkd_client
|
|
36
|
+
from barkd_client.rest import ApiException
|
|
37
|
+
|
|
38
|
+
config = barkd_client.Configuration(
|
|
39
|
+
host="http://localhost:3535",
|
|
40
|
+
)
|
|
41
|
+
|
|
42
|
+
with barkd_client.ApiClient(config) as api_client:
|
|
43
|
+
wallet = barkd_client.WalletApi(api_client)
|
|
44
|
+
balance = wallet.balance()
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## API Endpoints
|
|
48
|
+
|
|
49
|
+
All URIs are relative to *http://localhost*
|
|
50
|
+
|
|
51
|
+
Class | Method | HTTP request | Description
|
|
52
|
+
------------ | ------------- | ------------- | -------------
|
|
53
|
+
*BitcoinApi* | **tip** | **GET** /api/v1/bitcoin/tip | Get bitcoin tip height
|
|
54
|
+
*BoardsApi* | **board_all** | **POST** /api/v1/boards/board-all | Board all on-chain bitcoin
|
|
55
|
+
*BoardsApi* | **board_amount** | **POST** /api/v1/boards/board-amount | Board a specific amount
|
|
56
|
+
*BoardsApi* | **get_pending_boards** | **GET** /api/v1/boards/pending | List pending boards
|
|
57
|
+
*DefaultApi* | **ping** | **GET** /ping | Ping
|
|
58
|
+
*ExitsApi* | **exit_claim_all** | **POST** /api/v1/exits/claim/all | Claim all exited VTXOs
|
|
59
|
+
*ExitsApi* | **exit_claim_vtxos** | **POST** /api/v1/exits/claim/vtxos | Claim specific exited VTXOs
|
|
60
|
+
*ExitsApi* | **exit_progress** | **POST** /api/v1/exits/progress | Progress exits
|
|
61
|
+
*ExitsApi* | **exit_start_all** | **POST** /api/v1/exits/start/all | Start exit for all VTXOs
|
|
62
|
+
*ExitsApi* | **exit_start_vtxos** | **POST** /api/v1/exits/start/vtxos | Start exit for specific VTXOs
|
|
63
|
+
*ExitsApi* | **get_all_exit_status** | **GET** /api/v1/exits/status | List all exit statuses
|
|
64
|
+
*ExitsApi* | **get_exit_status_by_vtxo_id** | **GET** /api/v1/exits/status/{vtxo_id} | Get exit status
|
|
65
|
+
*FeesApi* | **board_fee** | **GET** /api/v1/fees/board | Estimate board fee
|
|
66
|
+
*FeesApi* | **lightning_receive_fee** | **GET** /api/v1/fees/lightning/receive | Estimate Lightning receive fee
|
|
67
|
+
*FeesApi* | **lightning_send_fee** | **GET** /api/v1/fees/lightning/pay | Estimate Lightning send fee
|
|
68
|
+
*FeesApi* | **offboard_all_fee** | **GET** /api/v1/fees/offboard-all | Estimate offboard-all fee
|
|
69
|
+
*FeesApi* | **onchain_fee_rates** | **GET** /api/v1/fees/onchain | Get on-chain fee rates
|
|
70
|
+
*FeesApi* | **send_onchain_fee** | **GET** /api/v1/fees/send-onchain | Estimate send-onchain fee
|
|
71
|
+
*LightningApi* | **cancel_receive** | **DELETE** /api/v1/lightning/receives/{identifier} | Cancel a pending receive
|
|
72
|
+
*LightningApi* | **generate_invoice** | **POST** /api/v1/lightning/receives/invoice | Create a BOLT11 invoice
|
|
73
|
+
*LightningApi* | **get_receive_status** | **GET** /api/v1/lightning/receives/{identifier} | Get receive status
|
|
74
|
+
*LightningApi* | **list_receive_statuses** | **GET** /api/v1/lightning/receives | List all pending receive statuses
|
|
75
|
+
*LightningApi* | **pay** | **POST** /api/v1/lightning/pay | Send a Lightning payment
|
|
76
|
+
*NotificationsApi* | **websocket_ticket** | **GET** /api/v1/notifications/ws/ticket | Create a websocket ticket
|
|
77
|
+
*OnchainApi* | **onchain_address** | **POST** /api/v1/onchain/addresses/next | Generate on-chain address
|
|
78
|
+
*OnchainApi* | **onchain_balance** | **GET** /api/v1/onchain/balance | Get on-chain balance
|
|
79
|
+
*OnchainApi* | **onchain_drain** | **POST** /api/v1/onchain/drain | Drain on-chain wallet
|
|
80
|
+
*OnchainApi* | **onchain_send** | **POST** /api/v1/onchain/send | Send on-chain payment
|
|
81
|
+
*OnchainApi* | **onchain_send_many** | **POST** /api/v1/onchain/send-many | Send to multiple addresses
|
|
82
|
+
*OnchainApi* | **onchain_sync** | **POST** /api/v1/onchain/sync | Sync on-chain wallet
|
|
83
|
+
*OnchainApi* | **onchain_transactions** | **GET** /api/v1/onchain/transactions | List on-chain transactions
|
|
84
|
+
*OnchainApi* | **onchain_utxos** | **GET** /api/v1/onchain/utxos | List on-chain UTXOs
|
|
85
|
+
*WalletApi* | **address** | **POST** /api/v1/wallet/addresses/next | Generate Ark address
|
|
86
|
+
*WalletApi* | **ark_info** | **GET** /api/v1/wallet/ark-info | Get Ark server info
|
|
87
|
+
*WalletApi* | **balance** | **GET** /api/v1/wallet/balance | Get wallet balance
|
|
88
|
+
*WalletApi* | **connected** | **GET** /api/v1/wallet/connected | Check server connection
|
|
89
|
+
*WalletApi* | **create_wallet** | **POST** /api/v1/wallet/create | Create a wallet
|
|
90
|
+
*WalletApi* | **get_vtxo** | **GET** /api/v1/wallet/vtxos/{id} | Get VTXO detail
|
|
91
|
+
*WalletApi* | **get_vtxo_encoded** | **GET** /api/v1/wallet/vtxos/{id}/encoded | Get encoded VTXO
|
|
92
|
+
*WalletApi* | **history** | **GET** /api/v1/wallet/history | Get wallet history
|
|
93
|
+
*WalletApi* | **import_vtxo** | **POST** /api/v1/wallet/import-vtxo | Import a VTXO
|
|
94
|
+
*WalletApi* | **movements** | **GET** /api/v1/wallet/movements | List movements (deprecated)
|
|
95
|
+
*WalletApi* | **next_round** | **GET** /api/v1/wallet/next-round | Get next round time
|
|
96
|
+
*WalletApi* | **offboard_all** | **POST** /api/v1/wallet/offboard/all | Offboard all VTXOs
|
|
97
|
+
*WalletApi* | **offboard_vtxos** | **POST** /api/v1/wallet/offboard/vtxos | Offboard specific VTXOs
|
|
98
|
+
*WalletApi* | **peek_address** | **GET** /api/v1/wallet/addresses/index/{index} | Get Ark address by index
|
|
99
|
+
*WalletApi* | **pending_rounds** | **GET** /api/v1/wallet/rounds | List round participations
|
|
100
|
+
*WalletApi* | **refresh_all** | **POST** /api/v1/wallet/refresh/all | Refresh all VTXOs
|
|
101
|
+
*WalletApi* | **refresh_counterparty** | **POST** /api/v1/wallet/refresh/counterparty | Refresh received VTXOs
|
|
102
|
+
*WalletApi* | **refresh_vtxos** | **POST** /api/v1/wallet/refresh/vtxos | Refresh specific VTXOs
|
|
103
|
+
*WalletApi* | **send** | **POST** /api/v1/wallet/send | Send a payment
|
|
104
|
+
*WalletApi* | **send_onchain** | **POST** /api/v1/wallet/send-onchain | Send on-chain from Ark balance
|
|
105
|
+
*WalletApi* | **sync** | **POST** /api/v1/wallet/sync | Sync wallet
|
|
106
|
+
*WalletApi* | **sync_mailbox** | **POST** /api/v1/wallet/sync/mailbox | Sync mailbox only
|
|
107
|
+
*WalletApi* | **vtxos** | **GET** /api/v1/wallet/vtxos | List VTXOs
|
|
108
|
+
*WalletApi* | **wallet_delete** | **DELETE** /api/v1/wallet |
|
|
109
|
+
*WalletApi* | **wallet_exists** | **GET** /api/v1/wallet |
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
## License
|
|
113
|
+
|
|
114
|
+
Released under the **MIT** license.
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# barkd-client
|
|
4
|
+
|
|
5
|
+
Auto-generated Python client for the **barkd REST API**, built from its OpenAPI specification.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install barkd-client
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```python
|
|
16
|
+
import barkd_client
|
|
17
|
+
from barkd_client.rest import ApiException
|
|
18
|
+
|
|
19
|
+
config = barkd_client.Configuration(
|
|
20
|
+
host="http://localhost:3535",
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
with barkd_client.ApiClient(config) as api_client:
|
|
24
|
+
wallet = barkd_client.WalletApi(api_client)
|
|
25
|
+
balance = wallet.balance()
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## API Endpoints
|
|
29
|
+
|
|
30
|
+
All URIs are relative to *http://localhost*
|
|
31
|
+
|
|
32
|
+
Class | Method | HTTP request | Description
|
|
33
|
+
------------ | ------------- | ------------- | -------------
|
|
34
|
+
*BitcoinApi* | **tip** | **GET** /api/v1/bitcoin/tip | Get bitcoin tip height
|
|
35
|
+
*BoardsApi* | **board_all** | **POST** /api/v1/boards/board-all | Board all on-chain bitcoin
|
|
36
|
+
*BoardsApi* | **board_amount** | **POST** /api/v1/boards/board-amount | Board a specific amount
|
|
37
|
+
*BoardsApi* | **get_pending_boards** | **GET** /api/v1/boards/pending | List pending boards
|
|
38
|
+
*DefaultApi* | **ping** | **GET** /ping | Ping
|
|
39
|
+
*ExitsApi* | **exit_claim_all** | **POST** /api/v1/exits/claim/all | Claim all exited VTXOs
|
|
40
|
+
*ExitsApi* | **exit_claim_vtxos** | **POST** /api/v1/exits/claim/vtxos | Claim specific exited VTXOs
|
|
41
|
+
*ExitsApi* | **exit_progress** | **POST** /api/v1/exits/progress | Progress exits
|
|
42
|
+
*ExitsApi* | **exit_start_all** | **POST** /api/v1/exits/start/all | Start exit for all VTXOs
|
|
43
|
+
*ExitsApi* | **exit_start_vtxos** | **POST** /api/v1/exits/start/vtxos | Start exit for specific VTXOs
|
|
44
|
+
*ExitsApi* | **get_all_exit_status** | **GET** /api/v1/exits/status | List all exit statuses
|
|
45
|
+
*ExitsApi* | **get_exit_status_by_vtxo_id** | **GET** /api/v1/exits/status/{vtxo_id} | Get exit status
|
|
46
|
+
*FeesApi* | **board_fee** | **GET** /api/v1/fees/board | Estimate board fee
|
|
47
|
+
*FeesApi* | **lightning_receive_fee** | **GET** /api/v1/fees/lightning/receive | Estimate Lightning receive fee
|
|
48
|
+
*FeesApi* | **lightning_send_fee** | **GET** /api/v1/fees/lightning/pay | Estimate Lightning send fee
|
|
49
|
+
*FeesApi* | **offboard_all_fee** | **GET** /api/v1/fees/offboard-all | Estimate offboard-all fee
|
|
50
|
+
*FeesApi* | **onchain_fee_rates** | **GET** /api/v1/fees/onchain | Get on-chain fee rates
|
|
51
|
+
*FeesApi* | **send_onchain_fee** | **GET** /api/v1/fees/send-onchain | Estimate send-onchain fee
|
|
52
|
+
*LightningApi* | **cancel_receive** | **DELETE** /api/v1/lightning/receives/{identifier} | Cancel a pending receive
|
|
53
|
+
*LightningApi* | **generate_invoice** | **POST** /api/v1/lightning/receives/invoice | Create a BOLT11 invoice
|
|
54
|
+
*LightningApi* | **get_receive_status** | **GET** /api/v1/lightning/receives/{identifier} | Get receive status
|
|
55
|
+
*LightningApi* | **list_receive_statuses** | **GET** /api/v1/lightning/receives | List all pending receive statuses
|
|
56
|
+
*LightningApi* | **pay** | **POST** /api/v1/lightning/pay | Send a Lightning payment
|
|
57
|
+
*NotificationsApi* | **websocket_ticket** | **GET** /api/v1/notifications/ws/ticket | Create a websocket ticket
|
|
58
|
+
*OnchainApi* | **onchain_address** | **POST** /api/v1/onchain/addresses/next | Generate on-chain address
|
|
59
|
+
*OnchainApi* | **onchain_balance** | **GET** /api/v1/onchain/balance | Get on-chain balance
|
|
60
|
+
*OnchainApi* | **onchain_drain** | **POST** /api/v1/onchain/drain | Drain on-chain wallet
|
|
61
|
+
*OnchainApi* | **onchain_send** | **POST** /api/v1/onchain/send | Send on-chain payment
|
|
62
|
+
*OnchainApi* | **onchain_send_many** | **POST** /api/v1/onchain/send-many | Send to multiple addresses
|
|
63
|
+
*OnchainApi* | **onchain_sync** | **POST** /api/v1/onchain/sync | Sync on-chain wallet
|
|
64
|
+
*OnchainApi* | **onchain_transactions** | **GET** /api/v1/onchain/transactions | List on-chain transactions
|
|
65
|
+
*OnchainApi* | **onchain_utxos** | **GET** /api/v1/onchain/utxos | List on-chain UTXOs
|
|
66
|
+
*WalletApi* | **address** | **POST** /api/v1/wallet/addresses/next | Generate Ark address
|
|
67
|
+
*WalletApi* | **ark_info** | **GET** /api/v1/wallet/ark-info | Get Ark server info
|
|
68
|
+
*WalletApi* | **balance** | **GET** /api/v1/wallet/balance | Get wallet balance
|
|
69
|
+
*WalletApi* | **connected** | **GET** /api/v1/wallet/connected | Check server connection
|
|
70
|
+
*WalletApi* | **create_wallet** | **POST** /api/v1/wallet/create | Create a wallet
|
|
71
|
+
*WalletApi* | **get_vtxo** | **GET** /api/v1/wallet/vtxos/{id} | Get VTXO detail
|
|
72
|
+
*WalletApi* | **get_vtxo_encoded** | **GET** /api/v1/wallet/vtxos/{id}/encoded | Get encoded VTXO
|
|
73
|
+
*WalletApi* | **history** | **GET** /api/v1/wallet/history | Get wallet history
|
|
74
|
+
*WalletApi* | **import_vtxo** | **POST** /api/v1/wallet/import-vtxo | Import a VTXO
|
|
75
|
+
*WalletApi* | **movements** | **GET** /api/v1/wallet/movements | List movements (deprecated)
|
|
76
|
+
*WalletApi* | **next_round** | **GET** /api/v1/wallet/next-round | Get next round time
|
|
77
|
+
*WalletApi* | **offboard_all** | **POST** /api/v1/wallet/offboard/all | Offboard all VTXOs
|
|
78
|
+
*WalletApi* | **offboard_vtxos** | **POST** /api/v1/wallet/offboard/vtxos | Offboard specific VTXOs
|
|
79
|
+
*WalletApi* | **peek_address** | **GET** /api/v1/wallet/addresses/index/{index} | Get Ark address by index
|
|
80
|
+
*WalletApi* | **pending_rounds** | **GET** /api/v1/wallet/rounds | List round participations
|
|
81
|
+
*WalletApi* | **refresh_all** | **POST** /api/v1/wallet/refresh/all | Refresh all VTXOs
|
|
82
|
+
*WalletApi* | **refresh_counterparty** | **POST** /api/v1/wallet/refresh/counterparty | Refresh received VTXOs
|
|
83
|
+
*WalletApi* | **refresh_vtxos** | **POST** /api/v1/wallet/refresh/vtxos | Refresh specific VTXOs
|
|
84
|
+
*WalletApi* | **send** | **POST** /api/v1/wallet/send | Send a payment
|
|
85
|
+
*WalletApi* | **send_onchain** | **POST** /api/v1/wallet/send-onchain | Send on-chain from Ark balance
|
|
86
|
+
*WalletApi* | **sync** | **POST** /api/v1/wallet/sync | Sync wallet
|
|
87
|
+
*WalletApi* | **sync_mailbox** | **POST** /api/v1/wallet/sync/mailbox | Sync mailbox only
|
|
88
|
+
*WalletApi* | **vtxos** | **GET** /api/v1/wallet/vtxos | List VTXOs
|
|
89
|
+
*WalletApi* | **wallet_delete** | **DELETE** /api/v1/wallet |
|
|
90
|
+
*WalletApi* | **wallet_exists** | **GET** /api/v1/wallet |
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
## License
|
|
94
|
+
|
|
95
|
+
Released under the **MIT** license.
|
|
@@ -0,0 +1,375 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
barkd REST API
|
|
7
|
+
|
|
8
|
+
A simple REST API for barkd, a wallet daemon for integrating bitcoin payments into your app over HTTP. Supports self-custodial Lightning, Ark, and on-chain out of the box. barkd is a long-running daemon best suited for always-on or high-connectivity environments like nodes, servers, desktops, and point-of-sale terminals. All endpoints return JSON. Amounts are denominated in satoshis.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 0.1.4
|
|
11
|
+
Contact: hello@second.tech
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "0.1.4"
|
|
19
|
+
|
|
20
|
+
# Define package exports
|
|
21
|
+
__all__ = [
|
|
22
|
+
"BitcoinApi",
|
|
23
|
+
"BoardsApi",
|
|
24
|
+
"DefaultApi",
|
|
25
|
+
"ExitsApi",
|
|
26
|
+
"FeesApi",
|
|
27
|
+
"LightningApi",
|
|
28
|
+
"NotificationsApi",
|
|
29
|
+
"OnchainApi",
|
|
30
|
+
"WalletApi",
|
|
31
|
+
"ApiResponse",
|
|
32
|
+
"ApiClient",
|
|
33
|
+
"Configuration",
|
|
34
|
+
"OpenApiException",
|
|
35
|
+
"ApiTypeError",
|
|
36
|
+
"ApiValueError",
|
|
37
|
+
"ApiKeyError",
|
|
38
|
+
"ApiAttributeError",
|
|
39
|
+
"ApiException",
|
|
40
|
+
"Address",
|
|
41
|
+
"ArkAddressResponse",
|
|
42
|
+
"ArkInfo",
|
|
43
|
+
"BadRequestError",
|
|
44
|
+
"Balance",
|
|
45
|
+
"BarkNetwork",
|
|
46
|
+
"BitcoindAuth",
|
|
47
|
+
"BitcoindAuthOneOf",
|
|
48
|
+
"BitcoindAuthOneOf1",
|
|
49
|
+
"BitcoindAuthOneOf1UserPass",
|
|
50
|
+
"BitcoindAuthOneOfCookie",
|
|
51
|
+
"BlockRef",
|
|
52
|
+
"BoardFees",
|
|
53
|
+
"BoardRequest",
|
|
54
|
+
"ChainSourceConfig",
|
|
55
|
+
"ChainSourceConfigOneOf",
|
|
56
|
+
"ChainSourceConfigOneOf1",
|
|
57
|
+
"ChainSourceConfigOneOf1Esplora",
|
|
58
|
+
"ChainSourceConfigOneOfBitcoind",
|
|
59
|
+
"ChildTransactionInfo",
|
|
60
|
+
"ConnectedResponse",
|
|
61
|
+
"CreateWalletRequest",
|
|
62
|
+
"CreateWalletResponse",
|
|
63
|
+
"EncodedVtxoResponse",
|
|
64
|
+
"ExitAwaitingDeltaState",
|
|
65
|
+
"ExitClaimAllRequest",
|
|
66
|
+
"ExitClaimInProgressState",
|
|
67
|
+
"ExitClaimResponse",
|
|
68
|
+
"ExitClaimVtxosRequest",
|
|
69
|
+
"ExitClaimableState",
|
|
70
|
+
"ExitClaimedState",
|
|
71
|
+
"ExitError",
|
|
72
|
+
"ExitErrorOneOf",
|
|
73
|
+
"ExitErrorOneOf1",
|
|
74
|
+
"ExitErrorOneOf10",
|
|
75
|
+
"ExitErrorOneOf11",
|
|
76
|
+
"ExitErrorOneOf12",
|
|
77
|
+
"ExitErrorOneOf13",
|
|
78
|
+
"ExitErrorOneOf14",
|
|
79
|
+
"ExitErrorOneOf15",
|
|
80
|
+
"ExitErrorOneOf16",
|
|
81
|
+
"ExitErrorOneOf17",
|
|
82
|
+
"ExitErrorOneOf18",
|
|
83
|
+
"ExitErrorOneOf19",
|
|
84
|
+
"ExitErrorOneOf2",
|
|
85
|
+
"ExitErrorOneOf20",
|
|
86
|
+
"ExitErrorOneOf21",
|
|
87
|
+
"ExitErrorOneOf22",
|
|
88
|
+
"ExitErrorOneOf23",
|
|
89
|
+
"ExitErrorOneOf24",
|
|
90
|
+
"ExitErrorOneOf25",
|
|
91
|
+
"ExitErrorOneOf3",
|
|
92
|
+
"ExitErrorOneOf4",
|
|
93
|
+
"ExitErrorOneOf5",
|
|
94
|
+
"ExitErrorOneOf6",
|
|
95
|
+
"ExitErrorOneOf7",
|
|
96
|
+
"ExitErrorOneOf8",
|
|
97
|
+
"ExitErrorOneOf9",
|
|
98
|
+
"ExitProcessingState",
|
|
99
|
+
"ExitProgressRequest",
|
|
100
|
+
"ExitProgressResponse",
|
|
101
|
+
"ExitProgressStatus",
|
|
102
|
+
"ExitStartRequest",
|
|
103
|
+
"ExitStartResponse",
|
|
104
|
+
"ExitStartState",
|
|
105
|
+
"ExitState",
|
|
106
|
+
"ExitStateOneOf",
|
|
107
|
+
"ExitStateOneOf1",
|
|
108
|
+
"ExitStateOneOf2",
|
|
109
|
+
"ExitStateOneOf3",
|
|
110
|
+
"ExitStateOneOf4",
|
|
111
|
+
"ExitStateOneOf5",
|
|
112
|
+
"ExitStatusRequest",
|
|
113
|
+
"ExitTransactionPackage",
|
|
114
|
+
"ExitTransactionStatus",
|
|
115
|
+
"ExitTx",
|
|
116
|
+
"ExitTxOrigin",
|
|
117
|
+
"ExitTxOriginOneOf",
|
|
118
|
+
"ExitTxOriginOneOf1",
|
|
119
|
+
"ExitTxOriginOneOf2",
|
|
120
|
+
"ExitTxStatus",
|
|
121
|
+
"ExitTxStatusOneOf",
|
|
122
|
+
"ExitTxStatusOneOf1",
|
|
123
|
+
"ExitTxStatusOneOf2",
|
|
124
|
+
"ExitTxStatusOneOf3",
|
|
125
|
+
"ExitTxStatusOneOf4",
|
|
126
|
+
"ExitTxStatusOneOf5",
|
|
127
|
+
"ExitTxStatusOneOf6",
|
|
128
|
+
"FeeEstimateQuery",
|
|
129
|
+
"FeeEstimateResponse",
|
|
130
|
+
"FeeSchedule",
|
|
131
|
+
"ImportVtxoRequest",
|
|
132
|
+
"InternalServerError",
|
|
133
|
+
"InvoiceInfo",
|
|
134
|
+
"LightningInvoiceRequest",
|
|
135
|
+
"LightningPayRequest",
|
|
136
|
+
"LightningPayResponse",
|
|
137
|
+
"LightningReceiveFees",
|
|
138
|
+
"LightningReceiveInfo",
|
|
139
|
+
"LightningSendFees",
|
|
140
|
+
"MailboxSyncResponse",
|
|
141
|
+
"Movement",
|
|
142
|
+
"MovementDestination",
|
|
143
|
+
"MovementStatus",
|
|
144
|
+
"MovementSubsystem",
|
|
145
|
+
"MovementTimestamp",
|
|
146
|
+
"NextRoundStart",
|
|
147
|
+
"NotFoundError",
|
|
148
|
+
"OffboardAllFeeEstimateQuery",
|
|
149
|
+
"OffboardAllRequest",
|
|
150
|
+
"OffboardFees",
|
|
151
|
+
"OffboardResult",
|
|
152
|
+
"OffboardVtxosRequest",
|
|
153
|
+
"OnchainBalance",
|
|
154
|
+
"OnchainDrainRequest",
|
|
155
|
+
"OnchainFeeRatesResponse",
|
|
156
|
+
"OnchainSendManyRequest",
|
|
157
|
+
"OnchainSendRequest",
|
|
158
|
+
"PaymentMethod",
|
|
159
|
+
"PendingBoardInfo",
|
|
160
|
+
"PendingRoundInfo",
|
|
161
|
+
"PpmExpiryFeeEntry",
|
|
162
|
+
"RefreshFees",
|
|
163
|
+
"RefreshRequest",
|
|
164
|
+
"RoundParticipationInfo",
|
|
165
|
+
"RoundStatus",
|
|
166
|
+
"RoundStatusOneOf",
|
|
167
|
+
"RoundStatusOneOf1",
|
|
168
|
+
"RoundStatusOneOf2",
|
|
169
|
+
"RoundStatusOneOf3",
|
|
170
|
+
"RoundStatusOneOf4",
|
|
171
|
+
"RoundStatusOneOf5",
|
|
172
|
+
"Send",
|
|
173
|
+
"SendOnchainFeeEstimateQuery",
|
|
174
|
+
"SendOnchainRequest",
|
|
175
|
+
"SendRequest",
|
|
176
|
+
"SendResponse",
|
|
177
|
+
"TipResponse",
|
|
178
|
+
"TransactionInfo",
|
|
179
|
+
"UtxoInfo",
|
|
180
|
+
"VtxoInfo",
|
|
181
|
+
"VtxoRequestInfo",
|
|
182
|
+
"VtxoStateInfo",
|
|
183
|
+
"VtxoStateInfoOneOf",
|
|
184
|
+
"VtxoStateInfoOneOf1",
|
|
185
|
+
"VtxoStateInfoOneOf2",
|
|
186
|
+
"VtxosQuery",
|
|
187
|
+
"WalletDeleteRequest",
|
|
188
|
+
"WalletDeleteResponse",
|
|
189
|
+
"WalletExistsResponse",
|
|
190
|
+
"WalletNotification",
|
|
191
|
+
"WalletNotificationOneOf",
|
|
192
|
+
"WalletNotificationOneOf1",
|
|
193
|
+
"WalletNotificationOneOf2",
|
|
194
|
+
"WalletVtxoInfo",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
# import apis into sdk package
|
|
198
|
+
from barkd_client.api.bitcoin_api import BitcoinApi as BitcoinApi
|
|
199
|
+
from barkd_client.api.boards_api import BoardsApi as BoardsApi
|
|
200
|
+
from barkd_client.api.default_api import DefaultApi as DefaultApi
|
|
201
|
+
from barkd_client.api.exits_api import ExitsApi as ExitsApi
|
|
202
|
+
from barkd_client.api.fees_api import FeesApi as FeesApi
|
|
203
|
+
from barkd_client.api.lightning_api import LightningApi as LightningApi
|
|
204
|
+
from barkd_client.api.notifications_api import NotificationsApi as NotificationsApi
|
|
205
|
+
from barkd_client.api.onchain_api import OnchainApi as OnchainApi
|
|
206
|
+
from barkd_client.api.wallet_api import WalletApi as WalletApi
|
|
207
|
+
|
|
208
|
+
# import ApiClient
|
|
209
|
+
from barkd_client.api_response import ApiResponse as ApiResponse
|
|
210
|
+
from barkd_client.api_client import ApiClient as ApiClient
|
|
211
|
+
from barkd_client.configuration import Configuration as Configuration
|
|
212
|
+
from barkd_client.exceptions import OpenApiException as OpenApiException
|
|
213
|
+
from barkd_client.exceptions import ApiTypeError as ApiTypeError
|
|
214
|
+
from barkd_client.exceptions import ApiValueError as ApiValueError
|
|
215
|
+
from barkd_client.exceptions import ApiKeyError as ApiKeyError
|
|
216
|
+
from barkd_client.exceptions import ApiAttributeError as ApiAttributeError
|
|
217
|
+
from barkd_client.exceptions import ApiException as ApiException
|
|
218
|
+
|
|
219
|
+
# import models into sdk package
|
|
220
|
+
from barkd_client.models.address import Address as Address
|
|
221
|
+
from barkd_client.models.ark_address_response import ArkAddressResponse as ArkAddressResponse
|
|
222
|
+
from barkd_client.models.ark_info import ArkInfo as ArkInfo
|
|
223
|
+
from barkd_client.models.bad_request_error import BadRequestError as BadRequestError
|
|
224
|
+
from barkd_client.models.balance import Balance as Balance
|
|
225
|
+
from barkd_client.models.bark_network import BarkNetwork as BarkNetwork
|
|
226
|
+
from barkd_client.models.bitcoind_auth import BitcoindAuth as BitcoindAuth
|
|
227
|
+
from barkd_client.models.bitcoind_auth_one_of import BitcoindAuthOneOf as BitcoindAuthOneOf
|
|
228
|
+
from barkd_client.models.bitcoind_auth_one_of1 import BitcoindAuthOneOf1 as BitcoindAuthOneOf1
|
|
229
|
+
from barkd_client.models.bitcoind_auth_one_of1_user_pass import BitcoindAuthOneOf1UserPass as BitcoindAuthOneOf1UserPass
|
|
230
|
+
from barkd_client.models.bitcoind_auth_one_of_cookie import BitcoindAuthOneOfCookie as BitcoindAuthOneOfCookie
|
|
231
|
+
from barkd_client.models.block_ref import BlockRef as BlockRef
|
|
232
|
+
from barkd_client.models.board_fees import BoardFees as BoardFees
|
|
233
|
+
from barkd_client.models.board_request import BoardRequest as BoardRequest
|
|
234
|
+
from barkd_client.models.chain_source_config import ChainSourceConfig as ChainSourceConfig
|
|
235
|
+
from barkd_client.models.chain_source_config_one_of import ChainSourceConfigOneOf as ChainSourceConfigOneOf
|
|
236
|
+
from barkd_client.models.chain_source_config_one_of1 import ChainSourceConfigOneOf1 as ChainSourceConfigOneOf1
|
|
237
|
+
from barkd_client.models.chain_source_config_one_of1_esplora import ChainSourceConfigOneOf1Esplora as ChainSourceConfigOneOf1Esplora
|
|
238
|
+
from barkd_client.models.chain_source_config_one_of_bitcoind import ChainSourceConfigOneOfBitcoind as ChainSourceConfigOneOfBitcoind
|
|
239
|
+
from barkd_client.models.child_transaction_info import ChildTransactionInfo as ChildTransactionInfo
|
|
240
|
+
from barkd_client.models.connected_response import ConnectedResponse as ConnectedResponse
|
|
241
|
+
from barkd_client.models.create_wallet_request import CreateWalletRequest as CreateWalletRequest
|
|
242
|
+
from barkd_client.models.create_wallet_response import CreateWalletResponse as CreateWalletResponse
|
|
243
|
+
from barkd_client.models.encoded_vtxo_response import EncodedVtxoResponse as EncodedVtxoResponse
|
|
244
|
+
from barkd_client.models.exit_awaiting_delta_state import ExitAwaitingDeltaState as ExitAwaitingDeltaState
|
|
245
|
+
from barkd_client.models.exit_claim_all_request import ExitClaimAllRequest as ExitClaimAllRequest
|
|
246
|
+
from barkd_client.models.exit_claim_in_progress_state import ExitClaimInProgressState as ExitClaimInProgressState
|
|
247
|
+
from barkd_client.models.exit_claim_response import ExitClaimResponse as ExitClaimResponse
|
|
248
|
+
from barkd_client.models.exit_claim_vtxos_request import ExitClaimVtxosRequest as ExitClaimVtxosRequest
|
|
249
|
+
from barkd_client.models.exit_claimable_state import ExitClaimableState as ExitClaimableState
|
|
250
|
+
from barkd_client.models.exit_claimed_state import ExitClaimedState as ExitClaimedState
|
|
251
|
+
from barkd_client.models.exit_error import ExitError as ExitError
|
|
252
|
+
from barkd_client.models.exit_error_one_of import ExitErrorOneOf as ExitErrorOneOf
|
|
253
|
+
from barkd_client.models.exit_error_one_of1 import ExitErrorOneOf1 as ExitErrorOneOf1
|
|
254
|
+
from barkd_client.models.exit_error_one_of10 import ExitErrorOneOf10 as ExitErrorOneOf10
|
|
255
|
+
from barkd_client.models.exit_error_one_of11 import ExitErrorOneOf11 as ExitErrorOneOf11
|
|
256
|
+
from barkd_client.models.exit_error_one_of12 import ExitErrorOneOf12 as ExitErrorOneOf12
|
|
257
|
+
from barkd_client.models.exit_error_one_of13 import ExitErrorOneOf13 as ExitErrorOneOf13
|
|
258
|
+
from barkd_client.models.exit_error_one_of14 import ExitErrorOneOf14 as ExitErrorOneOf14
|
|
259
|
+
from barkd_client.models.exit_error_one_of15 import ExitErrorOneOf15 as ExitErrorOneOf15
|
|
260
|
+
from barkd_client.models.exit_error_one_of16 import ExitErrorOneOf16 as ExitErrorOneOf16
|
|
261
|
+
from barkd_client.models.exit_error_one_of17 import ExitErrorOneOf17 as ExitErrorOneOf17
|
|
262
|
+
from barkd_client.models.exit_error_one_of18 import ExitErrorOneOf18 as ExitErrorOneOf18
|
|
263
|
+
from barkd_client.models.exit_error_one_of19 import ExitErrorOneOf19 as ExitErrorOneOf19
|
|
264
|
+
from barkd_client.models.exit_error_one_of2 import ExitErrorOneOf2 as ExitErrorOneOf2
|
|
265
|
+
from barkd_client.models.exit_error_one_of20 import ExitErrorOneOf20 as ExitErrorOneOf20
|
|
266
|
+
from barkd_client.models.exit_error_one_of21 import ExitErrorOneOf21 as ExitErrorOneOf21
|
|
267
|
+
from barkd_client.models.exit_error_one_of22 import ExitErrorOneOf22 as ExitErrorOneOf22
|
|
268
|
+
from barkd_client.models.exit_error_one_of23 import ExitErrorOneOf23 as ExitErrorOneOf23
|
|
269
|
+
from barkd_client.models.exit_error_one_of24 import ExitErrorOneOf24 as ExitErrorOneOf24
|
|
270
|
+
from barkd_client.models.exit_error_one_of25 import ExitErrorOneOf25 as ExitErrorOneOf25
|
|
271
|
+
from barkd_client.models.exit_error_one_of3 import ExitErrorOneOf3 as ExitErrorOneOf3
|
|
272
|
+
from barkd_client.models.exit_error_one_of4 import ExitErrorOneOf4 as ExitErrorOneOf4
|
|
273
|
+
from barkd_client.models.exit_error_one_of5 import ExitErrorOneOf5 as ExitErrorOneOf5
|
|
274
|
+
from barkd_client.models.exit_error_one_of6 import ExitErrorOneOf6 as ExitErrorOneOf6
|
|
275
|
+
from barkd_client.models.exit_error_one_of7 import ExitErrorOneOf7 as ExitErrorOneOf7
|
|
276
|
+
from barkd_client.models.exit_error_one_of8 import ExitErrorOneOf8 as ExitErrorOneOf8
|
|
277
|
+
from barkd_client.models.exit_error_one_of9 import ExitErrorOneOf9 as ExitErrorOneOf9
|
|
278
|
+
from barkd_client.models.exit_processing_state import ExitProcessingState as ExitProcessingState
|
|
279
|
+
from barkd_client.models.exit_progress_request import ExitProgressRequest as ExitProgressRequest
|
|
280
|
+
from barkd_client.models.exit_progress_response import ExitProgressResponse as ExitProgressResponse
|
|
281
|
+
from barkd_client.models.exit_progress_status import ExitProgressStatus as ExitProgressStatus
|
|
282
|
+
from barkd_client.models.exit_start_request import ExitStartRequest as ExitStartRequest
|
|
283
|
+
from barkd_client.models.exit_start_response import ExitStartResponse as ExitStartResponse
|
|
284
|
+
from barkd_client.models.exit_start_state import ExitStartState as ExitStartState
|
|
285
|
+
from barkd_client.models.exit_state import ExitState as ExitState
|
|
286
|
+
from barkd_client.models.exit_state_one_of import ExitStateOneOf as ExitStateOneOf
|
|
287
|
+
from barkd_client.models.exit_state_one_of1 import ExitStateOneOf1 as ExitStateOneOf1
|
|
288
|
+
from barkd_client.models.exit_state_one_of2 import ExitStateOneOf2 as ExitStateOneOf2
|
|
289
|
+
from barkd_client.models.exit_state_one_of3 import ExitStateOneOf3 as ExitStateOneOf3
|
|
290
|
+
from barkd_client.models.exit_state_one_of4 import ExitStateOneOf4 as ExitStateOneOf4
|
|
291
|
+
from barkd_client.models.exit_state_one_of5 import ExitStateOneOf5 as ExitStateOneOf5
|
|
292
|
+
from barkd_client.models.exit_status_request import ExitStatusRequest as ExitStatusRequest
|
|
293
|
+
from barkd_client.models.exit_transaction_package import ExitTransactionPackage as ExitTransactionPackage
|
|
294
|
+
from barkd_client.models.exit_transaction_status import ExitTransactionStatus as ExitTransactionStatus
|
|
295
|
+
from barkd_client.models.exit_tx import ExitTx as ExitTx
|
|
296
|
+
from barkd_client.models.exit_tx_origin import ExitTxOrigin as ExitTxOrigin
|
|
297
|
+
from barkd_client.models.exit_tx_origin_one_of import ExitTxOriginOneOf as ExitTxOriginOneOf
|
|
298
|
+
from barkd_client.models.exit_tx_origin_one_of1 import ExitTxOriginOneOf1 as ExitTxOriginOneOf1
|
|
299
|
+
from barkd_client.models.exit_tx_origin_one_of2 import ExitTxOriginOneOf2 as ExitTxOriginOneOf2
|
|
300
|
+
from barkd_client.models.exit_tx_status import ExitTxStatus as ExitTxStatus
|
|
301
|
+
from barkd_client.models.exit_tx_status_one_of import ExitTxStatusOneOf as ExitTxStatusOneOf
|
|
302
|
+
from barkd_client.models.exit_tx_status_one_of1 import ExitTxStatusOneOf1 as ExitTxStatusOneOf1
|
|
303
|
+
from barkd_client.models.exit_tx_status_one_of2 import ExitTxStatusOneOf2 as ExitTxStatusOneOf2
|
|
304
|
+
from barkd_client.models.exit_tx_status_one_of3 import ExitTxStatusOneOf3 as ExitTxStatusOneOf3
|
|
305
|
+
from barkd_client.models.exit_tx_status_one_of4 import ExitTxStatusOneOf4 as ExitTxStatusOneOf4
|
|
306
|
+
from barkd_client.models.exit_tx_status_one_of5 import ExitTxStatusOneOf5 as ExitTxStatusOneOf5
|
|
307
|
+
from barkd_client.models.exit_tx_status_one_of6 import ExitTxStatusOneOf6 as ExitTxStatusOneOf6
|
|
308
|
+
from barkd_client.models.fee_estimate_query import FeeEstimateQuery as FeeEstimateQuery
|
|
309
|
+
from barkd_client.models.fee_estimate_response import FeeEstimateResponse as FeeEstimateResponse
|
|
310
|
+
from barkd_client.models.fee_schedule import FeeSchedule as FeeSchedule
|
|
311
|
+
from barkd_client.models.import_vtxo_request import ImportVtxoRequest as ImportVtxoRequest
|
|
312
|
+
from barkd_client.models.internal_server_error import InternalServerError as InternalServerError
|
|
313
|
+
from barkd_client.models.invoice_info import InvoiceInfo as InvoiceInfo
|
|
314
|
+
from barkd_client.models.lightning_invoice_request import LightningInvoiceRequest as LightningInvoiceRequest
|
|
315
|
+
from barkd_client.models.lightning_pay_request import LightningPayRequest as LightningPayRequest
|
|
316
|
+
from barkd_client.models.lightning_pay_response import LightningPayResponse as LightningPayResponse
|
|
317
|
+
from barkd_client.models.lightning_receive_fees import LightningReceiveFees as LightningReceiveFees
|
|
318
|
+
from barkd_client.models.lightning_receive_info import LightningReceiveInfo as LightningReceiveInfo
|
|
319
|
+
from barkd_client.models.lightning_send_fees import LightningSendFees as LightningSendFees
|
|
320
|
+
from barkd_client.models.mailbox_sync_response import MailboxSyncResponse as MailboxSyncResponse
|
|
321
|
+
from barkd_client.models.movement import Movement as Movement
|
|
322
|
+
from barkd_client.models.movement_destination import MovementDestination as MovementDestination
|
|
323
|
+
from barkd_client.models.movement_status import MovementStatus as MovementStatus
|
|
324
|
+
from barkd_client.models.movement_subsystem import MovementSubsystem as MovementSubsystem
|
|
325
|
+
from barkd_client.models.movement_timestamp import MovementTimestamp as MovementTimestamp
|
|
326
|
+
from barkd_client.models.next_round_start import NextRoundStart as NextRoundStart
|
|
327
|
+
from barkd_client.models.not_found_error import NotFoundError as NotFoundError
|
|
328
|
+
from barkd_client.models.offboard_all_fee_estimate_query import OffboardAllFeeEstimateQuery as OffboardAllFeeEstimateQuery
|
|
329
|
+
from barkd_client.models.offboard_all_request import OffboardAllRequest as OffboardAllRequest
|
|
330
|
+
from barkd_client.models.offboard_fees import OffboardFees as OffboardFees
|
|
331
|
+
from barkd_client.models.offboard_result import OffboardResult as OffboardResult
|
|
332
|
+
from barkd_client.models.offboard_vtxos_request import OffboardVtxosRequest as OffboardVtxosRequest
|
|
333
|
+
from barkd_client.models.onchain_balance import OnchainBalance as OnchainBalance
|
|
334
|
+
from barkd_client.models.onchain_drain_request import OnchainDrainRequest as OnchainDrainRequest
|
|
335
|
+
from barkd_client.models.onchain_fee_rates_response import OnchainFeeRatesResponse as OnchainFeeRatesResponse
|
|
336
|
+
from barkd_client.models.onchain_send_many_request import OnchainSendManyRequest as OnchainSendManyRequest
|
|
337
|
+
from barkd_client.models.onchain_send_request import OnchainSendRequest as OnchainSendRequest
|
|
338
|
+
from barkd_client.models.payment_method import PaymentMethod as PaymentMethod
|
|
339
|
+
from barkd_client.models.pending_board_info import PendingBoardInfo as PendingBoardInfo
|
|
340
|
+
from barkd_client.models.pending_round_info import PendingRoundInfo as PendingRoundInfo
|
|
341
|
+
from barkd_client.models.ppm_expiry_fee_entry import PpmExpiryFeeEntry as PpmExpiryFeeEntry
|
|
342
|
+
from barkd_client.models.refresh_fees import RefreshFees as RefreshFees
|
|
343
|
+
from barkd_client.models.refresh_request import RefreshRequest as RefreshRequest
|
|
344
|
+
from barkd_client.models.round_participation_info import RoundParticipationInfo as RoundParticipationInfo
|
|
345
|
+
from barkd_client.models.round_status import RoundStatus as RoundStatus
|
|
346
|
+
from barkd_client.models.round_status_one_of import RoundStatusOneOf as RoundStatusOneOf
|
|
347
|
+
from barkd_client.models.round_status_one_of1 import RoundStatusOneOf1 as RoundStatusOneOf1
|
|
348
|
+
from barkd_client.models.round_status_one_of2 import RoundStatusOneOf2 as RoundStatusOneOf2
|
|
349
|
+
from barkd_client.models.round_status_one_of3 import RoundStatusOneOf3 as RoundStatusOneOf3
|
|
350
|
+
from barkd_client.models.round_status_one_of4 import RoundStatusOneOf4 as RoundStatusOneOf4
|
|
351
|
+
from barkd_client.models.round_status_one_of5 import RoundStatusOneOf5 as RoundStatusOneOf5
|
|
352
|
+
from barkd_client.models.send import Send as Send
|
|
353
|
+
from barkd_client.models.send_onchain_fee_estimate_query import SendOnchainFeeEstimateQuery as SendOnchainFeeEstimateQuery
|
|
354
|
+
from barkd_client.models.send_onchain_request import SendOnchainRequest as SendOnchainRequest
|
|
355
|
+
from barkd_client.models.send_request import SendRequest as SendRequest
|
|
356
|
+
from barkd_client.models.send_response import SendResponse as SendResponse
|
|
357
|
+
from barkd_client.models.tip_response import TipResponse as TipResponse
|
|
358
|
+
from barkd_client.models.transaction_info import TransactionInfo as TransactionInfo
|
|
359
|
+
from barkd_client.models.utxo_info import UtxoInfo as UtxoInfo
|
|
360
|
+
from barkd_client.models.vtxo_info import VtxoInfo as VtxoInfo
|
|
361
|
+
from barkd_client.models.vtxo_request_info import VtxoRequestInfo as VtxoRequestInfo
|
|
362
|
+
from barkd_client.models.vtxo_state_info import VtxoStateInfo as VtxoStateInfo
|
|
363
|
+
from barkd_client.models.vtxo_state_info_one_of import VtxoStateInfoOneOf as VtxoStateInfoOneOf
|
|
364
|
+
from barkd_client.models.vtxo_state_info_one_of1 import VtxoStateInfoOneOf1 as VtxoStateInfoOneOf1
|
|
365
|
+
from barkd_client.models.vtxo_state_info_one_of2 import VtxoStateInfoOneOf2 as VtxoStateInfoOneOf2
|
|
366
|
+
from barkd_client.models.vtxos_query import VtxosQuery as VtxosQuery
|
|
367
|
+
from barkd_client.models.wallet_delete_request import WalletDeleteRequest as WalletDeleteRequest
|
|
368
|
+
from barkd_client.models.wallet_delete_response import WalletDeleteResponse as WalletDeleteResponse
|
|
369
|
+
from barkd_client.models.wallet_exists_response import WalletExistsResponse as WalletExistsResponse
|
|
370
|
+
from barkd_client.models.wallet_notification import WalletNotification as WalletNotification
|
|
371
|
+
from barkd_client.models.wallet_notification_one_of import WalletNotificationOneOf as WalletNotificationOneOf
|
|
372
|
+
from barkd_client.models.wallet_notification_one_of1 import WalletNotificationOneOf1 as WalletNotificationOneOf1
|
|
373
|
+
from barkd_client.models.wallet_notification_one_of2 import WalletNotificationOneOf2 as WalletNotificationOneOf2
|
|
374
|
+
from barkd_client.models.wallet_vtxo_info import WalletVtxoInfo as WalletVtxoInfo
|
|
375
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from barkd_client.api.bitcoin_api import BitcoinApi
|
|
5
|
+
from barkd_client.api.boards_api import BoardsApi
|
|
6
|
+
from barkd_client.api.default_api import DefaultApi
|
|
7
|
+
from barkd_client.api.exits_api import ExitsApi
|
|
8
|
+
from barkd_client.api.fees_api import FeesApi
|
|
9
|
+
from barkd_client.api.lightning_api import LightningApi
|
|
10
|
+
from barkd_client.api.notifications_api import NotificationsApi
|
|
11
|
+
from barkd_client.api.onchain_api import OnchainApi
|
|
12
|
+
from barkd_client.api.wallet_api import WalletApi
|
|
13
|
+
|