├── .cargo └── config.toml ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .woodpecker ├── bark-release.yml ├── helpers.yml ├── images │ ├── releases │ │ ├── bark │ │ │ ├── linux_amd64.Dockerfile │ │ │ ├── linux_arm64.Dockerfile │ │ │ ├── linux_armv7.Dockerfile │ │ │ └── run.sh │ │ └── captaind │ │ │ ├── Dockerfile │ │ │ ├── captaind.toml │ │ │ └── start.sh │ └── tests │ │ ├── Dockerfile │ │ └── wakemeops.gpg ├── main.yml ├── nightly-release.yml ├── server-release.yml ├── tests-codecov.yml └── tests.yml ├── CHANGELOG.md ├── CHANGELOG ├── README.md ├── bark │ └── 1342 ├── server-rpc │ └── 1398 ├── server │ └── 1342 └── unreleased │ ├── ark-lib │ ├── 1293 │ ├── 1331 │ ├── 1342 │ ├── 1363 │ └── 1368 │ ├── bark-cli │ └── 1328 │ ├── bark-json │ └── 1354 │ ├── bark-wallet │ ├── 1328 │ ├── 1331 │ ├── 1354 │ └── 1355 │ ├── captaind │ └── 1331 │ └── template.md ├── CONTRIBUTING.md ├── CONTRIBUTING ├── STYLE.md └── postgres.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── ark_demo.sh ├── assets ├── bark-header-white.jpg └── tx-tree-refresh.jpg ├── bark-cli ├── Cargo.toml ├── build.rs └── src │ ├── bin │ ├── bark │ │ ├── dev.rs │ │ ├── exit.rs │ │ ├── lightning.rs │ │ ├── main.rs │ │ ├── onchain.rs │ │ ├── round.rs │ │ ├── util.rs │ │ └── wallet.rs │ └── barkd │ │ └── main.rs │ ├── lib.rs │ ├── log.rs │ └── wallet.rs ├── bark-json ├── Cargo.toml └── src │ ├── cli │ ├── mod.rs │ └── onchain.rs │ ├── exit │ ├── error.rs │ ├── mod.rs │ ├── package.rs │ └── states.rs │ ├── lib.rs │ ├── primitives.rs │ ├── serde_utils.rs │ └── web.rs ├── bark-rest-client ├── .gitignore ├── .openapi-generator-ignore ├── .openapi-generator │ ├── FILES │ └── VERSION ├── .travis.yml ├── Cargo.toml ├── README.md ├── docs │ ├── Address.md │ ├── ArkAddressResponse.md │ ├── ArkInfo.md │ ├── BadRequestError.md │ ├── Balance.md │ ├── BitcoinApi.md │ ├── BoardRequest.md │ ├── BoardsApi.md │ ├── ChildTransactionInfo.md │ ├── ConnectedResponse.md │ ├── DefaultApi.md │ ├── ExitAwaitingDeltaState.md │ ├── ExitClaimAllRequest.md │ ├── ExitClaimInProgressState.md │ ├── ExitClaimResponse.md │ ├── ExitClaimVtxosRequest.md │ ├── ExitClaimableState.md │ ├── ExitClaimedState.md │ ├── ExitError.md │ ├── ExitErrorOneOf.md │ ├── ExitErrorOneOf1.md │ ├── ExitErrorOneOf10.md │ ├── ExitErrorOneOf11.md │ ├── ExitErrorOneOf12.md │ ├── ExitErrorOneOf13.md │ ├── ExitErrorOneOf14.md │ ├── ExitErrorOneOf15.md │ ├── ExitErrorOneOf16.md │ ├── ExitErrorOneOf17.md │ ├── ExitErrorOneOf18.md │ ├── ExitErrorOneOf19.md │ ├── ExitErrorOneOf2.md │ ├── ExitErrorOneOf20.md │ ├── ExitErrorOneOf21.md │ ├── ExitErrorOneOf22.md │ ├── ExitErrorOneOf23.md │ ├── ExitErrorOneOf3.md │ ├── ExitErrorOneOf4.md │ ├── ExitErrorOneOf5.md │ ├── ExitErrorOneOf6.md │ ├── ExitErrorOneOf7.md │ ├── ExitErrorOneOf8.md │ ├── ExitErrorOneOf9.md │ ├── ExitProcessingState.md │ ├── ExitProgressRequest.md │ ├── ExitProgressResponse.md │ ├── ExitProgressStatus.md │ ├── ExitStartRequest.md │ ├── ExitStartResponse.md │ ├── ExitStartState.md │ ├── ExitState.md │ ├── ExitStateOneOf.md │ ├── ExitStateOneOf1.md │ ├── ExitStateOneOf2.md │ ├── ExitStateOneOf3.md │ ├── ExitStateOneOf4.md │ ├── ExitStateOneOf5.md │ ├── ExitStatusRequest.md │ ├── ExitTransactionPackage.md │ ├── ExitTransactionStatus.md │ ├── ExitTx.md │ ├── ExitTxOrigin.md │ ├── ExitTxOriginOneOf.md │ ├── ExitTxOriginOneOf1.md │ ├── ExitTxOriginOneOf2.md │ ├── ExitTxStatus.md │ ├── ExitTxStatusOneOf.md │ ├── ExitTxStatusOneOf1.md │ ├── ExitTxStatusOneOf2.md │ ├── ExitTxStatusOneOf3.md │ ├── ExitTxStatusOneOf4.md │ ├── ExitTxStatusOneOf5.md │ ├── ExitTxStatusOneOf6.md │ ├── ExitsApi.md │ ├── InternalServerError.md │ ├── InvoiceInfo.md │ ├── LightningApi.md │ ├── LightningInvoiceRequest.md │ ├── LightningPayRequest.md │ ├── LightningPayResponse.md │ ├── LightningReceiveInfo.md │ ├── Movement.md │ ├── MovementDestination.md │ ├── MovementStatus.md │ ├── MovementSubsystem.md │ ├── MovementTimestamp.md │ ├── NotFoundError.md │ ├── OffboardAllRequest.md │ ├── OffboardVtxosRequest.md │ ├── OnchainApi.md │ ├── OnchainBalance.md │ ├── OnchainDrainRequest.md │ ├── OnchainSendManyRequest.md │ ├── OnchainSendRequest.md │ ├── PendingBoardInfo.md │ ├── PendingRoundInfo.md │ ├── RefreshRequest.md │ ├── RoundStatus.md │ ├── RoundStatusOneOf.md │ ├── RoundStatusOneOf1.md │ ├── RoundStatusOneOf2.md │ ├── RoundStatusOneOf3.md │ ├── RoundStatusOneOf4.md │ ├── Send.md │ ├── SendOnchainRequest.md │ ├── SendRequest.md │ ├── SendResponse.md │ ├── TipResponse.md │ ├── TransactionInfo.md │ ├── UtxoInfo.md │ ├── VtxoInfo.md │ ├── VtxoStateInfo.md │ ├── VtxoStateInfoOneOf.md │ ├── VtxoStateInfoOneOf1.md │ ├── VtxoStateInfoOneOf2.md │ ├── VtxosQuery.md │ ├── WalletApi.md │ └── WalletVtxoInfo.md ├── git_push.sh └── src │ ├── apis │ ├── bitcoin_api.rs │ ├── boards_api.rs │ ├── configuration.rs │ ├── default_api.rs │ ├── exits_api.rs │ ├── lightning_api.rs │ ├── mod.rs │ ├── onchain_api.rs │ └── wallet_api.rs │ ├── lib.rs │ └── models │ └── mod.rs ├── bark-rest ├── Cargo.toml ├── build.rs ├── examples │ └── dump_api_docs.rs ├── helpers │ └── models.rs ├── openapi.json └── src │ ├── api │ ├── mod.rs │ └── v1 │ │ ├── bitcoin.rs │ │ ├── boards.rs │ │ ├── exits.rs │ │ ├── lightning.rs │ │ ├── mod.rs │ │ ├── onchain.rs │ │ └── wallet.rs │ ├── config.rs │ ├── error.rs │ └── lib.rs ├── bark ├── Cargo.toml ├── README.md ├── examples │ ├── dump-sqlite-schema.rs │ └── simple_setup.rs ├── schema.sql ├── src │ ├── config.rs │ ├── daemon.rs │ ├── exit │ │ ├── mod.rs │ │ ├── models │ │ │ ├── error.rs │ │ │ ├── mod.rs │ │ │ ├── package.rs │ │ │ └── states.rs │ │ ├── progress │ │ │ ├── mod.rs │ │ │ ├── states.rs │ │ │ └── util.rs │ │ ├── transaction_manager.rs │ │ └── vtxo.rs │ ├── lib.rs │ ├── lightning │ │ ├── mod.rs │ │ ├── pay.rs │ │ └── receive.rs │ ├── movement │ │ ├── error.rs │ │ ├── manager.rs │ │ ├── mod.rs │ │ └── update.rs │ ├── onchain │ │ ├── bdk.rs │ │ ├── chain.rs │ │ └── mod.rs │ ├── persist │ │ ├── mod.rs │ │ ├── models.rs │ │ └── sqlite │ │ │ ├── convert.rs │ │ │ ├── migrations │ │ │ ├── m0001_initial_version.rs │ │ │ ├── m0002_config.rs │ │ │ ├── m0003_payment_history.rs │ │ │ ├── m0004_unregistered_board.rs │ │ │ ├── m0005_lightning_receive.rs │ │ │ ├── m0006_exit_rework.rs │ │ │ ├── m0007_vtxo_refresh_expiry_threshold.rs │ │ │ ├── m0008_fee_rate_implementation.rs │ │ │ ├── m0009_add_movement_kind.rs │ │ │ ├── m0010_remove_keychain.rs │ │ │ ├── m0011_exit_ancestor_info.rs │ │ │ ├── m0012_round.rs │ │ │ ├── m0013_round_sync.rs │ │ │ ├── m0014_drop_past_round_sync.rs │ │ │ ├── m0015_optional_round_seq.rs │ │ │ ├── m0016_config.rs │ │ │ ├── m0017_great_state_cleanup.rs │ │ │ ├── m0018_htlc_recv_cltv_delta.rs │ │ │ ├── m0019_round_state.rs │ │ │ ├── m0020_new_movements_api.rs │ │ │ ├── m0021_fix_lightning_movements.rs │ │ │ ├── m0022_unreleased.rs │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── query.rs │ ├── psbtext.rs │ ├── round.rs │ ├── subsystem │ │ └── mod.rs │ └── vtxo │ │ ├── mod.rs │ │ ├── selection.rs │ │ └── state.rs └── tests │ └── bark_persister_test.rs ├── bitcoin-ext ├── Cargo.toml └── src │ ├── bdk.rs │ ├── bitcoin.rs │ ├── cpfp.rs │ ├── esplora.rs │ ├── fee.rs │ ├── lib.rs │ ├── rpc.rs │ └── serde.rs ├── cln-rpc ├── Cargo.toml ├── README.md ├── build.rs ├── protos │ ├── hold.proto │ ├── node.proto │ └── primitives.proto └── src │ ├── convert.rs │ └── lib.rs ├── contrib ├── README.md ├── assign-nightly-version.sh ├── check-clean-diff.sh ├── check-commits.sh ├── check-gitlab-release.sh ├── check-versions.sh ├── ci-gitlab-release.sh ├── ci-run-test-copy.sh ├── ci-run-test-trash.sh ├── ci-run-test.sh ├── docker │ ├── README.md │ ├── cln.Dockerfile │ ├── cln_start.sh │ └── docker-compose.yml ├── flake_finder.py ├── generate-index.sh ├── idea │ └── runConfigurations │ │ ├── Build Workspace.run.xml │ │ ├── Integration Tests (esplora-electrs).run.xml │ │ ├── Integration Tests (mempool-electrs).run.xml │ │ ├── Integration Tests.run.xml │ │ ├── Just Docker Pull.run.xml │ │ ├── Just Test.run.xml │ │ └── Unit Tests.run.xml ├── parse-versions.sh └── prechecks.sh ├── docs ├── addresses.md ├── checkpoints │ ├── 01_problems_withouth_checkpoints.md │ ├── 02_help_my_neighbour_did_an_exit.md │ └── 03_designing_checkpoints.md └── mailbox.md ├── flake.lock ├── flake.nix ├── justfile ├── lib ├── Cargo.toml └── src │ ├── address.rs │ ├── arkoor │ ├── checkpoint.rs │ ├── checkpointed_package.rs │ ├── mod.rs │ └── package.rs │ ├── board.rs │ ├── challenges.rs │ ├── connectors.rs │ ├── encode.rs │ ├── error.rs │ ├── forfeit.rs │ ├── integration.rs │ ├── lib.rs │ ├── lightning.rs │ ├── mailbox.rs │ ├── musig.rs │ ├── napkin.rs │ ├── rounds.rs │ ├── test │ ├── dummy.rs │ └── mod.rs │ ├── tree │ ├── mod.rs │ └── signed.rs │ ├── util.rs │ └── vtxo │ ├── mod.rs │ └── validation.rs ├── nix ├── build-shell.nix └── dev-shell.nix ├── server-log ├── Cargo.toml └── src │ ├── lib.rs │ ├── macros.rs │ ├── msgs │ ├── arkoor.rs │ ├── board.rs │ ├── forfeits.rs │ ├── mod.rs │ ├── rounds.rs │ ├── sweeps.rs │ ├── system.rs │ ├── txindex.rs │ ├── vtxopool.rs │ └── wallet.rs │ └── serde_utils.rs ├── server-rpc ├── Cargo.toml ├── build.rs ├── protos │ ├── bark_server.proto │ └── intman.proto └── src │ ├── client.rs │ ├── convert.rs │ └── lib.rs ├── server ├── Cargo.toml ├── build.rs ├── captaind.default.toml ├── schema.sql ├── src │ ├── bin │ │ ├── captaind │ │ │ └── main.rs │ │ ├── common │ │ │ └── mod.rs │ │ └── watchmand │ │ │ └── main.rs │ ├── bitcoind.rs │ ├── config.rs │ ├── database │ │ ├── forfeits │ │ │ ├── mod.rs │ │ │ └── model.rs │ │ ├── intman │ │ │ ├── mod.rs │ │ │ └── model.rs │ │ ├── ln │ │ │ ├── mod.rs │ │ │ └── model.rs │ │ ├── migrations │ │ │ ├── V0__init.sql │ │ │ ├── V10__round_id_column_in_vtxo.sql │ │ │ ├── V11__round_seq.sql │ │ │ ├── V12__tokens.sql │ │ │ ├── V13__ephemeral_keys.sql │ │ │ ├── V14__drop_views.sql │ │ │ ├── V15__add_index_uniqueness.sql │ │ │ ├── V16__offchain_ln_receive.sql │ │ │ ├── V17__board_sweeps.sql │ │ │ ├── V18__ln_receive_htlc_cltv.sql │ │ │ ├── V19__hardcoded_captaind_api_keys.sql │ │ │ ├── V1__board_swept.sql │ │ │ ├── V20__unreleased.sql │ │ │ ├── V2__indexes.sql │ │ │ ├── V3__vtxo_spendable.sql │ │ │ ├── V4__lightning_invoice.sql │ │ │ ├── V5__forfeit_state.sql │ │ │ ├── V6__lightning_invoice_no_status.sql │ │ │ ├── V7__lightning_htlc_subscription.sql │ │ │ ├── V8__arkoor_package_id.sql │ │ │ └── V9__bitcoin_transaction.sql │ │ ├── mod.rs │ │ ├── model.rs │ │ ├── query.rs │ │ ├── rounds │ │ │ ├── mod.rs │ │ │ └── model.rs │ │ └── vtxopool.rs │ ├── error.rs │ ├── filters.rs │ ├── flux.rs │ ├── forfeits.rs │ ├── intman │ │ └── mod.rs │ ├── lib.rs │ ├── ln │ │ ├── cln │ │ │ ├── mod.rs │ │ │ └── node.rs │ │ └── mod.rs │ ├── psbtext.rs │ ├── round │ │ └── mod.rs │ ├── rpcserver │ │ ├── admin │ │ │ └── mod.rs │ │ ├── ark │ │ │ └── mod.rs │ │ ├── convert.rs │ │ ├── intman │ │ │ └── mod.rs │ │ ├── middleware │ │ │ └── mod.rs │ │ └── mod.rs │ ├── secret.rs │ ├── serde_util.rs │ ├── sweeps.rs │ ├── system.rs │ ├── telemetry.rs │ ├── tip_fetcher.rs │ ├── txindex │ │ ├── block.rs │ │ ├── broadcast.rs │ │ └── mod.rs │ ├── vtxopool.rs │ ├── wallet.rs │ └── watchman.rs └── watchmand.default.toml └── testing ├── Cargo.toml ├── examples └── dump-server-postgres-schema.rs ├── msrv-lib ├── Cargo.lock ├── Cargo.toml └── src │ └── lib.rs ├── src ├── bark.rs ├── constants.rs ├── context.rs ├── daemon │ ├── bitcoind.rs │ ├── captaind │ │ ├── mod.rs │ │ └── proxy.rs │ ├── electrs.rs │ ├── lightningd.rs │ ├── mod.rs │ └── postgres.rs ├── exit.rs ├── lib.rs ├── postgres │ ├── external.rs │ ├── mod.rs │ ├── query.rs │ └── test_managed.rs └── util.rs └── tests ├── bark.rs ├── bitcoind.rs ├── chain_source.rs ├── exit.rs ├── lightningd.rs ├── postgres.rs ├── server.rs └── sweeper.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | target 2 | .git 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.woodpecker/bark-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/bark-release.yml -------------------------------------------------------------------------------- /.woodpecker/helpers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/helpers.yml -------------------------------------------------------------------------------- /.woodpecker/images/releases/bark/linux_amd64.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/images/releases/bark/linux_amd64.Dockerfile -------------------------------------------------------------------------------- /.woodpecker/images/releases/bark/linux_arm64.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/images/releases/bark/linux_arm64.Dockerfile -------------------------------------------------------------------------------- /.woodpecker/images/releases/bark/linux_armv7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/images/releases/bark/linux_armv7.Dockerfile -------------------------------------------------------------------------------- /.woodpecker/images/releases/bark/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/images/releases/bark/run.sh -------------------------------------------------------------------------------- /.woodpecker/images/releases/captaind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/images/releases/captaind/Dockerfile -------------------------------------------------------------------------------- /.woodpecker/images/releases/captaind/captaind.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/images/releases/captaind/captaind.toml -------------------------------------------------------------------------------- /.woodpecker/images/releases/captaind/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/images/releases/captaind/start.sh -------------------------------------------------------------------------------- /.woodpecker/images/tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/images/tests/Dockerfile -------------------------------------------------------------------------------- /.woodpecker/images/tests/wakemeops.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/images/tests/wakemeops.gpg -------------------------------------------------------------------------------- /.woodpecker/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/main.yml -------------------------------------------------------------------------------- /.woodpecker/nightly-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/nightly-release.yml -------------------------------------------------------------------------------- /.woodpecker/server-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/server-release.yml -------------------------------------------------------------------------------- /.woodpecker/tests-codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/tests-codecov.yml -------------------------------------------------------------------------------- /.woodpecker/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/.woodpecker/tests.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/README.md -------------------------------------------------------------------------------- /CHANGELOG/bark/1342: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/bark/1342 -------------------------------------------------------------------------------- /CHANGELOG/server-rpc/1398: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/server-rpc/1398 -------------------------------------------------------------------------------- /CHANGELOG/server/1342: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/server/1342 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/ark-lib/1293: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/ark-lib/1293 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/ark-lib/1331: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/ark-lib/1331 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/ark-lib/1342: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/ark-lib/1342 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/ark-lib/1363: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/ark-lib/1363 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/ark-lib/1368: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/ark-lib/1368 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/bark-cli/1328: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/bark-cli/1328 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/bark-json/1354: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/bark-json/1354 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/bark-wallet/1328: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/bark-wallet/1328 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/bark-wallet/1331: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/bark-wallet/1331 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/bark-wallet/1354: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/bark-wallet/1354 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/bark-wallet/1355: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/bark-wallet/1355 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/captaind/1331: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/captaind/1331 -------------------------------------------------------------------------------- /CHANGELOG/unreleased/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CHANGELOG/unreleased/template.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING/STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CONTRIBUTING/STYLE.md -------------------------------------------------------------------------------- /CONTRIBUTING/postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/CONTRIBUTING/postgres.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/README.md -------------------------------------------------------------------------------- /ark_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/ark_demo.sh -------------------------------------------------------------------------------- /assets/bark-header-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/assets/bark-header-white.jpg -------------------------------------------------------------------------------- /assets/tx-tree-refresh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/assets/tx-tree-refresh.jpg -------------------------------------------------------------------------------- /bark-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/Cargo.toml -------------------------------------------------------------------------------- /bark-cli/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/build.rs -------------------------------------------------------------------------------- /bark-cli/src/bin/bark/dev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/bin/bark/dev.rs -------------------------------------------------------------------------------- /bark-cli/src/bin/bark/exit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/bin/bark/exit.rs -------------------------------------------------------------------------------- /bark-cli/src/bin/bark/lightning.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/bin/bark/lightning.rs -------------------------------------------------------------------------------- /bark-cli/src/bin/bark/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/bin/bark/main.rs -------------------------------------------------------------------------------- /bark-cli/src/bin/bark/onchain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/bin/bark/onchain.rs -------------------------------------------------------------------------------- /bark-cli/src/bin/bark/round.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/bin/bark/round.rs -------------------------------------------------------------------------------- /bark-cli/src/bin/bark/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/bin/bark/util.rs -------------------------------------------------------------------------------- /bark-cli/src/bin/bark/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/bin/bark/wallet.rs -------------------------------------------------------------------------------- /bark-cli/src/bin/barkd/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/bin/barkd/main.rs -------------------------------------------------------------------------------- /bark-cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/lib.rs -------------------------------------------------------------------------------- /bark-cli/src/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/log.rs -------------------------------------------------------------------------------- /bark-cli/src/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-cli/src/wallet.rs -------------------------------------------------------------------------------- /bark-json/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-json/Cargo.toml -------------------------------------------------------------------------------- /bark-json/src/cli/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-json/src/cli/mod.rs -------------------------------------------------------------------------------- /bark-json/src/cli/onchain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-json/src/cli/onchain.rs -------------------------------------------------------------------------------- /bark-json/src/exit/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-json/src/exit/error.rs -------------------------------------------------------------------------------- /bark-json/src/exit/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-json/src/exit/mod.rs -------------------------------------------------------------------------------- /bark-json/src/exit/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-json/src/exit/package.rs -------------------------------------------------------------------------------- /bark-json/src/exit/states.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-json/src/exit/states.rs -------------------------------------------------------------------------------- /bark-json/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-json/src/lib.rs -------------------------------------------------------------------------------- /bark-json/src/primitives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-json/src/primitives.rs -------------------------------------------------------------------------------- /bark-json/src/serde_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-json/src/serde_utils.rs -------------------------------------------------------------------------------- /bark-json/src/web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-json/src/web.rs -------------------------------------------------------------------------------- /bark-rest-client/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /bark-rest-client/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/.openapi-generator-ignore -------------------------------------------------------------------------------- /bark-rest-client/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/.openapi-generator/FILES -------------------------------------------------------------------------------- /bark-rest-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.13.0 2 | -------------------------------------------------------------------------------- /bark-rest-client/.travis.yml: -------------------------------------------------------------------------------- 1 | language: rust 2 | -------------------------------------------------------------------------------- /bark-rest-client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/Cargo.toml -------------------------------------------------------------------------------- /bark-rest-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/README.md -------------------------------------------------------------------------------- /bark-rest-client/docs/Address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/Address.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ArkAddressResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ArkAddressResponse.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ArkInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ArkInfo.md -------------------------------------------------------------------------------- /bark-rest-client/docs/BadRequestError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/BadRequestError.md -------------------------------------------------------------------------------- /bark-rest-client/docs/Balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/Balance.md -------------------------------------------------------------------------------- /bark-rest-client/docs/BitcoinApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/BitcoinApi.md -------------------------------------------------------------------------------- /bark-rest-client/docs/BoardRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/BoardRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/BoardsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/BoardsApi.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ChildTransactionInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ChildTransactionInfo.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ConnectedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ConnectedResponse.md -------------------------------------------------------------------------------- /bark-rest-client/docs/DefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/DefaultApi.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitAwaitingDeltaState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitAwaitingDeltaState.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitClaimAllRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitClaimAllRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitClaimInProgressState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitClaimInProgressState.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitClaimResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitClaimResponse.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitClaimVtxosRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitClaimVtxosRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitClaimableState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitClaimableState.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitClaimedState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitClaimedState.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitError.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf1.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf10.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf11.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf12.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf13.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf14.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf15.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf16.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf17.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf18.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf19.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf2.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf20.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf21.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf22.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf23.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf3.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf4.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf5.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf6.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf7.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf8.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitErrorOneOf9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitErrorOneOf9.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitProcessingState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitProcessingState.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitProgressRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitProgressRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitProgressResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitProgressResponse.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitProgressStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitProgressStatus.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitStartRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitStartRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitStartResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitStartResponse.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitStartState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitStartState.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitState.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitStateOneOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitStateOneOf.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitStateOneOf1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitStateOneOf1.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitStateOneOf2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitStateOneOf2.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitStateOneOf3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitStateOneOf3.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitStateOneOf4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitStateOneOf4.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitStateOneOf5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitStateOneOf5.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitStatusRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitStatusRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTransactionPackage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTransactionPackage.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTransactionStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTransactionStatus.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTx.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxOrigin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxOrigin.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxOriginOneOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxOriginOneOf.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxOriginOneOf1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxOriginOneOf1.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxOriginOneOf2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxOriginOneOf2.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxStatus.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxStatusOneOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxStatusOneOf.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxStatusOneOf1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxStatusOneOf1.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxStatusOneOf2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxStatusOneOf2.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxStatusOneOf3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxStatusOneOf3.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxStatusOneOf4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxStatusOneOf4.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxStatusOneOf5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxStatusOneOf5.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitTxStatusOneOf6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitTxStatusOneOf6.md -------------------------------------------------------------------------------- /bark-rest-client/docs/ExitsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/ExitsApi.md -------------------------------------------------------------------------------- /bark-rest-client/docs/InternalServerError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/InternalServerError.md -------------------------------------------------------------------------------- /bark-rest-client/docs/InvoiceInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/InvoiceInfo.md -------------------------------------------------------------------------------- /bark-rest-client/docs/LightningApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/LightningApi.md -------------------------------------------------------------------------------- /bark-rest-client/docs/LightningInvoiceRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/LightningInvoiceRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/LightningPayRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/LightningPayRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/LightningPayResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/LightningPayResponse.md -------------------------------------------------------------------------------- /bark-rest-client/docs/LightningReceiveInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/LightningReceiveInfo.md -------------------------------------------------------------------------------- /bark-rest-client/docs/Movement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/Movement.md -------------------------------------------------------------------------------- /bark-rest-client/docs/MovementDestination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/MovementDestination.md -------------------------------------------------------------------------------- /bark-rest-client/docs/MovementStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/MovementStatus.md -------------------------------------------------------------------------------- /bark-rest-client/docs/MovementSubsystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/MovementSubsystem.md -------------------------------------------------------------------------------- /bark-rest-client/docs/MovementTimestamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/MovementTimestamp.md -------------------------------------------------------------------------------- /bark-rest-client/docs/NotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/NotFoundError.md -------------------------------------------------------------------------------- /bark-rest-client/docs/OffboardAllRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/OffboardAllRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/OffboardVtxosRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/OffboardVtxosRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/OnchainApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/OnchainApi.md -------------------------------------------------------------------------------- /bark-rest-client/docs/OnchainBalance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/OnchainBalance.md -------------------------------------------------------------------------------- /bark-rest-client/docs/OnchainDrainRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/OnchainDrainRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/OnchainSendManyRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/OnchainSendManyRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/OnchainSendRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/OnchainSendRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/PendingBoardInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/PendingBoardInfo.md -------------------------------------------------------------------------------- /bark-rest-client/docs/PendingRoundInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/PendingRoundInfo.md -------------------------------------------------------------------------------- /bark-rest-client/docs/RefreshRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/RefreshRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/RoundStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/RoundStatus.md -------------------------------------------------------------------------------- /bark-rest-client/docs/RoundStatusOneOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/RoundStatusOneOf.md -------------------------------------------------------------------------------- /bark-rest-client/docs/RoundStatusOneOf1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/RoundStatusOneOf1.md -------------------------------------------------------------------------------- /bark-rest-client/docs/RoundStatusOneOf2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/RoundStatusOneOf2.md -------------------------------------------------------------------------------- /bark-rest-client/docs/RoundStatusOneOf3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/RoundStatusOneOf3.md -------------------------------------------------------------------------------- /bark-rest-client/docs/RoundStatusOneOf4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/RoundStatusOneOf4.md -------------------------------------------------------------------------------- /bark-rest-client/docs/Send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/Send.md -------------------------------------------------------------------------------- /bark-rest-client/docs/SendOnchainRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/SendOnchainRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/SendRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/SendRequest.md -------------------------------------------------------------------------------- /bark-rest-client/docs/SendResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/SendResponse.md -------------------------------------------------------------------------------- /bark-rest-client/docs/TipResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/TipResponse.md -------------------------------------------------------------------------------- /bark-rest-client/docs/TransactionInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/TransactionInfo.md -------------------------------------------------------------------------------- /bark-rest-client/docs/UtxoInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/UtxoInfo.md -------------------------------------------------------------------------------- /bark-rest-client/docs/VtxoInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/VtxoInfo.md -------------------------------------------------------------------------------- /bark-rest-client/docs/VtxoStateInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/VtxoStateInfo.md -------------------------------------------------------------------------------- /bark-rest-client/docs/VtxoStateInfoOneOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/VtxoStateInfoOneOf.md -------------------------------------------------------------------------------- /bark-rest-client/docs/VtxoStateInfoOneOf1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/VtxoStateInfoOneOf1.md -------------------------------------------------------------------------------- /bark-rest-client/docs/VtxoStateInfoOneOf2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/VtxoStateInfoOneOf2.md -------------------------------------------------------------------------------- /bark-rest-client/docs/VtxosQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/VtxosQuery.md -------------------------------------------------------------------------------- /bark-rest-client/docs/WalletApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/WalletApi.md -------------------------------------------------------------------------------- /bark-rest-client/docs/WalletVtxoInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/docs/WalletVtxoInfo.md -------------------------------------------------------------------------------- /bark-rest-client/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/git_push.sh -------------------------------------------------------------------------------- /bark-rest-client/src/apis/bitcoin_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/src/apis/bitcoin_api.rs -------------------------------------------------------------------------------- /bark-rest-client/src/apis/boards_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/src/apis/boards_api.rs -------------------------------------------------------------------------------- /bark-rest-client/src/apis/configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/src/apis/configuration.rs -------------------------------------------------------------------------------- /bark-rest-client/src/apis/default_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/src/apis/default_api.rs -------------------------------------------------------------------------------- /bark-rest-client/src/apis/exits_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/src/apis/exits_api.rs -------------------------------------------------------------------------------- /bark-rest-client/src/apis/lightning_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/src/apis/lightning_api.rs -------------------------------------------------------------------------------- /bark-rest-client/src/apis/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/src/apis/mod.rs -------------------------------------------------------------------------------- /bark-rest-client/src/apis/onchain_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/src/apis/onchain_api.rs -------------------------------------------------------------------------------- /bark-rest-client/src/apis/wallet_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/src/apis/wallet_api.rs -------------------------------------------------------------------------------- /bark-rest-client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/src/lib.rs -------------------------------------------------------------------------------- /bark-rest-client/src/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest-client/src/models/mod.rs -------------------------------------------------------------------------------- /bark-rest/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/Cargo.toml -------------------------------------------------------------------------------- /bark-rest/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/build.rs -------------------------------------------------------------------------------- /bark-rest/examples/dump_api_docs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/examples/dump_api_docs.rs -------------------------------------------------------------------------------- /bark-rest/helpers/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/helpers/models.rs -------------------------------------------------------------------------------- /bark-rest/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/openapi.json -------------------------------------------------------------------------------- /bark-rest/src/api/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod v1; -------------------------------------------------------------------------------- /bark-rest/src/api/v1/bitcoin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/src/api/v1/bitcoin.rs -------------------------------------------------------------------------------- /bark-rest/src/api/v1/boards.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/src/api/v1/boards.rs -------------------------------------------------------------------------------- /bark-rest/src/api/v1/exits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/src/api/v1/exits.rs -------------------------------------------------------------------------------- /bark-rest/src/api/v1/lightning.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/src/api/v1/lightning.rs -------------------------------------------------------------------------------- /bark-rest/src/api/v1/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/src/api/v1/mod.rs -------------------------------------------------------------------------------- /bark-rest/src/api/v1/onchain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/src/api/v1/onchain.rs -------------------------------------------------------------------------------- /bark-rest/src/api/v1/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/src/api/v1/wallet.rs -------------------------------------------------------------------------------- /bark-rest/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/src/config.rs -------------------------------------------------------------------------------- /bark-rest/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/src/error.rs -------------------------------------------------------------------------------- /bark-rest/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark-rest/src/lib.rs -------------------------------------------------------------------------------- /bark/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/Cargo.toml -------------------------------------------------------------------------------- /bark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/README.md -------------------------------------------------------------------------------- /bark/examples/dump-sqlite-schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/examples/dump-sqlite-schema.rs -------------------------------------------------------------------------------- /bark/examples/simple_setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/examples/simple_setup.rs -------------------------------------------------------------------------------- /bark/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/schema.sql -------------------------------------------------------------------------------- /bark/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/config.rs -------------------------------------------------------------------------------- /bark/src/daemon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/daemon.rs -------------------------------------------------------------------------------- /bark/src/exit/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/exit/mod.rs -------------------------------------------------------------------------------- /bark/src/exit/models/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/exit/models/error.rs -------------------------------------------------------------------------------- /bark/src/exit/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/exit/models/mod.rs -------------------------------------------------------------------------------- /bark/src/exit/models/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/exit/models/package.rs -------------------------------------------------------------------------------- /bark/src/exit/models/states.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/exit/models/states.rs -------------------------------------------------------------------------------- /bark/src/exit/progress/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/exit/progress/mod.rs -------------------------------------------------------------------------------- /bark/src/exit/progress/states.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/exit/progress/states.rs -------------------------------------------------------------------------------- /bark/src/exit/progress/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/exit/progress/util.rs -------------------------------------------------------------------------------- /bark/src/exit/transaction_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/exit/transaction_manager.rs -------------------------------------------------------------------------------- /bark/src/exit/vtxo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/exit/vtxo.rs -------------------------------------------------------------------------------- /bark/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/lib.rs -------------------------------------------------------------------------------- /bark/src/lightning/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/lightning/mod.rs -------------------------------------------------------------------------------- /bark/src/lightning/pay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/lightning/pay.rs -------------------------------------------------------------------------------- /bark/src/lightning/receive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/lightning/receive.rs -------------------------------------------------------------------------------- /bark/src/movement/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/movement/error.rs -------------------------------------------------------------------------------- /bark/src/movement/manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/movement/manager.rs -------------------------------------------------------------------------------- /bark/src/movement/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/movement/mod.rs -------------------------------------------------------------------------------- /bark/src/movement/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/movement/update.rs -------------------------------------------------------------------------------- /bark/src/onchain/bdk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/onchain/bdk.rs -------------------------------------------------------------------------------- /bark/src/onchain/chain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/onchain/chain.rs -------------------------------------------------------------------------------- /bark/src/onchain/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/onchain/mod.rs -------------------------------------------------------------------------------- /bark/src/persist/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/mod.rs -------------------------------------------------------------------------------- /bark/src/persist/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/models.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/convert.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0001_initial_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0001_initial_version.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0002_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0002_config.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0003_payment_history.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0003_payment_history.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0004_unregistered_board.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0004_unregistered_board.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0005_lightning_receive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0005_lightning_receive.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0006_exit_rework.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0006_exit_rework.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0007_vtxo_refresh_expiry_threshold.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0007_vtxo_refresh_expiry_threshold.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0008_fee_rate_implementation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0008_fee_rate_implementation.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0009_add_movement_kind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0009_add_movement_kind.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0010_remove_keychain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0010_remove_keychain.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0011_exit_ancestor_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0011_exit_ancestor_info.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0012_round.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0012_round.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0013_round_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0013_round_sync.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0014_drop_past_round_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0014_drop_past_round_sync.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0015_optional_round_seq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0015_optional_round_seq.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0016_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0016_config.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0017_great_state_cleanup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0017_great_state_cleanup.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0018_htlc_recv_cltv_delta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0018_htlc_recv_cltv_delta.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0019_round_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0019_round_state.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0020_new_movements_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0020_new_movements_api.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0021_fix_lightning_movements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0021_fix_lightning_movements.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/m0022_unreleased.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/m0022_unreleased.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/migrations/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/migrations/mod.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/mod.rs -------------------------------------------------------------------------------- /bark/src/persist/sqlite/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/persist/sqlite/query.rs -------------------------------------------------------------------------------- /bark/src/psbtext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/psbtext.rs -------------------------------------------------------------------------------- /bark/src/round.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/round.rs -------------------------------------------------------------------------------- /bark/src/subsystem/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/subsystem/mod.rs -------------------------------------------------------------------------------- /bark/src/vtxo/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/vtxo/mod.rs -------------------------------------------------------------------------------- /bark/src/vtxo/selection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/vtxo/selection.rs -------------------------------------------------------------------------------- /bark/src/vtxo/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/src/vtxo/state.rs -------------------------------------------------------------------------------- /bark/tests/bark_persister_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bark/tests/bark_persister_test.rs -------------------------------------------------------------------------------- /bitcoin-ext/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bitcoin-ext/Cargo.toml -------------------------------------------------------------------------------- /bitcoin-ext/src/bdk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bitcoin-ext/src/bdk.rs -------------------------------------------------------------------------------- /bitcoin-ext/src/bitcoin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bitcoin-ext/src/bitcoin.rs -------------------------------------------------------------------------------- /bitcoin-ext/src/cpfp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bitcoin-ext/src/cpfp.rs -------------------------------------------------------------------------------- /bitcoin-ext/src/esplora.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bitcoin-ext/src/esplora.rs -------------------------------------------------------------------------------- /bitcoin-ext/src/fee.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bitcoin-ext/src/fee.rs -------------------------------------------------------------------------------- /bitcoin-ext/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bitcoin-ext/src/lib.rs -------------------------------------------------------------------------------- /bitcoin-ext/src/rpc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bitcoin-ext/src/rpc.rs -------------------------------------------------------------------------------- /bitcoin-ext/src/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/bitcoin-ext/src/serde.rs -------------------------------------------------------------------------------- /cln-rpc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/cln-rpc/Cargo.toml -------------------------------------------------------------------------------- /cln-rpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/cln-rpc/README.md -------------------------------------------------------------------------------- /cln-rpc/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/cln-rpc/build.rs -------------------------------------------------------------------------------- /cln-rpc/protos/hold.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/cln-rpc/protos/hold.proto -------------------------------------------------------------------------------- /cln-rpc/protos/node.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/cln-rpc/protos/node.proto -------------------------------------------------------------------------------- /cln-rpc/protos/primitives.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/cln-rpc/protos/primitives.proto -------------------------------------------------------------------------------- /cln-rpc/src/convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/cln-rpc/src/convert.rs -------------------------------------------------------------------------------- /cln-rpc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/cln-rpc/src/lib.rs -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/assign-nightly-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/assign-nightly-version.sh -------------------------------------------------------------------------------- /contrib/check-clean-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/check-clean-diff.sh -------------------------------------------------------------------------------- /contrib/check-commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/check-commits.sh -------------------------------------------------------------------------------- /contrib/check-gitlab-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/check-gitlab-release.sh -------------------------------------------------------------------------------- /contrib/check-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/check-versions.sh -------------------------------------------------------------------------------- /contrib/ci-gitlab-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/ci-gitlab-release.sh -------------------------------------------------------------------------------- /contrib/ci-run-test-copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/ci-run-test-copy.sh -------------------------------------------------------------------------------- /contrib/ci-run-test-trash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/ci-run-test-trash.sh -------------------------------------------------------------------------------- /contrib/ci-run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/ci-run-test.sh -------------------------------------------------------------------------------- /contrib/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/docker/README.md -------------------------------------------------------------------------------- /contrib/docker/cln.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/docker/cln.Dockerfile -------------------------------------------------------------------------------- /contrib/docker/cln_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/docker/cln_start.sh -------------------------------------------------------------------------------- /contrib/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/docker/docker-compose.yml -------------------------------------------------------------------------------- /contrib/flake_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/flake_finder.py -------------------------------------------------------------------------------- /contrib/generate-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/generate-index.sh -------------------------------------------------------------------------------- /contrib/idea/runConfigurations/Build Workspace.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/idea/runConfigurations/Build Workspace.run.xml -------------------------------------------------------------------------------- /contrib/idea/runConfigurations/Integration Tests (esplora-electrs).run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/idea/runConfigurations/Integration Tests (esplora-electrs).run.xml -------------------------------------------------------------------------------- /contrib/idea/runConfigurations/Integration Tests (mempool-electrs).run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/idea/runConfigurations/Integration Tests (mempool-electrs).run.xml -------------------------------------------------------------------------------- /contrib/idea/runConfigurations/Integration Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/idea/runConfigurations/Integration Tests.run.xml -------------------------------------------------------------------------------- /contrib/idea/runConfigurations/Just Docker Pull.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/idea/runConfigurations/Just Docker Pull.run.xml -------------------------------------------------------------------------------- /contrib/idea/runConfigurations/Just Test.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/idea/runConfigurations/Just Test.run.xml -------------------------------------------------------------------------------- /contrib/idea/runConfigurations/Unit Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/idea/runConfigurations/Unit Tests.run.xml -------------------------------------------------------------------------------- /contrib/parse-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/parse-versions.sh -------------------------------------------------------------------------------- /contrib/prechecks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/contrib/prechecks.sh -------------------------------------------------------------------------------- /docs/addresses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/docs/addresses.md -------------------------------------------------------------------------------- /docs/checkpoints/01_problems_withouth_checkpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/docs/checkpoints/01_problems_withouth_checkpoints.md -------------------------------------------------------------------------------- /docs/checkpoints/02_help_my_neighbour_did_an_exit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/docs/checkpoints/02_help_my_neighbour_did_an_exit.md -------------------------------------------------------------------------------- /docs/checkpoints/03_designing_checkpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/docs/checkpoints/03_designing_checkpoints.md -------------------------------------------------------------------------------- /docs/mailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/docs/mailbox.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/flake.nix -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/justfile -------------------------------------------------------------------------------- /lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/Cargo.toml -------------------------------------------------------------------------------- /lib/src/address.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/address.rs -------------------------------------------------------------------------------- /lib/src/arkoor/checkpoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/arkoor/checkpoint.rs -------------------------------------------------------------------------------- /lib/src/arkoor/checkpointed_package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/arkoor/checkpointed_package.rs -------------------------------------------------------------------------------- /lib/src/arkoor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/arkoor/mod.rs -------------------------------------------------------------------------------- /lib/src/arkoor/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/arkoor/package.rs -------------------------------------------------------------------------------- /lib/src/board.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/board.rs -------------------------------------------------------------------------------- /lib/src/challenges.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/challenges.rs -------------------------------------------------------------------------------- /lib/src/connectors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/connectors.rs -------------------------------------------------------------------------------- /lib/src/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/encode.rs -------------------------------------------------------------------------------- /lib/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/error.rs -------------------------------------------------------------------------------- /lib/src/forfeit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/forfeit.rs -------------------------------------------------------------------------------- /lib/src/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/integration.rs -------------------------------------------------------------------------------- /lib/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/lib.rs -------------------------------------------------------------------------------- /lib/src/lightning.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/lightning.rs -------------------------------------------------------------------------------- /lib/src/mailbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/mailbox.rs -------------------------------------------------------------------------------- /lib/src/musig.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/musig.rs -------------------------------------------------------------------------------- /lib/src/napkin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/napkin.rs -------------------------------------------------------------------------------- /lib/src/rounds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/rounds.rs -------------------------------------------------------------------------------- /lib/src/test/dummy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/test/dummy.rs -------------------------------------------------------------------------------- /lib/src/test/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/test/mod.rs -------------------------------------------------------------------------------- /lib/src/tree/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/tree/mod.rs -------------------------------------------------------------------------------- /lib/src/tree/signed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/tree/signed.rs -------------------------------------------------------------------------------- /lib/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/util.rs -------------------------------------------------------------------------------- /lib/src/vtxo/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/vtxo/mod.rs -------------------------------------------------------------------------------- /lib/src/vtxo/validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/lib/src/vtxo/validation.rs -------------------------------------------------------------------------------- /nix/build-shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/nix/build-shell.nix -------------------------------------------------------------------------------- /nix/dev-shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/nix/dev-shell.nix -------------------------------------------------------------------------------- /server-log/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/Cargo.toml -------------------------------------------------------------------------------- /server-log/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/lib.rs -------------------------------------------------------------------------------- /server-log/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/macros.rs -------------------------------------------------------------------------------- /server-log/src/msgs/arkoor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/msgs/arkoor.rs -------------------------------------------------------------------------------- /server-log/src/msgs/board.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/msgs/board.rs -------------------------------------------------------------------------------- /server-log/src/msgs/forfeits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/msgs/forfeits.rs -------------------------------------------------------------------------------- /server-log/src/msgs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/msgs/mod.rs -------------------------------------------------------------------------------- /server-log/src/msgs/rounds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/msgs/rounds.rs -------------------------------------------------------------------------------- /server-log/src/msgs/sweeps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/msgs/sweeps.rs -------------------------------------------------------------------------------- /server-log/src/msgs/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/msgs/system.rs -------------------------------------------------------------------------------- /server-log/src/msgs/txindex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/msgs/txindex.rs -------------------------------------------------------------------------------- /server-log/src/msgs/vtxopool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/msgs/vtxopool.rs -------------------------------------------------------------------------------- /server-log/src/msgs/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/msgs/wallet.rs -------------------------------------------------------------------------------- /server-log/src/serde_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-log/src/serde_utils.rs -------------------------------------------------------------------------------- /server-rpc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-rpc/Cargo.toml -------------------------------------------------------------------------------- /server-rpc/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-rpc/build.rs -------------------------------------------------------------------------------- /server-rpc/protos/bark_server.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-rpc/protos/bark_server.proto -------------------------------------------------------------------------------- /server-rpc/protos/intman.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-rpc/protos/intman.proto -------------------------------------------------------------------------------- /server-rpc/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-rpc/src/client.rs -------------------------------------------------------------------------------- /server-rpc/src/convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-rpc/src/convert.rs -------------------------------------------------------------------------------- /server-rpc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server-rpc/src/lib.rs -------------------------------------------------------------------------------- /server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/Cargo.toml -------------------------------------------------------------------------------- /server/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/build.rs -------------------------------------------------------------------------------- /server/captaind.default.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/captaind.default.toml -------------------------------------------------------------------------------- /server/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/schema.sql -------------------------------------------------------------------------------- /server/src/bin/captaind/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/bin/captaind/main.rs -------------------------------------------------------------------------------- /server/src/bin/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/bin/common/mod.rs -------------------------------------------------------------------------------- /server/src/bin/watchmand/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/bin/watchmand/main.rs -------------------------------------------------------------------------------- /server/src/bitcoind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/bitcoind.rs -------------------------------------------------------------------------------- /server/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/config.rs -------------------------------------------------------------------------------- /server/src/database/forfeits/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/forfeits/mod.rs -------------------------------------------------------------------------------- /server/src/database/forfeits/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/forfeits/model.rs -------------------------------------------------------------------------------- /server/src/database/intman/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/intman/mod.rs -------------------------------------------------------------------------------- /server/src/database/intman/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/intman/model.rs -------------------------------------------------------------------------------- /server/src/database/ln/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/ln/mod.rs -------------------------------------------------------------------------------- /server/src/database/ln/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/ln/model.rs -------------------------------------------------------------------------------- /server/src/database/migrations/V0__init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V0__init.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V10__round_id_column_in_vtxo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V10__round_id_column_in_vtxo.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V11__round_seq.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V11__round_seq.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V12__tokens.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V12__tokens.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V13__ephemeral_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V13__ephemeral_keys.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V14__drop_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V14__drop_views.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V15__add_index_uniqueness.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V15__add_index_uniqueness.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V16__offchain_ln_receive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V16__offchain_ln_receive.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V17__board_sweeps.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V17__board_sweeps.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V18__ln_receive_htlc_cltv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V18__ln_receive_htlc_cltv.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V19__hardcoded_captaind_api_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V19__hardcoded_captaind_api_keys.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V1__board_swept.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V1__board_swept.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V20__unreleased.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V20__unreleased.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V2__indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V2__indexes.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V3__vtxo_spendable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V3__vtxo_spendable.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V4__lightning_invoice.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V4__lightning_invoice.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V5__forfeit_state.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V5__forfeit_state.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V6__lightning_invoice_no_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V6__lightning_invoice_no_status.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V7__lightning_htlc_subscription.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V7__lightning_htlc_subscription.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V8__arkoor_package_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V8__arkoor_package_id.sql -------------------------------------------------------------------------------- /server/src/database/migrations/V9__bitcoin_transaction.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/migrations/V9__bitcoin_transaction.sql -------------------------------------------------------------------------------- /server/src/database/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/mod.rs -------------------------------------------------------------------------------- /server/src/database/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/model.rs -------------------------------------------------------------------------------- /server/src/database/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/query.rs -------------------------------------------------------------------------------- /server/src/database/rounds/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/rounds/mod.rs -------------------------------------------------------------------------------- /server/src/database/rounds/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/rounds/model.rs -------------------------------------------------------------------------------- /server/src/database/vtxopool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/database/vtxopool.rs -------------------------------------------------------------------------------- /server/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/error.rs -------------------------------------------------------------------------------- /server/src/filters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/filters.rs -------------------------------------------------------------------------------- /server/src/flux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/flux.rs -------------------------------------------------------------------------------- /server/src/forfeits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/forfeits.rs -------------------------------------------------------------------------------- /server/src/intman/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/intman/mod.rs -------------------------------------------------------------------------------- /server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/lib.rs -------------------------------------------------------------------------------- /server/src/ln/cln/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/ln/cln/mod.rs -------------------------------------------------------------------------------- /server/src/ln/cln/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/ln/cln/node.rs -------------------------------------------------------------------------------- /server/src/ln/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/ln/mod.rs -------------------------------------------------------------------------------- /server/src/psbtext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/psbtext.rs -------------------------------------------------------------------------------- /server/src/round/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/round/mod.rs -------------------------------------------------------------------------------- /server/src/rpcserver/admin/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/rpcserver/admin/mod.rs -------------------------------------------------------------------------------- /server/src/rpcserver/ark/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/rpcserver/ark/mod.rs -------------------------------------------------------------------------------- /server/src/rpcserver/convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/rpcserver/convert.rs -------------------------------------------------------------------------------- /server/src/rpcserver/intman/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/rpcserver/intman/mod.rs -------------------------------------------------------------------------------- /server/src/rpcserver/middleware/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/rpcserver/middleware/mod.rs -------------------------------------------------------------------------------- /server/src/rpcserver/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/rpcserver/mod.rs -------------------------------------------------------------------------------- /server/src/secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/secret.rs -------------------------------------------------------------------------------- /server/src/serde_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/serde_util.rs -------------------------------------------------------------------------------- /server/src/sweeps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/sweeps.rs -------------------------------------------------------------------------------- /server/src/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/system.rs -------------------------------------------------------------------------------- /server/src/telemetry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/telemetry.rs -------------------------------------------------------------------------------- /server/src/tip_fetcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/tip_fetcher.rs -------------------------------------------------------------------------------- /server/src/txindex/block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/txindex/block.rs -------------------------------------------------------------------------------- /server/src/txindex/broadcast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/txindex/broadcast.rs -------------------------------------------------------------------------------- /server/src/txindex/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/txindex/mod.rs -------------------------------------------------------------------------------- /server/src/vtxopool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/vtxopool.rs -------------------------------------------------------------------------------- /server/src/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/wallet.rs -------------------------------------------------------------------------------- /server/src/watchman.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/src/watchman.rs -------------------------------------------------------------------------------- /server/watchmand.default.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/server/watchmand.default.toml -------------------------------------------------------------------------------- /testing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/Cargo.toml -------------------------------------------------------------------------------- /testing/examples/dump-server-postgres-schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/examples/dump-server-postgres-schema.rs -------------------------------------------------------------------------------- /testing/msrv-lib/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/msrv-lib/Cargo.lock -------------------------------------------------------------------------------- /testing/msrv-lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/msrv-lib/Cargo.toml -------------------------------------------------------------------------------- /testing/msrv-lib/src/lib.rs: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /testing/src/bark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/bark.rs -------------------------------------------------------------------------------- /testing/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/constants.rs -------------------------------------------------------------------------------- /testing/src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/context.rs -------------------------------------------------------------------------------- /testing/src/daemon/bitcoind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/daemon/bitcoind.rs -------------------------------------------------------------------------------- /testing/src/daemon/captaind/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/daemon/captaind/mod.rs -------------------------------------------------------------------------------- /testing/src/daemon/captaind/proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/daemon/captaind/proxy.rs -------------------------------------------------------------------------------- /testing/src/daemon/electrs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/daemon/electrs.rs -------------------------------------------------------------------------------- /testing/src/daemon/lightningd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/daemon/lightningd.rs -------------------------------------------------------------------------------- /testing/src/daemon/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/daemon/mod.rs -------------------------------------------------------------------------------- /testing/src/daemon/postgres.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/daemon/postgres.rs -------------------------------------------------------------------------------- /testing/src/exit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/exit.rs -------------------------------------------------------------------------------- /testing/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/lib.rs -------------------------------------------------------------------------------- /testing/src/postgres/external.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/postgres/external.rs -------------------------------------------------------------------------------- /testing/src/postgres/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/postgres/mod.rs -------------------------------------------------------------------------------- /testing/src/postgres/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/postgres/query.rs -------------------------------------------------------------------------------- /testing/src/postgres/test_managed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/postgres/test_managed.rs -------------------------------------------------------------------------------- /testing/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/src/util.rs -------------------------------------------------------------------------------- /testing/tests/bark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/tests/bark.rs -------------------------------------------------------------------------------- /testing/tests/bitcoind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/tests/bitcoind.rs -------------------------------------------------------------------------------- /testing/tests/chain_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/tests/chain_source.rs -------------------------------------------------------------------------------- /testing/tests/exit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/tests/exit.rs -------------------------------------------------------------------------------- /testing/tests/lightningd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/tests/lightningd.rs -------------------------------------------------------------------------------- /testing/tests/postgres.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/tests/postgres.rs -------------------------------------------------------------------------------- /testing/tests/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/tests/server.rs -------------------------------------------------------------------------------- /testing/tests/sweeper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-bitcoin/bark/HEAD/testing/tests/sweeper.rs --------------------------------------------------------------------------------