├── .dockerignore ├── .env ├── .eslintignore ├── .eslintrc.js ├── .git-commit-template.txt ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug-report.md └── workflows │ ├── ci.yml │ ├── seedutil.yml │ └── simtest.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── CONTRIBUTING.MD ├── LICENSE ├── README.md ├── bin ├── xucli ├── xud └── xud-backup ├── docs └── api.md ├── gulpfile.ts ├── jest.config.js ├── lib ├── .eslintrc.js ├── Config.ts ├── Logger.ts ├── Xud.ts ├── backup │ └── Backup.ts ├── bootstrap.ts ├── cli │ ├── command.ts │ ├── commands │ │ ├── addcurrency.ts │ │ ├── addpair.ts │ │ ├── ban.ts │ │ ├── buy.ts │ │ ├── changepass.ts │ │ ├── closechannel.ts │ │ ├── connect.ts │ │ ├── create.ts │ │ ├── deposit.ts │ │ ├── discovernodes.ts │ │ ├── executeswap.ts │ │ ├── getbalance.ts │ │ ├── getinfo.ts │ │ ├── getmnemonic.ts │ │ ├── getnodeinfo.ts │ │ ├── listcurrencies.ts │ │ ├── listorders.ts │ │ ├── listpairs.ts │ │ ├── listpeers.ts │ │ ├── loglevel.ts │ │ ├── openchannel.ts │ │ ├── orderbook.ts │ │ ├── removeallorders.ts │ │ ├── removecurrency.ts │ │ ├── removeorder.ts │ │ ├── removepair.ts │ │ ├── restore.ts │ │ ├── sell.ts │ │ ├── shutdown.ts │ │ ├── streamorders.ts │ │ ├── tradehistory.ts │ │ ├── tradinglimits.ts │ │ ├── unban.ts │ │ ├── unlock.ts │ │ ├── walletdeposit.ts │ │ └── walletwithdraw.ts │ ├── placeorder.ts │ └── utils.ts ├── connextclient │ ├── ConnextClient.ts │ ├── errors.ts │ ├── ethprovider.ts │ └── types.ts ├── constants │ ├── enums.ts │ ├── errorCodesPrefix.ts │ └── wordlist.ts ├── db │ ├── DB.ts │ ├── migrations.ts │ ├── models │ │ ├── Currency.ts │ │ ├── Node.ts │ │ ├── Order.ts │ │ ├── Pair.ts │ │ ├── Password.ts │ │ ├── ReputationEvent.ts │ │ ├── SwapDeal.ts │ │ ├── Trade.ts │ │ └── index.ts │ ├── seeds │ │ ├── index.ts │ │ ├── mainnet.ts │ │ ├── simnet.ts │ │ └── testnet.ts │ └── types.ts ├── grpc │ ├── GrpcInitService.ts │ ├── GrpcServer.ts │ ├── GrpcService.ts │ ├── errors.ts │ ├── getGrpcError.ts │ └── serverProxy.ts ├── http │ ├── HttpServer.ts │ └── HttpService.ts ├── lndclient │ ├── LndClient.ts │ ├── errors.ts │ └── types.ts ├── nodekey │ └── NodeKey.ts ├── orderbook │ ├── OrderBook.ts │ ├── OrderBookRepository.ts │ ├── TradingPair.ts │ ├── errors.ts │ └── types.ts ├── p2p │ ├── Framer.ts │ ├── Network.ts │ ├── NodeList.ts │ ├── P2PRepository.ts │ ├── Parser.ts │ ├── Peer.ts │ ├── Pool.ts │ ├── errors.ts │ ├── packets │ │ ├── Packet.ts │ │ ├── PacketType.ts │ │ ├── index.ts │ │ ├── types │ │ │ ├── DisconnectingPacket.ts │ │ │ ├── GetNodesPacket.ts │ │ │ ├── GetOrdersPacket.ts │ │ │ ├── NodeStateUpdatePacket.ts │ │ │ ├── NodesPacket.ts │ │ │ ├── OrderInvalidationPacket.ts │ │ │ ├── OrderPacket.ts │ │ │ ├── OrdersPacket.ts │ │ │ ├── PingPacket.ts │ │ │ ├── PongPacket.ts │ │ │ ├── SanitySwapAckPacket.ts │ │ │ ├── SanitySwapInitPacket.ts │ │ │ ├── SessionAckPacket.ts │ │ │ ├── SessionInitPacket.ts │ │ │ ├── SwapAcceptedPacket.ts │ │ │ ├── SwapFailedPacket.ts │ │ │ ├── SwapRequestPacket.ts │ │ │ └── index.ts │ │ └── utils.ts │ └── types.ts ├── proto │ ├── annotations_grpc_pb.js │ ├── annotations_pb.d.ts │ ├── annotations_pb.js │ ├── google │ │ ├── api │ │ │ ├── http_grpc_pb.js │ │ │ ├── http_pb.d.ts │ │ │ └── http_pb.js │ │ └── protobuf │ │ │ ├── descriptor_grpc_pb.js │ │ │ ├── descriptor_pb.d.ts │ │ │ └── descriptor_pb.js │ ├── lndinvoices_grpc_pb.d.ts │ ├── lndinvoices_grpc_pb.js │ ├── lndinvoices_pb.d.ts │ ├── lndinvoices_pb.js │ ├── lndrouter_grpc_pb.d.ts │ ├── lndrouter_grpc_pb.js │ ├── lndrouter_pb.d.ts │ ├── lndrouter_pb.js │ ├── lndrpc_grpc_pb.d.ts │ ├── lndrpc_grpc_pb.js │ ├── lndrpc_pb.d.ts │ ├── lndrpc_pb.js │ ├── lndwalletunlocker_grpc_pb.d.ts │ ├── lndwalletunlocker_grpc_pb.js │ ├── lndwalletunlocker_pb.d.ts │ ├── lndwalletunlocker_pb.js │ ├── xudp2p_grpc_pb.js │ ├── xudp2p_pb.d.ts │ ├── xudp2p_pb.js │ ├── xudrpc.swagger.json │ ├── xudrpc_grpc_pb.d.ts │ ├── xudrpc_grpc_pb.js │ ├── xudrpc_pb.d.ts │ └── xudrpc_pb.js ├── service │ ├── InitService.ts │ ├── Service.ts │ ├── errors.ts │ └── types.ts ├── swaps │ ├── SwapClient.ts │ ├── SwapClientManager.ts │ ├── SwapRecovery.ts │ ├── SwapRepository.ts │ ├── Swaps.ts │ ├── consts.ts │ ├── errors.ts │ └── types.ts ├── types.ts └── utils │ ├── UnitConverter.ts │ ├── addressUtils.ts │ ├── aliasUtils.ts │ ├── cryptoUtils.ts │ ├── seedutil.ts │ ├── simnet-connext-channels.ts │ ├── uriUtils.ts │ └── utils.ts ├── logo.png ├── npm-shrinkwrap.json ├── package.json ├── parseGitCommit.js ├── proto ├── README.md ├── annotations.proto ├── google │ ├── api │ │ └── http.proto │ └── protobuf │ │ └── descriptor.proto ├── lndinvoices.proto ├── lndrouter.proto ├── lndrpc.proto ├── lndwalletunlocker.proto ├── xudp2p.proto └── xudrpc.proto ├── sample-xud.conf ├── seedutil ├── README.md ├── SeedUtil.spec.ts ├── __snapshots__ │ └── SeedUtil.spec.ts.snap ├── go.mod ├── go.sum └── main.go ├── tasks ├── config │ ├── index.ts │ └── sample.ts └── index.ts ├── test ├── .eslintrc.js ├── crypto │ └── handshake.ts ├── integration │ ├── Command.spec.ts │ ├── OrderBook.spec.ts │ ├── Pool.spec.ts │ ├── Service.spec.ts │ └── Swaps.spec.ts ├── jest │ ├── .eslintrc.js │ ├── Backup.spec.ts │ ├── Config.spec.ts │ ├── Connext.spec.ts │ ├── DB.spec.ts │ ├── HttpServer.spec.ts │ ├── HttpService.spec.ts │ ├── LndClient.spec.ts │ ├── NodeKey.spec.ts │ ├── NodeList.spec.ts │ ├── Orderbook.spec.ts │ ├── Peer.spec.ts │ ├── Pool.spec.ts │ ├── Service.spec.ts │ ├── SwapClientManager.spec.ts │ ├── SwapRecovery.spec.ts │ ├── Swaps.spec.ts │ ├── UnitConverter.spec.ts │ ├── __snapshots__ │ │ ├── Connext.spec.ts.snap │ │ ├── LndClient.spec.ts.snap │ │ ├── NodeKey.spec.ts.snap │ │ ├── Service.spec.ts.snap │ │ ├── SwapClientManager.spec.ts.snap │ │ ├── Swaps.spec.ts.snap │ │ └── UnitConverter.spec.ts.snap │ ├── aliasUtils.spec.ts │ ├── cli │ │ ├── __snapshots__ │ │ │ ├── getbalance.spec.ts.snap │ │ │ ├── orderbook.spec.ts.snap │ │ │ └── tradinglimits.spec.ts.snap │ │ ├── getbalance.spec.ts │ │ ├── orderbook.spec.ts │ │ └── tradinglimits.spec.ts │ ├── cryptoUtils.spec.ts │ ├── integration │ │ └── Swaps.spec.ts │ └── toEip55Address.spec.ts ├── p2p │ ├── networks.spec.ts │ └── sanity.spec.ts ├── perf │ └── OrderBook.spec.ts ├── simulation │ ├── .dockerignore │ ├── Dockerfile │ ├── Dockerfile_gomod │ ├── README.md │ ├── actions.go │ ├── config.go │ ├── connexttest │ │ ├── client.go │ │ ├── ethwallet.go │ │ ├── harness.go │ │ └── httpclient.go │ ├── custom-xud.patch │ ├── docker-btcd │ │ └── Dockerfile │ ├── docker-build.sh │ ├── docker-clean.sh │ ├── docker-compose.yml │ ├── docker-connext │ │ └── Dockerfile │ ├── docker-lnd │ │ ├── Dockerfile │ │ └── install-lnd.sh │ ├── docker-run.sh │ ├── docker-xud │ │ └── Dockerfile │ ├── go.mod │ ├── go.sum │ ├── harnessTest.go │ ├── lntest │ │ ├── COPYING.md │ │ ├── doc.go │ │ ├── harness.go │ │ ├── hash.go │ │ └── node.go │ ├── logs.sh │ ├── shared │ │ └── freeport.go │ ├── tests-instability.go │ ├── tests-integration.go │ ├── tests-security.go │ ├── xud_test.go │ ├── xudrpc │ │ └── xudrpc.pb.go │ └── xudtest │ │ ├── doc.go │ │ ├── harness.go │ │ └── node.go ├── unit │ ├── Command.spec.ts │ ├── Parser.spec.ts │ ├── Semver.spec.ts │ ├── Swaps.spec.ts │ ├── TradingPair.spec.ts │ └── uriUtils.spec.ts └── utils.ts ├── tsconfig.json └── winFixDeprecation.ps1 /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | GRPC_SSL_CIPHER_SUITES='HIGH+ECDSA:ECDHE-RSA-AES128-GCM-SHA256' 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.git-commit-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/.git-commit-template.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/seedutil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/.github/workflows/seedutil.yml -------------------------------------------------------------------------------- /.github/workflows/simtest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/.github/workflows/simtest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | message="chore(release): %s" 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | lib/proto 2 | test/simulation 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/README.md -------------------------------------------------------------------------------- /bin/xucli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/bin/xucli -------------------------------------------------------------------------------- /bin/xud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/bin/xud -------------------------------------------------------------------------------- /bin/xud-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/bin/xud-backup -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/docs/api.md -------------------------------------------------------------------------------- /gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/gulpfile.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/.eslintrc.js -------------------------------------------------------------------------------- /lib/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/Config.ts -------------------------------------------------------------------------------- /lib/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/Logger.ts -------------------------------------------------------------------------------- /lib/Xud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/Xud.ts -------------------------------------------------------------------------------- /lib/backup/Backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/backup/Backup.ts -------------------------------------------------------------------------------- /lib/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/bootstrap.ts -------------------------------------------------------------------------------- /lib/cli/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/command.ts -------------------------------------------------------------------------------- /lib/cli/commands/addcurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/addcurrency.ts -------------------------------------------------------------------------------- /lib/cli/commands/addpair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/addpair.ts -------------------------------------------------------------------------------- /lib/cli/commands/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/ban.ts -------------------------------------------------------------------------------- /lib/cli/commands/buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/buy.ts -------------------------------------------------------------------------------- /lib/cli/commands/changepass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/changepass.ts -------------------------------------------------------------------------------- /lib/cli/commands/closechannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/closechannel.ts -------------------------------------------------------------------------------- /lib/cli/commands/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/connect.ts -------------------------------------------------------------------------------- /lib/cli/commands/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/create.ts -------------------------------------------------------------------------------- /lib/cli/commands/deposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/deposit.ts -------------------------------------------------------------------------------- /lib/cli/commands/discovernodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/discovernodes.ts -------------------------------------------------------------------------------- /lib/cli/commands/executeswap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/executeswap.ts -------------------------------------------------------------------------------- /lib/cli/commands/getbalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/getbalance.ts -------------------------------------------------------------------------------- /lib/cli/commands/getinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/getinfo.ts -------------------------------------------------------------------------------- /lib/cli/commands/getmnemonic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/getmnemonic.ts -------------------------------------------------------------------------------- /lib/cli/commands/getnodeinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/getnodeinfo.ts -------------------------------------------------------------------------------- /lib/cli/commands/listcurrencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/listcurrencies.ts -------------------------------------------------------------------------------- /lib/cli/commands/listorders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/listorders.ts -------------------------------------------------------------------------------- /lib/cli/commands/listpairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/listpairs.ts -------------------------------------------------------------------------------- /lib/cli/commands/listpeers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/listpeers.ts -------------------------------------------------------------------------------- /lib/cli/commands/loglevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/loglevel.ts -------------------------------------------------------------------------------- /lib/cli/commands/openchannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/openchannel.ts -------------------------------------------------------------------------------- /lib/cli/commands/orderbook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/orderbook.ts -------------------------------------------------------------------------------- /lib/cli/commands/removeallorders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/removeallorders.ts -------------------------------------------------------------------------------- /lib/cli/commands/removecurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/removecurrency.ts -------------------------------------------------------------------------------- /lib/cli/commands/removeorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/removeorder.ts -------------------------------------------------------------------------------- /lib/cli/commands/removepair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/removepair.ts -------------------------------------------------------------------------------- /lib/cli/commands/restore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/restore.ts -------------------------------------------------------------------------------- /lib/cli/commands/sell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/sell.ts -------------------------------------------------------------------------------- /lib/cli/commands/shutdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/shutdown.ts -------------------------------------------------------------------------------- /lib/cli/commands/streamorders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/streamorders.ts -------------------------------------------------------------------------------- /lib/cli/commands/tradehistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/tradehistory.ts -------------------------------------------------------------------------------- /lib/cli/commands/tradinglimits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/tradinglimits.ts -------------------------------------------------------------------------------- /lib/cli/commands/unban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/unban.ts -------------------------------------------------------------------------------- /lib/cli/commands/unlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/unlock.ts -------------------------------------------------------------------------------- /lib/cli/commands/walletdeposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/walletdeposit.ts -------------------------------------------------------------------------------- /lib/cli/commands/walletwithdraw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/commands/walletwithdraw.ts -------------------------------------------------------------------------------- /lib/cli/placeorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/placeorder.ts -------------------------------------------------------------------------------- /lib/cli/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/cli/utils.ts -------------------------------------------------------------------------------- /lib/connextclient/ConnextClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/connextclient/ConnextClient.ts -------------------------------------------------------------------------------- /lib/connextclient/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/connextclient/errors.ts -------------------------------------------------------------------------------- /lib/connextclient/ethprovider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/connextclient/ethprovider.ts -------------------------------------------------------------------------------- /lib/connextclient/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/connextclient/types.ts -------------------------------------------------------------------------------- /lib/constants/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/constants/enums.ts -------------------------------------------------------------------------------- /lib/constants/errorCodesPrefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/constants/errorCodesPrefix.ts -------------------------------------------------------------------------------- /lib/constants/wordlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/constants/wordlist.ts -------------------------------------------------------------------------------- /lib/db/DB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/DB.ts -------------------------------------------------------------------------------- /lib/db/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/migrations.ts -------------------------------------------------------------------------------- /lib/db/models/Currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/models/Currency.ts -------------------------------------------------------------------------------- /lib/db/models/Node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/models/Node.ts -------------------------------------------------------------------------------- /lib/db/models/Order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/models/Order.ts -------------------------------------------------------------------------------- /lib/db/models/Pair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/models/Pair.ts -------------------------------------------------------------------------------- /lib/db/models/Password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/models/Password.ts -------------------------------------------------------------------------------- /lib/db/models/ReputationEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/models/ReputationEvent.ts -------------------------------------------------------------------------------- /lib/db/models/SwapDeal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/models/SwapDeal.ts -------------------------------------------------------------------------------- /lib/db/models/Trade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/models/Trade.ts -------------------------------------------------------------------------------- /lib/db/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/models/index.ts -------------------------------------------------------------------------------- /lib/db/seeds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/seeds/index.ts -------------------------------------------------------------------------------- /lib/db/seeds/mainnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/seeds/mainnet.ts -------------------------------------------------------------------------------- /lib/db/seeds/simnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/seeds/simnet.ts -------------------------------------------------------------------------------- /lib/db/seeds/testnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/seeds/testnet.ts -------------------------------------------------------------------------------- /lib/db/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/db/types.ts -------------------------------------------------------------------------------- /lib/grpc/GrpcInitService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/grpc/GrpcInitService.ts -------------------------------------------------------------------------------- /lib/grpc/GrpcServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/grpc/GrpcServer.ts -------------------------------------------------------------------------------- /lib/grpc/GrpcService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/grpc/GrpcService.ts -------------------------------------------------------------------------------- /lib/grpc/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/grpc/errors.ts -------------------------------------------------------------------------------- /lib/grpc/getGrpcError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/grpc/getGrpcError.ts -------------------------------------------------------------------------------- /lib/grpc/serverProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/grpc/serverProxy.ts -------------------------------------------------------------------------------- /lib/http/HttpServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/http/HttpServer.ts -------------------------------------------------------------------------------- /lib/http/HttpService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/http/HttpService.ts -------------------------------------------------------------------------------- /lib/lndclient/LndClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/lndclient/LndClient.ts -------------------------------------------------------------------------------- /lib/lndclient/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/lndclient/errors.ts -------------------------------------------------------------------------------- /lib/lndclient/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/lndclient/types.ts -------------------------------------------------------------------------------- /lib/nodekey/NodeKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/nodekey/NodeKey.ts -------------------------------------------------------------------------------- /lib/orderbook/OrderBook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/orderbook/OrderBook.ts -------------------------------------------------------------------------------- /lib/orderbook/OrderBookRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/orderbook/OrderBookRepository.ts -------------------------------------------------------------------------------- /lib/orderbook/TradingPair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/orderbook/TradingPair.ts -------------------------------------------------------------------------------- /lib/orderbook/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/orderbook/errors.ts -------------------------------------------------------------------------------- /lib/orderbook/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/orderbook/types.ts -------------------------------------------------------------------------------- /lib/p2p/Framer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/Framer.ts -------------------------------------------------------------------------------- /lib/p2p/Network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/Network.ts -------------------------------------------------------------------------------- /lib/p2p/NodeList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/NodeList.ts -------------------------------------------------------------------------------- /lib/p2p/P2PRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/P2PRepository.ts -------------------------------------------------------------------------------- /lib/p2p/Parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/Parser.ts -------------------------------------------------------------------------------- /lib/p2p/Peer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/Peer.ts -------------------------------------------------------------------------------- /lib/p2p/Pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/Pool.ts -------------------------------------------------------------------------------- /lib/p2p/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/errors.ts -------------------------------------------------------------------------------- /lib/p2p/packets/Packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/Packet.ts -------------------------------------------------------------------------------- /lib/p2p/packets/PacketType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/PacketType.ts -------------------------------------------------------------------------------- /lib/p2p/packets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/index.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/DisconnectingPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/DisconnectingPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/GetNodesPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/GetNodesPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/GetOrdersPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/GetOrdersPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/NodeStateUpdatePacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/NodeStateUpdatePacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/NodesPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/NodesPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/OrderInvalidationPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/OrderInvalidationPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/OrderPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/OrderPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/OrdersPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/OrdersPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/PingPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/PingPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/PongPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/PongPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/SanitySwapAckPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/SanitySwapAckPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/SanitySwapInitPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/SanitySwapInitPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/SessionAckPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/SessionAckPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/SessionInitPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/SessionInitPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/SwapAcceptedPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/SwapAcceptedPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/SwapFailedPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/SwapFailedPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/SwapRequestPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/SwapRequestPacket.ts -------------------------------------------------------------------------------- /lib/p2p/packets/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/types/index.ts -------------------------------------------------------------------------------- /lib/p2p/packets/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/packets/utils.ts -------------------------------------------------------------------------------- /lib/p2p/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/p2p/types.ts -------------------------------------------------------------------------------- /lib/proto/annotations_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO -------------------------------------------------------------------------------- /lib/proto/annotations_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/annotations_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/annotations_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/annotations_pb.js -------------------------------------------------------------------------------- /lib/proto/google/api/http_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO -------------------------------------------------------------------------------- /lib/proto/google/api/http_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/google/api/http_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/google/api/http_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/google/api/http_pb.js -------------------------------------------------------------------------------- /lib/proto/google/protobuf/descriptor_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO -------------------------------------------------------------------------------- /lib/proto/google/protobuf/descriptor_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/google/protobuf/descriptor_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/google/protobuf/descriptor_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/google/protobuf/descriptor_pb.js -------------------------------------------------------------------------------- /lib/proto/lndinvoices_grpc_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndinvoices_grpc_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/lndinvoices_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndinvoices_grpc_pb.js -------------------------------------------------------------------------------- /lib/proto/lndinvoices_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndinvoices_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/lndinvoices_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndinvoices_pb.js -------------------------------------------------------------------------------- /lib/proto/lndrouter_grpc_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndrouter_grpc_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/lndrouter_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndrouter_grpc_pb.js -------------------------------------------------------------------------------- /lib/proto/lndrouter_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndrouter_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/lndrouter_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndrouter_pb.js -------------------------------------------------------------------------------- /lib/proto/lndrpc_grpc_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndrpc_grpc_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/lndrpc_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndrpc_grpc_pb.js -------------------------------------------------------------------------------- /lib/proto/lndrpc_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndrpc_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/lndrpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndrpc_pb.js -------------------------------------------------------------------------------- /lib/proto/lndwalletunlocker_grpc_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndwalletunlocker_grpc_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/lndwalletunlocker_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndwalletunlocker_grpc_pb.js -------------------------------------------------------------------------------- /lib/proto/lndwalletunlocker_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndwalletunlocker_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/lndwalletunlocker_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/lndwalletunlocker_pb.js -------------------------------------------------------------------------------- /lib/proto/xudp2p_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO -------------------------------------------------------------------------------- /lib/proto/xudp2p_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/xudp2p_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/xudp2p_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/xudp2p_pb.js -------------------------------------------------------------------------------- /lib/proto/xudrpc.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/xudrpc.swagger.json -------------------------------------------------------------------------------- /lib/proto/xudrpc_grpc_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/xudrpc_grpc_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/xudrpc_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/xudrpc_grpc_pb.js -------------------------------------------------------------------------------- /lib/proto/xudrpc_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/xudrpc_pb.d.ts -------------------------------------------------------------------------------- /lib/proto/xudrpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/proto/xudrpc_pb.js -------------------------------------------------------------------------------- /lib/service/InitService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/service/InitService.ts -------------------------------------------------------------------------------- /lib/service/Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/service/Service.ts -------------------------------------------------------------------------------- /lib/service/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/service/errors.ts -------------------------------------------------------------------------------- /lib/service/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/service/types.ts -------------------------------------------------------------------------------- /lib/swaps/SwapClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/swaps/SwapClient.ts -------------------------------------------------------------------------------- /lib/swaps/SwapClientManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/swaps/SwapClientManager.ts -------------------------------------------------------------------------------- /lib/swaps/SwapRecovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/swaps/SwapRecovery.ts -------------------------------------------------------------------------------- /lib/swaps/SwapRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/swaps/SwapRepository.ts -------------------------------------------------------------------------------- /lib/swaps/Swaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/swaps/Swaps.ts -------------------------------------------------------------------------------- /lib/swaps/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/swaps/consts.ts -------------------------------------------------------------------------------- /lib/swaps/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/swaps/errors.ts -------------------------------------------------------------------------------- /lib/swaps/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/swaps/types.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/utils/UnitConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/utils/UnitConverter.ts -------------------------------------------------------------------------------- /lib/utils/addressUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/utils/addressUtils.ts -------------------------------------------------------------------------------- /lib/utils/aliasUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/utils/aliasUtils.ts -------------------------------------------------------------------------------- /lib/utils/cryptoUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/utils/cryptoUtils.ts -------------------------------------------------------------------------------- /lib/utils/seedutil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/utils/seedutil.ts -------------------------------------------------------------------------------- /lib/utils/simnet-connext-channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/utils/simnet-connext-channels.ts -------------------------------------------------------------------------------- /lib/utils/uriUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/utils/uriUtils.ts -------------------------------------------------------------------------------- /lib/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/lib/utils/utils.ts -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/logo.png -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/package.json -------------------------------------------------------------------------------- /parseGitCommit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/parseGitCommit.js -------------------------------------------------------------------------------- /proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/proto/README.md -------------------------------------------------------------------------------- /proto/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/proto/annotations.proto -------------------------------------------------------------------------------- /proto/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/proto/google/api/http.proto -------------------------------------------------------------------------------- /proto/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/proto/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /proto/lndinvoices.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/proto/lndinvoices.proto -------------------------------------------------------------------------------- /proto/lndrouter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/proto/lndrouter.proto -------------------------------------------------------------------------------- /proto/lndrpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/proto/lndrpc.proto -------------------------------------------------------------------------------- /proto/lndwalletunlocker.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/proto/lndwalletunlocker.proto -------------------------------------------------------------------------------- /proto/xudp2p.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/proto/xudp2p.proto -------------------------------------------------------------------------------- /proto/xudrpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/proto/xudrpc.proto -------------------------------------------------------------------------------- /sample-xud.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/sample-xud.conf -------------------------------------------------------------------------------- /seedutil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/seedutil/README.md -------------------------------------------------------------------------------- /seedutil/SeedUtil.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/seedutil/SeedUtil.spec.ts -------------------------------------------------------------------------------- /seedutil/__snapshots__/SeedUtil.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/seedutil/__snapshots__/SeedUtil.spec.ts.snap -------------------------------------------------------------------------------- /seedutil/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/seedutil/go.mod -------------------------------------------------------------------------------- /seedutil/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/seedutil/go.sum -------------------------------------------------------------------------------- /seedutil/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/seedutil/main.go -------------------------------------------------------------------------------- /tasks/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/tasks/config/index.ts -------------------------------------------------------------------------------- /tasks/config/sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/tasks/config/sample.ts -------------------------------------------------------------------------------- /tasks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/tasks/index.ts -------------------------------------------------------------------------------- /test/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/.eslintrc.js -------------------------------------------------------------------------------- /test/crypto/handshake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/crypto/handshake.ts -------------------------------------------------------------------------------- /test/integration/Command.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/integration/Command.spec.ts -------------------------------------------------------------------------------- /test/integration/OrderBook.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/integration/OrderBook.spec.ts -------------------------------------------------------------------------------- /test/integration/Pool.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/integration/Pool.spec.ts -------------------------------------------------------------------------------- /test/integration/Service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/integration/Service.spec.ts -------------------------------------------------------------------------------- /test/integration/Swaps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/integration/Swaps.spec.ts -------------------------------------------------------------------------------- /test/jest/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/.eslintrc.js -------------------------------------------------------------------------------- /test/jest/Backup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/Backup.spec.ts -------------------------------------------------------------------------------- /test/jest/Config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/Config.spec.ts -------------------------------------------------------------------------------- /test/jest/Connext.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/Connext.spec.ts -------------------------------------------------------------------------------- /test/jest/DB.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/DB.spec.ts -------------------------------------------------------------------------------- /test/jest/HttpServer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/HttpServer.spec.ts -------------------------------------------------------------------------------- /test/jest/HttpService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/HttpService.spec.ts -------------------------------------------------------------------------------- /test/jest/LndClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/LndClient.spec.ts -------------------------------------------------------------------------------- /test/jest/NodeKey.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/NodeKey.spec.ts -------------------------------------------------------------------------------- /test/jest/NodeList.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/NodeList.spec.ts -------------------------------------------------------------------------------- /test/jest/Orderbook.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/Orderbook.spec.ts -------------------------------------------------------------------------------- /test/jest/Peer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/Peer.spec.ts -------------------------------------------------------------------------------- /test/jest/Pool.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/Pool.spec.ts -------------------------------------------------------------------------------- /test/jest/Service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/Service.spec.ts -------------------------------------------------------------------------------- /test/jest/SwapClientManager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/SwapClientManager.spec.ts -------------------------------------------------------------------------------- /test/jest/SwapRecovery.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/SwapRecovery.spec.ts -------------------------------------------------------------------------------- /test/jest/Swaps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/Swaps.spec.ts -------------------------------------------------------------------------------- /test/jest/UnitConverter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/UnitConverter.spec.ts -------------------------------------------------------------------------------- /test/jest/__snapshots__/Connext.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/__snapshots__/Connext.spec.ts.snap -------------------------------------------------------------------------------- /test/jest/__snapshots__/LndClient.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/__snapshots__/LndClient.spec.ts.snap -------------------------------------------------------------------------------- /test/jest/__snapshots__/NodeKey.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/__snapshots__/NodeKey.spec.ts.snap -------------------------------------------------------------------------------- /test/jest/__snapshots__/Service.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/__snapshots__/Service.spec.ts.snap -------------------------------------------------------------------------------- /test/jest/__snapshots__/SwapClientManager.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/__snapshots__/SwapClientManager.spec.ts.snap -------------------------------------------------------------------------------- /test/jest/__snapshots__/Swaps.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/__snapshots__/Swaps.spec.ts.snap -------------------------------------------------------------------------------- /test/jest/__snapshots__/UnitConverter.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/__snapshots__/UnitConverter.spec.ts.snap -------------------------------------------------------------------------------- /test/jest/aliasUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/aliasUtils.spec.ts -------------------------------------------------------------------------------- /test/jest/cli/__snapshots__/getbalance.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/cli/__snapshots__/getbalance.spec.ts.snap -------------------------------------------------------------------------------- /test/jest/cli/__snapshots__/orderbook.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/cli/__snapshots__/orderbook.spec.ts.snap -------------------------------------------------------------------------------- /test/jest/cli/__snapshots__/tradinglimits.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/cli/__snapshots__/tradinglimits.spec.ts.snap -------------------------------------------------------------------------------- /test/jest/cli/getbalance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/cli/getbalance.spec.ts -------------------------------------------------------------------------------- /test/jest/cli/orderbook.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/cli/orderbook.spec.ts -------------------------------------------------------------------------------- /test/jest/cli/tradinglimits.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/cli/tradinglimits.spec.ts -------------------------------------------------------------------------------- /test/jest/cryptoUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/cryptoUtils.spec.ts -------------------------------------------------------------------------------- /test/jest/integration/Swaps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/integration/Swaps.spec.ts -------------------------------------------------------------------------------- /test/jest/toEip55Address.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/jest/toEip55Address.spec.ts -------------------------------------------------------------------------------- /test/p2p/networks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/p2p/networks.spec.ts -------------------------------------------------------------------------------- /test/p2p/sanity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/p2p/sanity.spec.ts -------------------------------------------------------------------------------- /test/perf/OrderBook.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/perf/OrderBook.spec.ts -------------------------------------------------------------------------------- /test/simulation/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/.dockerignore -------------------------------------------------------------------------------- /test/simulation/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/Dockerfile -------------------------------------------------------------------------------- /test/simulation/Dockerfile_gomod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/Dockerfile_gomod -------------------------------------------------------------------------------- /test/simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/README.md -------------------------------------------------------------------------------- /test/simulation/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/actions.go -------------------------------------------------------------------------------- /test/simulation/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/config.go -------------------------------------------------------------------------------- /test/simulation/connexttest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/connexttest/client.go -------------------------------------------------------------------------------- /test/simulation/connexttest/ethwallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/connexttest/ethwallet.go -------------------------------------------------------------------------------- /test/simulation/connexttest/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/connexttest/harness.go -------------------------------------------------------------------------------- /test/simulation/connexttest/httpclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/connexttest/httpclient.go -------------------------------------------------------------------------------- /test/simulation/custom-xud.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/custom-xud.patch -------------------------------------------------------------------------------- /test/simulation/docker-btcd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/docker-btcd/Dockerfile -------------------------------------------------------------------------------- /test/simulation/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/docker-build.sh -------------------------------------------------------------------------------- /test/simulation/docker-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/docker-clean.sh -------------------------------------------------------------------------------- /test/simulation/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/docker-compose.yml -------------------------------------------------------------------------------- /test/simulation/docker-connext/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/docker-connext/Dockerfile -------------------------------------------------------------------------------- /test/simulation/docker-lnd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/docker-lnd/Dockerfile -------------------------------------------------------------------------------- /test/simulation/docker-lnd/install-lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/docker-lnd/install-lnd.sh -------------------------------------------------------------------------------- /test/simulation/docker-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/docker-run.sh -------------------------------------------------------------------------------- /test/simulation/docker-xud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/docker-xud/Dockerfile -------------------------------------------------------------------------------- /test/simulation/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/go.mod -------------------------------------------------------------------------------- /test/simulation/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/go.sum -------------------------------------------------------------------------------- /test/simulation/harnessTest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/harnessTest.go -------------------------------------------------------------------------------- /test/simulation/lntest/COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/lntest/COPYING.md -------------------------------------------------------------------------------- /test/simulation/lntest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/lntest/doc.go -------------------------------------------------------------------------------- /test/simulation/lntest/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/lntest/harness.go -------------------------------------------------------------------------------- /test/simulation/lntest/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/lntest/hash.go -------------------------------------------------------------------------------- /test/simulation/lntest/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/lntest/node.go -------------------------------------------------------------------------------- /test/simulation/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/logs.sh -------------------------------------------------------------------------------- /test/simulation/shared/freeport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/shared/freeport.go -------------------------------------------------------------------------------- /test/simulation/tests-instability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/tests-instability.go -------------------------------------------------------------------------------- /test/simulation/tests-integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/tests-integration.go -------------------------------------------------------------------------------- /test/simulation/tests-security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/tests-security.go -------------------------------------------------------------------------------- /test/simulation/xud_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/xud_test.go -------------------------------------------------------------------------------- /test/simulation/xudrpc/xudrpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/xudrpc/xudrpc.pb.go -------------------------------------------------------------------------------- /test/simulation/xudtest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/xudtest/doc.go -------------------------------------------------------------------------------- /test/simulation/xudtest/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/xudtest/harness.go -------------------------------------------------------------------------------- /test/simulation/xudtest/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/simulation/xudtest/node.go -------------------------------------------------------------------------------- /test/unit/Command.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/unit/Command.spec.ts -------------------------------------------------------------------------------- /test/unit/Parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/unit/Parser.spec.ts -------------------------------------------------------------------------------- /test/unit/Semver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/unit/Semver.spec.ts -------------------------------------------------------------------------------- /test/unit/Swaps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/unit/Swaps.spec.ts -------------------------------------------------------------------------------- /test/unit/TradingPair.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/unit/TradingPair.spec.ts -------------------------------------------------------------------------------- /test/unit/uriUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/unit/uriUtils.spec.ts -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/test/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/tsconfig.json -------------------------------------------------------------------------------- /winFixDeprecation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExchangeUnion/xud/HEAD/winFixDeprecation.ps1 --------------------------------------------------------------------------------