├── .github └── workflows │ ├── ci.yml │ ├── linux-build.yml │ ├── mac-build.yml │ ├── main_v24.02.yml │ └── windows-build.yml ├── .gitignore ├── COPYING ├── Cargo.toml ├── README.md ├── env.example ├── legacy ├── Cargo.toml ├── README.md ├── __init__.py ├── demo-script.md ├── lnd.py ├── platforms │ ├── Dockerfile │ ├── README.md │ ├── app.py │ ├── bash-script-rtl │ │ └── peerstables.sh │ ├── index.tsx │ ├── mnemonic-tool.py │ ├── python-cln-plugin │ │ ├── requirements.txt │ │ └── stablechannels.py │ ├── python-rest │ │ └── stablechannels.py │ ├── stablechannels.html │ ├── stablecoin-chart.html │ ├── sum_payments.py │ ├── update.sh │ └── utxoracle-cln-plugin │ │ └── utxoracle.py ├── requirements.txt ├── src │ ├── audit.rs │ ├── ldk_node_adapter.rs │ ├── lightning.rs │ ├── main.rs │ ├── price_feeds.rs │ ├── server.rs │ ├── stable.rs │ ├── types.rs │ └── user.rs ├── stablechannels.py └── test_stablechannels.py ├── sc-icon-egui.png ├── sc.gif └── src ├── audit.rs ├── bin ├── lsp_backend.rs └── lsp_frontend.rs ├── config.rs ├── constants.rs ├── lib.rs ├── main.rs ├── price_feeds.rs ├── stable.rs ├── types.rs └── user.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/linux-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/.github/workflows/linux-build.yml -------------------------------------------------------------------------------- /.github/workflows/mac-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/.github/workflows/mac-build.yml -------------------------------------------------------------------------------- /.github/workflows/main_v24.02.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/.github/workflows/main_v24.02.yml -------------------------------------------------------------------------------- /.github/workflows/windows-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/.github/workflows/windows-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/COPYING -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/README.md -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/env.example -------------------------------------------------------------------------------- /legacy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/Cargo.toml -------------------------------------------------------------------------------- /legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/README.md -------------------------------------------------------------------------------- /legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/demo-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/demo-script.md -------------------------------------------------------------------------------- /legacy/lnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/lnd.py -------------------------------------------------------------------------------- /legacy/platforms/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/Dockerfile -------------------------------------------------------------------------------- /legacy/platforms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/README.md -------------------------------------------------------------------------------- /legacy/platforms/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/app.py -------------------------------------------------------------------------------- /legacy/platforms/bash-script-rtl/peerstables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/bash-script-rtl/peerstables.sh -------------------------------------------------------------------------------- /legacy/platforms/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/index.tsx -------------------------------------------------------------------------------- /legacy/platforms/mnemonic-tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/mnemonic-tool.py -------------------------------------------------------------------------------- /legacy/platforms/python-cln-plugin/requirements.txt: -------------------------------------------------------------------------------- 1 | pyln-client 2 | cachetools 3 | requests 4 | statistics 5 | apscheduler -------------------------------------------------------------------------------- /legacy/platforms/python-cln-plugin/stablechannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/python-cln-plugin/stablechannels.py -------------------------------------------------------------------------------- /legacy/platforms/python-rest/stablechannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/python-rest/stablechannels.py -------------------------------------------------------------------------------- /legacy/platforms/stablechannels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/stablechannels.html -------------------------------------------------------------------------------- /legacy/platforms/stablecoin-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/stablecoin-chart.html -------------------------------------------------------------------------------- /legacy/platforms/sum_payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/sum_payments.py -------------------------------------------------------------------------------- /legacy/platforms/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/update.sh -------------------------------------------------------------------------------- /legacy/platforms/utxoracle-cln-plugin/utxoracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/platforms/utxoracle-cln-plugin/utxoracle.py -------------------------------------------------------------------------------- /legacy/requirements.txt: -------------------------------------------------------------------------------- 1 | pyln-client 2 | cachetools 3 | requests 4 | statistics 5 | apscheduler -------------------------------------------------------------------------------- /legacy/src/audit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/src/audit.rs -------------------------------------------------------------------------------- /legacy/src/ldk_node_adapter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/src/ldk_node_adapter.rs -------------------------------------------------------------------------------- /legacy/src/lightning.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/src/lightning.rs -------------------------------------------------------------------------------- /legacy/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/src/main.rs -------------------------------------------------------------------------------- /legacy/src/price_feeds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/src/price_feeds.rs -------------------------------------------------------------------------------- /legacy/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/src/server.rs -------------------------------------------------------------------------------- /legacy/src/stable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/src/stable.rs -------------------------------------------------------------------------------- /legacy/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/src/types.rs -------------------------------------------------------------------------------- /legacy/src/user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/src/user.rs -------------------------------------------------------------------------------- /legacy/stablechannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/stablechannels.py -------------------------------------------------------------------------------- /legacy/test_stablechannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/legacy/test_stablechannels.py -------------------------------------------------------------------------------- /sc-icon-egui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/sc-icon-egui.png -------------------------------------------------------------------------------- /sc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/sc.gif -------------------------------------------------------------------------------- /src/audit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/src/audit.rs -------------------------------------------------------------------------------- /src/bin/lsp_backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/src/bin/lsp_backend.rs -------------------------------------------------------------------------------- /src/bin/lsp_frontend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/src/bin/lsp_frontend.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/src/constants.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/price_feeds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/src/price_feeds.rs -------------------------------------------------------------------------------- /src/stable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/src/stable.rs -------------------------------------------------------------------------------- /src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/src/types.rs -------------------------------------------------------------------------------- /src/user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toneloc/stable-channels/HEAD/src/user.rs --------------------------------------------------------------------------------