├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build_docker.yaml │ ├── build_multi.yaml │ └── build_vnc.yaml ├── .gitignore ├── Dockerfile ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── VERSION ├── build.py ├── build_system ├── __init__.py ├── alembic.py ├── android.py ├── appstore │ ├── __init__.py │ ├── local_server.py │ ├── local_site.py │ ├── orb.conf │ ├── orb_nginx.conf │ └── remote_server.py ├── armor.py ├── casts │ ├── orb-chain-balance.sh │ ├── orb-chain-deposit.sh │ ├── orb-chain-fees.sh │ ├── orb-chain-send.sh │ ├── orb-channel-list-forwards.sh │ ├── orb-channel-open.sh │ ├── orb-channel-rebalance.sh │ ├── orb-invoice-generate.sh │ ├── orb-network-get-route.sh │ ├── orb-node-create-from-cert-files.sh │ ├── orb-node-create-orb-public.sh │ ├── orb-node-create.sh │ ├── orb-node-delete.sh │ ├── orb-node-info.sh │ ├── orb-node-list.sh │ ├── orb-node-ssh-fetch-certs.sh │ ├── orb-node-ssh-wizard.sh │ ├── orb-node-use.sh │ ├── orb-pay-lnurl.sh │ ├── orb-peer-connect.sh │ ├── orb-peer-list.sh │ ├── orb-test-run-all-tests.sh │ └── orb-web-serve.sh ├── cln.py ├── cln_regtest.py ├── docker.py ├── dockerfile.vnc ├── documentation.py ├── host.py ├── ios.py ├── lnd.py ├── lnd_invoice_service.conf ├── monkey_patch.py ├── orb.desktop ├── orb.spec ├── osx.py ├── pcmanfm.conf ├── semantic.py ├── setup.py ├── site.py ├── ssh.py ├── startup.sh ├── tags.py ├── test.py ├── third_party.py ├── typer ├── typer_cli │ ├── __init__.py │ ├── __main__.py │ └── main.py ├── ubuntu.py └── versioning.py ├── buildozer.spec ├── docs └── source │ ├── AE.png │ ├── AE2.png │ ├── HUD.png │ ├── HUD.rst │ ├── _static │ ├── custom.css │ ├── orb-chain-balance.cast │ ├── orb-chain-deposit.cast │ ├── orb-chain-fees.cast │ ├── orb-chain-send.cast │ ├── orb-channel-list-forwards.cast │ ├── orb-channel-open.cast │ ├── orb-channel-rebalance.cast │ ├── orb-cli-demo.cast │ ├── orb-invoice-generate.cast │ ├── orb-network-get-route.cast │ ├── orb-node-create-from-cert-files.cast │ ├── orb-node-create-orb-public.cast │ ├── orb-node-create.cast │ ├── orb-node-create.cln.umbrel.cast │ ├── orb-node-delete.cast │ ├── orb-node-info.cast │ ├── orb-node-list.cast │ ├── orb-node-ssh-fetch-certs.cast │ ├── orb-node-ssh-wizard.cast │ ├── orb-node-use.cast │ ├── orb-pay-lnurl.cast │ ├── orb-peer-connect.cast │ ├── orb-peer-list.cast │ ├── orb-test-run-all-tests.cast │ ├── orb-web-serve.cast │ └── orb_transparent_small.png │ ├── _templates │ └── layout.html │ ├── api.rst │ ├── apps │ ├── alias_and_pubkey.rst │ ├── balance.rst │ ├── channels_db_size.rst │ ├── currency_converter.rst │ ├── grpc_template.rst │ ├── htlc_top.rst │ ├── keysend.rst │ ├── liquidity_view.rst │ ├── loop.rst │ ├── rest_template.rst │ ├── runlnd.rst │ ├── telegram_template.rst │ ├── today_top.rst │ └── todo.rst │ ├── automated_fees.rst │ ├── automated_rebalancing.rst │ ├── automation.rst │ ├── batch_open.png │ ├── batch_open.rst │ ├── channel_editor.rst │ ├── channel_highlighter.rst │ ├── channels.png │ ├── channels.rst │ ├── cli.md │ ├── cli.rst │ ├── cli.rst.template │ ├── cli │ └── .phony │ ├── cln.rst │ ├── close_channel.png │ ├── close_channel.rst │ ├── commands.rst │ ├── concepts.rst │ ├── conf.py │ ├── connect.png │ ├── connect.rst │ ├── connecting_to_voltage.rst │ ├── connecting_to_your_node.rst │ ├── connection_config.png │ ├── connection_strings.rst │ ├── creating_voltage_node.rst │ ├── docker.rst │ ├── extending.rst │ ├── fee_distribution.png │ ├── fee_distribution.rst │ ├── fee_widget.png │ ├── fees_earned.png │ ├── forwarding_history.rst │ ├── gen │ ├── modules.rst │ ├── orb.app.app.rst │ ├── orb.app.rst │ ├── orb.apps.auto_fees.autofees.rst │ ├── orb.apps.auto_fees.rst │ ├── orb.apps.auto_max_htlcs.rst │ ├── orb.apps.auto_max_htlcs.update_max_htlc.rst │ ├── orb.apps.auto_rebalance.autobalance.rst │ ├── orb.apps.auto_rebalance.rst │ ├── orb.apps.rst │ ├── orb.attribute_editor.attribute_editor.rst │ ├── orb.attribute_editor.rst │ ├── orb.audio.audio_manager.rst │ ├── orb.audio.rst │ ├── orb.channels.CN_widget.rst │ ├── orb.channels.channel_widget.rst │ ├── orb.channels.channels_thread.rst │ ├── orb.channels.channels_widget.rst │ ├── orb.channels.fee_widget.rst │ ├── orb.channels.rst │ ├── orb.channels.segment.rst │ ├── orb.cli.chain.rst │ ├── orb.cli.chalk.rst │ ├── orb.cli.channel.rst │ ├── orb.cli.console.rst │ ├── orb.cli.faborb.rst │ ├── orb.cli.invoice.rst │ ├── orb.cli.misc.rst │ ├── orb.cli.network.rst │ ├── orb.cli.node.rst │ ├── orb.cli.pay.rst │ ├── orb.cli.peer.rst │ ├── orb.cli.rebalance.rst │ ├── orb.cli.rst │ ├── orb.cli.test.rst │ ├── orb.cli.utils.rst │ ├── orb.cli.web.rst │ ├── orb.cln.cln.rst │ ├── orb.cln.cln_base.rst │ ├── orb.cln.cln_grpc.rst │ ├── orb.cln.cln_rest.rst │ ├── orb.cln.grpc_generated.rst │ ├── orb.cln.grpc_generated.v0_11_0.node_pb2.rst │ ├── orb.cln.grpc_generated.v0_11_0.node_pb2_grpc.rst │ ├── orb.cln.grpc_generated.v0_11_0.primitives_pb2.rst │ ├── orb.cln.grpc_generated.v0_11_0.primitives_pb2_grpc.rst │ ├── orb.cln.grpc_generated.v0_11_0.rst │ ├── orb.cln.grpc_generated.v0_11_1.node_pb2.rst │ ├── orb.cln.grpc_generated.v0_11_1.node_pb2_grpc.rst │ ├── orb.cln.grpc_generated.v0_11_1.primitives_pb2.rst │ ├── orb.cln.grpc_generated.v0_11_1.primitives_pb2_grpc.rst │ ├── orb.cln.grpc_generated.v0_11_1.rst │ ├── orb.cln.grpc_generated.v0_11_2.node_pb2.rst │ ├── orb.cln.grpc_generated.v0_11_2.node_pb2_grpc.rst │ ├── orb.cln.grpc_generated.v0_11_2.primitives_pb2.rst │ ├── orb.cln.grpc_generated.v0_11_2.primitives_pb2_grpc.rst │ ├── orb.cln.grpc_generated.v0_11_2.rst │ ├── orb.cln.rst │ ├── orb.components.popup_drop_shadow.rst │ ├── orb.components.rst │ ├── orb.connector.orb_connector.rst │ ├── orb.connector.orb_connector_app.rst │ ├── orb.connector.orb_connector_main.rst │ ├── orb.connector.rst │ ├── orb.core.logging.rst │ ├── orb.core.orb_logging.rst │ ├── orb.core.rst │ ├── orb.core.stoppable_thread.rst │ ├── orb.core_ui.app_common.rst │ ├── orb.core_ui.hidden_imports.rst │ ├── orb.core_ui.kvs.rst │ ├── orb.core_ui.main_layout.rst │ ├── orb.core_ui.orb_app.rst │ ├── orb.core_ui.rst │ ├── orb.core_ui.screen_manager.rst │ ├── orb.core_ui.top_menu.rst │ ├── orb.dialogs.app_store.app_details.app_detais.rst │ ├── orb.dialogs.app_store.app_details.rst │ ├── orb.dialogs.app_store.app_store_dialog.rst │ ├── orb.dialogs.app_store.app_store_login.app_store_login.rst │ ├── orb.dialogs.app_store.app_store_login.rst │ ├── orb.dialogs.app_store.app_summary.app_summary.rst │ ├── orb.dialogs.app_store.app_summary.rst │ ├── orb.dialogs.app_store.rst │ ├── orb.dialogs.app_store.tip_dialog.rst │ ├── orb.dialogs.app_store.tip_dialog.tip_dialog.rst │ ├── orb.dialogs.close_channel.close_channel.rst │ ├── orb.dialogs.close_channel.rst │ ├── orb.dialogs.connection_settings.rst │ ├── orb.dialogs.connection_wizard.connection_wizard.rst │ ├── orb.dialogs.connection_wizard.copy_keys.rst │ ├── orb.dialogs.connection_wizard.lnd_conf.rst │ ├── orb.dialogs.connection_wizard.nodes_and_files.rst │ ├── orb.dialogs.connection_wizard.restart_lnd.rst │ ├── orb.dialogs.connection_wizard.rst │ ├── orb.dialogs.connection_wizard.ssh_credentials.rst │ ├── orb.dialogs.connection_wizard.tab.rst │ ├── orb.dialogs.fee_distribution.rst │ ├── orb.dialogs.forwarding_history.rst │ ├── orb.dialogs.generate_invoice.generate_invoice.rst │ ├── orb.dialogs.generate_invoice.rst │ ├── orb.dialogs.help_dialog.about.about.rst │ ├── orb.dialogs.help_dialog.about.rst │ ├── orb.dialogs.help_dialog.release_notes.release_notes.rst │ ├── orb.dialogs.help_dialog.release_notes.rst │ ├── orb.dialogs.help_dialog.rst │ ├── orb.dialogs.highlighter_dialog.highlighter_dialog.rst │ ├── orb.dialogs.highlighter_dialog.rst │ ├── orb.dialogs.ingest_invoices.ingest_invoices.rst │ ├── orb.dialogs.ingest_invoices.invoice.rst │ ├── orb.dialogs.ingest_invoices.rst │ ├── orb.dialogs.mail_dialog.rst │ ├── orb.dialogs.open_channel.open_channel.rst │ ├── orb.dialogs.open_channel.rst │ ├── orb.dialogs.pay_dialogs.pay_invoices_dialog.rst │ ├── orb.dialogs.pay_dialogs.pay_lnurl_dialog.rst │ ├── orb.dialogs.pay_dialogs.rst │ ├── orb.dialogs.player_dialog.rst │ ├── orb.dialogs.restart_dialog.rst │ ├── orb.dialogs.rst │ ├── orb.dialogs.swap_dialogs.deezy.rst │ ├── orb.dialogs.swap_dialogs.deezy_swap.rst │ ├── orb.dialogs.swap_dialogs.rst │ ├── orb.dialogs.umbrel_node.rst │ ├── orb.dialogs.umbrel_node.umbrel_node.rst │ ├── orb.dialogs.upload_app.rst │ ├── orb.dialogs.upload_app.upload_app_dialog.rst │ ├── orb.dialogs.voltage_node.rst │ ├── orb.dialogs.voltage_node.voltage_node.rst │ ├── orb.kvs.rst │ ├── orb.ln.ln.rst │ ├── orb.ln.rst │ ├── orb.ln.types.rst │ ├── orb.lnd.grpc_generated.autopilot_pb2.rst │ ├── orb.lnd.grpc_generated.autopilot_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.invoices_pb2.rst │ ├── orb.lnd.grpc_generated.invoices_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.lightning_pb2.rst │ ├── orb.lnd.grpc_generated.lightning_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.router_pb2.rst │ ├── orb.lnd.grpc_generated.router_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.rst │ ├── orb.lnd.grpc_generated.v0_14_0_beta.invoices_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_0_beta.invoices_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_0_beta.lightning_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_0_beta.lightning_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_0_beta.router_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_0_beta.router_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_0_beta.rst │ ├── orb.lnd.grpc_generated.v0_14_1_beta.invoices_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_1_beta.invoices_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_1_beta.lightning_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_1_beta.lightning_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_1_beta.router_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_1_beta.router_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_1_beta.rst │ ├── orb.lnd.grpc_generated.v0_14_2_beta.invoices_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_2_beta.invoices_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_2_beta.lightning_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_2_beta.lightning_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_2_beta.router_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_2_beta.router_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_2_beta.rst │ ├── orb.lnd.grpc_generated.v0_14_3_beta.invoices_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_3_beta.invoices_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_3_beta.lightning_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_3_beta.lightning_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_3_beta.router_pb2.rst │ ├── orb.lnd.grpc_generated.v0_14_3_beta.router_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_14_3_beta.rst │ ├── orb.lnd.grpc_generated.v0_15_0_beta.invoices_pb2.rst │ ├── orb.lnd.grpc_generated.v0_15_0_beta.invoices_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_15_0_beta.lightning_pb2.rst │ ├── orb.lnd.grpc_generated.v0_15_0_beta.lightning_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_15_0_beta.router_pb2.rst │ ├── orb.lnd.grpc_generated.v0_15_0_beta.router_pb2_grpc.rst │ ├── orb.lnd.grpc_generated.v0_15_0_beta.rst │ ├── orb.lnd.lnd.rst │ ├── orb.lnd.lnd_base.rst │ ├── orb.lnd.lnd_conf.rst │ ├── orb.lnd.lnd_grpc.rst │ ├── orb.lnd.lnd_mock.rst │ ├── orb.lnd.lnd_rest.rst │ ├── orb.lnd.rst │ ├── orb.logic.app_store.rst │ ├── orb.logic.app_store_api.rst │ ├── orb.logic.app_store_authenticate.rst │ ├── orb.logic.balance.rst │ ├── orb.logic.balanced_ratio.rst │ ├── orb.logic.channel_selector.rst │ ├── orb.logic.cli_thread_manager.rst │ ├── orb.logic.cron.rst │ ├── orb.logic.download_thread.rst │ ├── orb.logic.forwarding_history.rst │ ├── orb.logic.gestures_delegate.rst │ ├── orb.logic.htlc.rst │ ├── orb.logic.htlc_grpc.rst │ ├── orb.logic.htlc_rest.rst │ ├── orb.logic.htlcs_thread.rst │ ├── orb.logic.invoices_thread.rst │ ├── orb.logic.licensing.rst │ ├── orb.logic.lnurl.rst │ ├── orb.logic.lnurl_invoice_generator.rst │ ├── orb.logic.normalized_events.rst │ ├── orb.logic.pay_invoices.rst │ ├── orb.logic.pay_logic.rst │ ├── orb.logic.payment_history.rst │ ├── orb.logic.pnl.rst │ ├── orb.logic.rebalance_thread.rst │ ├── orb.logic.routes.rst │ ├── orb.logic.rst │ ├── orb.logic.thread_manager.rst │ ├── orb.logic.upload_app.rst │ ├── orb.math.Vector.rst │ ├── orb.math.lerp.rst │ ├── orb.math.normal_distribution.rst │ ├── orb.math.rst │ ├── orb.misc.auto_obj.rst │ ├── orb.misc.certificate.rst │ ├── orb.misc.certificate_secure.rst │ ├── orb.misc.channel.rst │ ├── orb.misc.channels.rst │ ├── orb.misc.colors.rst │ ├── orb.misc.conf_defaults.rst │ ├── orb.misc.decorators.rst │ ├── orb.misc.decrypt.rst │ ├── orb.misc.device_id.rst │ ├── orb.misc.enums.rst │ ├── orb.misc.fab_factory.rst │ ├── orb.misc.forex.rst │ ├── orb.misc.get_platform_name.rst │ ├── orb.misc.lndconnect_url.rst │ ├── orb.misc.macaroon.rst │ ├── orb.misc.macaroon_secure.rst │ ├── orb.misc.memory_debugger.rst │ ├── orb.misc.mempool.rst │ ├── orb.misc.monkey_patch.rst │ ├── orb.misc.output.rst │ ├── orb.misc.patch_rand_bits.rst │ ├── orb.misc.plugin.rst │ ├── orb.misc.prefs.rst │ ├── orb.misc.rst │ ├── orb.misc.sec.rst │ ├── orb.misc.sec_rsa.rst │ ├── orb.misc.sec_rsa_plain.rst │ ├── orb.misc.stoppable_thread.rst │ ├── orb.misc.ui_actions.rst │ ├── orb.misc.utils.rst │ ├── orb.misc.utils_no_kivy.rst │ ├── orb.orb_main.rst │ ├── orb.rst │ ├── orb.screens.about.rst │ ├── orb.screens.batch_open_screen.rst │ ├── orb.screens.channels_screen.rst │ ├── orb.screens.close_channel.rst │ ├── orb.screens.connect_screen.rst │ ├── orb.screens.console.console_input.rst │ ├── orb.screens.console.console_output.rst │ ├── orb.screens.console.console_screen.rst │ ├── orb.screens.console.console_splitter.rst │ ├── orb.screens.console.rst │ ├── orb.screens.export_connection_settings.rst │ ├── orb.screens.import_connection_settings.rst │ ├── orb.screens.ingest_invoices_screen.rst │ ├── orb.screens.new_address_screen.rst │ ├── orb.screens.open_channel_screen.rst │ ├── orb.screens.pay_screen.rst │ ├── orb.screens.rankings.rst │ ├── orb.screens.rebalance.rst │ ├── orb.screens.rst │ ├── orb.screens.send_coins.rst │ ├── orb.scripts.fee_spy.rst │ ├── orb.scripts.prep_user_scripts.rst │ ├── orb.scripts.rst │ ├── orb.scripts.test_connection.rst │ ├── orb.status_line.rst │ ├── orb.status_line.status_line.rst │ ├── orb.store.db_cache.rst │ ├── orb.store.db_create_tables.rst │ ├── orb.store.db_meta.rst │ ├── orb.store.model.rst │ ├── orb.store.node_rank.rst │ ├── orb.store.rst │ ├── orb.store.scripts.rst │ ├── orb.store.video_library.rst │ ├── orb.widgets.chord_widget.rst │ ├── orb.widgets.gestures_overlay.rst │ ├── orb.widgets.hud.HUD.rst │ ├── orb.widgets.hud.HUDS.rst │ ├── orb.widgets.hud.hud_common.rst │ ├── orb.widgets.hud.rst │ ├── orb.widgets.node.rst │ ├── orb.widgets.rst │ └── orb.widgets.sent_received_widget.rst │ ├── index.rst │ ├── ingest.png │ ├── installing.rst │ ├── installing_macosx.rst │ ├── installing_ubuntu_20_04.rst │ ├── installing_windows.rst │ ├── invoice_ingestion.rst │ ├── lightning.rst │ ├── main.png │ ├── manual_configuration.rst │ ├── max_htlc_msat.rst │ ├── misc │ ├── index.rst │ └── lnd_live_debugging.rst │ ├── modules.rst │ ├── open_channel.png │ ├── open_channel.rst │ ├── pay.png │ ├── pay.rst │ ├── pay_lnurl.rst │ ├── rankings.png │ ├── rankings.rst │ ├── rebalance.png │ ├── rebalance.rst │ ├── script_editor.png │ ├── script_editor.rst │ ├── sent_received.png │ ├── single_channel.png │ ├── ssh_connection_wizard.rst │ ├── total_routing.png │ ├── umbrel_lndconnect.rst │ └── web.rst ├── fabfile.py ├── images ├── bg.jpeg ├── bg.png ├── bg_big.jpeg ├── bg_big_square.jpeg ├── ln.png ├── orb-128x128.png ├── orb-16x16.png ├── orb-256x256.png ├── orb-32x32.png └── orb-48x48.png ├── install.sh ├── lib └── custom_lib │ └── setup.py ├── local_recipes ├── README.md ├── custom_lib │ └── __init__.py ├── pyarmortransform │ ├── __init__.py │ └── pytransform.py └── sqlite3 │ ├── Android.mk │ └── __init__.py ├── main.py ├── orb ├── __init__.py ├── app │ ├── __init__.py │ └── app.py ├── apps │ ├── README.md │ ├── __init__.py │ ├── alias_and_pubkey │ │ ├── alias_and_pubkey.png │ │ ├── alias_and_pubkey.py │ │ └── appinfo.yaml │ ├── auto_fees │ │ ├── __init__.py │ │ ├── appinfo.yaml │ │ ├── autofees.kv │ │ ├── autofees.png │ │ └── autofees.py │ ├── auto_max_htlcs │ │ ├── __init__.py │ │ ├── appinfo.yaml │ │ ├── update_max_htlc.kv │ │ ├── update_max_htlc.py │ │ └── update_max_htlcs.png │ ├── auto_rebalance │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── appinfo.yaml │ │ ├── autobalance.kv │ │ ├── autobalance.png │ │ └── autobalance.py │ ├── balance │ │ ├── appinfo.yaml │ │ ├── balance.py │ │ └── calculator.png │ ├── currency_converter │ │ ├── appinfo.yaml │ │ ├── convert.png │ │ ├── currency_converter.kv │ │ └── currency_converter.py │ ├── keysend │ │ ├── appinfo.yaml │ │ ├── keysend.kv │ │ ├── keysend.png │ │ └── keysend.py │ ├── loop │ │ ├── LOOP.py │ │ ├── appinfo.yaml │ │ └── loop.png │ └── todo │ │ ├── .gitignore │ │ ├── appinfo.yaml │ │ ├── todo.kv │ │ ├── todo.png │ │ └── todo.py ├── attribute_editor │ ├── __init__.py │ ├── attribute_editor.kv │ └── attribute_editor.py ├── audio │ ├── __init__.py │ ├── any.ogg │ ├── any.wav │ ├── audio_manager.py │ ├── forward_settle.ogg │ ├── forward_settle.wav │ ├── link_fail_event.ogg │ ├── link_fail_event.wav │ ├── send_settle.ogg │ └── send_settle.wav ├── channels │ ├── CN_widget.py │ ├── __init__.py │ ├── channel_widget.py │ ├── channels_screen.kv │ ├── channels_thread.py │ ├── channels_widget.kv │ ├── channels_widget.py │ ├── fee_widget.kv │ ├── fee_widget.py │ ├── segment.kv │ └── segment.py ├── cli │ ├── __init__.py │ ├── chain.py │ ├── chalk.py │ ├── channel.py │ ├── console.py │ ├── invoice.py │ ├── network.py │ ├── node.py │ ├── pay.py │ ├── peer.py │ ├── test.py │ ├── utils.py │ └── web.py ├── cln │ ├── __init__.py │ ├── cln.py │ ├── cln_base.py │ ├── cln_grpc.py │ ├── cln_rest.py │ └── grpc_generated │ │ ├── __init__.py │ │ ├── v0_11_0 │ │ ├── __init__.py │ │ ├── node_pb2.py │ │ ├── node_pb2_grpc.py │ │ ├── primitives_pb2.py │ │ └── primitives_pb2_grpc.py │ │ ├── v0_11_1 │ │ ├── __init__.py │ │ ├── node_pb2.py │ │ ├── node_pb2_grpc.py │ │ ├── primitives_pb2.py │ │ └── primitives_pb2_grpc.py │ │ └── v0_11_2 │ │ ├── __init__.py │ │ ├── node_pb2.py │ │ ├── node_pb2_grpc.py │ │ ├── primitives_pb2.py │ │ └── primitives_pb2_grpc.py ├── components │ ├── __init__.py │ ├── popup_drop_shadow.kv │ └── popup_drop_shadow.py ├── connector │ ├── __init__.py │ ├── orb_connector.kv │ ├── orb_connector.py │ ├── orb_connector_app.py │ ├── orb_connector_main.kv │ └── orb_connector_main.py ├── core │ ├── __init__.py │ ├── orb_logging.py │ └── stoppable_thread.py ├── core_ui │ ├── __init__.py │ ├── app_common.py │ ├── hidden_imports.py │ ├── kvs.py │ ├── main.kv │ ├── main_layout.py │ ├── orb_app.py │ ├── screen_manager.py │ └── top_menu.py ├── dialogs │ ├── __init__.py │ ├── app_store │ │ ├── __init__.py │ │ ├── app_details │ │ │ ├── __init__.py │ │ │ ├── app_details.kv │ │ │ └── app_detais.py │ │ ├── app_store_dialog.kv │ │ ├── app_store_dialog.py │ │ ├── app_store_login │ │ │ ├── __init__.py │ │ │ ├── app_store_login.kv │ │ │ └── app_store_login.py │ │ ├── app_summary │ │ │ ├── __init__.py │ │ │ ├── app_summary.kv │ │ │ └── app_summary.py │ │ └── tip_dialog │ │ │ ├── __init__.py │ │ │ ├── tip_dialog.kv │ │ │ └── tip_dialog.py │ ├── close_channel │ │ ├── __init__.py │ │ ├── close_channel.kv │ │ └── close_channel.py │ ├── connection_settings.kv │ ├── connection_settings.py │ ├── fee_distribution.kv │ ├── fee_distribution.py │ ├── forwarding_history.py │ ├── generate_invoice │ │ ├── __init__.py │ │ ├── generate_invoice.kv │ │ └── generate_invoice.py │ ├── help_dialog │ │ ├── __init__.py │ │ └── about │ │ │ ├── __init__.py │ │ │ ├── about.kv │ │ │ └── about.py │ ├── highlighter_dialog │ │ ├── __init__.py │ │ ├── highlighter_dialog.kv │ │ └── highlighter_dialog.py │ ├── ingest_invoices │ │ ├── __init__.py │ │ ├── ingest_invoices.kv │ │ ├── ingest_invoices.py │ │ ├── invoice.kv │ │ └── invoice.py │ ├── mail_dialog.kv │ ├── mail_dialog.py │ ├── open_channel │ │ ├── __init__.py │ │ ├── open_channel.kv │ │ └── open_channel.py │ ├── pay_dialogs │ │ ├── __init__.py │ │ ├── pay_invoices_dialog.kv │ │ ├── pay_invoices_dialog.py │ │ ├── pay_lnurl_dialog.kv │ │ └── pay_lnurl_dialog.py │ ├── restart_dialog.py │ ├── umbrel_node │ │ ├── __init__.py │ │ ├── umbrel_node.kv │ │ └── umbrel_node.py │ ├── upload_app │ │ ├── __init__.py │ │ ├── upload_app_dialog.kv │ │ └── upload_app_dialog.py │ └── voltage_node │ │ ├── __init__.py │ │ ├── voltage_node.kv │ │ └── voltage_node.py ├── images │ ├── shadow_inverted.png │ ├── umbrel.png │ └── voltage.png ├── ln │ ├── __init__.py │ ├── ln.py │ └── types.py ├── lnd │ ├── __init__.py │ ├── grpc_generated │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── v0_14_0_beta │ │ │ ├── __init__.py │ │ │ ├── invoices_pb2.py │ │ │ ├── invoices_pb2_grpc.py │ │ │ ├── lightning_pb2.py │ │ │ ├── lightning_pb2_grpc.py │ │ │ ├── router_pb2.py │ │ │ └── router_pb2_grpc.py │ │ ├── v0_14_1_beta │ │ │ ├── __init__.py │ │ │ ├── invoices_pb2.py │ │ │ ├── invoices_pb2_grpc.py │ │ │ ├── lightning_pb2.py │ │ │ ├── lightning_pb2_grpc.py │ │ │ ├── router_pb2.py │ │ │ └── router_pb2_grpc.py │ │ ├── v0_14_2_beta │ │ │ ├── __init__.py │ │ │ ├── invoices_pb2.py │ │ │ ├── invoices_pb2_grpc.py │ │ │ ├── lightning_pb2.py │ │ │ ├── lightning_pb2_grpc.py │ │ │ ├── router_pb2.py │ │ │ └── router_pb2_grpc.py │ │ ├── v0_14_3_beta │ │ │ ├── __init__.py │ │ │ ├── invoices_pb2.py │ │ │ ├── invoices_pb2_grpc.py │ │ │ ├── lightning_pb2.py │ │ │ ├── lightning_pb2_grpc.py │ │ │ ├── router_pb2.py │ │ │ └── router_pb2_grpc.py │ │ └── v0_15_0_beta │ │ │ ├── __init__.py │ │ │ ├── invoices_pb2.py │ │ │ ├── invoices_pb2_grpc.py │ │ │ ├── lightning_pb2.py │ │ │ ├── lightning_pb2_grpc.py │ │ │ ├── router_pb2.py │ │ │ └── router_pb2_grpc.py │ ├── lnd.py │ ├── lnd_base.py │ ├── lnd_conf.py │ ├── lnd_grpc.py │ ├── lnd_mock.py │ └── lnd_rest.py ├── logic │ ├── __init__.py │ ├── app_store.py │ ├── app_store_api.py │ ├── app_store_authenticate.py │ ├── balance.py │ ├── balanced_ratio.py │ ├── channel_selector.py │ ├── cli_thread_manager.py │ ├── cron.py │ ├── forwarding_history.py │ ├── gestures_delegate.py │ ├── htlcs_thread.py │ ├── invoices_thread.py │ ├── lnurl.py │ ├── lnurl_invoice_generator.py │ ├── normalized_events.py │ ├── pay_invoices.py │ ├── pay_logic.py │ ├── payment_history.py │ ├── pnl.py │ ├── rebalance_thread.py │ ├── routes.py │ ├── thread_manager.py │ └── upload_app.py ├── math │ ├── Vector.py │ ├── __init__.py │ ├── lerp.py │ └── normal_distribution.py ├── misc │ ├── __init__.py │ ├── auto_obj.py │ ├── certificate.py │ ├── certificate_secure.py │ ├── channel.py │ ├── channels.py │ ├── colors.py │ ├── conf_defaults.py │ ├── decorators.py │ ├── device_id.py │ ├── enums.py │ ├── fab_factory.py │ ├── forex.py │ ├── get_platform_name.py │ ├── lndconnect_url.py │ ├── macaroon.py │ ├── macaroon_secure.py │ ├── memory_debugger.py │ ├── mempool.py │ ├── monkey_patch.py │ ├── output.py │ ├── patch_rand_bits.py │ ├── plugin.py │ ├── prefs.py │ ├── sec_rsa.py │ ├── settings.json │ ├── utils.py │ └── utils_no_kivy.py ├── orb_main.py ├── screens │ ├── __init__.py │ ├── batch_open_screen.kv │ ├── batch_open_screen.py │ ├── channels_screen.py │ ├── connect_screen.kv │ ├── connect_screen.py │ ├── console │ │ ├── __init__.py │ │ ├── console_input.py │ │ ├── console_output.py │ │ ├── console_screen.kv │ │ ├── console_screen.py │ │ └── console_splitter.py │ ├── export_connection_settings.kv │ ├── export_connection_settings.py │ ├── import_connection_settings.kv │ ├── import_connection_settings.py │ ├── new_address.kv │ ├── new_address_screen.py │ ├── rankings.kv │ ├── rankings.py │ ├── rebalance.kv │ ├── rebalance.py │ ├── send_coins.kv │ └── send_coins.py ├── status_line │ ├── __init__.py │ ├── status_line.kv │ └── status_line.py ├── store │ ├── __init__.py │ ├── db_cache.py │ ├── db_create_tables.py │ ├── db_meta.py │ ├── model.py │ └── node_rank.py ├── web │ ├── Dockerfile │ ├── app.py │ ├── makefile │ └── orb_frontend │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── build │ │ │ ├── bundle.css │ │ │ ├── bundle.js │ │ │ └── bundle.js.map │ │ ├── favicon.png │ │ ├── global.css │ │ └── index.html │ │ ├── rollup.config.js │ │ ├── scripts │ │ └── setupTypeScript.js │ │ └── src │ │ ├── App.svelte │ │ └── main.js └── widgets │ ├── __init__.py │ ├── chord_widget.py │ ├── gestures_overlay.kv │ ├── gestures_overlay.py │ ├── hud │ ├── HUD.kv │ ├── HUD.py │ ├── HUDS.kv │ ├── HUDS.py │ ├── __init__.py │ ├── hud_common.kv │ └── hud_common.py │ ├── node.kv │ ├── node.py │ └── sent_received_widget.py ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── site ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── css │ │ ├── bootstrap.min.css │ │ ├── colors │ │ │ ├── blue.css │ │ │ ├── cyan.css │ │ │ ├── green.css │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ └── yellow.css │ │ ├── materialdesignicons.min.css │ │ ├── pe-icon-7-stroke.css │ │ ├── style.css │ │ ├── style.css.map │ │ ├── style.min.css │ │ └── style.min.css.map │ ├── global.css │ ├── index.html │ └── scss │ │ ├── _authentication.scss │ │ ├── _blog.scss │ │ ├── _components.scss │ │ ├── _contact.scss │ │ ├── _cta.scss │ │ ├── _features.scss │ │ ├── _footer.scss │ │ ├── _general.scss │ │ ├── _helper.scss │ │ ├── _home.scss │ │ ├── _menu.scss │ │ ├── _pricing.scss │ │ ├── _responsive.scss │ │ ├── _services.scss │ │ ├── _switcher.scss │ │ ├── _team.scss │ │ ├── _testimonial.scss │ │ ├── _variables.scss │ │ └── style.scss ├── rollup.config.js ├── scripts │ └── setupTypeScript.js ├── src │ ├── +layout.js │ ├── App.svelte │ ├── Components │ │ ├── AboutUs.svelte │ │ ├── Course.svelte │ │ ├── CourseStyle.css │ │ ├── Download.svelte │ │ ├── Footer.svelte │ │ ├── Gallery.svelte │ │ ├── Interest.svelte │ │ ├── Navbar.svelte │ │ ├── NavbarPlain.svelte │ │ ├── Player.svelte │ │ ├── Services.svelte │ │ ├── Testimonial.svelte │ │ └── Vids.svelte │ ├── Data │ │ └── data.js │ ├── app.d.ts │ ├── app.html │ ├── main.js │ ├── routes │ │ ├── +layout.js │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ ├── HomeSection.svelte │ │ ├── Layout.svelte │ │ ├── License.svelte │ │ ├── PrivacyPolicy.svelte │ │ ├── TermsAndConditions.svelte │ │ ├── download.svelte │ │ ├── intro │ │ │ └── +page.svelte │ │ ├── login.svelte │ │ ├── love.svelte │ │ ├── privacy │ │ │ └── +page.svelte │ │ ├── release-notes │ │ │ └── +page.svelte │ │ ├── release_notes.svelte │ │ ├── security.svelte │ │ ├── security │ │ │ └── +page.svelte │ │ └── terms-and-conditions │ │ │ └── +page.svelte │ ├── utils.js │ └── utils │ │ └── utils.js ├── static │ ├── favicon.png │ ├── style.css │ └── style.css.map ├── svelte.config.js └── vite.config.js ├── tests ├── __init__.py ├── cli_test_case.py ├── data │ └── .gitignore ├── lnd.conf ├── readonly.macaroon ├── test_api.py ├── test_autoobj.py ├── test_certificate.py ├── test_certificate_secure.py ├── test_cli.py ├── test_cli_chain.py ├── test_cli_simple.py ├── test_htlc.py ├── test_lnd_conf.py ├── test_lndconnect_url.py ├── test_lnurl.py ├── test_macaroon.py ├── test_macaroon_secure.py ├── test_orb_app.py ├── test_sec_rsa.py └── test_ssh_wizard.py └── third_party ├── arrow ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ ├── documentation.md │ │ └── feature_request.md │ ├── pull_request_template.md │ └── workflows │ │ └── continuous_integration.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── arrow │ ├── __init__.py │ ├── _version.py │ ├── api.py │ ├── arrow.py │ ├── constants.py │ ├── factory.py │ ├── formatter.py │ ├── locales.py │ ├── parser.py │ ├── py.typed │ └── util.py ├── docs │ ├── Makefile │ ├── conf.py │ ├── index.rst │ ├── make.bat │ └── releases.rst ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── test_api.py │ ├── test_arrow.py │ ├── test_factory.py │ ├── test_formatter.py │ ├── test_locales.py │ ├── test_parser.py │ ├── test_util.py │ └── utils.py └── tox.ini ├── bezier ├── .appveyor.yml ├── .circleci │ └── config.yml ├── .clang-format ├── .coveragerc ├── .dockerignore ├── .github │ └── workflows │ │ └── macos.yml ├── .gitignore ├── .readthedocs.yml ├── DEVELOPMENT.rst ├── DEVELOPMENT.rst.template ├── LICENSE ├── MANIFEST.in ├── README.rst ├── README.rst.release.template ├── README.rst.template ├── codemeta.json ├── noxfile.py ├── paper.bib ├── paper.md ├── pylintrc ├── scripts │ ├── black_check_all_files.py │ ├── blacken_all_files.py │ ├── build_docs.sh │ ├── check_doc_templates.py │ ├── clean_cython.py │ ├── cython_update_check.py │ ├── doc_template_release.py │ ├── docker │ │ ├── README.md │ │ └── bezier.Dockerfile │ ├── generate_fortran_functional.py │ ├── macos │ │ ├── build-wheels.sh │ │ ├── local-test.sh │ │ ├── nox-install-for-doctest.sh │ │ ├── script-py37.sh │ │ ├── script-py38.sh │ │ ├── script-py39.sh │ │ ├── setup.sh │ │ └── test.sh │ ├── manylinux │ │ ├── build-wheel-for-doctest.sh │ │ ├── build-wheels.sh │ │ ├── script_i686.sh │ │ └── script_x86_64.sh │ ├── nox-install-for-doctest-linux.sh │ ├── remove_cython_files.py │ ├── report_lcov.py │ ├── requirements.txt │ ├── rewrite_package_rst.py │ ├── upload_coveralls.sh │ └── validate_functional_test_cases.py ├── setup.cfg ├── setup.py ├── src │ ├── fortran │ │ ├── CMakeLists.txt │ │ ├── curve.f90 │ │ ├── curve_intersection.f90 │ │ ├── helpers.f90 │ │ ├── include │ │ │ ├── bezier.h │ │ │ └── bezier │ │ │ │ ├── curve.h │ │ │ │ ├── curve_intersection.h │ │ │ │ ├── helpers.h │ │ │ │ ├── status.h │ │ │ │ ├── triangle.h │ │ │ │ └── triangle_intersection.h │ │ ├── quadpack │ │ │ ├── CMakeLists.txt │ │ │ ├── d1mach.f │ │ │ ├── dqagse.f │ │ │ ├── dqelg.f │ │ │ ├── dqk21.f │ │ │ ├── dqpsrt.f │ │ │ └── readme │ │ ├── status.f90 │ │ ├── triangle.f90 │ │ ├── triangle_intersection.f90 │ │ └── types.f90 │ └── python │ │ └── bezier │ │ ├── __config__.py │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── _curve.pxd │ │ ├── _curve_helpers.py │ │ ├── _curve_intersection.pxd │ │ ├── _geometric_intersection.py │ │ ├── _helpers.pxd │ │ ├── _helpers.py │ │ ├── _intersection_helpers.py │ │ ├── _legacy.py │ │ ├── _plot_helpers.py │ │ ├── _speedup.c │ │ ├── _speedup.pyx │ │ ├── _status.pxd │ │ ├── _symbolic.py │ │ ├── _triangle.pxd │ │ ├── _triangle_helpers.py │ │ ├── _triangle_intersection.pxd │ │ ├── _triangle_intersection.py │ │ ├── curve.py │ │ ├── curved_polygon.py │ │ ├── hazmat │ │ ├── __init__.py │ │ ├── algebraic_intersection.py │ │ ├── clipping.py │ │ ├── curve_helpers.py │ │ ├── geometric_intersection.py │ │ ├── helpers.py │ │ ├── intersection_helpers.py │ │ ├── triangle_helpers.py │ │ └── triangle_intersection.py │ │ └── triangle.py └── tests │ ├── __init__.py │ ├── conftest.py │ ├── fortran │ ├── Makefile │ ├── README.md │ ├── functional.f90 │ ├── functional_curve.f90 │ ├── functional_test_helpers.f90 │ ├── test_curve.f90 │ ├── test_curve_intersection.f90 │ ├── test_helpers.f90 │ ├── test_triangle.f90 │ ├── test_triangle_intersection.f90 │ ├── unit_test.f90 │ └── unit_test_helpers.f90 │ ├── functional │ ├── __init__.py │ ├── curve_intersections.json │ ├── curves.json │ ├── make_curve_curve_images.py │ ├── make_segment_box_images.py │ ├── make_triangle_locate_images.py │ ├── make_triangle_triangle_images.py │ ├── schema │ │ ├── curve.json │ │ ├── curve_intersection.json │ │ ├── curved_polygon.json │ │ ├── numerical.json │ │ ├── triangle.json │ │ └── triangle_intersection.json │ ├── test_curve_curve.py │ ├── test_segment_box.py │ ├── test_triangle_locate.py │ ├── test_triangle_triangle.py │ ├── triangle_intersections.json │ ├── triangles.json │ └── utils.py │ ├── unit │ ├── __init__.py │ ├── hazmat │ │ ├── __init__.py │ │ ├── test_algebraic_intersection.py │ │ ├── test_clipping.py │ │ ├── test_curve_helpers.py │ │ ├── test_geometric_intersection.py │ │ ├── test_helpers.py │ │ ├── test_intersection_helpers.py │ │ ├── test_triangle_helpers.py │ │ └── test_triangle_intersection.py │ ├── test___config__.py │ ├── test___init__.py │ ├── test__base.py │ ├── test__curve_helpers.py │ ├── test__geometric_intersection.py │ ├── test__helpers.py │ ├── test__intersection_helpers.py │ ├── test__legacy.py │ ├── test__plot_helpers.py │ ├── test__symbolic.py │ ├── test__triangle_helpers.py │ ├── test__triangle_intersection.py │ ├── test_curve.py │ ├── test_curved_polygon.py │ ├── test_triangle.py │ └── utils.py │ └── utils.py ├── colour ├── .gitchangelog.rc ├── .package ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── TODO.rst ├── appveyor.yml ├── autogen.sh ├── colour.py ├── setup.cfg └── setup.py ├── contextmenu ├── .github │ └── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── AUTHORS.txt ├── CHANGELOG ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── doc │ ├── Makefile │ ├── README.md │ ├── app-menu-01.png │ ├── context-menu-01.png │ ├── make.bat │ ├── menu-divider-01.png │ ├── menu-divider-02.png │ └── source │ │ ├── api.rst │ │ ├── conf.py │ │ ├── examples.rst │ │ ├── flower.rst │ │ ├── getting_started.rst │ │ ├── index.rst │ │ └── installation.rst ├── examples │ ├── simple_app_menu.py │ ├── simple_context_menu.py │ ├── split_app_menu.py │ └── split_context_menu.py ├── kivy_garden │ └── contextmenu │ │ ├── __init__.py │ │ ├── _version.py │ │ ├── app_menu.kv │ │ ├── app_menu.py │ │ ├── context_menu.kv │ │ └── context_menu.py ├── screenshot.png ├── setup.py ├── tests │ └── test_import.py └── tools │ └── hooks │ └── pre-commit ├── currency-symbols ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── currency_symbols │ ├── __init__.py │ ├── constants.py │ ├── currency_symbols.py │ └── test.py └── setup.py ├── forex-python ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs │ ├── Makefile │ ├── __init__.py │ ├── make.bat │ └── source │ │ ├── changelog.rst │ │ ├── conf.py │ │ ├── currencysource.rst │ │ ├── index.rst │ │ ├── installation.rst │ │ └── usage.rst ├── forex_python │ ├── __init__.py │ ├── bitcoin.py │ ├── converter.py │ └── raw_data │ │ └── currencies.json ├── setup.py └── tests │ ├── __init__.py │ ├── test.py │ └── test_bitcoin.py ├── lnurl ├── .editorconfig ├── .github │ └── workflows │ │ ├── codeql.yml │ │ ├── mypy.yml │ │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Pipfile ├── README.md ├── config_example.toml ├── lnurl │ ├── __init__.py │ ├── cli │ │ ├── __init__.py │ │ └── lnrpc │ │ │ ├── __init__.py │ │ │ └── lnd_rest.py │ ├── core.py │ ├── exceptions.py │ ├── helpers.py │ ├── models.py │ ├── py.typed │ └── types.py ├── pyproject.toml ├── setup.py └── tests │ ├── __init__.py │ ├── test_core.py │ ├── test_models.py │ ├── test_models_from_dict.py │ └── test_types.py ├── load_env.sh └── python-qrcode ├── .gitignore ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── PACKAGING.rst ├── README.rst ├── TESTING.rst ├── doc ├── color_masks.png ├── module_drawers.png └── qr.1 ├── qrcode ├── LUT.py ├── __init__.py ├── base.py ├── console_scripts.py ├── constants.py ├── exceptions.py ├── image │ ├── __init__.py │ ├── base.py │ ├── pil.py │ ├── pure.py │ ├── styledpil.py │ ├── styles │ │ ├── __init__.py │ │ ├── colormasks.py │ │ └── moduledrawers.py │ └── svg.py ├── main.py ├── release.py ├── tests │ ├── __init__.py │ ├── svg.py │ ├── test_example.py │ ├── test_qrcode.py │ ├── test_release.py │ ├── test_script.py │ └── test_util.py └── util.py ├── setup.cfg ├── setup.py ├── signing-key.asc └── tox.ini /VERSION: -------------------------------------------------------------------------------- 1 | 0.21.16 -------------------------------------------------------------------------------- /build.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3.9 2 | 3 | # -*- coding: utf-8 -*- 4 | # @Author: lnorb.com 5 | # @Date: 2022-01-13 09:11:50 6 | # @Last Modified by: lnorb.com 7 | # @Last Modified time: 2022-01-29 11:40:28 8 | 9 | import re 10 | import os 11 | import sys 12 | from fabric.main import program 13 | 14 | if __name__ == "__main__": 15 | sys.exit(program.run()) 16 | -------------------------------------------------------------------------------- /build_system/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-20 08:49:08 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-01-20 08:49:08 6 | -------------------------------------------------------------------------------- /build_system/alembic.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-02-13 13:32:06 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-02-15 07:22:00 6 | 7 | from invoke import task 8 | import os 9 | 10 | 11 | @task 12 | def revision(c, message, env=os.environ): 13 | with c.cd("server"): 14 | c.run(f'alembic revision -m "{message}" --autogenerate', env=env) 15 | 16 | 17 | @task 18 | def upgrade(c, env=os.environ): 19 | with c.cd("server"): 20 | c.run(f"alembic upgrade head", env=env) 21 | -------------------------------------------------------------------------------- /build_system/appstore/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-20 08:46:25 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-06-22 07:59:16 6 | 7 | from invoke import Collection 8 | 9 | from . import local_server 10 | from . import remote_server 11 | from . import local_site 12 | 13 | namespace = Collection(local_server, remote_server, local_site) 14 | -------------------------------------------------------------------------------- /build_system/appstore/orb.conf: -------------------------------------------------------------------------------- 1 | [program:orb] 2 | user=ubuntu 3 | directory=/home/ubuntu/orb/server 4 | command=/home/ubuntu/.local/bin/uvicorn orb_server:app --reload --host 0.0.0.0 5 | autostart=true 6 | autorestart=true 7 | stderr_logfile=/var/log/orb.err.log 8 | stdout_logfile=/var/log/orb.out.log -------------------------------------------------------------------------------- /build_system/casts/orb-chain-balance.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:05:54 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-07 06:00:46 5 | 6 | orb chain balance 7 | 8 | #$ expect confirmed 9 | 10 | #$ wait 2000 11 | 12 | 13 | -------------------------------------------------------------------------------- /build_system/casts/orb-chain-deposit.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:08:11 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-07 06:02:55 5 | 6 | orb chain deposit 7 | 8 | #$ expect deposit_qr 9 | 10 | #$ wait 2000 11 | 12 | 13 | -------------------------------------------------------------------------------- /build_system/casts/orb-chain-fees.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:08:11 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-07 06:04:43 5 | 6 | orb chain fees 7 | 8 | #$ expect minimum 9 | 10 | #$ wait 2000 11 | -------------------------------------------------------------------------------- /build_system/casts/orb-chain-send.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:08:11 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-07 08:02:36 5 | 6 | orb chain send $addr 100_000 1 7 | 8 | #$ expect txid 9 | 10 | #$wait 2000 11 | 12 | -------------------------------------------------------------------------------- /build_system/casts/orb-channel-list-forwards.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:25:45 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-07 06:10:09 5 | 6 | orb channel list-forwards 7 | 8 | #$ expect timestamp -------------------------------------------------------------------------------- /build_system/casts/orb-channel-open.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:28:25 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-08 11:27:31 5 | 6 | orb channel open $pubkey 10_000_000 1 7 | 8 | # expect output_index -------------------------------------------------------------------------------- /build_system/casts/orb-channel-rebalance.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-08 17:16:47 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-08 17:17:22 5 | 6 | orb channel rebalance 1000 --fee-rate 30_000 7 | 8 | #$ expect SUCCESS -------------------------------------------------------------------------------- /build_system/casts/orb-invoice-generate.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:59:02 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-07 06:18:56 5 | 6 | orb invoice generate 7 | 8 | #$ expect deposit_qr -------------------------------------------------------------------------------- /build_system/casts/orb-network-get-route.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:08:11 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-07 06:22:05 5 | 6 | orb network get-route $pubkey 7 | 8 | #$ expect total_fees -------------------------------------------------------------------------------- /build_system/casts/orb-node-create-orb-public.sh: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-09-06 14:55:53 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-09-09 16:05:27 6 | 7 | orb node create-orb-public cln rest 8 | #$ expect as default 9 | -------------------------------------------------------------------------------- /build_system/casts/orb-node-create.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-07 07:36:36 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-09 15:26:41 5 | 6 | # does not work due to backslashes 7 | 8 | orb node create \ 9 | --hostname signet.lnd.lnorb.com \ 10 | --node-type lnd \ 11 | --protocol rest \ 12 | --network signet \ 13 | --rest-port 8080 \ 14 | --mac-hex $MAC_HEX \ 15 | --cert-hex $CERT_HEX -------------------------------------------------------------------------------- /build_system/casts/orb-node-delete.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:40:41 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-07 07:41:47 5 | 6 | orb node delete 7 | 8 | #$ expect deleted -------------------------------------------------------------------------------- /build_system/casts/orb-node-info.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:40:29 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-09 15:43:21 5 | 6 | orb node info 7 | 8 | #$ expect num_inactive_channels -------------------------------------------------------------------------------- /build_system/casts/orb-node-list.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:39:13 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-06 16:06:47 5 | 6 | orb node list 7 | 8 | #$ expect 0227750e13a6134c1f1e510542a88e3f922107df8ef948fc3ff2a296fca4a12e47 9 | 10 | #$ wait 1000 11 | 12 | orb node list --show-info 13 | 14 | #$ expect 03fbffb45604f2e0d481c323612e6681fd77eacf9bbe853e83300991de75cc7f78 15 | 16 | #$ wait 1000 17 | -------------------------------------------------------------------------------- /build_system/casts/orb-node-ssh-fetch-certs.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:47:00 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-06 15:50:56 5 | 6 | orb node ssh-fetch-certs \ 7 | --hostname regtest.cln.lnorb.com \ 8 | --ssh-cert-path lnorb_com.cer \ 9 | --ssh-port 22 \ 10 | --ssh-user ubuntu \ 11 | --ln-cert-path /home/ubuntu/dev/regtest-workbench/certificate.pem \ 12 | --ln-macaroon-path /home/ubuntu/dev/regtest-workbench/access.macaroon -------------------------------------------------------------------------------- /build_system/casts/orb-node-use.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:35:21 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-06 15:35:32 5 | 6 | pk=$(orb node list | head -n 1) 7 | 8 | orb node use $pk -------------------------------------------------------------------------------- /build_system/casts/orb-pay-lnurl.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-09 10:09:44 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-09 10:09:44 5 | -------------------------------------------------------------------------------- /build_system/casts/orb-peer-connect.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:32:28 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-07 12:51:46 5 | 6 | #$ wait 2000 7 | 8 | orb peer connect $pubkey 9 | 10 | #$ expect peer -------------------------------------------------------------------------------- /build_system/casts/orb-peer-list.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:30:20 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-07 12:38:20 5 | 6 | orb peer list 7 | 8 | #$ expect 02d41224b71a5346a656f8949c66d11495e39dac55ab8772f55c26ca515db910ea 9 | -------------------------------------------------------------------------------- /build_system/casts/orb-test-run-all-tests.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-09 08:40:16 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-09 08:41:04 5 | 6 | 7 | orb test run-all-tests 8 | 9 | #$ expect passed 10 | -------------------------------------------------------------------------------- /build_system/casts/orb-web-serve.sh: -------------------------------------------------------------------------------- 1 | # @Author: lnorb.com 2 | # @Date: 2022-09-06 15:08:11 3 | # @Last Modified by: lnorb.com 4 | # @Last Modified time: 2022-09-07 12:23:07 5 | 6 | #$ wait 2000 7 | 8 | orb web serve &> /dev/null & disown 9 | 10 | pid=$! 11 | 12 | curl localhost:8080/info 2>/dev/null | jq 13 | 14 | #$ expect channels 15 | 16 | kill $pid -------------------------------------------------------------------------------- /build_system/host.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-28 05:20:45 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-01-29 04:39:24 6 | 7 | from invoke import task 8 | import os 9 | 10 | 11 | @task 12 | def ssh(c): 13 | os.system("ssh -i lnorb_com.cer ubuntu@lnorb.com") 14 | -------------------------------------------------------------------------------- /build_system/lnd_invoice_service.conf: -------------------------------------------------------------------------------- 1 | [program:lnd_invoice_service] 2 | user=ubuntu 3 | directory=/home/ubuntu/orb/server/workers/ 4 | environment=PYTHONPATH=/home/ubuntu/orb/ 5 | command=/home/ubuntu/.local/bin/nameko run lnd_invoice_service --config nameko.yaml 6 | autostart=true 7 | autorestart=true 8 | stderr_logfile=/var/log/lnd_invoice_service.err.log 9 | stdout_logfile=/var/log/lnd_invoice_service.out.log -------------------------------------------------------------------------------- /build_system/orb.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Type=Application 4 | Name=Orb 5 | GenericName=Lightning Manager 6 | Comment=Multiplatform application for managing a lightning node 7 | Exec=/usr/bin/orb %F 8 | Terminal=true 9 | MimeType=text/plain; 10 | Icon=orb 11 | Categories=TextEditor;Development; 12 | StartupNotify=false 13 | Actions=Window;Document; -------------------------------------------------------------------------------- /build_system/pcmanfm.conf: -------------------------------------------------------------------------------- 1 | [config] 2 | bm_open_method=0 3 | 4 | [volume] 5 | mount_on_startup=1 6 | mount_removable=1 7 | autorun=1 8 | 9 | [ui] 10 | always_show_tabs=0 11 | max_tab_chars=32 12 | win_width=640 13 | win_height=480 14 | splitter_pos=150 15 | media_in_new_tab=0 16 | desktop_folder_new_win=0 17 | change_tab_on_drop=1 18 | close_on_unmount=1 19 | focus_previous=0 20 | side_pane_mode=places 21 | view_mode=icon 22 | show_hidden=0 23 | sort=name;ascending; 24 | toolbar=newtab;navigation;home; 25 | show_statusbar=1 26 | pathbar_mode_buttons=0 27 | -------------------------------------------------------------------------------- /build_system/semantic.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-13 11:01:23 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-09-22 14:03:45 6 | 7 | import semver 8 | 9 | get_ver = lambda: semver.VersionInfo.parse(open("VERSION").read().strip()) 10 | 11 | 12 | def save_ver(ver): 13 | open("VERSION", "w").write(str(ver)) 14 | -------------------------------------------------------------------------------- /build_system/ssh.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-07-10 07:23:54 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-07-10 07:29:44 6 | 7 | from invoke import task 8 | import os 9 | 10 | 11 | @task 12 | def mosh(c, env=os.environ): 13 | c.run( 14 | """mosh --ssh 'ssh -i lnorb_com.cer' --predict experimental --noinit ubuntu@lnorb.com """, 15 | env=env, 16 | ) 17 | -------------------------------------------------------------------------------- /build_system/tags.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-13 10:58:57 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-01-14 22:35:35 6 | 7 | from build_system.semantic import * 8 | from invoke import task 9 | 10 | 11 | @task 12 | def tag(c): 13 | ver = get_ver() 14 | print(ver) 15 | c.run(f'git tag -a v{ver} -m "tag v{ver}"') 16 | 17 | 18 | @task 19 | def push(c): 20 | c.run("git push origin --tags") 21 | -------------------------------------------------------------------------------- /build_system/typer: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | from build_system.typer_cli.main import main 6 | 7 | if __name__ == "__main__": 8 | sys.argv[0] = re.sub(r"(-script\.pyw|\.exe)?$", "", sys.argv[0]) 9 | sys.exit(main()) 10 | -------------------------------------------------------------------------------- /build_system/typer_cli/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.12" 2 | -------------------------------------------------------------------------------- /build_system/typer_cli/__main__.py: -------------------------------------------------------------------------------- 1 | from .main import main 2 | 3 | main() 4 | -------------------------------------------------------------------------------- /docs/source/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/AE.png -------------------------------------------------------------------------------- /docs/source/AE2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/AE2.png -------------------------------------------------------------------------------- /docs/source/HUD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/HUD.png -------------------------------------------------------------------------------- /docs/source/_static/orb_transparent_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/_static/orb_transparent_small.png -------------------------------------------------------------------------------- /docs/source/apps/alias_and_pubkey.rst: -------------------------------------------------------------------------------- 1 | alias_and_pubkey 2 | ================ 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/alias_and_pubkey/appinfo.yaml 8 | :language: python 9 | 10 | 11 | alias_and_pubkey.py 12 | ------------------- 13 | 14 | .. literalinclude:: ../../../apps/alias_and_pubkey/alias_and_pubkey.py 15 | :language: python 16 | 17 | -------------------------------------------------------------------------------- /docs/source/apps/balance.rst: -------------------------------------------------------------------------------- 1 | balance 2 | ======= 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/balance/appinfo.yaml 8 | :language: python 9 | 10 | 11 | balance.py 12 | ---------- 13 | 14 | .. literalinclude:: ../../../apps/balance/balance.py 15 | :language: python 16 | 17 | -------------------------------------------------------------------------------- /docs/source/apps/channels_db_size.rst: -------------------------------------------------------------------------------- 1 | channels_db_size 2 | ================ 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/channels_db_size/appinfo.yaml 8 | :language: python 9 | 10 | 11 | channels_db_size.py 12 | ------------------- 13 | 14 | .. literalinclude:: ../../../apps/channels_db_size/channels_db_size.py 15 | :language: python 16 | 17 | -------------------------------------------------------------------------------- /docs/source/apps/currency_converter.rst: -------------------------------------------------------------------------------- 1 | currency_converter 2 | ================== 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/currency_converter/appinfo.yaml 8 | :language: python 9 | 10 | 11 | currency_converter.py 12 | --------------------- 13 | 14 | .. literalinclude:: ../../../apps/currency_converter/currency_converter.py 15 | :language: python 16 | 17 | currency_converter.kv 18 | --------------------- 19 | 20 | .. literalinclude:: ../../../apps/currency_converter/currency_converter.kv 21 | :language: kivy 22 | -------------------------------------------------------------------------------- /docs/source/apps/grpc_template.rst: -------------------------------------------------------------------------------- 1 | grpc_template 2 | ============= 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/grpc_template/appinfo.yaml 8 | :language: python 9 | 10 | 11 | template.py 12 | ----------- 13 | 14 | .. literalinclude:: ../../../apps/grpc_template/template.py 15 | :language: python 16 | 17 | -------------------------------------------------------------------------------- /docs/source/apps/htlc_top.rst: -------------------------------------------------------------------------------- 1 | htlc_top 2 | ======== 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/htlc_top/appinfo.yaml 8 | :language: python 9 | 10 | 11 | htlc_top.py 12 | ----------- 13 | 14 | .. literalinclude:: ../../../apps/htlc_top/htlc_top.py 15 | :language: python 16 | 17 | htlc_top.kv 18 | ----------- 19 | 20 | .. literalinclude:: ../../../apps/htlc_top/htlc_top.kv 21 | :language: kivy 22 | -------------------------------------------------------------------------------- /docs/source/apps/keysend.rst: -------------------------------------------------------------------------------- 1 | keysend 2 | ======= 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/keysend/appinfo.yaml 8 | :language: python 9 | 10 | 11 | keysend.py 12 | ---------- 13 | 14 | .. literalinclude:: ../../../apps/keysend/keysend.py 15 | :language: python 16 | 17 | keysend.kv 18 | ---------- 19 | 20 | .. literalinclude:: ../../../apps/keysend/keysend.kv 21 | :language: kivy 22 | -------------------------------------------------------------------------------- /docs/source/apps/liquidity_view.rst: -------------------------------------------------------------------------------- 1 | liquidity_view 2 | ============== 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/liquidity_view/appinfo.yaml 8 | :language: python 9 | 10 | 11 | liquidity_view.py 12 | ----------------- 13 | 14 | .. literalinclude:: ../../../apps/liquidity_view/liquidity_view.py 15 | :language: python 16 | 17 | -------------------------------------------------------------------------------- /docs/source/apps/loop.rst: -------------------------------------------------------------------------------- 1 | loop 2 | ==== 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/loop/appinfo.yaml 8 | :language: python 9 | 10 | 11 | LOOP.py 12 | ------- 13 | 14 | .. literalinclude:: ../../../apps/loop/LOOP.py 15 | :language: python 16 | 17 | -------------------------------------------------------------------------------- /docs/source/apps/rest_template.rst: -------------------------------------------------------------------------------- 1 | rest_template 2 | ============= 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/rest_template/appinfo.yaml 8 | :language: python 9 | 10 | 11 | rest_example.py 12 | --------------- 13 | 14 | .. literalinclude:: ../../../apps/rest_template/rest_example.py 15 | :language: python 16 | 17 | -------------------------------------------------------------------------------- /docs/source/apps/runlnd.rst: -------------------------------------------------------------------------------- 1 | runlnd 2 | ====== 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/runlnd/appinfo.yaml 8 | :language: python 9 | 10 | 11 | runlnd.py 12 | --------- 13 | 14 | .. literalinclude:: ../../../apps/runlnd/runlnd.py 15 | :language: python 16 | 17 | runlnd.kv 18 | --------- 19 | 20 | .. literalinclude:: ../../../apps/runlnd/runlnd.kv 21 | :language: kivy 22 | -------------------------------------------------------------------------------- /docs/source/apps/telegram_template.rst: -------------------------------------------------------------------------------- 1 | telegram_template 2 | ================= 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/telegram_template/appinfo.yaml 8 | :language: python 9 | 10 | 11 | telegram_template.py 12 | -------------------- 13 | 14 | .. literalinclude:: ../../../apps/telegram_template/telegram_template.py 15 | :language: python 16 | 17 | -------------------------------------------------------------------------------- /docs/source/apps/today_top.rst: -------------------------------------------------------------------------------- 1 | today_top 2 | ========= 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/today_top/appinfo.yaml 8 | :language: python 9 | 10 | 11 | today_top.py 12 | ------------ 13 | 14 | .. literalinclude:: ../../../apps/today_top/today_top.py 15 | :language: python 16 | 17 | -------------------------------------------------------------------------------- /docs/source/apps/todo.rst: -------------------------------------------------------------------------------- 1 | todo 2 | ==== 3 | 4 | appinfo.yaml 5 | ------------ 6 | 7 | .. literalinclude:: ../../../apps/todo/appinfo.yaml 8 | :language: python 9 | 10 | 11 | todo.py 12 | ------- 13 | 14 | .. literalinclude:: ../../../apps/todo/todo.py 15 | :language: python 16 | 17 | todo.kv 18 | ------- 19 | 20 | .. literalinclude:: ../../../apps/todo/todo.kv 21 | :language: kivy 22 | -------------------------------------------------------------------------------- /docs/source/batch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/batch_open.png -------------------------------------------------------------------------------- /docs/source/channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/channels.png -------------------------------------------------------------------------------- /docs/source/cli/.phony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/cli/.phony -------------------------------------------------------------------------------- /docs/source/close_channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/close_channel.png -------------------------------------------------------------------------------- /docs/source/close_channel.rst: -------------------------------------------------------------------------------- 1 | Close Channel 2 | ============= 3 | 4 | .. image:: close_channel.png 5 | :align: center 6 | :scale: 80% 7 | 8 | This dialog enables closing a channel with a peer. 9 | 10 | Channel Point 11 | -------------- 12 | 13 | The Channel Point of the peer one wishes to close with. This can be found in the AE. 14 | 15 | Sats per v/byte 16 | --------------- 17 | 18 | The number of Satoshis per v/byte for the open operation. An appropriate value can be selected by refering to the Mempool HUD. 19 | -------------------------------------------------------------------------------- /docs/source/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/connect.png -------------------------------------------------------------------------------- /docs/source/connect.rst: -------------------------------------------------------------------------------- 1 | Connect 2 | ======= 3 | 4 | .. image:: connect.png 5 | :align: center 6 | :scale: 80% 7 | 8 | This dialog enables the user to connect to a peer via a plain-net or tor address. -------------------------------------------------------------------------------- /docs/source/connection_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/connection_config.png -------------------------------------------------------------------------------- /docs/source/fee_distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/fee_distribution.png -------------------------------------------------------------------------------- /docs/source/fee_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/fee_widget.png -------------------------------------------------------------------------------- /docs/source/fees_earned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/fees_earned.png -------------------------------------------------------------------------------- /docs/source/gen/modules.rst: -------------------------------------------------------------------------------- 1 | orb 2 | === 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | orb 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.app.app.rst: -------------------------------------------------------------------------------- 1 | orb.app.app module 2 | ================== 3 | 4 | .. automodule:: orb.app.app 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.app.rst: -------------------------------------------------------------------------------- 1 | orb.app package 2 | =============== 3 | 4 | .. automodule:: orb.app 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.app.app 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.apps.auto_fees.autofees.rst: -------------------------------------------------------------------------------- 1 | orb.apps.auto\_fees.autofees module 2 | =================================== 3 | 4 | .. automodule:: orb.apps.auto_fees.autofees 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.apps.auto_fees.rst: -------------------------------------------------------------------------------- 1 | orb.apps.auto\_fees package 2 | =========================== 3 | 4 | .. automodule:: orb.apps.auto_fees 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.apps.auto_fees.autofees 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.apps.auto_max_htlcs.rst: -------------------------------------------------------------------------------- 1 | orb.apps.auto\_max\_htlcs package 2 | ================================= 3 | 4 | .. automodule:: orb.apps.auto_max_htlcs 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.apps.auto_max_htlcs.update_max_htlc 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.apps.auto_max_htlcs.update_max_htlc.rst: -------------------------------------------------------------------------------- 1 | orb.apps.auto\_max\_htlcs.update\_max\_htlc module 2 | ================================================== 3 | 4 | .. automodule:: orb.apps.auto_max_htlcs.update_max_htlc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.apps.auto_rebalance.autobalance.rst: -------------------------------------------------------------------------------- 1 | orb.apps.auto\_rebalance.autobalance module 2 | =========================================== 3 | 4 | .. automodule:: orb.apps.auto_rebalance.autobalance 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.apps.auto_rebalance.rst: -------------------------------------------------------------------------------- 1 | orb.apps.auto\_rebalance package 2 | ================================ 3 | 4 | .. automodule:: orb.apps.auto_rebalance 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.apps.auto_rebalance.autobalance 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.apps.rst: -------------------------------------------------------------------------------- 1 | orb.apps package 2 | ================ 3 | 4 | .. automodule:: orb.apps 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Subpackages 10 | ----------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.apps.auto_fees 16 | orb.apps.auto_max_htlcs 17 | orb.apps.auto_rebalance 18 | -------------------------------------------------------------------------------- /docs/source/gen/orb.attribute_editor.attribute_editor.rst: -------------------------------------------------------------------------------- 1 | orb.attribute\_editor.attribute\_editor module 2 | ============================================== 3 | 4 | .. automodule:: orb.attribute_editor.attribute_editor 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.attribute_editor.rst: -------------------------------------------------------------------------------- 1 | orb.attribute\_editor package 2 | ============================= 3 | 4 | .. automodule:: orb.attribute_editor 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.attribute_editor.attribute_editor 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.audio.audio_manager.rst: -------------------------------------------------------------------------------- 1 | orb.audio.audio\_manager module 2 | =============================== 3 | 4 | .. automodule:: orb.audio.audio_manager 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.audio.rst: -------------------------------------------------------------------------------- 1 | orb.audio package 2 | ================= 3 | 4 | .. automodule:: orb.audio 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.audio.audio_manager 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.channels.CN_widget.rst: -------------------------------------------------------------------------------- 1 | orb.channels.CN\_widget module 2 | ============================== 3 | 4 | .. automodule:: orb.channels.CN_widget 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.channels.channel_widget.rst: -------------------------------------------------------------------------------- 1 | orb.channels.channel\_widget module 2 | =================================== 3 | 4 | .. automodule:: orb.channels.channel_widget 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.channels.channels_thread.rst: -------------------------------------------------------------------------------- 1 | orb.channels.channels\_thread module 2 | ==================================== 3 | 4 | .. automodule:: orb.channels.channels_thread 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.channels.channels_widget.rst: -------------------------------------------------------------------------------- 1 | orb.channels.channels\_widget module 2 | ==================================== 3 | 4 | .. automodule:: orb.channels.channels_widget 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.channels.fee_widget.rst: -------------------------------------------------------------------------------- 1 | orb.channels.fee\_widget module 2 | =============================== 3 | 4 | .. automodule:: orb.channels.fee_widget 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.channels.rst: -------------------------------------------------------------------------------- 1 | orb.channels package 2 | ==================== 3 | 4 | .. automodule:: orb.channels 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.channels.CN_widget 16 | orb.channels.channel_widget 17 | orb.channels.channels_thread 18 | orb.channels.channels_widget 19 | orb.channels.fee_widget 20 | orb.channels.segment 21 | -------------------------------------------------------------------------------- /docs/source/gen/orb.channels.segment.rst: -------------------------------------------------------------------------------- 1 | orb.channels.segment module 2 | =========================== 3 | 4 | .. automodule:: orb.channels.segment 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.chain.rst: -------------------------------------------------------------------------------- 1 | orb.cli.chain module 2 | ==================== 3 | 4 | .. automodule:: orb.cli.chain 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.chalk.rst: -------------------------------------------------------------------------------- 1 | orb.cli.chalk module 2 | ==================== 3 | 4 | .. automodule:: orb.cli.chalk 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.channel.rst: -------------------------------------------------------------------------------- 1 | orb.cli.channel module 2 | ====================== 3 | 4 | .. automodule:: orb.cli.channel 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.console.rst: -------------------------------------------------------------------------------- 1 | orb.cli.console module 2 | ====================== 3 | 4 | .. automodule:: orb.cli.console 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.faborb.rst: -------------------------------------------------------------------------------- 1 | orb.cli.faborb module 2 | ===================== 3 | 4 | .. automodule:: orb.cli.faborb 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.invoice.rst: -------------------------------------------------------------------------------- 1 | orb.cli.invoice module 2 | ====================== 3 | 4 | .. automodule:: orb.cli.invoice 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.misc.rst: -------------------------------------------------------------------------------- 1 | orb.cli.misc module 2 | =================== 3 | 4 | .. automodule:: orb.cli.misc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.network.rst: -------------------------------------------------------------------------------- 1 | orb.cli.network module 2 | ====================== 3 | 4 | .. automodule:: orb.cli.network 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.node.rst: -------------------------------------------------------------------------------- 1 | orb.cli.node module 2 | =================== 3 | 4 | .. automodule:: orb.cli.node 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.pay.rst: -------------------------------------------------------------------------------- 1 | orb.cli.pay module 2 | ================== 3 | 4 | .. automodule:: orb.cli.pay 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.peer.rst: -------------------------------------------------------------------------------- 1 | orb.cli.peer module 2 | =================== 3 | 4 | .. automodule:: orb.cli.peer 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.rebalance.rst: -------------------------------------------------------------------------------- 1 | orb.cli.rebalance module 2 | ======================== 3 | 4 | .. automodule:: orb.cli.rebalance 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.rst: -------------------------------------------------------------------------------- 1 | orb.cli package 2 | =============== 3 | 4 | .. automodule:: orb.cli 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.cli.chain 16 | orb.cli.chalk 17 | orb.cli.channel 18 | orb.cli.console 19 | orb.cli.invoice 20 | orb.cli.network 21 | orb.cli.node 22 | orb.cli.pay 23 | orb.cli.peer 24 | orb.cli.test 25 | orb.cli.utils 26 | orb.cli.web 27 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.test.rst: -------------------------------------------------------------------------------- 1 | orb.cli.test module 2 | =================== 3 | 4 | .. automodule:: orb.cli.test 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.utils.rst: -------------------------------------------------------------------------------- 1 | orb.cli.utils module 2 | ==================== 3 | 4 | .. automodule:: orb.cli.utils 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cli.web.rst: -------------------------------------------------------------------------------- 1 | orb.cli.web module 2 | ================== 3 | 4 | .. automodule:: orb.cli.web 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.cln.rst: -------------------------------------------------------------------------------- 1 | orb.cln.cln module 2 | ================== 3 | 4 | .. automodule:: orb.cln.cln 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.cln_base.rst: -------------------------------------------------------------------------------- 1 | orb.cln.cln\_base module 2 | ======================== 3 | 4 | .. automodule:: orb.cln.cln_base 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.cln_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.cln.cln\_grpc module 2 | ======================== 3 | 4 | .. automodule:: orb.cln.cln_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.cln_rest.rst: -------------------------------------------------------------------------------- 1 | orb.cln.cln\_rest module 2 | ======================== 3 | 4 | .. automodule:: orb.cln.cln_rest 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated package 2 | =============================== 3 | 4 | .. automodule:: orb.cln.grpc_generated 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Subpackages 10 | ----------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.cln.grpc_generated.v0_11_0 16 | orb.cln.grpc_generated.v0_11_1 17 | orb.cln.grpc_generated.v0_11_2 18 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_0.node_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_0.node\_pb2 module 2 | ================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_0.node_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_0.node_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_0.node\_pb2\_grpc module 2 | ======================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_0.node_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_0.primitives_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_0.primitives\_pb2 module 2 | ======================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_0.primitives_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_0.primitives_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_0.primitives\_pb2\_grpc module 2 | ============================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_0.primitives_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_0.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_0 package 2 | ========================================= 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_0 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.cln.grpc_generated.v0_11_0.node_pb2 16 | orb.cln.grpc_generated.v0_11_0.node_pb2_grpc 17 | orb.cln.grpc_generated.v0_11_0.primitives_pb2 18 | orb.cln.grpc_generated.v0_11_0.primitives_pb2_grpc 19 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_1.node_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_1.node\_pb2 module 2 | ================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_1.node_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_1.node_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_1.node\_pb2\_grpc module 2 | ======================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_1.node_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_1.primitives_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_1.primitives\_pb2 module 2 | ======================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_1.primitives_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_1.primitives_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_1.primitives\_pb2\_grpc module 2 | ============================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_1.primitives_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_1.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_1 package 2 | ========================================= 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_1 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.cln.grpc_generated.v0_11_1.node_pb2 16 | orb.cln.grpc_generated.v0_11_1.node_pb2_grpc 17 | orb.cln.grpc_generated.v0_11_1.primitives_pb2 18 | orb.cln.grpc_generated.v0_11_1.primitives_pb2_grpc 19 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_2.node_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_2.node\_pb2 module 2 | ================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_2.node_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_2.node_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_2.node\_pb2\_grpc module 2 | ======================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_2.node_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_2.primitives_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_2.primitives\_pb2 module 2 | ======================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_2.primitives_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_2.primitives_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_2.primitives\_pb2\_grpc module 2 | ============================================================== 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_2.primitives_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.grpc_generated.v0_11_2.rst: -------------------------------------------------------------------------------- 1 | orb.cln.grpc\_generated.v0\_11\_2 package 2 | ========================================= 3 | 4 | .. automodule:: orb.cln.grpc_generated.v0_11_2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.cln.grpc_generated.v0_11_2.node_pb2 16 | orb.cln.grpc_generated.v0_11_2.node_pb2_grpc 17 | orb.cln.grpc_generated.v0_11_2.primitives_pb2 18 | orb.cln.grpc_generated.v0_11_2.primitives_pb2_grpc 19 | -------------------------------------------------------------------------------- /docs/source/gen/orb.cln.rst: -------------------------------------------------------------------------------- 1 | orb.cln package 2 | =============== 3 | 4 | .. automodule:: orb.cln 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Subpackages 10 | ----------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.cln.grpc_generated 16 | 17 | Submodules 18 | ---------- 19 | 20 | .. toctree:: 21 | :maxdepth: 4 22 | 23 | orb.cln.cln 24 | orb.cln.cln_base 25 | orb.cln.cln_grpc 26 | orb.cln.cln_rest 27 | -------------------------------------------------------------------------------- /docs/source/gen/orb.components.popup_drop_shadow.rst: -------------------------------------------------------------------------------- 1 | orb.components.popup\_drop\_shadow module 2 | ========================================= 3 | 4 | .. automodule:: orb.components.popup_drop_shadow 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.components.rst: -------------------------------------------------------------------------------- 1 | orb.components package 2 | ====================== 3 | 4 | .. automodule:: orb.components 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.components.popup_drop_shadow 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.connector.orb_connector.rst: -------------------------------------------------------------------------------- 1 | orb.connector.orb\_connector module 2 | =================================== 3 | 4 | .. automodule:: orb.connector.orb_connector 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.connector.orb_connector_app.rst: -------------------------------------------------------------------------------- 1 | orb.connector.orb\_connector\_app module 2 | ======================================== 3 | 4 | .. automodule:: orb.connector.orb_connector_app 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.connector.orb_connector_main.rst: -------------------------------------------------------------------------------- 1 | orb.connector.orb\_connector\_main module 2 | ========================================= 3 | 4 | .. automodule:: orb.connector.orb_connector_main 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.connector.rst: -------------------------------------------------------------------------------- 1 | orb.connector package 2 | ===================== 3 | 4 | .. automodule:: orb.connector 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.connector.orb_connector 16 | orb.connector.orb_connector_app 17 | orb.connector.orb_connector_main 18 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core.logging.rst: -------------------------------------------------------------------------------- 1 | orb.core.logging module 2 | ======================= 3 | 4 | .. automodule:: orb.core.logging 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core.orb_logging.rst: -------------------------------------------------------------------------------- 1 | orb.core.orb\_logging module 2 | ============================ 3 | 4 | .. automodule:: orb.core.orb_logging 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core.rst: -------------------------------------------------------------------------------- 1 | orb.core package 2 | ================ 3 | 4 | .. automodule:: orb.core 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.core.orb_logging 16 | orb.core.stoppable_thread 17 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core.stoppable_thread.rst: -------------------------------------------------------------------------------- 1 | orb.core.stoppable\_thread module 2 | ================================= 3 | 4 | .. automodule:: orb.core.stoppable_thread 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core_ui.app_common.rst: -------------------------------------------------------------------------------- 1 | orb.core\_ui.app\_common module 2 | =============================== 3 | 4 | .. automodule:: orb.core_ui.app_common 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core_ui.hidden_imports.rst: -------------------------------------------------------------------------------- 1 | orb.core\_ui.hidden\_imports module 2 | =================================== 3 | 4 | .. automodule:: orb.core_ui.hidden_imports 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core_ui.kvs.rst: -------------------------------------------------------------------------------- 1 | orb.core\_ui.kvs module 2 | ======================= 3 | 4 | .. automodule:: orb.core_ui.kvs 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core_ui.main_layout.rst: -------------------------------------------------------------------------------- 1 | orb.core\_ui.main\_layout module 2 | ================================ 3 | 4 | .. automodule:: orb.core_ui.main_layout 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core_ui.orb_app.rst: -------------------------------------------------------------------------------- 1 | orb.core\_ui.orb\_app module 2 | ============================ 3 | 4 | .. automodule:: orb.core_ui.orb_app 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core_ui.rst: -------------------------------------------------------------------------------- 1 | orb.core\_ui package 2 | ==================== 3 | 4 | .. automodule:: orb.core_ui 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.core_ui.app_common 16 | orb.core_ui.hidden_imports 17 | orb.core_ui.kvs 18 | orb.core_ui.main_layout 19 | orb.core_ui.orb_app 20 | orb.core_ui.screen_manager 21 | orb.core_ui.top_menu 22 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core_ui.screen_manager.rst: -------------------------------------------------------------------------------- 1 | orb.core\_ui.screen\_manager module 2 | =================================== 3 | 4 | .. automodule:: orb.core_ui.screen_manager 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.core_ui.top_menu.rst: -------------------------------------------------------------------------------- 1 | orb.core\_ui.top\_menu module 2 | ============================= 3 | 4 | .. automodule:: orb.core_ui.top_menu 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.app_store.app_details.app_detais.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.app\_store.app\_details.app\_detais module 2 | ====================================================== 3 | 4 | .. automodule:: orb.dialogs.app_store.app_details.app_detais 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.app_store.app_details.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.app\_store.app\_details package 2 | =========================================== 3 | 4 | .. automodule:: orb.dialogs.app_store.app_details 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.app_store.app_details.app_detais 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.app_store.app_store_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.app\_store.app\_store\_dialog module 2 | ================================================ 3 | 4 | .. automodule:: orb.dialogs.app_store.app_store_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.app_store.app_store_login.app_store_login.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.app\_store.app\_store\_login.app\_store\_login module 2 | ================================================================= 3 | 4 | .. automodule:: orb.dialogs.app_store.app_store_login.app_store_login 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.app_store.app_store_login.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.app\_store.app\_store\_login package 2 | ================================================ 3 | 4 | .. automodule:: orb.dialogs.app_store.app_store_login 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.app_store.app_store_login.app_store_login 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.app_store.app_summary.app_summary.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.app\_store.app\_summary.app\_summary module 2 | ======================================================= 3 | 4 | .. automodule:: orb.dialogs.app_store.app_summary.app_summary 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.app_store.app_summary.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.app\_store.app\_summary package 2 | =========================================== 3 | 4 | .. automodule:: orb.dialogs.app_store.app_summary 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.app_store.app_summary.app_summary 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.app_store.tip_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.app\_store.tip\_dialog package 2 | ========================================== 3 | 4 | .. automodule:: orb.dialogs.app_store.tip_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.app_store.tip_dialog.tip_dialog 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.app_store.tip_dialog.tip_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.app\_store.tip\_dialog.tip\_dialog module 2 | ===================================================== 3 | 4 | .. automodule:: orb.dialogs.app_store.tip_dialog.tip_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.close_channel.close_channel.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.close\_channel.close\_channel module 2 | ================================================ 3 | 4 | .. automodule:: orb.dialogs.close_channel.close_channel 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.close_channel.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.close\_channel package 2 | ================================== 3 | 4 | .. automodule:: orb.dialogs.close_channel 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.close_channel.close_channel 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.connection_settings.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.connection\_settings module 2 | ======================================= 3 | 4 | .. automodule:: orb.dialogs.connection_settings 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.connection_wizard.connection_wizard.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.connection\_wizard.connection\_wizard module 2 | ======================================================== 3 | 4 | .. automodule:: orb.dialogs.connection_wizard.connection_wizard 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.connection_wizard.copy_keys.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.connection\_wizard.copy\_keys module 2 | ================================================ 3 | 4 | .. automodule:: orb.dialogs.connection_wizard.copy_keys 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.connection_wizard.lnd_conf.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.connection\_wizard.lnd\_conf module 2 | =============================================== 3 | 4 | .. automodule:: orb.dialogs.connection_wizard.lnd_conf 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.connection_wizard.nodes_and_files.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.connection\_wizard.nodes\_and\_files module 2 | ======================================================= 3 | 4 | .. automodule:: orb.dialogs.connection_wizard.nodes_and_files 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.connection_wizard.restart_lnd.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.connection\_wizard.restart\_lnd module 2 | ================================================== 3 | 4 | .. automodule:: orb.dialogs.connection_wizard.restart_lnd 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.connection_wizard.ssh_credentials.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.connection\_wizard.ssh\_credentials module 2 | ====================================================== 3 | 4 | .. automodule:: orb.dialogs.connection_wizard.ssh_credentials 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.connection_wizard.tab.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.connection\_wizard.tab module 2 | ========================================= 3 | 4 | .. automodule:: orb.dialogs.connection_wizard.tab 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.fee_distribution.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.fee\_distribution module 2 | ==================================== 3 | 4 | .. automodule:: orb.dialogs.fee_distribution 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.forwarding_history.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.forwarding\_history module 2 | ====================================== 3 | 4 | .. automodule:: orb.dialogs.forwarding_history 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.generate_invoice.generate_invoice.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.generate\_invoice.generate\_invoice module 2 | ====================================================== 3 | 4 | .. automodule:: orb.dialogs.generate_invoice.generate_invoice 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.generate_invoice.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.generate\_invoice package 2 | ===================================== 3 | 4 | .. automodule:: orb.dialogs.generate_invoice 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.generate_invoice.generate_invoice 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.help_dialog.about.about.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.help\_dialog.about.about module 2 | =========================================== 3 | 4 | .. automodule:: orb.dialogs.help_dialog.about.about 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.help_dialog.about.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.help\_dialog.about package 2 | ====================================== 3 | 4 | .. automodule:: orb.dialogs.help_dialog.about 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.help_dialog.about.about 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.help_dialog.release_notes.release_notes.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.help\_dialog.release\_notes.release\_notes module 2 | ============================================================= 3 | 4 | .. automodule:: orb.dialogs.help_dialog.release_notes.release_notes 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.help_dialog.release_notes.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.help\_dialog.release\_notes package 2 | =============================================== 3 | 4 | .. automodule:: orb.dialogs.help_dialog.release_notes 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.help_dialog.release_notes.release_notes 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.help_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.help\_dialog package 2 | ================================ 3 | 4 | .. automodule:: orb.dialogs.help_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Subpackages 10 | ----------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.help_dialog.about 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.highlighter_dialog.highlighter_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.highlighter\_dialog.highlighter\_dialog module 2 | ========================================================== 3 | 4 | .. automodule:: orb.dialogs.highlighter_dialog.highlighter_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.highlighter_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.highlighter\_dialog package 2 | ======================================= 3 | 4 | .. automodule:: orb.dialogs.highlighter_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.highlighter_dialog.highlighter_dialog 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.ingest_invoices.ingest_invoices.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.ingest\_invoices.ingest\_invoices module 2 | ==================================================== 3 | 4 | .. automodule:: orb.dialogs.ingest_invoices.ingest_invoices 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.ingest_invoices.invoice.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.ingest\_invoices.invoice module 2 | =========================================== 3 | 4 | .. automodule:: orb.dialogs.ingest_invoices.invoice 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.ingest_invoices.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.ingest\_invoices package 2 | ==================================== 3 | 4 | .. automodule:: orb.dialogs.ingest_invoices 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.ingest_invoices.ingest_invoices 16 | orb.dialogs.ingest_invoices.invoice 17 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.mail_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.mail\_dialog module 2 | =============================== 3 | 4 | .. automodule:: orb.dialogs.mail_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.open_channel.open_channel.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.open\_channel.open\_channel module 2 | ============================================== 3 | 4 | .. automodule:: orb.dialogs.open_channel.open_channel 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.open_channel.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.open\_channel package 2 | ================================= 3 | 4 | .. automodule:: orb.dialogs.open_channel 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.open_channel.open_channel 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.pay_dialogs.pay_invoices_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.pay\_dialogs.pay\_invoices\_dialog module 2 | ===================================================== 3 | 4 | .. automodule:: orb.dialogs.pay_dialogs.pay_invoices_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.pay_dialogs.pay_lnurl_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.pay\_dialogs.pay\_lnurl\_dialog module 2 | ================================================== 3 | 4 | .. automodule:: orb.dialogs.pay_dialogs.pay_lnurl_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.pay_dialogs.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.pay\_dialogs package 2 | ================================ 3 | 4 | .. automodule:: orb.dialogs.pay_dialogs 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.pay_dialogs.pay_invoices_dialog 16 | orb.dialogs.pay_dialogs.pay_lnurl_dialog 17 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.player_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.player\_dialog module 2 | ================================= 3 | 4 | .. automodule:: orb.dialogs.player_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.restart_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.restart\_dialog module 2 | ================================== 3 | 4 | .. automodule:: orb.dialogs.restart_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.swap_dialogs.deezy.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.swap\_dialogs.deezy module 2 | ====================================== 3 | 4 | .. automodule:: orb.dialogs.swap_dialogs.deezy 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.swap_dialogs.deezy_swap.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.swap\_dialogs.deezy\_swap module 2 | ============================================ 3 | 4 | .. automodule:: orb.dialogs.swap_dialogs.deezy_swap 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.swap_dialogs.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.swap\_dialogs package 2 | ================================= 3 | 4 | .. automodule:: orb.dialogs.swap_dialogs 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.swap_dialogs.deezy_swap 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.umbrel_node.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.umbrel\_node package 2 | ================================ 3 | 4 | .. automodule:: orb.dialogs.umbrel_node 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.umbrel_node.umbrel_node 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.umbrel_node.umbrel_node.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.umbrel\_node.umbrel\_node module 2 | ============================================ 3 | 4 | .. automodule:: orb.dialogs.umbrel_node.umbrel_node 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.upload_app.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.upload\_app package 2 | =============================== 3 | 4 | .. automodule:: orb.dialogs.upload_app 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.upload_app.upload_app_dialog 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.upload_app.upload_app_dialog.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.upload\_app.upload\_app\_dialog module 2 | ================================================== 3 | 4 | .. automodule:: orb.dialogs.upload_app.upload_app_dialog 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.voltage_node.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.voltage\_node package 2 | ================================= 3 | 4 | .. automodule:: orb.dialogs.voltage_node 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.dialogs.voltage_node.voltage_node 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.dialogs.voltage_node.voltage_node.rst: -------------------------------------------------------------------------------- 1 | orb.dialogs.voltage\_node.voltage\_node module 2 | ============================================== 3 | 4 | .. automodule:: orb.dialogs.voltage_node.voltage_node 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.kvs.rst: -------------------------------------------------------------------------------- 1 | orb.kvs module 2 | ============== 3 | 4 | .. automodule:: orb.kvs 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.ln.ln.rst: -------------------------------------------------------------------------------- 1 | orb.ln.ln module 2 | ================ 3 | 4 | .. automodule:: orb.ln.ln 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.ln.rst: -------------------------------------------------------------------------------- 1 | orb.ln package 2 | ============== 3 | 4 | .. automodule:: orb.ln 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.ln.ln 16 | orb.ln.types 17 | -------------------------------------------------------------------------------- /docs/source/gen/orb.ln.types.rst: -------------------------------------------------------------------------------- 1 | orb.ln.types module 2 | =================== 3 | 4 | .. automodule:: orb.ln.types 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.autopilot_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.autopilot\_pb2 module 2 | ============================================= 3 | 4 | .. automodule:: orb.lnd.grpc_generated.autopilot_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.autopilot_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.autopilot\_pb2\_grpc module 2 | =================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.autopilot_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.invoices_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.invoices\_pb2 module 2 | ============================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.invoices_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.invoices_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.invoices\_pb2\_grpc module 2 | ================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.invoices_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.lightning_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.lightning\_pb2 module 2 | ============================================= 3 | 4 | .. automodule:: orb.lnd.grpc_generated.lightning_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.lightning_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.lightning\_pb2\_grpc module 2 | =================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.lightning_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.router_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.router\_pb2 module 2 | ========================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.router_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.router_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.router\_pb2\_grpc module 2 | ================================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.router_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated package 2 | =============================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Subpackages 10 | ----------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.lnd.grpc_generated.v0_14_0_beta 16 | orb.lnd.grpc_generated.v0_14_1_beta 17 | orb.lnd.grpc_generated.v0_14_2_beta 18 | orb.lnd.grpc_generated.v0_14_3_beta 19 | orb.lnd.grpc_generated.v0_15_0_beta 20 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_0_beta.invoices_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_0\_beta.invoices\_pb2 module 2 | ============================================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_0_beta.invoices_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_0_beta.invoices_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_0\_beta.invoices\_pb2\_grpc module 2 | ================================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_0_beta.invoices_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_0_beta.lightning_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_0\_beta.lightning\_pb2 module 2 | ============================================================= 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_0_beta.lightning_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_0_beta.lightning_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_0\_beta.lightning\_pb2\_grpc module 2 | =================================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_0_beta.lightning_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_0_beta.router_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_0\_beta.router\_pb2 module 2 | ========================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_0_beta.router_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_0_beta.router_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_0\_beta.router\_pb2\_grpc module 2 | ================================================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_0_beta.router_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_1_beta.invoices_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_1\_beta.invoices\_pb2 module 2 | ============================================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_1_beta.invoices_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_1_beta.invoices_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_1\_beta.invoices\_pb2\_grpc module 2 | ================================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_1_beta.invoices_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_1_beta.lightning_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_1\_beta.lightning\_pb2 module 2 | ============================================================= 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_1_beta.lightning_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_1_beta.lightning_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_1\_beta.lightning\_pb2\_grpc module 2 | =================================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_1_beta.lightning_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_1_beta.router_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_1\_beta.router\_pb2 module 2 | ========================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_1_beta.router_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_1_beta.router_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_1\_beta.router\_pb2\_grpc module 2 | ================================================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_1_beta.router_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_2_beta.invoices_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_2\_beta.invoices\_pb2 module 2 | ============================================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_2_beta.invoices_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_2_beta.invoices_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_2\_beta.invoices\_pb2\_grpc module 2 | ================================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_2_beta.invoices_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_2_beta.lightning_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_2\_beta.lightning\_pb2 module 2 | ============================================================= 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_2_beta.lightning_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_2_beta.lightning_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_2\_beta.lightning\_pb2\_grpc module 2 | =================================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_2_beta.lightning_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_2_beta.router_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_2\_beta.router\_pb2 module 2 | ========================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_2_beta.router_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_2_beta.router_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_2\_beta.router\_pb2\_grpc module 2 | ================================================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_2_beta.router_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_3_beta.invoices_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_3\_beta.invoices\_pb2 module 2 | ============================================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_3_beta.invoices_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_3_beta.invoices_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_3\_beta.invoices\_pb2\_grpc module 2 | ================================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_3_beta.invoices_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_3_beta.lightning_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_3\_beta.lightning\_pb2 module 2 | ============================================================= 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_3_beta.lightning_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_3_beta.lightning_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_3\_beta.lightning\_pb2\_grpc module 2 | =================================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_3_beta.lightning_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_3_beta.router_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_3\_beta.router\_pb2 module 2 | ========================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_3_beta.router_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_14_3_beta.router_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_14\_3\_beta.router\_pb2\_grpc module 2 | ================================================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_14_3_beta.router_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_15_0_beta.invoices_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_15\_0\_beta.invoices\_pb2 module 2 | ============================================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_15_0_beta.invoices_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_15_0_beta.invoices_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_15\_0\_beta.invoices\_pb2\_grpc module 2 | ================================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_15_0_beta.invoices_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_15_0_beta.lightning_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_15\_0\_beta.lightning\_pb2 module 2 | ============================================================= 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_15_0_beta.lightning_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_15_0_beta.lightning_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_15\_0\_beta.lightning\_pb2\_grpc module 2 | =================================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_15_0_beta.lightning_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_15_0_beta.router_pb2.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_15\_0\_beta.router\_pb2 module 2 | ========================================================== 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_15_0_beta.router_pb2 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.grpc_generated.v0_15_0_beta.router_pb2_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.grpc\_generated.v0\_15\_0\_beta.router\_pb2\_grpc module 2 | ================================================================ 3 | 4 | .. automodule:: orb.lnd.grpc_generated.v0_15_0_beta.router_pb2_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.lnd.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.lnd module 2 | ================== 3 | 4 | .. automodule:: orb.lnd.lnd 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.lnd_base.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.lnd\_base module 2 | ======================== 3 | 4 | .. automodule:: orb.lnd.lnd_base 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.lnd_conf.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.lnd\_conf module 2 | ======================== 3 | 4 | .. automodule:: orb.lnd.lnd_conf 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.lnd_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.lnd\_grpc module 2 | ======================== 3 | 4 | .. automodule:: orb.lnd.lnd_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.lnd_mock.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.lnd\_mock module 2 | ======================== 3 | 4 | .. automodule:: orb.lnd.lnd_mock 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.lnd_rest.rst: -------------------------------------------------------------------------------- 1 | orb.lnd.lnd\_rest module 2 | ======================== 3 | 4 | .. automodule:: orb.lnd.lnd_rest 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.lnd.rst: -------------------------------------------------------------------------------- 1 | orb.lnd package 2 | =============== 3 | 4 | .. automodule:: orb.lnd 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Subpackages 10 | ----------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.lnd.grpc_generated 16 | 17 | Submodules 18 | ---------- 19 | 20 | .. toctree:: 21 | :maxdepth: 4 22 | 23 | orb.lnd.lnd 24 | orb.lnd.lnd_base 25 | orb.lnd.lnd_conf 26 | orb.lnd.lnd_grpc 27 | orb.lnd.lnd_mock 28 | orb.lnd.lnd_rest 29 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.app_store.rst: -------------------------------------------------------------------------------- 1 | orb.logic.app\_store module 2 | =========================== 3 | 4 | .. automodule:: orb.logic.app_store 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.app_store_api.rst: -------------------------------------------------------------------------------- 1 | orb.logic.app\_store\_api module 2 | ================================ 3 | 4 | .. automodule:: orb.logic.app_store_api 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.app_store_authenticate.rst: -------------------------------------------------------------------------------- 1 | orb.logic.app\_store\_authenticate module 2 | ========================================= 3 | 4 | .. automodule:: orb.logic.app_store_authenticate 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.balance.rst: -------------------------------------------------------------------------------- 1 | orb.logic.balance module 2 | ======================== 3 | 4 | .. automodule:: orb.logic.balance 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.balanced_ratio.rst: -------------------------------------------------------------------------------- 1 | orb.logic.balanced\_ratio module 2 | ================================ 3 | 4 | .. automodule:: orb.logic.balanced_ratio 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.channel_selector.rst: -------------------------------------------------------------------------------- 1 | orb.logic.channel\_selector module 2 | ================================== 3 | 4 | .. automodule:: orb.logic.channel_selector 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.cli_thread_manager.rst: -------------------------------------------------------------------------------- 1 | orb.logic.cli\_thread\_manager module 2 | ===================================== 3 | 4 | .. automodule:: orb.logic.cli_thread_manager 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.cron.rst: -------------------------------------------------------------------------------- 1 | orb.logic.cron module 2 | ===================== 3 | 4 | .. automodule:: orb.logic.cron 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.download_thread.rst: -------------------------------------------------------------------------------- 1 | orb.logic.download\_thread module 2 | ================================= 3 | 4 | .. automodule:: orb.logic.download_thread 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.forwarding_history.rst: -------------------------------------------------------------------------------- 1 | orb.logic.forwarding\_history module 2 | ==================================== 3 | 4 | .. automodule:: orb.logic.forwarding_history 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.gestures_delegate.rst: -------------------------------------------------------------------------------- 1 | orb.logic.gestures\_delegate module 2 | =================================== 3 | 4 | .. automodule:: orb.logic.gestures_delegate 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.htlc.rst: -------------------------------------------------------------------------------- 1 | orb.logic.htlc module 2 | ===================== 3 | 4 | .. automodule:: orb.logic.htlc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.htlc_grpc.rst: -------------------------------------------------------------------------------- 1 | orb.logic.htlc\_grpc module 2 | =========================== 3 | 4 | .. automodule:: orb.logic.htlc_grpc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.htlc_rest.rst: -------------------------------------------------------------------------------- 1 | orb.logic.htlc\_rest module 2 | =========================== 3 | 4 | .. automodule:: orb.logic.htlc_rest 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.htlcs_thread.rst: -------------------------------------------------------------------------------- 1 | orb.logic.htlcs\_thread module 2 | ============================== 3 | 4 | .. automodule:: orb.logic.htlcs_thread 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.invoices_thread.rst: -------------------------------------------------------------------------------- 1 | orb.logic.invoices\_thread module 2 | ================================= 3 | 4 | .. automodule:: orb.logic.invoices_thread 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.licensing.rst: -------------------------------------------------------------------------------- 1 | orb.logic.licensing module 2 | ========================== 3 | 4 | .. automodule:: orb.logic.licensing 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.lnurl.rst: -------------------------------------------------------------------------------- 1 | orb.logic.lnurl module 2 | ====================== 3 | 4 | .. automodule:: orb.logic.lnurl 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.lnurl_invoice_generator.rst: -------------------------------------------------------------------------------- 1 | orb.logic.lnurl\_invoice\_generator module 2 | ========================================== 3 | 4 | .. automodule:: orb.logic.lnurl_invoice_generator 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.normalized_events.rst: -------------------------------------------------------------------------------- 1 | orb.logic.normalized\_events module 2 | =================================== 3 | 4 | .. automodule:: orb.logic.normalized_events 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.pay_invoices.rst: -------------------------------------------------------------------------------- 1 | orb.logic.pay\_invoices module 2 | ============================== 3 | 4 | .. automodule:: orb.logic.pay_invoices 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.pay_logic.rst: -------------------------------------------------------------------------------- 1 | orb.logic.pay\_logic module 2 | =========================== 3 | 4 | .. automodule:: orb.logic.pay_logic 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.payment_history.rst: -------------------------------------------------------------------------------- 1 | orb.logic.payment\_history module 2 | ================================= 3 | 4 | .. automodule:: orb.logic.payment_history 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.pnl.rst: -------------------------------------------------------------------------------- 1 | orb.logic.pnl module 2 | ==================== 3 | 4 | .. automodule:: orb.logic.pnl 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.rebalance_thread.rst: -------------------------------------------------------------------------------- 1 | orb.logic.rebalance\_thread module 2 | ================================== 3 | 4 | .. automodule:: orb.logic.rebalance_thread 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.routes.rst: -------------------------------------------------------------------------------- 1 | orb.logic.routes module 2 | ======================= 3 | 4 | .. automodule:: orb.logic.routes 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.thread_manager.rst: -------------------------------------------------------------------------------- 1 | orb.logic.thread\_manager module 2 | ================================ 3 | 4 | .. automodule:: orb.logic.thread_manager 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.logic.upload_app.rst: -------------------------------------------------------------------------------- 1 | orb.logic.upload\_app module 2 | ============================ 3 | 4 | .. automodule:: orb.logic.upload_app 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.math.Vector.rst: -------------------------------------------------------------------------------- 1 | orb.math.Vector module 2 | ====================== 3 | 4 | .. automodule:: orb.math.Vector 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.math.lerp.rst: -------------------------------------------------------------------------------- 1 | orb.math.lerp module 2 | ==================== 3 | 4 | .. automodule:: orb.math.lerp 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.math.normal_distribution.rst: -------------------------------------------------------------------------------- 1 | orb.math.normal\_distribution module 2 | ==================================== 3 | 4 | .. automodule:: orb.math.normal_distribution 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.math.rst: -------------------------------------------------------------------------------- 1 | orb.math package 2 | ================ 3 | 4 | .. automodule:: orb.math 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.math.Vector 16 | orb.math.lerp 17 | orb.math.normal_distribution 18 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.auto_obj.rst: -------------------------------------------------------------------------------- 1 | orb.misc.auto\_obj module 2 | ========================= 3 | 4 | .. automodule:: orb.misc.auto_obj 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.certificate.rst: -------------------------------------------------------------------------------- 1 | orb.misc.certificate module 2 | =========================== 3 | 4 | .. automodule:: orb.misc.certificate 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.certificate_secure.rst: -------------------------------------------------------------------------------- 1 | orb.misc.certificate\_secure module 2 | =================================== 3 | 4 | .. automodule:: orb.misc.certificate_secure 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.channel.rst: -------------------------------------------------------------------------------- 1 | orb.misc.channel module 2 | ======================= 3 | 4 | .. automodule:: orb.misc.channel 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.channels.rst: -------------------------------------------------------------------------------- 1 | orb.misc.channels module 2 | ======================== 3 | 4 | .. automodule:: orb.misc.channels 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.colors.rst: -------------------------------------------------------------------------------- 1 | orb.misc.colors module 2 | ====================== 3 | 4 | .. automodule:: orb.misc.colors 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.conf_defaults.rst: -------------------------------------------------------------------------------- 1 | orb.misc.conf\_defaults module 2 | ============================== 3 | 4 | .. automodule:: orb.misc.conf_defaults 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.decorators.rst: -------------------------------------------------------------------------------- 1 | orb.misc.decorators module 2 | ========================== 3 | 4 | .. automodule:: orb.misc.decorators 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.decrypt.rst: -------------------------------------------------------------------------------- 1 | orb.misc.decrypt module 2 | ======================= 3 | 4 | .. automodule:: orb.misc.decrypt 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.device_id.rst: -------------------------------------------------------------------------------- 1 | orb.misc.device\_id module 2 | ========================== 3 | 4 | .. automodule:: orb.misc.device_id 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.enums.rst: -------------------------------------------------------------------------------- 1 | orb.misc.enums module 2 | ===================== 3 | 4 | .. automodule:: orb.misc.enums 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.fab_factory.rst: -------------------------------------------------------------------------------- 1 | orb.misc.fab\_factory module 2 | ============================ 3 | 4 | .. automodule:: orb.misc.fab_factory 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.forex.rst: -------------------------------------------------------------------------------- 1 | orb.misc.forex module 2 | ===================== 3 | 4 | .. automodule:: orb.misc.forex 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.get_platform_name.rst: -------------------------------------------------------------------------------- 1 | orb.misc.get\_platform\_name module 2 | =================================== 3 | 4 | .. automodule:: orb.misc.get_platform_name 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.lndconnect_url.rst: -------------------------------------------------------------------------------- 1 | orb.misc.lndconnect\_url module 2 | =============================== 3 | 4 | .. automodule:: orb.misc.lndconnect_url 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.macaroon.rst: -------------------------------------------------------------------------------- 1 | orb.misc.macaroon module 2 | ======================== 3 | 4 | .. automodule:: orb.misc.macaroon 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.macaroon_secure.rst: -------------------------------------------------------------------------------- 1 | orb.misc.macaroon\_secure module 2 | ================================ 3 | 4 | .. automodule:: orb.misc.macaroon_secure 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.memory_debugger.rst: -------------------------------------------------------------------------------- 1 | orb.misc.memory\_debugger module 2 | ================================ 3 | 4 | .. automodule:: orb.misc.memory_debugger 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.mempool.rst: -------------------------------------------------------------------------------- 1 | orb.misc.mempool module 2 | ======================= 3 | 4 | .. automodule:: orb.misc.mempool 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.monkey_patch.rst: -------------------------------------------------------------------------------- 1 | orb.misc.monkey\_patch module 2 | ============================= 3 | 4 | .. automodule:: orb.misc.monkey_patch 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.output.rst: -------------------------------------------------------------------------------- 1 | orb.misc.output module 2 | ====================== 3 | 4 | .. automodule:: orb.misc.output 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.patch_rand_bits.rst: -------------------------------------------------------------------------------- 1 | orb.misc.patch\_rand\_bits module 2 | ================================= 3 | 4 | .. automodule:: orb.misc.patch_rand_bits 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.plugin.rst: -------------------------------------------------------------------------------- 1 | orb.misc.plugin module 2 | ====================== 3 | 4 | .. automodule:: orb.misc.plugin 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.prefs.rst: -------------------------------------------------------------------------------- 1 | orb.misc.prefs module 2 | ===================== 3 | 4 | .. automodule:: orb.misc.prefs 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.sec.rst: -------------------------------------------------------------------------------- 1 | orb.misc.sec module 2 | =================== 3 | 4 | .. automodule:: orb.misc.sec 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.sec_rsa.rst: -------------------------------------------------------------------------------- 1 | orb.misc.sec\_rsa module 2 | ======================== 3 | 4 | .. automodule:: orb.misc.sec_rsa 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.sec_rsa_plain.rst: -------------------------------------------------------------------------------- 1 | orb.misc.sec\_rsa\_plain module 2 | =============================== 3 | 4 | .. automodule:: orb.misc.sec_rsa_plain 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.stoppable_thread.rst: -------------------------------------------------------------------------------- 1 | orb.misc.stoppable\_thread module 2 | ================================= 3 | 4 | .. automodule:: orb.misc.stoppable_thread 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.ui_actions.rst: -------------------------------------------------------------------------------- 1 | orb.misc.ui\_actions module 2 | =========================== 3 | 4 | .. automodule:: orb.misc.ui_actions 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.utils.rst: -------------------------------------------------------------------------------- 1 | orb.misc.utils module 2 | ===================== 3 | 4 | .. automodule:: orb.misc.utils 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.misc.utils_no_kivy.rst: -------------------------------------------------------------------------------- 1 | orb.misc.utils\_no\_kivy module 2 | =============================== 3 | 4 | .. automodule:: orb.misc.utils_no_kivy 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.orb_main.rst: -------------------------------------------------------------------------------- 1 | orb.orb\_main module 2 | ==================== 3 | 4 | .. automodule:: orb.orb_main 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.about.rst: -------------------------------------------------------------------------------- 1 | orb.screens.about module 2 | ======================== 3 | 4 | .. automodule:: orb.screens.about 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.batch_open_screen.rst: -------------------------------------------------------------------------------- 1 | orb.screens.batch\_open\_screen module 2 | ====================================== 3 | 4 | .. automodule:: orb.screens.batch_open_screen 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.channels_screen.rst: -------------------------------------------------------------------------------- 1 | orb.screens.channels\_screen module 2 | =================================== 3 | 4 | .. automodule:: orb.screens.channels_screen 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.close_channel.rst: -------------------------------------------------------------------------------- 1 | orb.screens.close\_channel module 2 | ================================= 3 | 4 | .. automodule:: orb.screens.close_channel 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.connect_screen.rst: -------------------------------------------------------------------------------- 1 | orb.screens.connect\_screen module 2 | ================================== 3 | 4 | .. automodule:: orb.screens.connect_screen 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.console.console_input.rst: -------------------------------------------------------------------------------- 1 | orb.screens.console.console\_input module 2 | ========================================= 3 | 4 | .. automodule:: orb.screens.console.console_input 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.console.console_output.rst: -------------------------------------------------------------------------------- 1 | orb.screens.console.console\_output module 2 | ========================================== 3 | 4 | .. automodule:: orb.screens.console.console_output 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.console.console_screen.rst: -------------------------------------------------------------------------------- 1 | orb.screens.console.console\_screen module 2 | ========================================== 3 | 4 | .. automodule:: orb.screens.console.console_screen 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.console.console_splitter.rst: -------------------------------------------------------------------------------- 1 | orb.screens.console.console\_splitter module 2 | ============================================ 3 | 4 | .. automodule:: orb.screens.console.console_splitter 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.console.rst: -------------------------------------------------------------------------------- 1 | orb.screens.console package 2 | =========================== 3 | 4 | .. automodule:: orb.screens.console 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.screens.console.console_input 16 | orb.screens.console.console_output 17 | orb.screens.console.console_screen 18 | orb.screens.console.console_splitter 19 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.export_connection_settings.rst: -------------------------------------------------------------------------------- 1 | orb.screens.export\_connection\_settings module 2 | =============================================== 3 | 4 | .. automodule:: orb.screens.export_connection_settings 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.import_connection_settings.rst: -------------------------------------------------------------------------------- 1 | orb.screens.import\_connection\_settings module 2 | =============================================== 3 | 4 | .. automodule:: orb.screens.import_connection_settings 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.ingest_invoices_screen.rst: -------------------------------------------------------------------------------- 1 | orb.screens.ingest\_invoices\_screen module 2 | =========================================== 3 | 4 | .. automodule:: orb.screens.ingest_invoices_screen 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.new_address_screen.rst: -------------------------------------------------------------------------------- 1 | orb.screens.new\_address\_screen module 2 | ======================================= 3 | 4 | .. automodule:: orb.screens.new_address_screen 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.open_channel_screen.rst: -------------------------------------------------------------------------------- 1 | orb.screens.open\_channel\_screen module 2 | ======================================== 3 | 4 | .. automodule:: orb.screens.open_channel_screen 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.pay_screen.rst: -------------------------------------------------------------------------------- 1 | orb.screens.pay\_screen module 2 | ============================== 3 | 4 | .. automodule:: orb.screens.pay_screen 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.rankings.rst: -------------------------------------------------------------------------------- 1 | orb.screens.rankings module 2 | =========================== 3 | 4 | .. automodule:: orb.screens.rankings 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.rebalance.rst: -------------------------------------------------------------------------------- 1 | orb.screens.rebalance module 2 | ============================ 3 | 4 | .. automodule:: orb.screens.rebalance 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.screens.send_coins.rst: -------------------------------------------------------------------------------- 1 | orb.screens.send\_coins module 2 | ============================== 3 | 4 | .. automodule:: orb.screens.send_coins 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.scripts.fee_spy.rst: -------------------------------------------------------------------------------- 1 | orb.scripts.fee\_spy module 2 | =========================== 3 | 4 | .. automodule:: orb.scripts.fee_spy 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.scripts.prep_user_scripts.rst: -------------------------------------------------------------------------------- 1 | orb.scripts.prep\_user\_scripts module 2 | ====================================== 3 | 4 | .. automodule:: orb.scripts.prep_user_scripts 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.scripts.rst: -------------------------------------------------------------------------------- 1 | orb.scripts package 2 | =================== 3 | 4 | .. automodule:: orb.scripts 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.scripts.fee_spy 16 | orb.scripts.prep_user_scripts 17 | orb.scripts.test_connection 18 | -------------------------------------------------------------------------------- /docs/source/gen/orb.scripts.test_connection.rst: -------------------------------------------------------------------------------- 1 | orb.scripts.test\_connection module 2 | =================================== 3 | 4 | .. automodule:: orb.scripts.test_connection 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.status_line.rst: -------------------------------------------------------------------------------- 1 | orb.status\_line package 2 | ======================== 3 | 4 | .. automodule:: orb.status_line 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.status_line.status_line 16 | -------------------------------------------------------------------------------- /docs/source/gen/orb.status_line.status_line.rst: -------------------------------------------------------------------------------- 1 | orb.status\_line.status\_line module 2 | ==================================== 3 | 4 | .. automodule:: orb.status_line.status_line 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.store.db_cache.rst: -------------------------------------------------------------------------------- 1 | orb.store.db\_cache module 2 | ========================== 3 | 4 | .. automodule:: orb.store.db_cache 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.store.db_create_tables.rst: -------------------------------------------------------------------------------- 1 | orb.store.db\_create\_tables module 2 | =================================== 3 | 4 | .. automodule:: orb.store.db_create_tables 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.store.db_meta.rst: -------------------------------------------------------------------------------- 1 | orb.store.db\_meta module 2 | ========================= 3 | 4 | .. automodule:: orb.store.db_meta 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.store.model.rst: -------------------------------------------------------------------------------- 1 | orb.store.model module 2 | ====================== 3 | 4 | .. automodule:: orb.store.model 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.store.node_rank.rst: -------------------------------------------------------------------------------- 1 | orb.store.node\_rank module 2 | =========================== 3 | 4 | .. automodule:: orb.store.node_rank 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.store.rst: -------------------------------------------------------------------------------- 1 | orb.store package 2 | ================= 3 | 4 | .. automodule:: orb.store 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.store.db_cache 16 | orb.store.db_create_tables 17 | orb.store.db_meta 18 | orb.store.model 19 | orb.store.node_rank 20 | -------------------------------------------------------------------------------- /docs/source/gen/orb.store.scripts.rst: -------------------------------------------------------------------------------- 1 | orb.store.scripts module 2 | ======================== 3 | 4 | .. automodule:: orb.store.scripts 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.store.video_library.rst: -------------------------------------------------------------------------------- 1 | orb.store.video\_library module 2 | =============================== 3 | 4 | .. automodule:: orb.store.video_library 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.widgets.chord_widget.rst: -------------------------------------------------------------------------------- 1 | orb.widgets.chord\_widget module 2 | ================================ 3 | 4 | .. automodule:: orb.widgets.chord_widget 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.widgets.gestures_overlay.rst: -------------------------------------------------------------------------------- 1 | orb.widgets.gestures\_overlay module 2 | ==================================== 3 | 4 | .. automodule:: orb.widgets.gestures_overlay 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.widgets.hud.HUD.rst: -------------------------------------------------------------------------------- 1 | orb.widgets.hud.HUD module 2 | ========================== 3 | 4 | .. automodule:: orb.widgets.hud.HUD 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.widgets.hud.HUDS.rst: -------------------------------------------------------------------------------- 1 | orb.widgets.hud.HUDS module 2 | =========================== 3 | 4 | .. automodule:: orb.widgets.hud.HUDS 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.widgets.hud.hud_common.rst: -------------------------------------------------------------------------------- 1 | orb.widgets.hud.hud\_common module 2 | ================================== 3 | 4 | .. automodule:: orb.widgets.hud.hud_common 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.widgets.hud.rst: -------------------------------------------------------------------------------- 1 | orb.widgets.hud package 2 | ======================= 3 | 4 | .. automodule:: orb.widgets.hud 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Submodules 10 | ---------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.widgets.hud.HUD 16 | orb.widgets.hud.HUDS 17 | orb.widgets.hud.hud_common 18 | -------------------------------------------------------------------------------- /docs/source/gen/orb.widgets.node.rst: -------------------------------------------------------------------------------- 1 | orb.widgets.node module 2 | ======================= 3 | 4 | .. automodule:: orb.widgets.node 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/gen/orb.widgets.rst: -------------------------------------------------------------------------------- 1 | orb.widgets package 2 | =================== 3 | 4 | .. automodule:: orb.widgets 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | 9 | Subpackages 10 | ----------- 11 | 12 | .. toctree:: 13 | :maxdepth: 4 14 | 15 | orb.widgets.hud 16 | 17 | Submodules 18 | ---------- 19 | 20 | .. toctree:: 21 | :maxdepth: 4 22 | 23 | orb.widgets.chord_widget 24 | orb.widgets.gestures_overlay 25 | orb.widgets.node 26 | orb.widgets.sent_received_widget 27 | -------------------------------------------------------------------------------- /docs/source/gen/orb.widgets.sent_received_widget.rst: -------------------------------------------------------------------------------- 1 | orb.widgets.sent\_received\_widget module 2 | ========================================= 3 | 4 | .. automodule:: orb.widgets.sent_received_widget 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/ingest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/ingest.png -------------------------------------------------------------------------------- /docs/source/installing_windows.rst: -------------------------------------------------------------------------------- 1 | Windows 2 | ------- 3 | 4 | On Windows, after downloading Orb: 5 | 6 | - unzip the downloaded zip file 7 | - open the `lnorb` folder 8 | - you are then free to save the `lnorb` folder wherever 9 | - e.g in your `program files` directory, and create appropriate launch shortcuts 10 | - run lnorb.exe 11 | 12 | -------------------------------------------------------------------------------- /docs/source/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/main.png -------------------------------------------------------------------------------- /docs/source/misc/index.rst: -------------------------------------------------------------------------------- 1 | Misc 2 | ==== 3 | 4 | This section contains miscellaneous topics that don't fit into any of the other sections. 5 | 6 | 7 | 8 | .. toctree:: 9 | :maxdepth: 2 10 | 11 | lnd_live_debugging 12 | 13 | -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- 1 | orb 2 | === 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | orb 8 | -------------------------------------------------------------------------------- /docs/source/open_channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/open_channel.png -------------------------------------------------------------------------------- /docs/source/open_channel.rst: -------------------------------------------------------------------------------- 1 | Open Channel 2 | ============ 3 | 4 | .. image:: open_channel.png 5 | :align: center 6 | :scale: 80% 7 | 8 | This dialog enables opening a channel with a peer. 9 | 10 | Pubkey 11 | ------ 12 | 13 | The Pubkey of the peer one wishes to connect to. 14 | 15 | Sats 16 | ---- 17 | 18 | The ``local balance`` of the channel, denominated in Satoshis. 19 | 20 | Sats per v/byte 21 | --------------- 22 | 23 | The number of Satoshis per v/byte for the open operation. An appropriate value can be selected by refering to the Mempool HUD. 24 | -------------------------------------------------------------------------------- /docs/source/pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/pay.png -------------------------------------------------------------------------------- /docs/source/rankings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/rankings.png -------------------------------------------------------------------------------- /docs/source/rebalance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/rebalance.png -------------------------------------------------------------------------------- /docs/source/script_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/script_editor.png -------------------------------------------------------------------------------- /docs/source/sent_received.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/sent_received.png -------------------------------------------------------------------------------- /docs/source/single_channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/single_channel.png -------------------------------------------------------------------------------- /docs/source/total_routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/docs/source/total_routing.png -------------------------------------------------------------------------------- /images/bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/images/bg.jpeg -------------------------------------------------------------------------------- /images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/images/bg.png -------------------------------------------------------------------------------- /images/bg_big.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/images/bg_big.jpeg -------------------------------------------------------------------------------- /images/bg_big_square.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/images/bg_big_square.jpeg -------------------------------------------------------------------------------- /images/ln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/images/ln.png -------------------------------------------------------------------------------- /images/orb-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/images/orb-128x128.png -------------------------------------------------------------------------------- /images/orb-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/images/orb-16x16.png -------------------------------------------------------------------------------- /images/orb-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/images/orb-256x256.png -------------------------------------------------------------------------------- /images/orb-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/images/orb-32x32.png -------------------------------------------------------------------------------- /images/orb-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/images/orb-48x48.png -------------------------------------------------------------------------------- /local_recipes/README.md: -------------------------------------------------------------------------------- 1 | These are buildozer (python-for-android) recipies that are either ours or overridden from the pool of existing python-for-android recipes. -------------------------------------------------------------------------------- /local_recipes/sqlite3/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir)/.. 2 | 3 | include $(CLEAR_VARS) 4 | 5 | LOCAL_SRC_FILES := sqlite3.c 6 | 7 | LOCAL_MODULE := sqlite3 8 | 9 | LOCAL_CFLAGS := -DSQLITE_ENABLE_FTS4 -D_FILE_OFFSET_BITS=32 10 | 11 | include $(BUILD_SHARED_LIBRARY) -------------------------------------------------------------------------------- /orb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/__init__.py -------------------------------------------------------------------------------- /orb/app/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-08-08 20:31:24 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-08 20:31:42 6 | 7 | from orb.app.app import * 8 | -------------------------------------------------------------------------------- /orb/apps/README.md: -------------------------------------------------------------------------------- 1 | These are the app store apps, not the apps that come installed by default. 2 | 3 | You can also check out: 4 | 5 | - The [auto-rebalancer app](../orb/apps/auto_rebalance) 6 | - The [auto-fees app](../orb/apps/auto_fees) 7 | - The [auto max htlcs app](../orb/apps/auto_max_htlcs) 8 | 9 | Please note a lot of these apps were written before CLN support. Therefor they may be written using the LND API rather than the Orb API that supports both CLN and LND. 10 | 11 | Related docs: https://lnorb.com/docs/extending.html#apps-folder -------------------------------------------------------------------------------- /orb/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/__init__.py -------------------------------------------------------------------------------- /orb/apps/alias_and_pubkey/alias_and_pubkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/alias_and_pubkey/alias_and_pubkey.png -------------------------------------------------------------------------------- /orb/apps/alias_and_pubkey/appinfo.yaml: -------------------------------------------------------------------------------- 1 | menu: node > alias and pubkey 2 | name: Alias and Pubkey 3 | description: Simple app that displays the node's alias and pubkey 4 | author: 02234cf94dd9a4b76cb4767bf3da03b046c299307063b17c9c2e1886829df6a23a 5 | uuid: alias_and_pubkey 6 | icon: alias_and_pubkey.png -------------------------------------------------------------------------------- /orb/apps/auto_fees/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/auto_fees/__init__.py -------------------------------------------------------------------------------- /orb/apps/auto_fees/appinfo.yaml: -------------------------------------------------------------------------------- 1 | name: Auto Fees 2 | description: App that automatically adjusts fees 3 | author: 02234cf94dd9a4b76cb4767bf3da03b046c299307063b17c9c2e1886829df6a23a 4 | uuid: auto_fees 5 | menu: auto > fees 6 | icon: autofees.png 7 | main: autofees.py -------------------------------------------------------------------------------- /orb/apps/auto_fees/autofees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/auto_fees/autofees.png -------------------------------------------------------------------------------- /orb/apps/auto_max_htlcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/auto_max_htlcs/__init__.py -------------------------------------------------------------------------------- /orb/apps/auto_max_htlcs/appinfo.yaml: -------------------------------------------------------------------------------- 1 | name: Update Max HTLCs 2 | description: App that sets Max HTLCs to either local balance, or half cap 3 | author: 02234cf94dd9a4b76cb4767bf3da03b046c299307063b17c9c2e1886829df6a23a 4 | uuid: update_max_htlcs 5 | menu: auto > Max HTLCs 6 | icon: update_max_htlcs.png 7 | main: update_max_htlc.py -------------------------------------------------------------------------------- /orb/apps/auto_max_htlcs/update_max_htlcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/auto_max_htlcs/update_max_htlcs.png -------------------------------------------------------------------------------- /orb/apps/auto_rebalance/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /orb/apps/auto_rebalance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/auto_rebalance/__init__.py -------------------------------------------------------------------------------- /orb/apps/auto_rebalance/appinfo.yaml: -------------------------------------------------------------------------------- 1 | name: Autobalance 2 | description: Automated node rebalancing 3 | author: 02234cf94dd9a4b76cb4767bf3da03b046c299307063b17c9c2e1886829df6a23a 4 | uuid: auto_rebalance 5 | menu: auto > balance 6 | icon: autobalance.png 7 | main: autobalance.py -------------------------------------------------------------------------------- /orb/apps/auto_rebalance/autobalance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/auto_rebalance/autobalance.png -------------------------------------------------------------------------------- /orb/apps/balance/appinfo.yaml: -------------------------------------------------------------------------------- 1 | menu: node > balance 2 | name: Balance 3 | description: Show the node's total balance, including on-chain, outbound, pending channels, commit fees etc. 4 | author: 02234cf94dd9a4b76cb4767bf3da03b046c299307063b17c9c2e1886829df6a23a 5 | uuid: balance 6 | icon: calculator.png 7 | -------------------------------------------------------------------------------- /orb/apps/balance/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/balance/calculator.png -------------------------------------------------------------------------------- /orb/apps/currency_converter/appinfo.yaml: -------------------------------------------------------------------------------- 1 | menu: utils > currency converter 2 | name: Currency Converter 3 | description: A simple app to convert from one currenty to another 4 | author: 02234cf94dd9a4b76cb4767bf3da03b046c299307063b17c9c2e1886829df6a23a 5 | uuid: currency_converter 6 | icon: convert.png -------------------------------------------------------------------------------- /orb/apps/currency_converter/convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/currency_converter/convert.png -------------------------------------------------------------------------------- /orb/apps/keysend/appinfo.yaml: -------------------------------------------------------------------------------- 1 | menu: utils > keysend 2 | name: Keysend 3 | description: An app to keysend to anyone 4 | author: 02234cf94dd9a4b76cb4767bf3da03b046c299307063b17c9c2e1886829df6a23a 5 | uuid: keysend 6 | icon: keysend.png -------------------------------------------------------------------------------- /orb/apps/keysend/keysend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/keysend/keysend.png -------------------------------------------------------------------------------- /orb/apps/loop/appinfo.yaml: -------------------------------------------------------------------------------- 1 | menu: open > LOOP 2 | name: Open Loop Channel 3 | description: An app that opens a channel with LOOP 4 | author: 02234cf94dd9a4b76cb4767bf3da03b046c299307063b17c9c2e1886829df6a23a 5 | uuid: loop 6 | icon: loop.png -------------------------------------------------------------------------------- /orb/apps/loop/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/loop/loop.png -------------------------------------------------------------------------------- /orb/apps/todo/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /orb/apps/todo/appinfo.yaml: -------------------------------------------------------------------------------- 1 | menu: todo 2 | name: Todo 3 | description: A simple todo app 4 | author: 02234cf94dd9a4b76cb4767bf3da03b046c299307063b17c9c2e1886829df6a23a 5 | uuid: todo 6 | icon: todo.png -------------------------------------------------------------------------------- /orb/apps/todo/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/apps/todo/todo.png -------------------------------------------------------------------------------- /orb/attribute_editor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/attribute_editor/__init__.py -------------------------------------------------------------------------------- /orb/audio/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2021-12-15 07:15:28 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2021-12-27 16:45:23 6 | 7 | """ 8 | This package holds audio relate modules. 9 | """ 10 | -------------------------------------------------------------------------------- /orb/audio/any.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/audio/any.ogg -------------------------------------------------------------------------------- /orb/audio/any.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/audio/any.wav -------------------------------------------------------------------------------- /orb/audio/forward_settle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/audio/forward_settle.ogg -------------------------------------------------------------------------------- /orb/audio/forward_settle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/audio/forward_settle.wav -------------------------------------------------------------------------------- /orb/audio/link_fail_event.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/audio/link_fail_event.ogg -------------------------------------------------------------------------------- /orb/audio/link_fail_event.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/audio/link_fail_event.wav -------------------------------------------------------------------------------- /orb/audio/send_settle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/audio/send_settle.ogg -------------------------------------------------------------------------------- /orb/audio/send_settle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/audio/send_settle.wav -------------------------------------------------------------------------------- /orb/channels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/channels/__init__.py -------------------------------------------------------------------------------- /orb/channels/fee_widget.kv: -------------------------------------------------------------------------------- 1 | : 2 | font_size: '24sp' 3 | size: [self.texture_size[0]*0.2, self.texture_size[1]*.2] 4 | canvas.before: 5 | PushMatrix 6 | Scale: 7 | origin: self.center 8 | xyz: .2, .2, 1 9 | canvas.after: 10 | PopMatrix -------------------------------------------------------------------------------- /orb/channels/segment.kv: -------------------------------------------------------------------------------- 1 | : 2 | font_size: '84sp' 3 | size: [self.texture_size[0]*0.2, self.texture_size[1]*.2] 4 | canvas.before: 5 | PushMatrix 6 | Scale: 7 | origin: self.center 8 | xyz: .2, .2, 1 9 | canvas.after: 10 | PopMatrix -------------------------------------------------------------------------------- /orb/cli/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-08-08 14:11:17 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-27 13:51:19 6 | 7 | """ 8 | Documentation for the CLI module. 9 | """ 10 | -------------------------------------------------------------------------------- /orb/cli/chalk.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-08-14 11:28:12 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-14 11:33:39 6 | 7 | import os 8 | 9 | 10 | class chalk: 11 | def __getattr__(self, name): 12 | if os.environ.get("ORB_CLI_NO_COLOR"): 13 | return lambda x: x 14 | else: 15 | from simple_chalk import chalk 16 | 17 | return lambda x: getattr(chalk, name)(x) 18 | -------------------------------------------------------------------------------- /orb/cli/console.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-09-19 04:21:44 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-09-19 04:21:44 6 | from rich.console import Console 7 | 8 | console = Console() 9 | -------------------------------------------------------------------------------- /orb/cln/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2021-12-15 07:15:28 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-06 12:39:22 6 | 7 | from orb.cln.cln import Cln 8 | -------------------------------------------------------------------------------- /orb/cln/grpc_generated/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-08-13 10:16:18 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-13 10:43:20 6 | 7 | import node_pb2 8 | import node_pb2_grpc 9 | import primitives_pb2 10 | import primitives_pb2_grpc 11 | -------------------------------------------------------------------------------- /orb/cln/grpc_generated/v0_11_0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/cln/grpc_generated/v0_11_0/__init__.py -------------------------------------------------------------------------------- /orb/cln/grpc_generated/v0_11_0/primitives_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | """Client and server classes corresponding to protobuf-defined services.""" 3 | import grpc 4 | 5 | -------------------------------------------------------------------------------- /orb/cln/grpc_generated/v0_11_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/cln/grpc_generated/v0_11_1/__init__.py -------------------------------------------------------------------------------- /orb/cln/grpc_generated/v0_11_1/primitives_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | """Client and server classes corresponding to protobuf-defined services.""" 3 | import grpc 4 | 5 | -------------------------------------------------------------------------------- /orb/cln/grpc_generated/v0_11_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/cln/grpc_generated/v0_11_2/__init__.py -------------------------------------------------------------------------------- /orb/cln/grpc_generated/v0_11_2/primitives_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | """Client and server classes corresponding to protobuf-defined services.""" 3 | import grpc 4 | 5 | -------------------------------------------------------------------------------- /orb/components/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-18 07:35:14 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-01-18 07:35:14 6 | -------------------------------------------------------------------------------- /orb/components/popup_drop_shadow.kv: -------------------------------------------------------------------------------- 1 | 2 | : 3 | background_color: .6, .6, .8, .9 4 | overlay_color: 0, 0, 0, 0 5 | canvas.before: 6 | BorderImage: 7 | source: 'orb/images/shadow_inverted.png' 8 | border: 0,0,0,0 9 | pos: self.x + 10, self.y - 30 10 | size: self.width * 1.025, self.height * 1.025 -------------------------------------------------------------------------------- /orb/components/popup_drop_shadow.py: -------------------------------------------------------------------------------- 1 | from kivy.uix.popup import Popup 2 | 3 | class PopupDropShadow(Popup): 4 | pass -------------------------------------------------------------------------------- /orb/connector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/connector/__init__.py -------------------------------------------------------------------------------- /orb/connector/orb_connector.kv: -------------------------------------------------------------------------------- 1 | : 2 | orientation: 'vertical' 3 | ScreenManager: 4 | id: sm 5 | OrbConnectorMain: 6 | UmbrelNode: 7 | VoltageNode: 8 | ConnectionSettings: 9 | ExportConnectionSettings: 10 | ImportConnectionSettings: 11 | ConsoleScreen: 12 | StatusLine 13 | id: status_line -------------------------------------------------------------------------------- /orb/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/core/__init__.py -------------------------------------------------------------------------------- /orb/core_ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/core_ui/__init__.py -------------------------------------------------------------------------------- /orb/core_ui/screen_manager.py: -------------------------------------------------------------------------------- 1 | from kivy.uix.screenmanager import ScreenManager 2 | 3 | 4 | class ScreenManager(ScreenManager): 5 | pass -------------------------------------------------------------------------------- /orb/dialogs/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-13 13:24:06 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-01-14 06:58:36 6 | 7 | import orb.dialogs.help_dialog 8 | -------------------------------------------------------------------------------- /orb/dialogs/app_store/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-18 06:54:08 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-01-22 10:24:08 6 | 7 | from .app_store_dialog import AppStoreDialog 8 | from orb.dialogs.app_store.app_store_login.app_store_login import LoginDialog 9 | from orb.dialogs.app_store.tip_dialog.tip_dialog import TipDialog 10 | from orb.dialogs.app_store.tip_dialog.tip_dialog import TipDialogContent 11 | -------------------------------------------------------------------------------- /orb/dialogs/app_store/app_details/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/dialogs/app_store/app_details/__init__.py -------------------------------------------------------------------------------- /orb/dialogs/app_store/app_store_login/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/dialogs/app_store/app_store_login/__init__.py -------------------------------------------------------------------------------- /orb/dialogs/app_store/app_summary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/dialogs/app_store/app_summary/__init__.py -------------------------------------------------------------------------------- /orb/dialogs/app_store/tip_dialog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/dialogs/app_store/tip_dialog/__init__.py -------------------------------------------------------------------------------- /orb/dialogs/close_channel/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-08-07 18:23:43 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-08 07:36:59 6 | 7 | from .close_channel import * 8 | -------------------------------------------------------------------------------- /orb/dialogs/generate_invoice/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-08-08 11:14:41 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-08 11:17:50 6 | 7 | from .generate_invoice import * 8 | -------------------------------------------------------------------------------- /orb/dialogs/help_dialog/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-14 06:51:27 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-06 10:31:57 6 | 7 | import orb.dialogs.help_dialog.about 8 | -------------------------------------------------------------------------------- /orb/dialogs/help_dialog/about/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/dialogs/help_dialog/about/__init__.py -------------------------------------------------------------------------------- /orb/dialogs/help_dialog/about/about.kv: -------------------------------------------------------------------------------- 1 | #: import dp kivy.metrics.dp 2 | 3 | : 4 | title: 'About' 5 | background_color: .6, .6, .8, .9 6 | overlay_color: 0, 0, 0, 0 7 | size_hint: None, None 8 | size: dp(400), dp(400) 9 | Label: 10 | id: label 11 | size_hint: 1, 1 -------------------------------------------------------------------------------- /orb/dialogs/highlighter_dialog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/dialogs/highlighter_dialog/__init__.py -------------------------------------------------------------------------------- /orb/dialogs/highlighter_dialog/highlighter_dialog.kv: -------------------------------------------------------------------------------- 1 | #:import Window kivy.core.window.Window 2 | #:import dp kivy.metrics.dp 3 | 4 | : 5 | title: 'HighlighterDialog' 6 | background_color: .6, .6, .8, .9 7 | overlay_color: 0, 0, 0, 0 8 | size_hint: [None, None] 9 | size: min(Window.size[0], dp(500)), min(Window.size[1], dp(150)) 10 | MDTextField: 11 | id: text_input 12 | on_text_validate: root.validate(self.text) 13 | multiline: False 14 | -------------------------------------------------------------------------------- /orb/dialogs/ingest_invoices/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-07-15 17:59:23 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-08 11:02:35 6 | 7 | from .ingest_invoices import * 8 | -------------------------------------------------------------------------------- /orb/dialogs/mail_dialog.kv: -------------------------------------------------------------------------------- 1 | #:import dp kivy.metrics.dp 2 | #:import Window kivy.core.window.Window 3 | 4 | : 5 | 6 | : 7 | title: 'Keysend Mail' 8 | size_hint: .8, .8 9 | FocusTextInput: 10 | id: input 11 | size_hint_x: 0.8 12 | -------------------------------------------------------------------------------- /orb/dialogs/open_channel/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-08-08 07:43:15 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-08 07:48:28 6 | 7 | from .open_channel import * 8 | -------------------------------------------------------------------------------- /orb/dialogs/pay_dialogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/dialogs/pay_dialogs/__init__.py -------------------------------------------------------------------------------- /orb/dialogs/umbrel_node/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/dialogs/umbrel_node/__init__.py -------------------------------------------------------------------------------- /orb/dialogs/upload_app/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-19 03:32:51 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-01-19 03:33:02 6 | 7 | from .upload_app_dialog import UploadAppDialog 8 | -------------------------------------------------------------------------------- /orb/dialogs/voltage_node/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/dialogs/voltage_node/__init__.py -------------------------------------------------------------------------------- /orb/images/shadow_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/images/shadow_inverted.png -------------------------------------------------------------------------------- /orb/images/umbrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/images/umbrel.png -------------------------------------------------------------------------------- /orb/images/voltage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/images/voltage.png -------------------------------------------------------------------------------- /orb/ln/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-08-06 19:53:36 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-07 06:24:09 6 | 7 | from .ln import * 8 | -------------------------------------------------------------------------------- /orb/lnd/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2021-12-15 07:15:28 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2021-12-31 05:22:58 6 | 7 | from orb.lnd.lnd import Lnd 8 | -------------------------------------------------------------------------------- /orb/lnd/grpc_generated/.gitignore: -------------------------------------------------------------------------------- 1 | googleapis 2 | -------------------------------------------------------------------------------- /orb/lnd/grpc_generated/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-07-18 08:58:06 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-07-18 09:01:03 6 | 7 | import invoices_pb2 8 | import invoices_pb2_grpc 9 | import lightning_pb2 10 | import lightning_pb2_grpc 11 | import router_pb2 12 | import router_pb2_grpc 13 | -------------------------------------------------------------------------------- /orb/lnd/grpc_generated/v0_14_0_beta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/lnd/grpc_generated/v0_14_0_beta/__init__.py -------------------------------------------------------------------------------- /orb/lnd/grpc_generated/v0_14_1_beta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/lnd/grpc_generated/v0_14_1_beta/__init__.py -------------------------------------------------------------------------------- /orb/lnd/grpc_generated/v0_14_2_beta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/lnd/grpc_generated/v0_14_2_beta/__init__.py -------------------------------------------------------------------------------- /orb/lnd/grpc_generated/v0_14_3_beta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/lnd/grpc_generated/v0_14_3_beta/__init__.py -------------------------------------------------------------------------------- /orb/lnd/grpc_generated/v0_15_0_beta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/lnd/grpc_generated/v0_15_0_beta/__init__.py -------------------------------------------------------------------------------- /orb/logic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/logic/__init__.py -------------------------------------------------------------------------------- /orb/logic/cli_thread_manager.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-08-29 13:29:02 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-08-29 13:31:32 6 | 7 | 8 | class CLIThreadManager: 9 | 10 | threads = [] 11 | 12 | def stop_threads(self): 13 | for t in self.threads: 14 | t.stop() 15 | self.threads.clear() 16 | 17 | def add_thread(self, thread): 18 | self.threads.append(thread) 19 | 20 | 21 | cli_thread_manager = CLIThreadManager() 22 | -------------------------------------------------------------------------------- /orb/misc/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2021-12-15 07:15:28 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2021-12-27 16:10:25 6 | 7 | """ 8 | The misc package contains modules that don't currently neatly fit into 9 | their own clear package identity. 10 | 11 | Over time, the number of modules in misc should reduce. 12 | """ 13 | -------------------------------------------------------------------------------- /orb/misc/enums.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-11 08:23:02 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-01-11 08:23:48 6 | 7 | 8 | class ChannelsWidgetUXMode: 9 | free = 0 10 | gestures = 1 11 | -------------------------------------------------------------------------------- /orb/screens/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/screens/__init__.py -------------------------------------------------------------------------------- /orb/screens/console/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/screens/console/__init__.py -------------------------------------------------------------------------------- /orb/status_line/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/status_line/__init__.py -------------------------------------------------------------------------------- /orb/store/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/store/__init__.py -------------------------------------------------------------------------------- /orb/web/Dockerfile: -------------------------------------------------------------------------------- 1 | from node 2 | 3 | workdir /src/ 4 | -------------------------------------------------------------------------------- /orb/web/orb_frontend/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /orb/web/orb_frontend/public/build/bundle.css: -------------------------------------------------------------------------------- 1 | main.svelte-1tky8bj{text-align:center;padding:1em;max-width:240px;margin:0 auto}h1.svelte-1tky8bj{color:#ff3e00;text-transform:uppercase;font-size:4em;font-weight:100}@media(min-width: 640px){main.svelte-1tky8bj{max-width:none}}.modal-open{overflow:hidden;padding-right:0}.overflow-noscroll{overflow:hidden;padding-right:0px} -------------------------------------------------------------------------------- /orb/web/orb_frontend/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/web/orb_frontend/public/favicon.png -------------------------------------------------------------------------------- /orb/web/orb_frontend/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Svelte app 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /orb/web/orb_frontend/src/main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: w 3 | * @Date: 2022-08-29 09:36:55 4 | * @Last Modified by: w 5 | * @Last Modified time: 2022-08-29 11:09:19 6 | */ 7 | 8 | import App from './App.svelte'; 9 | 10 | const app = new App({ 11 | target: document.body, 12 | props: { 13 | id: 0 14 | } 15 | }); 16 | 17 | export default app; -------------------------------------------------------------------------------- /orb/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/widgets/__init__.py -------------------------------------------------------------------------------- /orb/widgets/gestures_overlay.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/widgets/gestures_overlay.kv -------------------------------------------------------------------------------- /orb/widgets/gestures_overlay.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: lnorb.com 3 | # @Date: 2022-01-11 11:55:33 4 | # @Last Modified by: lnorb.com 5 | # @Last Modified time: 2022-01-11 11:56:41 6 | 7 | from kivy.uix.widget import Widget 8 | 9 | 10 | class GesturesOverlay(Widget): 11 | pass 12 | -------------------------------------------------------------------------------- /orb/widgets/hud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightningorb/orb/2d28a2065a5913e01a23980b0a3449dbb74b93f2/orb/widgets/hud/__init__.py -------------------------------------------------------------------------------- /orb/widgets/hud/hud_common.py: -------------------------------------------------------------------------------- 1 | from kivy.properties import NumericProperty 2 | from kivy.uix.label import Label 3 | from kivy.uix.widget import Widget 4 | 5 | 6 | class Bordered(Widget): 7 | pass 8 | 9 | 10 | class Hideable: 11 | alpha = NumericProperty(0) 12 | 13 | def show(self): 14 | self.alpha = 1 15 | 16 | 17 | class BorderedLabel(Label, Hideable): 18 | pass -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = -p no:anyio -p no:nameko-sqlalchemy -p no:nameko -p no:warnings 3 | 4 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | pyarmor==6.6.2 2 | fabric 3 | pyinstaller==4.9 4 | semver 5 | requests 6 | gitpython 7 | sphinx 8 | python_docs_theme 9 | #karma-sphinx-theme 10 | sphinxcontrib.asciinema 11 | sphinxcontrib.mermaid 12 | boto3 13 | rsa 14 | gitpython 15 | pytest 16 | jaraco.text 17 | 18 | # site 19 | 20 | uvicorn 21 | fastapi 22 | orjson 23 | gitpython 24 | nameko 25 | sqlalchemy 26 | sqlalchemy_utils 27 | python-multipart 28 | toml 29 | passlib 30 | python-jose 31 | psycopg2-binary 32 | arrow 33 | nameko_sqlalchemy 34 | -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | vite.config.js.timestamp-* 10 | vite.config.ts.timestamp-* 11 | -------------------------------------------------------------------------------- /site/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /site/.prettierignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | -------------------------------------------------------------------------------- /site/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 100, 6 | "plugins": ["prettier-plugin-svelte"], 7 | "pluginSearchDirs": ["."], 8 | "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] 9 | } 10 | -------------------------------------------------------------------------------- /site/public/global.css: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: lnorb.com 3 | * @Date: 2022-02-01 21:17:10 4 | * @Last Modified by: lnorb.com 5 | * @Last Modified time: 2022-02-05 12:14:48 6 | */ 7 | 8 | :root { 9 | --toastBackground: #abcdef; 10 | --toastColor: #123456; 11 | } 12 | -------------------------------------------------------------------------------- /site/public/scss/_authentication.scss: -------------------------------------------------------------------------------- 1 | // 2 | // authentication.scss 3 | // 4 | 5 | .bg-account-pages { 6 | background: $bg-gradient; 7 | opacity: 0.9; 8 | } 9 | 10 | .account-home-btn { 11 | position: absolute; 12 | top: 18px; 13 | right: 28px; 14 | z-index: 1; 15 | } 16 | 17 | .account-pages-logo { 18 | letter-spacing: 2px; 19 | } 20 | 21 | .account-card form .form-control { 22 | height: 45px; 23 | } 24 | 25 | .account-card form label { 26 | font-size: 15px; 27 | margin-bottom: 10px; 28 | } 29 | 30 | .account-card .alert { 31 | font-size: 14px; 32 | } 33 | -------------------------------------------------------------------------------- /site/public/scss/_blog.scss: -------------------------------------------------------------------------------- 1 | // 2 | // blog.scss 3 | // 4 | 5 | .blog-box { 6 | .blog-title { 7 | color: $dark; 8 | transition: all 0.5s; 9 | &:hover { 10 | color: $primary; 11 | } 12 | } 13 | 14 | .read-btn { 15 | font-size: 15px; 16 | color: $primary; 17 | &:hover { 18 | color: $dark !important; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /site/public/scss/_cta.scss: -------------------------------------------------------------------------------- 1 | // 2 | // cta.scss 3 | // 4 | 5 | .bg-web-desc { 6 | background: url('../images/img-1.jpg'); 7 | background-repeat: no-repeat; 8 | background-size: cover; 9 | background-position: center; 10 | } 11 | 12 | .bg-get-start { 13 | background: url('../images/img-2.jpg'); 14 | background-repeat: no-repeat; 15 | background-size: cover; 16 | background-position: center; 17 | } 18 | -------------------------------------------------------------------------------- /site/public/scss/_services.scss: -------------------------------------------------------------------------------- 1 | // 2 | // services.scss 3 | // 4 | 5 | .services-box { 6 | padding: 15px 20px; 7 | i { 8 | font-size: 32px; 9 | margin-bottom: 15px; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /site/public/scss/_team.scss: -------------------------------------------------------------------------------- 1 | // 2 | // team.scss 3 | // 4 | 5 | .about-title { 6 | max-width: 800px; 7 | h2 { 8 | line-height: 42px; 9 | } 10 | p { 11 | font-size: 17px; 12 | line-height: 30px; 13 | font-weight: 300; 14 | } 15 | } 16 | 17 | .team-box { 18 | border-bottom: 1px solid #ecf0f5; 19 | .team-name { 20 | font-size: 16px; 21 | padding-top: 20px; 22 | margin-bottom: 7px; 23 | } 24 | 25 | .team-designation { 26 | font-size: 13px; 27 | color: #a8aeb4; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /site/public/scss/_testimonial.scss: -------------------------------------------------------------------------------- 1 | // 2 | // testimonial.scss 3 | // 4 | 5 | .testimonial-decs { 6 | position: relative; 7 | border: 1px solid transparent; 8 | border-radius: 8px; 9 | transition: all 0.3s ease-in-out; 10 | box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1) !important; 11 | img { 12 | height: 68px; 13 | width: 68px; 14 | } 15 | .testi-icon { 16 | i { 17 | position: absolute; 18 | top: 0; 19 | right: 0; 20 | color: #f4f4f4; 21 | } 22 | } 23 | p { 24 | line-height: 24px; 25 | font-style: italic; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /site/src/+layout.js: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /site/src/app.d.ts: -------------------------------------------------------------------------------- 1 | // See https://kit.svelte.dev/docs/types#app 2 | // for information about these interfaces 3 | declare global { 4 | namespace App { 5 | // interface Error {} 6 | // interface Locals {} 7 | // interface PageData {} 8 | // interface Platform {} 9 | } 10 | } 11 | 12 | export {}; 13 | -------------------------------------------------------------------------------- /site/src/main.js: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | 3 | var app = new App({ 4 | target: document.body 5 | }); 6 | 7 | export default app; -------------------------------------------------------------------------------- /site/src/routes/+layout.js: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /site/src/routes/+layout.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /site/src/routes/download.svelte: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 |