├── .dockerignore ├── .eslintignore ├── .eslintrc.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature-or-feature-subtask.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ ├── doc_template.md │ └── eng_template.md ├── actions │ ├── image-push │ │ └── action.yml │ ├── manifest-push │ │ └── action.yml │ └── parent-versions │ │ └── action.yml ├── code_of_conduct.md ├── codeql │ ├── source.yml │ └── tests.yml ├── contributing.md ├── labeler.yml ├── pull_request_template.md ├── release.yaml ├── renovate.md └── workflows │ ├── add_to_docs_board.yml │ ├── codeql-analysis.yml │ ├── create_monthly_sync.yml │ ├── label.yml │ ├── node-build.yml │ ├── pr_title_check.yml │ └── rafiki │ └── env-setup │ └── action.yml ├── .gitignore ├── .gitmodules ├── .grype.yaml ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .trivyignore ├── LICENSE ├── README.md ├── aws ├── README.md └── lambdas │ ├── exchange-rates │ ├── go.mod │ ├── go.sum │ └── main.go │ └── http-signatures │ ├── README.md │ ├── index.js │ ├── package-lock.json │ └── package.json ├── bruno └── collections │ └── Rafiki │ ├── Examples │ ├── Admin API - only locally │ │ ├── Peer-to-Peer Cross Currency Payment │ │ │ ├── Create Outgoing Payment.bru │ │ │ ├── Create Quote.bru │ │ │ ├── Create Receiver (remote Incoming Payment).bru │ │ │ └── Get Outgoing Payment.bru │ │ ├── Peer-to-Peer Local Payment │ │ │ ├── Create Outgoing Payment.bru │ │ │ ├── Create Quote.bru │ │ │ ├── Create Receiver -local Incoming Payment-.bru │ │ │ └── Get Outgoing Payment.bru │ │ └── Peer-to-Peer Payment │ │ │ ├── Create Outgoing Payment.bru │ │ │ ├── Create Quote.bru │ │ │ ├── Create Receiver -remote Incoming Payment-.bru │ │ │ └── Get Outgoing Payment.bru │ ├── Open Payments Without Quote │ │ ├── Continuation Request.bru │ │ ├── Create Incoming Payment.bru │ │ ├── Create Outgoing Payment.bru │ │ ├── Get Outgoing Payment.bru │ │ ├── Get receiver wallet address.bru │ │ ├── Get sender wallet address.bru │ │ ├── Grant Request Incoming Payment.bru │ │ └── Grant Request Outgoing Payment.bru │ ├── Open Payments │ │ ├── Continuation Request.bru │ │ ├── Create Incoming Payment.bru │ │ ├── Create Outgoing Payment.bru │ │ ├── Create Quote.bru │ │ ├── Get Outgoing Payment.bru │ │ ├── Get receiver wallet address.bru │ │ ├── Get sender wallet address.bru │ │ ├── Grant Request Incoming Payment.bru │ │ ├── Grant Request Outgoing Payment.bru │ │ └── Grant Request Quote.bru │ ├── Tenanted Open Payments - Tenanted Environment Only │ │ ├── Continuation Request.bru │ │ ├── Create Incoming Payment.bru │ │ ├── Create Outgoing Payment.bru │ │ ├── Create Quote.bru │ │ ├── Get Outgoing Payment.bru │ │ ├── Get receiver wallet address.bru │ │ ├── Get sender wallet address.bru │ │ ├── Grant Request Incoming Payment.bru │ │ ├── Grant Request Outgoing Payment.bru │ │ ├── Grant Request Quote.bru │ │ └── folder.bru │ ├── Vailidating Wallet Address Ownership with Open Payments │ │ ├── Continuation Request.bru │ │ ├── Get sender wallet address.bru │ │ ├── Grant Request for Subject Information.bru │ │ └── folder.bru │ └── Web Monetization │ │ ├── Continuation Request.bru │ │ ├── Create Incoming Payment.bru │ │ ├── Create Outgoing Payment 1.bru │ │ ├── Create Outgoing Payment 2.bru │ │ ├── Create Outgoing Payment 3.bru │ │ ├── Get Outgoing Payment.bru │ │ ├── Get receiver wallet address.bru │ │ ├── Get sender wallet address.bru │ │ ├── Grant Request Incoming Payment.bru │ │ └── Grant Request Outgoing Payment.bru │ ├── Open Payments APIs │ ├── Incoming Payments │ │ ├── Complete Incoming Payment.bru │ │ ├── Create Incoming Payment.bru │ │ ├── Get Incoming Payment -Unauthenticated-.bru │ │ ├── Get Incoming Payment.bru │ │ └── List Incoming Payments.bru │ ├── Outgoing Payments │ │ ├── Create Outgoing Payment.bru │ │ ├── Get Outgoing Payment.bru │ │ └── List Outgoing Payments.bru │ ├── Quotes │ │ ├── Create Quote.bru │ │ └── Get Quote.bru │ └── Wallet Address │ │ ├── Get Wallet Address Keys.bru │ │ └── Get a Wallet Address.bru │ ├── Open Payments Auth APIs │ ├── Grants │ │ ├── Continuation Request.bru │ │ ├── Grant Cancel.bru │ │ └── Grant Request.bru │ └── Tokens │ │ ├── Revoke Access Token.bru │ │ └── Rotate Access Token.bru │ ├── POS Service APIs │ ├── Get Incoming Payments.bru │ ├── Initiate Payment.bru │ └── folder.bru │ ├── Rafiki Admin APIs │ ├── Approve Incoming Payment.bru │ ├── Cancel Incoming Payment.bru │ ├── Cancel Outgoing Payment.bru │ ├── Complete Receiver.bru │ ├── Create Asset Liquidity Withdrawal.bru │ ├── Create Asset.bru │ ├── Create Incoming Payment Withdrawal.bru │ ├── Create Incoming Payment.bru │ ├── Create Or Update Peer By Url.bru │ ├── Create Outgoing Payment From Incoming Payment.bru │ ├── Create Outgoing Payment Withdrawal.bru │ ├── Create Outgoing Payment.bru │ ├── Create Peer Liquidity Withdrawal.bru │ ├── Create Peer.bru │ ├── Create Quote.bru │ ├── Create Receiver (remote Incoming Payment).bru │ ├── Create Tenant Settings.bru │ ├── Create Tenant.bru │ ├── Create Wallet Address Key.bru │ ├── Create Wallet Address Withdrawal.bru │ ├── Create Wallet Address.bru │ ├── Delete Asset.bru │ ├── Delete Peer.bru │ ├── Delete Tenant.bru │ ├── Deposit Asset Liquidity.bru │ ├── Deposit Event Liquidity.bru │ ├── Deposit Outgoing Payment Liquidity.bru │ ├── Deposit Peer Liquidity.bru │ ├── Get Accounting Ledger Transfers.bru │ ├── Get Asset By Code And Scale.bru │ ├── Get Asset.bru │ ├── Get Assets.bru │ ├── Get Incoming Payment By Tenant.bru │ ├── Get Incoming Payment.bru │ ├── Get Incoming Payments.bru │ ├── Get Outgoing Payment.bru │ ├── Get Outgoing Payments.bru │ ├── Get Payments.bru │ ├── Get Peer By Address and Asset Id.bru │ ├── Get Peer.bru │ ├── Get Peers.bru │ ├── Get Quote.bru │ ├── Get Receiver (remote Incoming Payment).bru │ ├── Get Tenants.bru │ ├── Get Wallet Address Additional Properties.bru │ ├── Get Wallet Address By Url.bru │ ├── Get Wallet Address.bru │ ├── Get Wallet Addresses Keys.bru │ ├── Get Wallet Addresses.bru │ ├── Get Webhook Events.bru │ ├── Post Liquidity Withdrawal.bru │ ├── Revoke Wallet Address Key.bru │ ├── Set Fee.bru │ ├── Trigger Wallet Address Events.bru │ ├── Update Asset.bru │ ├── Update Incoming Payment.bru │ ├── Update Peer.bru │ ├── Update Tenant.bru │ ├── Update Wallet Address.bru │ ├── Void Liquidity Withdrawal.bru │ └── Withdraw Event Liquidity.bru │ ├── Rafiki Admin Auth APIs │ ├── Get Grant.bru │ ├── Get Grants.bru │ └── Revoke Grant.bru │ ├── SPSP │ └── Get SPSP Payment Pointer.bru │ ├── Sample Webhook Events │ ├── Asset Liquidity Low.bru │ ├── Incoming Payment Completed.bru │ ├── Incoming Payment Created.bru │ ├── Incoming Payment Expired.bru │ ├── Outgoing Payment Completed.bru │ ├── Outgoing Payment Created.bru │ ├── Outgoing Payment Failed.bru │ ├── Peer Liquidity Low.bru │ ├── Wallet Address Not Found.bru │ └── Wallet Address Web Monetization.bru │ ├── bruno.json │ ├── environments │ ├── Autopeering.bru │ ├── Local Playground.bru │ ├── Remote.bru │ └── Tenanted Local Playground - Swapped Sender & Receiver.bru │ ├── package.json │ └── scripts.js ├── infrastructure └── helm │ ├── rafiki │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── postgresql-12.6.5.tgz │ │ ├── rafiki-auth-0.2.0.tgz │ │ ├── rafiki-backend-0.2.0.tgz │ │ ├── rafiki-frontend-0.2.0.tgz │ │ └── redis-17.11.8.tgz │ └── values.yaml │ └── tigerbeetle │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── _helpers.tpl │ ├── configmap.nginx.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── statefulset.yaml │ └── values.yaml ├── jest.config.base.js ├── jest.config.js ├── localenv ├── .gitignore ├── README.md ├── admin-auth │ ├── cloud-nine-kratos.yml │ ├── dbinit.sql │ ├── docker-compose.yml │ └── happy-life-kratos.yml ├── cloud-nine-wallet │ ├── dbinit.sql │ ├── docker-compose.yml │ ├── kratos.yml │ ├── private-key.pem │ ├── seed.multihop.yml │ └── seed.yml ├── cloud-ten-wallet │ ├── docker-compose.yml │ ├── private-key.pem │ └── seed.yml ├── docs │ ├── assets │ │ ├── excalidraw │ │ │ └── localenv-architecture.excalidraw │ │ └── mov │ │ │ └── eCom-example.mp4 │ └── peer-setup.md ├── global-bank │ ├── docker-compose.yml │ ├── private-key.pem │ └── seed.yml ├── happy-life-bank │ ├── docker-compose.yml │ ├── kratos.yml │ ├── private-key.pem │ ├── seed.multihop.yml │ └── seed.yml ├── merged │ └── docker-compose.yml ├── mock-account-servicing-entity │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── PublicEnv.tsx │ │ ├── components │ │ │ ├── Button.tsx │ │ │ ├── ButtonOrLink.tsx │ │ │ ├── ErrorPanel.tsx │ │ │ ├── FieldError.tsx │ │ │ ├── Input.tsx │ │ │ ├── Label.tsx │ │ │ ├── LiquidityConfirmDialog.tsx │ │ │ ├── PageHeader.tsx │ │ │ ├── Select.tsx │ │ │ ├── Snackbar.tsx │ │ │ ├── Table.tsx │ │ │ ├── TopMenu.tsx │ │ │ ├── icons.tsx │ │ │ └── index.ts │ │ ├── entry.client.tsx │ │ ├── entry.server.tsx │ │ ├── lib │ │ │ ├── accounts.server.ts │ │ │ ├── apiClient.ts │ │ │ ├── apolloClient.ts │ │ │ ├── asset.server.ts │ │ │ ├── balances.server.ts │ │ │ ├── message.server.ts │ │ │ ├── parse_config.server.ts │ │ │ ├── requesters.ts │ │ │ ├── transactions.server.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ ├── validate.server.ts │ │ │ ├── wallet.server.ts │ │ │ └── webhooks.server.ts │ │ ├── root.tsx │ │ ├── routes │ │ │ ├── _index.tsx │ │ │ ├── accounts.$accountId.tsx │ │ │ ├── accounts.create.tsx │ │ │ ├── balances.ts │ │ │ ├── consent-screen.tsx │ │ │ ├── healthz.ts │ │ │ ├── mock-idp._index.tsx │ │ │ ├── mock-idp.consent.tsx │ │ │ ├── mock-idp.fake-client.ts │ │ │ ├── rates.ts │ │ │ ├── rates.view.tsx │ │ │ └── webhooks.ts │ │ └── styles │ │ │ └── tailwind.css │ ├── generated │ │ └── graphql.ts │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── bank-background.png │ │ ├── bank-icon.svg │ │ ├── favicon.ico │ │ ├── logo.svg │ │ ├── wallet-background.png │ │ ├── wallet-icon.svg │ │ ├── wallet-logo.png │ │ ├── white-bank-icon.svg │ │ └── white-wallet-icon.svg │ ├── remix.config.js │ ├── remix.env.d.ts │ ├── seed.example.yml │ ├── tailwind.config.js │ └── tsconfig.json ├── multihop │ └── docker-compose.yml ├── telemetry │ ├── README.md │ ├── docker-compose.yml │ ├── grafana │ │ └── provisioning │ │ │ ├── dashboards │ │ │ ├── default.yaml │ │ │ ├── example.json │ │ │ └── ilp-metrics-dashboard.json │ │ │ └── datasources │ │ │ └── datasources.yaml │ ├── otel-collector-config.yaml │ ├── prometheus.yaml │ └── tempo.yaml └── tigerbeetle │ ├── .env.tigerbeetle │ └── docker-compose.yml ├── package.json ├── packages ├── auth │ ├── Dockerfile.dev │ ├── Dockerfile.prod │ ├── README.md │ ├── __mocks__ │ │ └── openapi-schema-validator.ts │ ├── codegen.yml │ ├── docker-compose.yml │ ├── jest.config.js │ ├── jest.env.js │ ├── jest.setup.js │ ├── jest.teardown.js │ ├── knexfile.js │ ├── migrations │ │ ├── 20220504161932_create_grants_table.js │ │ ├── 20220504163005_create_access_token_table.js │ │ ├── 20220504163024_create_accesses_table.js │ │ ├── 20230810154819_create_interactions_table.js │ │ ├── 20230907201006_rename-limits-jsonb-keys.js │ │ ├── 20230925183132_add_finalization_reason_grants.js │ │ ├── 20231214184608_add_last_continued_at_drop_wait_grants.js │ │ ├── 20240802171939_add_revoked_at_to_access_tokens.js │ │ ├── 20241125233415_create_tenants_table.js │ │ ├── 20241205153036_seed_operator_tenant.js │ │ ├── 20241206232423_add_tenant_to_grant.js │ │ ├── 20250509114109_create_subject_table.js │ │ └── 20251007160028_seed_operator_tenant_api_secret.js │ ├── package.json │ ├── scripts │ │ └── init.sh │ ├── src │ │ ├── access │ │ │ ├── errors.ts │ │ │ ├── model.ts │ │ │ ├── service.test.ts │ │ │ ├── service.ts │ │ │ ├── types.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── accessToken │ │ │ ├── model.ts │ │ │ ├── routes.test.ts │ │ │ ├── routes.ts │ │ │ ├── service.test.ts │ │ │ └── service.ts │ │ ├── app.ts │ │ ├── client │ │ │ ├── service.test.ts │ │ │ └── service.ts │ │ ├── config │ │ │ └── app.ts │ │ ├── grant │ │ │ ├── errors.ts │ │ │ ├── model.ts │ │ │ ├── routes.test.ts │ │ │ ├── routes.ts │ │ │ ├── service.test.ts │ │ │ ├── service.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── graphql │ │ │ ├── errors │ │ │ │ └── index.ts │ │ │ ├── generated │ │ │ │ ├── graphql.schema.json │ │ │ │ └── graphql.ts │ │ │ ├── plugin │ │ │ │ └── index.ts │ │ │ ├── resolvers │ │ │ │ ├── grant.test.ts │ │ │ │ ├── grant.ts │ │ │ │ ├── index.test.ts │ │ │ │ ├── index.ts │ │ │ │ └── page.test.ts │ │ │ ├── scalars │ │ │ │ ├── BigInt.test.ts │ │ │ │ ├── BigInt.ts │ │ │ │ ├── UInt8.test.ts │ │ │ │ ├── UInt8.ts │ │ │ │ └── index.ts │ │ │ └── schema.graphql │ │ ├── index.ts │ │ ├── interaction │ │ │ ├── model.ts │ │ │ ├── routes.test.ts │ │ │ ├── routes.ts │ │ │ ├── service.test.ts │ │ │ └── service.ts │ │ ├── logger │ │ │ └── service.ts │ │ ├── openapi │ │ │ └── specs │ │ │ │ └── id-provider.yaml │ │ ├── shared │ │ │ ├── baseModel.test.ts │ │ │ ├── baseModel.ts │ │ │ ├── baseService.ts │ │ │ ├── filters.ts │ │ │ ├── gnapErrors.test.ts │ │ │ ├── gnapErrors.ts │ │ │ ├── pagination.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── signature │ │ │ ├── middleware.test.ts │ │ │ ├── middleware.ts │ │ │ ├── tenant.test.ts │ │ │ └── tenant.ts │ │ ├── subject │ │ │ ├── model.ts │ │ │ ├── service.test.ts │ │ │ ├── service.ts │ │ │ └── types.ts │ │ ├── tenant │ │ │ ├── model.ts │ │ │ ├── routes.test.ts │ │ │ ├── routes.ts │ │ │ ├── service.test.ts │ │ │ └── service.ts │ │ └── tests │ │ │ ├── apiSignature.ts │ │ │ ├── app.ts │ │ │ ├── context.ts │ │ │ ├── grant.ts │ │ │ ├── helpers.ts │ │ │ ├── interaction.ts │ │ │ ├── signature.ts │ │ │ ├── tableManager.ts │ │ │ └── tenant.ts │ └── tsconfig.json ├── backend │ ├── .gitignore │ ├── .graphqlconfig │ ├── .npmignore │ ├── Dockerfile.dev │ ├── Dockerfile.prod │ ├── README.md │ ├── __mocks__ │ │ └── openapi-schema-validator.ts │ ├── codegen.yml │ ├── docker-compose.yml │ ├── jest.config.js │ ├── jest.custom-environment.ts │ ├── jest.env.js │ ├── jest.setup.ts │ ├── jest.teardown.js │ ├── jest.tigerbeetle-environment.ts │ ├── knexfile.js │ ├── migrations │ │ ├── 20210422134422_create_events_table.js │ │ ├── 20210422194130_create_assets_table.js │ │ ├── 20211012172409_create_payment_pointers_table.js │ │ ├── 20211026133430_create_peers_table.js │ │ ├── 20211029103842_create_http_tokens_table.js │ │ ├── 20220131110501_create_webhook_events_table.js │ │ ├── 20220819120358_create_payment_pointer_keys_table.js │ │ ├── 20220908085845_create_incoming_payments_table.js │ │ ├── 20221005181411_create_auth_servers_table.js │ │ ├── 20221012013413_create_grants_table.js │ │ ├── 20221012205150_create_quotes_table.js │ │ ├── 20221129213740_create_outgoing_payment_grants_table.js │ │ ├── 20221129213751_create_outgoing_payments_table.js │ │ ├── 20230201133042_create_ledger_accounts_table.js │ │ ├── 20230202124709_create_ledger_transfers_table.js │ │ ├── 20230629094019_drop_events_table.js │ │ ├── 20230629094400_add_deactivatedat_payment_pointers.js │ │ ├── 20230629122543_update_payments_tables.js │ │ ├── 20230718142550_create_combined_payments_view.js │ │ ├── 20230731141948_create_fee_table.js │ │ ├── 20230814152458_add_fee_quotes.js │ │ ├── 20230904145439_rename-quote-sendamountvalue.js │ │ ├── 20230907130701_add_peer_index.js │ │ ├── 20230912091917_add_liquidityThreshold_assets.js │ │ ├── 20230912091925_add_liquidityThreshold_peers.js │ │ ├── 20230918113102_rename_payment_pointer_tables.js │ │ ├── 20230927223235_make_quotes_generic.js │ │ ├── 20231019142543_drop_connections_from_incoming_payment.js │ │ ├── 20231121184537_add_resource_fkeys_webhook_event.js │ │ ├── 20240502132505_add_deleted_at_to_assets.js │ │ ├── 20240524102509_update_quote_ratio_columns.js │ │ ├── 20240528184537_create_wallet_add_props.js │ │ ├── 20240729210134_incoming_payment_cancel_approved_timestamp.js │ │ ├── 20240820101201_add_deleted_at_grants.js │ │ ├── 20240820161040_add_ledger_transfer_constraint.js │ │ ├── 20240916181643_require_estimated_exchange_rate.js │ │ ├── 20240916181659_add_ilp_quote_details.js │ │ ├── 20240916182716_drop_quote_ilp_fields.js │ │ ├── 20240916185330_add_quote_source_amount.js │ │ ├── 20241119125038_add_unique_constraint_to_kid.js │ │ ├── 20241125224212_create_tenants_table.js │ │ ├── 20241205153035_seed_operator_tenant.js │ │ ├── 20241208214023_add_tenant_id_to_quote.js │ │ ├── 20241216160130_backfill_tenant_on_assets.js │ │ ├── 20241223104532_add_tenant_id_to_outgoing_payments.js │ │ ├── 20250117112902_add_tenant_to_wallet_address.js │ │ ├── 20250117205655_create_tenant_settings_table.js │ │ ├── 20250120101610_add_tenant_to_incoming_payments.js │ │ ├── 20250214141958_add_tenant_to_peer.js │ │ ├── 20250218191304_add_tenant_to_webhooks.js │ │ ├── 20250301103930_rename_wallet_address_url_to_address.js │ │ ├── 20250301203110_unique_tenant_settings_key.js │ │ ├── 20250409175316_create_webhooks_table.js │ │ ├── 20250605095446_add_routes_to_peers.js │ │ ├── 20250625121526_replace_combined_payments_view.js │ │ ├── 20250708070748_create_outgoing_payment_card_table.js │ │ ├── 20250807210658_add_metadata_to_webhooks.js │ │ ├── 20250814213541_add_intiated_by_to_incoming_payment.js │ │ ├── 20250827153829_drop_peer_id_from_outgoing_payments.js │ │ ├── 20250917082624_add_request_id_to_outgoing_payment_card_details.js │ │ ├── 20250917082746_add_initiated_by_to_outgoing_payment.js │ │ ├── 20250919105030_update_outgoing_payment_card_details_data.js │ │ └── 20251003090838_add_sender_wallet_address_to_incoming_payment.js │ ├── package.json │ ├── scripts │ │ └── init.sh │ ├── src │ │ ├── accounting │ │ │ ├── errors.ts │ │ │ ├── psql │ │ │ │ ├── balance.test.ts │ │ │ │ ├── balance.ts │ │ │ │ ├── ledger-account │ │ │ │ │ ├── index.test.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── model.test.ts │ │ │ │ │ └── model.ts │ │ │ │ ├── ledger-transfer │ │ │ │ │ ├── index.test.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── model.test.ts │ │ │ │ │ └── model.ts │ │ │ │ ├── service.test.ts │ │ │ │ └── service.ts │ │ │ ├── service.ts │ │ │ └── tigerbeetle │ │ │ │ ├── accounts.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── service.test.ts │ │ │ │ ├── service.ts │ │ │ │ ├── transfers.ts │ │ │ │ ├── utils.test.ts │ │ │ │ └── utils.ts │ │ ├── app.ts │ │ ├── asset │ │ │ ├── errors.ts │ │ │ ├── model.test.ts │ │ │ ├── model.ts │ │ │ ├── service.test.ts │ │ │ └── service.ts │ │ ├── auth-service-client │ │ │ ├── client.test.ts │ │ │ └── client.ts │ │ ├── config │ │ │ └── app.ts │ │ ├── fee │ │ │ ├── errors.ts │ │ │ ├── model.test.ts │ │ │ ├── model.ts │ │ │ ├── service.test.ts │ │ │ └── service.ts │ │ ├── graphql │ │ │ ├── errors │ │ │ │ └── index.ts │ │ │ ├── generated │ │ │ │ ├── graphql.schema.json │ │ │ │ └── graphql.ts │ │ │ ├── middleware │ │ │ │ ├── index.test.ts │ │ │ │ └── index.ts │ │ │ ├── plugin │ │ │ │ └── index.ts │ │ │ ├── resolvers │ │ │ │ ├── accounting_transfer.psql.test.ts │ │ │ │ ├── accounting_transfer.tigerbeetle.test.ts │ │ │ │ ├── accounting_transfer.ts │ │ │ │ ├── asset.test.ts │ │ │ │ ├── asset.ts │ │ │ │ ├── auto-peering.test.ts │ │ │ │ ├── auto-peering.ts │ │ │ │ ├── combined_payments.test.ts │ │ │ │ ├── combined_payments.ts │ │ │ │ ├── fee.test.ts │ │ │ │ ├── fee.ts │ │ │ │ ├── incoming_payment.test.ts │ │ │ │ ├── incoming_payment.ts │ │ │ │ ├── index.test.ts │ │ │ │ ├── index.ts │ │ │ │ ├── liquidity.test.ts │ │ │ │ ├── liquidity.ts │ │ │ │ ├── outgoing_payment.test.ts │ │ │ │ ├── outgoing_payment.ts │ │ │ │ ├── page.test.ts │ │ │ │ ├── peer.test.ts │ │ │ │ ├── peer.ts │ │ │ │ ├── quote.test.ts │ │ │ │ ├── quote.ts │ │ │ │ ├── receiver.test.ts │ │ │ │ ├── receiver.ts │ │ │ │ ├── tenant.test.ts │ │ │ │ ├── tenant.ts │ │ │ │ ├── tenant_settings.test.ts │ │ │ │ ├── tenant_settings.ts │ │ │ │ ├── walletAddressAdditionalProperties.ts │ │ │ │ ├── walletAddressKey.test.ts │ │ │ │ ├── walletAddressKey.ts │ │ │ │ ├── wallet_address.test.ts │ │ │ │ ├── wallet_address.ts │ │ │ │ ├── webhooks.test.ts │ │ │ │ └── webhooks.ts │ │ │ ├── scalars │ │ │ │ ├── BigInt.test.ts │ │ │ │ ├── BigInt.ts │ │ │ │ ├── UInt8.test.ts │ │ │ │ ├── UInt8.ts │ │ │ │ └── index.ts │ │ │ └── schema.graphql │ │ ├── index.ts │ │ ├── middleware │ │ │ ├── cache │ │ │ │ ├── data-stores │ │ │ │ │ ├── in-memory.test.ts │ │ │ │ │ ├── in-memory.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── redis.test.ts │ │ │ │ │ └── redis.ts │ │ │ │ ├── index.test.ts │ │ │ │ └── index.ts │ │ │ ├── lock │ │ │ │ ├── index.test.ts │ │ │ │ ├── index.ts │ │ │ │ ├── redis.test.ts │ │ │ │ └── redis.ts │ │ │ └── tenant │ │ │ │ ├── index.test.ts │ │ │ │ └── index.ts │ │ ├── open_payments │ │ │ ├── amount.ts │ │ │ ├── auth │ │ │ │ ├── middleware.test.ts │ │ │ │ └── middleware.ts │ │ │ ├── authServer │ │ │ │ ├── model.ts │ │ │ │ ├── service.test.ts │ │ │ │ └── service.ts │ │ │ ├── grant │ │ │ │ ├── errors.ts │ │ │ │ ├── model.ts │ │ │ │ ├── service.test.ts │ │ │ │ └── service.ts │ │ │ ├── payment │ │ │ │ ├── combined │ │ │ │ │ ├── model.ts │ │ │ │ │ ├── service.test.ts │ │ │ │ │ └── service.ts │ │ │ │ ├── incoming │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── model.test.ts │ │ │ │ │ ├── model.ts │ │ │ │ │ ├── routes.test.ts │ │ │ │ │ ├── routes.ts │ │ │ │ │ ├── service.test.ts │ │ │ │ │ ├── service.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── incoming_remote │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── service.test.ts │ │ │ │ │ └── service.ts │ │ │ │ └── outgoing │ │ │ │ │ ├── card │ │ │ │ │ └── model.ts │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── lifecycle.ts │ │ │ │ │ ├── limits.test.ts │ │ │ │ │ ├── limits.ts │ │ │ │ │ ├── model.test.ts │ │ │ │ │ ├── model.ts │ │ │ │ │ ├── routes.test.ts │ │ │ │ │ ├── routes.ts │ │ │ │ │ ├── service.test.ts │ │ │ │ │ ├── service.ts │ │ │ │ │ └── worker.ts │ │ │ ├── quote │ │ │ │ ├── errors.ts │ │ │ │ ├── model.ts │ │ │ │ ├── routes.test.ts │ │ │ │ ├── routes.ts │ │ │ │ ├── service.test.ts │ │ │ │ └── service.ts │ │ │ ├── receiver │ │ │ │ ├── errors.ts │ │ │ │ ├── model.test.ts │ │ │ │ ├── model.ts │ │ │ │ ├── service.test.ts │ │ │ │ └── service.ts │ │ │ ├── route-errors.test.ts │ │ │ ├── route-errors.ts │ │ │ └── wallet_address │ │ │ │ ├── additional_property │ │ │ │ └── model.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── key │ │ │ │ ├── errors.ts │ │ │ │ ├── model.ts │ │ │ │ ├── routes.test.ts │ │ │ │ ├── routes.ts │ │ │ │ ├── service.test.ts │ │ │ │ └── service.ts │ │ │ │ ├── middleware.test.ts │ │ │ │ ├── middleware.ts │ │ │ │ ├── model.test.ts │ │ │ │ ├── model.ts │ │ │ │ ├── routes.test.ts │ │ │ │ ├── routes.ts │ │ │ │ ├── service.test.ts │ │ │ │ └── service.ts │ │ ├── openapi │ │ │ └── specs │ │ │ │ ├── exchange-rates.yaml │ │ │ │ └── webhooks.yaml │ │ ├── payment-method │ │ │ ├── handler │ │ │ │ ├── errors.ts │ │ │ │ ├── service.test.ts │ │ │ │ └── service.ts │ │ │ ├── ilp │ │ │ │ ├── auto-peering │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── routes.test.ts │ │ │ │ │ ├── routes.ts │ │ │ │ │ ├── service.test.ts │ │ │ │ │ └── service.ts │ │ │ │ ├── connector │ │ │ │ │ ├── core │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ ├── echo-protocol.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── stream.ts │ │ │ │ │ │ ├── errors │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── invalid-json-body-error.ts │ │ │ │ │ │ ├── factories │ │ │ │ │ │ │ ├── account.ts │ │ │ │ │ │ │ ├── ccp-packets.ts │ │ │ │ │ │ │ ├── ilp-packet.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── rafiki-services.ts │ │ │ │ │ │ │ └── test-logger.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── crypto.ts │ │ │ │ │ │ │ ├── ilp.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ │ ├── account.ts │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ ├── balance.ts │ │ │ │ │ │ │ ├── error-handler.ts │ │ │ │ │ │ │ ├── expire.ts │ │ │ │ │ │ │ ├── heartbeat.ts │ │ │ │ │ │ │ ├── ildcp.ts │ │ │ │ │ │ │ ├── ilp-packet.ts │ │ │ │ │ │ │ ├── ilp-timing.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── liquidity-check.ts │ │ │ │ │ │ │ ├── max-packet-amount.ts │ │ │ │ │ │ │ ├── rate-limit.ts │ │ │ │ │ │ │ ├── reduce-expiry.ts │ │ │ │ │ │ │ ├── stream-address.ts │ │ │ │ │ │ │ ├── throughput.ts │ │ │ │ │ │ │ └── validate-fulfillment.ts │ │ │ │ │ │ ├── rafiki.ts │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── telemetry.ts │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ │ ├── ccp-controller.test.ts │ │ │ │ │ │ │ │ ├── client-controller.test.ts │ │ │ │ │ │ │ │ ├── echo-controller.test.ts │ │ │ │ │ │ │ │ └── stream-controller.test.ts │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── utils.test.ts │ │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ │ │ ├── account-middleware.test.ts │ │ │ │ │ │ │ │ ├── auth-middleware.test.ts │ │ │ │ │ │ │ │ ├── balance-middleware.test.ts │ │ │ │ │ │ │ │ ├── error-handler-middleware.test.ts │ │ │ │ │ │ │ │ ├── expire-middleware.test.ts │ │ │ │ │ │ │ │ ├── heartbeat.test.ts │ │ │ │ │ │ │ │ ├── ildcp.test.ts │ │ │ │ │ │ │ │ ├── ilp-packet-middleware.test.ts │ │ │ │ │ │ │ │ ├── liquidity-check.test.ts │ │ │ │ │ │ │ │ ├── max-packet-amount.test.ts │ │ │ │ │ │ │ │ ├── rate-limit.test.ts │ │ │ │ │ │ │ │ ├── reduce-expiry.test.ts │ │ │ │ │ │ │ │ ├── stream-address.test.ts │ │ │ │ │ │ │ │ ├── throughput.test.ts │ │ │ │ │ │ │ │ └── validate-fulfillment.test.ts │ │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ │ └── accounting-service.ts │ │ │ │ │ │ │ └── telemetry.test.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── create-context.ts │ │ │ │ │ │ │ ├── http-mocks.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── normalize-asset.ts │ │ │ │ │ │ │ └── token-bucket.ts │ │ │ │ │ ├── ilp-routing │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── service.test.ts │ │ │ │ │ │ └── service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── ilp_plugin.ts │ │ │ │ ├── peer-http-token │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── model.ts │ │ │ │ │ ├── service.test.ts │ │ │ │ │ └── service.ts │ │ │ │ ├── peer │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── model.test.ts │ │ │ │ │ ├── model.ts │ │ │ │ │ ├── service.test.ts │ │ │ │ │ └── service.ts │ │ │ │ ├── quote-details │ │ │ │ │ └── model.ts │ │ │ │ ├── rates │ │ │ │ │ ├── index.test.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── service.test.ts │ │ │ │ ├── service.ts │ │ │ │ ├── spsp │ │ │ │ │ ├── middleware.test.ts │ │ │ │ │ ├── middleware.ts │ │ │ │ │ ├── routes.test.ts │ │ │ │ │ └── routes.ts │ │ │ │ └── stream-credentials │ │ │ │ │ ├── service.test.ts │ │ │ │ │ └── service.ts │ │ │ ├── local │ │ │ │ ├── service.test.ts │ │ │ │ └── service.ts │ │ │ └── provider │ │ │ │ ├── service.test.ts │ │ │ │ └── service.ts │ │ ├── rates │ │ │ ├── service.test.ts │ │ │ ├── service.ts │ │ │ ├── util.test.ts │ │ │ └── util.ts │ │ ├── shared │ │ │ ├── baseModel.test.ts │ │ │ ├── baseModel.ts │ │ │ ├── baseService.ts │ │ │ ├── filters.ts │ │ │ ├── pagination.test.ts │ │ │ ├── pagination.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── telemetry │ │ │ ├── index.ts │ │ │ ├── privacy.test.ts │ │ │ ├── privacy.ts │ │ │ ├── service.test.ts │ │ │ └── service.ts │ │ ├── tenants │ │ │ ├── errors.ts │ │ │ ├── model.ts │ │ │ ├── service.test.ts │ │ │ ├── service.ts │ │ │ └── settings │ │ │ │ ├── errors.ts │ │ │ │ ├── model.test.ts │ │ │ │ ├── model.ts │ │ │ │ ├── service.test.ts │ │ │ │ └── service.ts │ │ ├── tests │ │ │ ├── accountFactory.ts │ │ │ ├── apiSignature.ts │ │ │ ├── app.ts │ │ │ ├── asset.ts │ │ │ ├── combinedPayment.ts │ │ │ ├── context.ts │ │ │ ├── fee.ts │ │ │ ├── helpers.ts │ │ │ ├── incomingPayment.ts │ │ │ ├── ledgerAccount.ts │ │ │ ├── ledgerTransfer.ts │ │ │ ├── outgoingPayment.ts │ │ │ ├── peer.ts │ │ │ ├── quote.ts │ │ │ ├── rates.ts │ │ │ ├── receiver.ts │ │ │ ├── tableManager.ts │ │ │ ├── telemetry.ts │ │ │ ├── tenant.ts │ │ │ ├── tenantSettings.ts │ │ │ ├── tigerbeetle.ts │ │ │ ├── walletAddress.ts │ │ │ ├── walletAddressKey.ts │ │ │ └── webhook.ts │ │ └── webhook │ │ │ ├── event │ │ │ └── model.ts │ │ │ ├── model.ts │ │ │ ├── service.test.ts │ │ │ └── service.ts │ └── tsconfig.json ├── card-service │ ├── Dockerfile.dev │ ├── Dockerfile.prod │ ├── README.md │ ├── jest.config.js │ ├── jest.custom-environment.ts │ ├── jest.env.js │ ├── jest.setup.ts │ ├── jest.teardown.js │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── config │ │ │ └── app.ts │ │ ├── graphql │ │ │ ├── generated │ │ │ │ └── graphql.ts │ │ │ └── mutations │ │ │ │ ├── createOutgoingPayment.ts │ │ │ │ └── getWalletAddress.ts │ │ ├── index.ts │ │ ├── openapi │ │ │ └── specs │ │ │ │ └── card-server.yaml │ │ ├── payment │ │ │ ├── errors.ts │ │ │ ├── routes.test.ts │ │ │ ├── routes.ts │ │ │ ├── service.test.ts │ │ │ ├── service.ts │ │ │ ├── types.ts │ │ │ ├── wait-map.test.ts │ │ │ └── wait-map.ts │ │ ├── shared │ │ │ └── baseService.ts │ │ ├── tests │ │ │ ├── app.ts │ │ │ └── context.ts │ │ └── utils │ │ │ ├── deferred.test.ts │ │ │ └── deferred.ts │ └── tsconfig.json ├── documentation │ ├── .gitignore │ ├── README.md │ ├── astro.config.mjs │ ├── config-auth.yml │ ├── config-backend.yml │ ├── package.json │ ├── public │ │ ├── favicon.svg │ │ ├── img │ │ │ ├── admin-guide │ │ │ │ ├── account-settings.png │ │ │ │ ├── assets.png │ │ │ │ ├── create-asset.png │ │ │ │ ├── create-peer.png │ │ │ │ ├── create-tenant.png │ │ │ │ ├── create-wallet-address.png │ │ │ │ ├── delete-asset.png │ │ │ │ ├── delete-peer.png │ │ │ │ ├── edit-asset.png │ │ │ │ ├── edit-peer.png │ │ │ │ ├── edit-tenant.png │ │ │ │ ├── edit-wallet-address.png │ │ │ │ ├── home-post.png │ │ │ │ ├── home-pre.png │ │ │ │ ├── home.png │ │ │ │ ├── payments.png │ │ │ │ ├── peers.png │ │ │ │ ├── tenants.png │ │ │ │ ├── wallet-addresses.png │ │ │ │ └── webhooks.png │ │ │ ├── concepts-interledger.png │ │ │ ├── concepts-telemetry-architecture.png │ │ │ ├── grant-interaction-flow.svg │ │ │ ├── icon.svg │ │ │ ├── key-registry-diagram.png │ │ │ ├── localenv-architecture.png │ │ │ ├── localenv-databases.png │ │ │ ├── localenv.png │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ ├── map-accounts.png │ │ │ ├── map-transactions.png │ │ │ ├── rafiki-architecture.png │ │ │ └── v1-beta │ │ │ │ ├── concepts-interledger.png │ │ │ │ ├── concepts-telemetry-architecture.png │ │ │ │ ├── localenv-databases.png │ │ │ │ └── rafiki-architecture.png │ │ └── scripts.js │ ├── src │ │ ├── components │ │ │ ├── Footer.astro │ │ │ ├── Header.astro │ │ │ ├── PageSidebar.astro │ │ │ └── RafikiLogo.astro │ │ ├── content.config.ts │ │ ├── content │ │ │ ├── docs │ │ │ │ ├── 404.mdx │ │ │ │ ├── admin │ │ │ │ │ ├── admin-user-guide.mdx │ │ │ │ │ └── liquidity │ │ │ │ │ │ ├── asset-liquidity.mdx │ │ │ │ │ │ ├── payment-liquidity.mdx │ │ │ │ │ │ ├── peer-liquidity.mdx │ │ │ │ │ │ └── two-phase-transfers.mdx │ │ │ │ ├── apis │ │ │ │ │ └── graphql │ │ │ │ │ │ └── admin-api-overview.mdx │ │ │ │ ├── es │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── overview │ │ │ │ │ │ ├── concepts │ │ │ │ │ │ │ ├── account-servicing-entity.mdx │ │ │ │ │ │ │ ├── accounting.mdx │ │ │ │ │ │ │ ├── clearing-settlement.mdx │ │ │ │ │ │ │ ├── interledger.mdx │ │ │ │ │ │ │ ├── open-payments.mdx │ │ │ │ │ │ │ ├── payment-pointers.mdx │ │ │ │ │ │ │ └── telemetry.mdx │ │ │ │ │ │ └── overview.mdx │ │ │ │ │ └── v1-beta │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── overview │ │ │ │ │ │ ├── concepts │ │ │ │ │ │ ├── account-servicing-entity.mdx │ │ │ │ │ │ ├── accounting.mdx │ │ │ │ │ │ ├── clearing-settlement.mdx │ │ │ │ │ │ ├── interledger.mdx │ │ │ │ │ │ ├── open-payments.mdx │ │ │ │ │ │ ├── payment-pointers.mdx │ │ │ │ │ │ └── telemetry.mdx │ │ │ │ │ │ └── overview.mdx │ │ │ │ ├── i18n │ │ │ │ │ └── .keepme │ │ │ │ ├── index.mdx │ │ │ │ ├── integration │ │ │ │ │ ├── deployment │ │ │ │ │ │ ├── docker-compose.mdx │ │ │ │ │ │ ├── helm-k8s.mdx │ │ │ │ │ │ └── services │ │ │ │ │ │ │ ├── auth-service.mdx │ │ │ │ │ │ │ ├── backend-service.mdx │ │ │ │ │ │ │ └── frontend-service.mdx │ │ │ │ │ ├── playground │ │ │ │ │ │ ├── autopeering.mdx │ │ │ │ │ │ ├── overview.mdx │ │ │ │ │ │ └── testnet.mdx │ │ │ │ │ └── requirements │ │ │ │ │ │ ├── assets.mdx │ │ │ │ │ │ ├── exchange-rates.mdx │ │ │ │ │ │ ├── open-payments │ │ │ │ │ │ ├── grants-revoking.mdx │ │ │ │ │ │ ├── idp.mdx │ │ │ │ │ │ └── wallet-keys.mdx │ │ │ │ │ │ ├── overview.mdx │ │ │ │ │ │ ├── peers.mdx │ │ │ │ │ │ ├── sending-fees.mdx │ │ │ │ │ │ ├── tenants.mdx │ │ │ │ │ │ ├── wallet-addresses.mdx │ │ │ │ │ │ └── webhook-events.mdx │ │ │ │ ├── overview │ │ │ │ │ ├── concepts │ │ │ │ │ │ ├── account-servicing-entity.mdx │ │ │ │ │ │ ├── accounting.mdx │ │ │ │ │ │ ├── clearing-settlement.mdx │ │ │ │ │ │ ├── interledger.mdx │ │ │ │ │ │ ├── multi-tenancy.mdx │ │ │ │ │ │ ├── open-payments.mdx │ │ │ │ │ │ ├── payment-pointers.mdx │ │ │ │ │ │ └── telemetry.mdx │ │ │ │ │ └── overview.mdx │ │ │ │ ├── resources │ │ │ │ │ ├── architecture.mdx │ │ │ │ │ ├── environment-variables.mdx │ │ │ │ │ ├── get-involved.mdx │ │ │ │ │ ├── glossary.mdx │ │ │ │ │ ├── releases.mdx │ │ │ │ │ └── webhook-event-types.mdx │ │ │ │ └── v1-beta │ │ │ │ │ ├── 404.mdx │ │ │ │ │ ├── admin │ │ │ │ │ ├── admin-user-guide.mdx │ │ │ │ │ └── liquidity │ │ │ │ │ │ ├── asset-liquidity.mdx │ │ │ │ │ │ ├── payment-liquidity.mdx │ │ │ │ │ │ ├── peer-liquidity.mdx │ │ │ │ │ │ └── two-phase-transfers.mdx │ │ │ │ │ ├── apis │ │ │ │ │ └── graphql │ │ │ │ │ │ └── admin-api-overview.mdx │ │ │ │ │ ├── i18n │ │ │ │ │ └── .keepme │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── integration │ │ │ │ │ ├── deployment │ │ │ │ │ │ ├── docker-compose.mdx │ │ │ │ │ │ ├── helm-k8s.mdx │ │ │ │ │ │ └── services │ │ │ │ │ │ │ ├── auth-service.mdx │ │ │ │ │ │ │ ├── backend-service.mdx │ │ │ │ │ │ │ └── frontend-service.mdx │ │ │ │ │ ├── playground │ │ │ │ │ │ ├── autopeering.mdx │ │ │ │ │ │ ├── overview.mdx │ │ │ │ │ │ └── testnet.mdx │ │ │ │ │ └── requirements │ │ │ │ │ │ ├── assets.mdx │ │ │ │ │ │ ├── exchange-rates.mdx │ │ │ │ │ │ ├── open-payments │ │ │ │ │ │ ├── grants-revoking.mdx │ │ │ │ │ │ ├── idp.mdx │ │ │ │ │ │ └── wallet-keys.mdx │ │ │ │ │ │ ├── overview.mdx │ │ │ │ │ │ ├── peers.mdx │ │ │ │ │ │ ├── sending-fees.mdx │ │ │ │ │ │ ├── wallet-addresses.mdx │ │ │ │ │ │ └── webhook-events.mdx │ │ │ │ │ ├── overview │ │ │ │ │ ├── concepts │ │ │ │ │ │ ├── account-servicing-entity.mdx │ │ │ │ │ │ ├── accounting.mdx │ │ │ │ │ │ ├── clearing-settlement.mdx │ │ │ │ │ │ ├── interledger.mdx │ │ │ │ │ │ ├── open-payments.mdx │ │ │ │ │ │ ├── payment-pointers.mdx │ │ │ │ │ │ └── telemetry.mdx │ │ │ │ │ └── overview.mdx │ │ │ │ │ └── resources │ │ │ │ │ ├── architecture.mdx │ │ │ │ │ ├── environment-variables.mdx │ │ │ │ │ ├── get-involved.mdx │ │ │ │ │ ├── glossary.mdx │ │ │ │ │ ├── releases.mdx │ │ │ │ │ └── webhook-event-types.mdx │ │ │ └── versions │ │ │ │ └── v1-beta.json │ │ ├── env.d.ts │ │ ├── excalidraw │ │ │ ├── architecture.excalidraw │ │ │ ├── keyregistry.excalidraw │ │ │ └── localenv-architecture.excalidraw │ │ ├── pages │ │ │ ├── apis │ │ │ │ └── graphql │ │ │ │ │ ├── auth │ │ │ │ │ └── index.html │ │ │ │ │ └── backend │ │ │ │ │ └── index.html │ │ │ ├── es │ │ │ │ └── v1-beta │ │ │ │ │ └── apis │ │ │ │ │ └── graphql │ │ │ │ │ ├── auth │ │ │ │ │ └── index.html │ │ │ │ │ └── backend │ │ │ │ │ └── index.html │ │ │ └── v1-beta │ │ │ │ └── apis │ │ │ │ └── graphql │ │ │ │ ├── auth │ │ │ │ └── index.html │ │ │ │ └── backend │ │ │ │ └── index.html │ │ ├── partials │ │ │ ├── auth-variables-docker-compose.mdx │ │ │ ├── auth-variables-helm.mdx │ │ │ ├── auth-variables.mdx │ │ │ ├── backend-variables-docker-compose.mdx │ │ │ ├── backend-variables-helm.mdx │ │ │ ├── backend-variables.mdx │ │ │ ├── frontend-variables-docker-compose.mdx │ │ │ ├── frontend-variables-helm.mdx │ │ │ ├── frontend-variables.mdx │ │ │ ├── kratos-warning.mdx │ │ │ ├── liquidity-idempotency.mdx │ │ │ ├── tenant-id-hmac-note.mdx │ │ │ └── variables-warning.mdx │ │ └── styles │ │ │ └── rafiki.css │ └── tsconfig.json ├── frontend │ ├── .eslintignore │ ├── .eslintrc.yml │ ├── Dockerfile.dev │ ├── Dockerfile.prod │ ├── README.md │ ├── app │ │ ├── PublicEnv.tsx │ │ ├── components │ │ │ ├── ApiCredentialsForm.tsx │ │ │ ├── Badge.tsx │ │ │ ├── ConfirmationDialog.tsx │ │ │ ├── DangerZone.tsx │ │ │ ├── Filters.tsx │ │ │ ├── LiquidityConfirmDialog.tsx │ │ │ ├── LiquidityDialog.tsx │ │ │ ├── PageHeader.tsx │ │ │ ├── RedirectDialog.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── Snackbar.tsx │ │ │ ├── icons.tsx │ │ │ ├── index.ts │ │ │ └── ui │ │ │ │ ├── Button.tsx │ │ │ │ ├── ButtonOrLink.tsx │ │ │ │ ├── Dropdown.tsx │ │ │ │ ├── ErrorPanel.tsx │ │ │ │ ├── FieldError.tsx │ │ │ │ ├── Input.tsx │ │ │ │ ├── Label.tsx │ │ │ │ ├── PasswordInput.tsx │ │ │ │ ├── Select.tsx │ │ │ │ ├── Table.tsx │ │ │ │ └── index.tsx │ │ ├── entry.client.tsx │ │ ├── entry.server.tsx │ │ ├── generated │ │ │ └── graphql.ts │ │ ├── lib │ │ │ ├── api │ │ │ │ ├── asset.server.ts │ │ │ │ ├── payments.server.ts │ │ │ │ ├── peer.server.ts │ │ │ │ ├── tenant.server.ts │ │ │ │ ├── wallet-address.server.ts │ │ │ │ └── webhook.server.ts │ │ │ ├── apollo.server.ts │ │ │ ├── envConfig.server.ts │ │ │ ├── kratos_checks.server.ts │ │ │ ├── message.server.ts │ │ │ ├── session.server.ts │ │ │ └── validate.server.ts │ │ ├── root.tsx │ │ ├── routes │ │ │ ├── _index.tsx │ │ │ ├── api.set-credentials.ts │ │ │ ├── assets.$assetId.deposit-liquidity.tsx │ │ │ ├── assets.$assetId.tsx │ │ │ ├── assets.$assetId.withdraw-liquidity.tsx │ │ │ ├── assets.$assetId_.fee-history.tsx │ │ │ ├── assets._index.tsx │ │ │ ├── assets.create.tsx │ │ │ ├── auth._index.tsx │ │ │ ├── auth.login.tsx │ │ │ ├── auth.manual-logout.tsx │ │ │ ├── auth.recovery.tsx │ │ │ ├── errors.tsx │ │ │ ├── payments._index.tsx │ │ │ ├── payments.incoming.$incomingPaymentId.tsx │ │ │ ├── payments.incoming.$incomingPaymentId.withdraw-liquidity.tsx │ │ │ ├── payments.outgoing.$outgoingPaymentId.deposit-liquidity.tsx │ │ │ ├── payments.outgoing.$outgoingPaymentId.tsx │ │ │ ├── payments.outgoing.$outgoingPaymentId.withdraw-liquidity.tsx │ │ │ ├── peers.$peerId.deposit-liquidity.tsx │ │ │ ├── peers.$peerId.tsx │ │ │ ├── peers.$peerId.withdraw-liquidity.tsx │ │ │ ├── peers._index.tsx │ │ │ ├── peers.create.tsx │ │ │ ├── settings.tsx │ │ │ ├── tenants.$tenantId.tsx │ │ │ ├── tenants._index.tsx │ │ │ ├── tenants.create.tsx │ │ │ ├── wallet-addresses.$walletAddressId.tsx │ │ │ ├── wallet-addresses.$walletAddressId.withdraw-liquidity.tsx │ │ │ ├── wallet-addresses._index.tsx │ │ │ ├── wallet-addresses.create.tsx │ │ │ ├── webhook-events.data.tsx │ │ │ └── webhook-events.tsx │ │ ├── shared │ │ │ ├── enums.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── styles │ │ │ └── tailwind.css │ │ └── utils │ │ │ └── logger.server.ts │ ├── kratos │ │ ├── Dockerfile │ │ ├── config │ │ │ └── identity.schema.json │ │ └── scripts │ │ │ ├── deleteUser.ts │ │ │ ├── entrypoint.sh │ │ │ └── userInvitation.ts │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── bg.svg │ │ ├── bg.webp │ │ ├── logo.svg │ │ └── search.svg │ ├── remix.config.js │ ├── remix.env.d.ts │ ├── tailwind.config.js │ └── tsconfig.json ├── mock-account-service-lib │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── account-provider.ts │ │ ├── generated │ │ │ └── graphql.ts │ │ ├── index.ts │ │ ├── requesters.ts │ │ ├── seed.ts │ │ └── types.ts │ └── tsconfig.json ├── point-of-sale │ ├── Dockerfile.dev │ ├── Dockerfile.prod │ ├── jest.config.js │ ├── jest.custom-environment.ts │ ├── jest.env.js │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── card-service-client │ │ │ ├── client.test.ts │ │ │ ├── client.ts │ │ │ └── errors.ts │ │ ├── config │ │ │ └── app.ts │ │ ├── graphql │ │ │ ├── generated │ │ │ │ └── graphql.ts │ │ │ ├── mutations │ │ │ │ └── createIncomingPayment.ts │ │ │ └── queries │ │ │ │ └── getWalletAddress.ts │ │ ├── index.ts │ │ ├── payments │ │ │ ├── errors.ts │ │ │ ├── routes.test.ts │ │ │ ├── routes.ts │ │ │ ├── service.test.ts │ │ │ └── service.ts │ │ ├── shared │ │ │ ├── baseService.ts │ │ │ ├── filters.ts │ │ │ └── types.ts │ │ ├── tests │ │ │ ├── app.ts │ │ │ ├── context.ts │ │ │ └── helpers.ts │ │ ├── utils │ │ │ └── deferred.ts │ │ └── webhook-handlers │ │ │ ├── middleware.test.ts │ │ │ ├── middleware.ts │ │ │ ├── request-map.ts │ │ │ ├── routes.test.ts │ │ │ └── routes.ts │ └── tsconfig.json └── token-introspection │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── client │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── introspection.test.ts │ │ └── introspection.ts │ ├── config.ts │ ├── index.ts │ ├── openapi │ │ ├── generated │ │ │ └── types.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ └── specs │ │ │ └── token-introspection.yaml │ ├── test │ │ └── helpers.ts │ ├── types.test.ts │ └── types.ts │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── renovate.json ├── scripts └── localenv-tunnel-setup.js ├── test ├── integration │ ├── README.md │ ├── integration.test.ts │ ├── jest.config.js │ ├── lib │ │ ├── test-actions │ │ │ ├── admin.ts │ │ │ ├── index.ts │ │ │ ├── open-payments.ts │ │ │ └── pos.ts │ │ └── utils.ts │ ├── package.json │ ├── scripts │ │ └── run-tests.sh │ └── tsconfig.json ├── performance │ ├── README.md │ ├── config │ │ ├── local.env │ │ └── test.env │ ├── package.json │ ├── scripts │ │ ├── create-local-outgoing-payments.js │ │ ├── create-outgoing-payments.js │ │ ├── run-tests.sh │ │ └── start-mases.js │ ├── src │ │ └── json-canonicalize.js │ └── webpack.config.js ├── test-lib │ ├── package.json │ ├── src │ │ ├── admin-client.ts │ │ ├── apollo-client.ts │ │ ├── config.ts │ │ ├── generated │ │ │ └── graphql.ts │ │ ├── index.ts │ │ ├── integration-server.ts │ │ ├── mock-ase.ts │ │ └── pos-service.ts │ └── tsconfig.json └── testenv │ ├── cloud-nine-wallet │ ├── .env │ ├── docker-compose.yml │ └── seed.yml │ ├── dbinit.sql │ ├── docker-compose.yml │ ├── happy-life-bank │ ├── .env │ ├── docker-compose.yml │ └── seed.yml │ └── private-key.pem ├── tsconfig.build.json └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | .next 2 | public 3 | **/generated 4 | dist 5 | build 6 | bruno -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-or-feature-subtask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/ISSUE_TEMPLATE/feature-or-feature-subtask.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/doc_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/PULL_REQUEST_TEMPLATE/doc_template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/eng_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/PULL_REQUEST_TEMPLATE/eng_template.md -------------------------------------------------------------------------------- /.github/actions/image-push/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/actions/image-push/action.yml -------------------------------------------------------------------------------- /.github/actions/manifest-push/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/actions/manifest-push/action.yml -------------------------------------------------------------------------------- /.github/actions/parent-versions/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/actions/parent-versions/action.yml -------------------------------------------------------------------------------- /.github/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/code_of_conduct.md -------------------------------------------------------------------------------- /.github/codeql/source.yml: -------------------------------------------------------------------------------- 1 | name: "CodeQL source files config" 2 | 3 | paths-ignore: 4 | - '**/*.test.ts' 5 | -------------------------------------------------------------------------------- /.github/codeql/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/codeql/tests.yml -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/release.yaml -------------------------------------------------------------------------------- /.github/renovate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/renovate.md -------------------------------------------------------------------------------- /.github/workflows/add_to_docs_board.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/workflows/add_to_docs_board.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/create_monthly_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/workflows/create_monthly_sync.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/node-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/workflows/node-build.yml -------------------------------------------------------------------------------- /.github/workflows/pr_title_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/workflows/pr_title_check.yml -------------------------------------------------------------------------------- /.github/workflows/rafiki/env-setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.github/workflows/rafiki/env-setup/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.gitmodules -------------------------------------------------------------------------------- /.grype.yaml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - vulnerability: GHSA-3xgq-45jj-v275 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/iron 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/.prettierignore -------------------------------------------------------------------------------- /.trivyignore: -------------------------------------------------------------------------------- 1 | CVE-2024-21538 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/README.md -------------------------------------------------------------------------------- /aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/aws/README.md -------------------------------------------------------------------------------- /aws/lambdas/exchange-rates/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/aws/lambdas/exchange-rates/go.mod -------------------------------------------------------------------------------- /aws/lambdas/exchange-rates/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/aws/lambdas/exchange-rates/go.sum -------------------------------------------------------------------------------- /aws/lambdas/exchange-rates/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/aws/lambdas/exchange-rates/main.go -------------------------------------------------------------------------------- /aws/lambdas/http-signatures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/aws/lambdas/http-signatures/README.md -------------------------------------------------------------------------------- /aws/lambdas/http-signatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/aws/lambdas/http-signatures/index.js -------------------------------------------------------------------------------- /aws/lambdas/http-signatures/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/aws/lambdas/http-signatures/package-lock.json -------------------------------------------------------------------------------- /aws/lambdas/http-signatures/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/aws/lambdas/http-signatures/package.json -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Examples/Open Payments/Create Quote.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Examples/Open Payments/Create Quote.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Open Payments APIs/Quotes/Get Quote.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Open Payments APIs/Quotes/Get Quote.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/POS Service APIs/Initiate Payment.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/POS Service APIs/Initiate Payment.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/POS Service APIs/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/POS Service APIs/folder.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Complete Receiver.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Complete Receiver.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Create Asset.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Create Asset.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Create Peer.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Create Peer.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Create Quote.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Create Quote.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Create Tenant.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Create Tenant.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Delete Asset.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Delete Asset.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Delete Peer.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Delete Peer.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Delete Tenant.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Delete Tenant.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Get Asset.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Get Asset.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Get Assets.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Get Assets.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Get Payments.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Get Payments.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Get Peer.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Get Peer.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Get Peers.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Get Peers.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Get Quote.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Get Quote.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Get Tenants.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Get Tenants.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Set Fee.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Set Fee.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Update Asset.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Update Asset.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Update Peer.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Update Peer.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin APIs/Update Tenant.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin APIs/Update Tenant.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin Auth APIs/Get Grant.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin Auth APIs/Get Grant.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin Auth APIs/Get Grants.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin Auth APIs/Get Grants.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/Rafiki Admin Auth APIs/Revoke Grant.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/Rafiki Admin Auth APIs/Revoke Grant.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/SPSP/Get SPSP Payment Pointer.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/SPSP/Get SPSP Payment Pointer.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/bruno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/bruno.json -------------------------------------------------------------------------------- /bruno/collections/Rafiki/environments/Autopeering.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/environments/Autopeering.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/environments/Local Playground.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/environments/Local Playground.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/environments/Remote.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/environments/Remote.bru -------------------------------------------------------------------------------- /bruno/collections/Rafiki/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/package.json -------------------------------------------------------------------------------- /bruno/collections/Rafiki/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/bruno/collections/Rafiki/scripts.js -------------------------------------------------------------------------------- /infrastructure/helm/rafiki/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/rafiki/Chart.lock -------------------------------------------------------------------------------- /infrastructure/helm/rafiki/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/rafiki/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/helm/rafiki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/rafiki/README.md -------------------------------------------------------------------------------- /infrastructure/helm/rafiki/charts/postgresql-12.6.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/rafiki/charts/postgresql-12.6.5.tgz -------------------------------------------------------------------------------- /infrastructure/helm/rafiki/charts/rafiki-auth-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/rafiki/charts/rafiki-auth-0.2.0.tgz -------------------------------------------------------------------------------- /infrastructure/helm/rafiki/charts/rafiki-backend-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/rafiki/charts/rafiki-backend-0.2.0.tgz -------------------------------------------------------------------------------- /infrastructure/helm/rafiki/charts/rafiki-frontend-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/rafiki/charts/rafiki-frontend-0.2.0.tgz -------------------------------------------------------------------------------- /infrastructure/helm/rafiki/charts/redis-17.11.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/rafiki/charts/redis-17.11.8.tgz -------------------------------------------------------------------------------- /infrastructure/helm/rafiki/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/rafiki/values.yaml -------------------------------------------------------------------------------- /infrastructure/helm/tigerbeetle/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/tigerbeetle/.helmignore -------------------------------------------------------------------------------- /infrastructure/helm/tigerbeetle/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/tigerbeetle/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/helm/tigerbeetle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/tigerbeetle/README.md -------------------------------------------------------------------------------- /infrastructure/helm/tigerbeetle/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/tigerbeetle/templates/_helpers.tpl -------------------------------------------------------------------------------- /infrastructure/helm/tigerbeetle/templates/configmap.nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/tigerbeetle/templates/configmap.nginx.yaml -------------------------------------------------------------------------------- /infrastructure/helm/tigerbeetle/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/tigerbeetle/templates/service.yaml -------------------------------------------------------------------------------- /infrastructure/helm/tigerbeetle/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/tigerbeetle/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /infrastructure/helm/tigerbeetle/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/tigerbeetle/templates/statefulset.yaml -------------------------------------------------------------------------------- /infrastructure/helm/tigerbeetle/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/infrastructure/helm/tigerbeetle/values.yaml -------------------------------------------------------------------------------- /jest.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/jest.config.base.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/jest.config.js -------------------------------------------------------------------------------- /localenv/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /localenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/README.md -------------------------------------------------------------------------------- /localenv/admin-auth/cloud-nine-kratos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/admin-auth/cloud-nine-kratos.yml -------------------------------------------------------------------------------- /localenv/admin-auth/dbinit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/admin-auth/dbinit.sql -------------------------------------------------------------------------------- /localenv/admin-auth/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/admin-auth/docker-compose.yml -------------------------------------------------------------------------------- /localenv/admin-auth/happy-life-kratos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/admin-auth/happy-life-kratos.yml -------------------------------------------------------------------------------- /localenv/cloud-nine-wallet/dbinit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/cloud-nine-wallet/dbinit.sql -------------------------------------------------------------------------------- /localenv/cloud-nine-wallet/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/cloud-nine-wallet/docker-compose.yml -------------------------------------------------------------------------------- /localenv/cloud-nine-wallet/kratos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/cloud-nine-wallet/kratos.yml -------------------------------------------------------------------------------- /localenv/cloud-nine-wallet/private-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/cloud-nine-wallet/private-key.pem -------------------------------------------------------------------------------- /localenv/cloud-nine-wallet/seed.multihop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/cloud-nine-wallet/seed.multihop.yml -------------------------------------------------------------------------------- /localenv/cloud-nine-wallet/seed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/cloud-nine-wallet/seed.yml -------------------------------------------------------------------------------- /localenv/cloud-ten-wallet/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/cloud-ten-wallet/docker-compose.yml -------------------------------------------------------------------------------- /localenv/cloud-ten-wallet/private-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/cloud-ten-wallet/private-key.pem -------------------------------------------------------------------------------- /localenv/cloud-ten-wallet/seed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/cloud-ten-wallet/seed.yml -------------------------------------------------------------------------------- /localenv/docs/assets/excalidraw/localenv-architecture.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/docs/assets/excalidraw/localenv-architecture.excalidraw -------------------------------------------------------------------------------- /localenv/docs/assets/mov/eCom-example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/docs/assets/mov/eCom-example.mp4 -------------------------------------------------------------------------------- /localenv/docs/peer-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/docs/peer-setup.md -------------------------------------------------------------------------------- /localenv/global-bank/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/global-bank/docker-compose.yml -------------------------------------------------------------------------------- /localenv/global-bank/private-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/global-bank/private-key.pem -------------------------------------------------------------------------------- /localenv/global-bank/seed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/global-bank/seed.yml -------------------------------------------------------------------------------- /localenv/happy-life-bank/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/happy-life-bank/docker-compose.yml -------------------------------------------------------------------------------- /localenv/happy-life-bank/kratos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/happy-life-bank/kratos.yml -------------------------------------------------------------------------------- /localenv/happy-life-bank/private-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/happy-life-bank/private-key.pem -------------------------------------------------------------------------------- /localenv/happy-life-bank/seed.multihop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/happy-life-bank/seed.multihop.yml -------------------------------------------------------------------------------- /localenv/happy-life-bank/seed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/happy-life-bank/seed.yml -------------------------------------------------------------------------------- /localenv/merged/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/merged/docker-compose.yml -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/.gitignore -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/Dockerfile -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/README.md -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/PublicEnv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/PublicEnv.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/components/Button.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/components/Input.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/components/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/components/Label.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/components/Select.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/components/Table.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/components/icons.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/components/index.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/entry.client.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/entry.server.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/lib/apiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/lib/apiClient.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/lib/apolloClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/lib/apolloClient.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/lib/asset.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/lib/asset.server.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/lib/message.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/lib/message.server.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/lib/requesters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/lib/requesters.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/lib/types.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/lib/utils.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/lib/wallet.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/lib/wallet.server.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/root.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/routes/_index.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/routes/balances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/routes/balances.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/routes/healthz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/routes/healthz.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/routes/rates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/routes/rates.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/routes/rates.view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/routes/rates.view.tsx -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/routes/webhooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/routes/webhooks.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/app/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/app/styles/tailwind.css -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/generated/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/generated/graphql.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/package.json -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/postcss.config.js -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/public/bank-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/public/bank-icon.svg -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/public/favicon.ico -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/public/logo.svg -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/public/wallet-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/public/wallet-icon.svg -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/public/wallet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/public/wallet-logo.png -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/remix.config.js -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/remix.env.d.ts -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/seed.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/seed.example.yml -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/tailwind.config.js -------------------------------------------------------------------------------- /localenv/mock-account-servicing-entity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/mock-account-servicing-entity/tsconfig.json -------------------------------------------------------------------------------- /localenv/multihop/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/multihop/docker-compose.yml -------------------------------------------------------------------------------- /localenv/telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/telemetry/README.md -------------------------------------------------------------------------------- /localenv/telemetry/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/telemetry/docker-compose.yml -------------------------------------------------------------------------------- /localenv/telemetry/grafana/provisioning/dashboards/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/telemetry/grafana/provisioning/dashboards/default.yaml -------------------------------------------------------------------------------- /localenv/telemetry/otel-collector-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/telemetry/otel-collector-config.yaml -------------------------------------------------------------------------------- /localenv/telemetry/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/telemetry/prometheus.yaml -------------------------------------------------------------------------------- /localenv/telemetry/tempo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/telemetry/tempo.yaml -------------------------------------------------------------------------------- /localenv/tigerbeetle/.env.tigerbeetle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/tigerbeetle/.env.tigerbeetle -------------------------------------------------------------------------------- /localenv/tigerbeetle/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/localenv/tigerbeetle/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/package.json -------------------------------------------------------------------------------- /packages/auth/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/Dockerfile.dev -------------------------------------------------------------------------------- /packages/auth/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/Dockerfile.prod -------------------------------------------------------------------------------- /packages/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/README.md -------------------------------------------------------------------------------- /packages/auth/__mocks__/openapi-schema-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/__mocks__/openapi-schema-validator.ts -------------------------------------------------------------------------------- /packages/auth/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/codegen.yml -------------------------------------------------------------------------------- /packages/auth/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/docker-compose.yml -------------------------------------------------------------------------------- /packages/auth/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/jest.config.js -------------------------------------------------------------------------------- /packages/auth/jest.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/jest.env.js -------------------------------------------------------------------------------- /packages/auth/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/jest.setup.js -------------------------------------------------------------------------------- /packages/auth/jest.teardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/jest.teardown.js -------------------------------------------------------------------------------- /packages/auth/knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/knexfile.js -------------------------------------------------------------------------------- /packages/auth/migrations/20220504161932_create_grants_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/migrations/20220504161932_create_grants_table.js -------------------------------------------------------------------------------- /packages/auth/migrations/20241206232423_add_tenant_to_grant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/migrations/20241206232423_add_tenant_to_grant.js -------------------------------------------------------------------------------- /packages/auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/package.json -------------------------------------------------------------------------------- /packages/auth/scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/scripts/init.sh -------------------------------------------------------------------------------- /packages/auth/src/access/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/access/errors.ts -------------------------------------------------------------------------------- /packages/auth/src/access/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/access/model.ts -------------------------------------------------------------------------------- /packages/auth/src/access/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/access/service.test.ts -------------------------------------------------------------------------------- /packages/auth/src/access/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/access/service.ts -------------------------------------------------------------------------------- /packages/auth/src/access/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/access/types.ts -------------------------------------------------------------------------------- /packages/auth/src/access/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/access/utils.test.ts -------------------------------------------------------------------------------- /packages/auth/src/access/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/access/utils.ts -------------------------------------------------------------------------------- /packages/auth/src/accessToken/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/accessToken/model.ts -------------------------------------------------------------------------------- /packages/auth/src/accessToken/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/accessToken/routes.test.ts -------------------------------------------------------------------------------- /packages/auth/src/accessToken/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/accessToken/routes.ts -------------------------------------------------------------------------------- /packages/auth/src/accessToken/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/accessToken/service.test.ts -------------------------------------------------------------------------------- /packages/auth/src/accessToken/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/accessToken/service.ts -------------------------------------------------------------------------------- /packages/auth/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/app.ts -------------------------------------------------------------------------------- /packages/auth/src/client/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/client/service.test.ts -------------------------------------------------------------------------------- /packages/auth/src/client/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/client/service.ts -------------------------------------------------------------------------------- /packages/auth/src/config/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/config/app.ts -------------------------------------------------------------------------------- /packages/auth/src/grant/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/grant/errors.ts -------------------------------------------------------------------------------- /packages/auth/src/grant/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/grant/model.ts -------------------------------------------------------------------------------- /packages/auth/src/grant/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/grant/routes.test.ts -------------------------------------------------------------------------------- /packages/auth/src/grant/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/grant/routes.ts -------------------------------------------------------------------------------- /packages/auth/src/grant/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/grant/service.test.ts -------------------------------------------------------------------------------- /packages/auth/src/grant/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/grant/service.ts -------------------------------------------------------------------------------- /packages/auth/src/grant/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/grant/utils.test.ts -------------------------------------------------------------------------------- /packages/auth/src/grant/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/grant/utils.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/errors/index.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/generated/graphql.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/generated/graphql.schema.json -------------------------------------------------------------------------------- /packages/auth/src/graphql/generated/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/generated/graphql.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/plugin/index.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/resolvers/grant.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/resolvers/grant.test.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/resolvers/grant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/resolvers/grant.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/resolvers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/resolvers/index.test.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/resolvers/index.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/resolvers/page.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/resolvers/page.test.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/scalars/BigInt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/scalars/BigInt.test.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/scalars/BigInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/scalars/BigInt.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/scalars/UInt8.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/scalars/UInt8.test.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/scalars/UInt8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/scalars/UInt8.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/scalars/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/scalars/index.ts -------------------------------------------------------------------------------- /packages/auth/src/graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/graphql/schema.graphql -------------------------------------------------------------------------------- /packages/auth/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/index.ts -------------------------------------------------------------------------------- /packages/auth/src/interaction/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/interaction/model.ts -------------------------------------------------------------------------------- /packages/auth/src/interaction/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/interaction/routes.test.ts -------------------------------------------------------------------------------- /packages/auth/src/interaction/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/interaction/routes.ts -------------------------------------------------------------------------------- /packages/auth/src/interaction/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/interaction/service.test.ts -------------------------------------------------------------------------------- /packages/auth/src/interaction/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/interaction/service.ts -------------------------------------------------------------------------------- /packages/auth/src/logger/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/logger/service.ts -------------------------------------------------------------------------------- /packages/auth/src/openapi/specs/id-provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/openapi/specs/id-provider.yaml -------------------------------------------------------------------------------- /packages/auth/src/shared/baseModel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/shared/baseModel.test.ts -------------------------------------------------------------------------------- /packages/auth/src/shared/baseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/shared/baseModel.ts -------------------------------------------------------------------------------- /packages/auth/src/shared/baseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/shared/baseService.ts -------------------------------------------------------------------------------- /packages/auth/src/shared/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/shared/filters.ts -------------------------------------------------------------------------------- /packages/auth/src/shared/gnapErrors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/shared/gnapErrors.test.ts -------------------------------------------------------------------------------- /packages/auth/src/shared/gnapErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/shared/gnapErrors.ts -------------------------------------------------------------------------------- /packages/auth/src/shared/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/shared/pagination.ts -------------------------------------------------------------------------------- /packages/auth/src/shared/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/shared/utils.test.ts -------------------------------------------------------------------------------- /packages/auth/src/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/shared/utils.ts -------------------------------------------------------------------------------- /packages/auth/src/signature/middleware.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/signature/middleware.test.ts -------------------------------------------------------------------------------- /packages/auth/src/signature/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/signature/middleware.ts -------------------------------------------------------------------------------- /packages/auth/src/signature/tenant.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/signature/tenant.test.ts -------------------------------------------------------------------------------- /packages/auth/src/signature/tenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/signature/tenant.ts -------------------------------------------------------------------------------- /packages/auth/src/subject/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/subject/model.ts -------------------------------------------------------------------------------- /packages/auth/src/subject/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/subject/service.test.ts -------------------------------------------------------------------------------- /packages/auth/src/subject/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/subject/service.ts -------------------------------------------------------------------------------- /packages/auth/src/subject/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/subject/types.ts -------------------------------------------------------------------------------- /packages/auth/src/tenant/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tenant/model.ts -------------------------------------------------------------------------------- /packages/auth/src/tenant/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tenant/routes.test.ts -------------------------------------------------------------------------------- /packages/auth/src/tenant/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tenant/routes.ts -------------------------------------------------------------------------------- /packages/auth/src/tenant/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tenant/service.test.ts -------------------------------------------------------------------------------- /packages/auth/src/tenant/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tenant/service.ts -------------------------------------------------------------------------------- /packages/auth/src/tests/apiSignature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tests/apiSignature.ts -------------------------------------------------------------------------------- /packages/auth/src/tests/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tests/app.ts -------------------------------------------------------------------------------- /packages/auth/src/tests/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tests/context.ts -------------------------------------------------------------------------------- /packages/auth/src/tests/grant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tests/grant.ts -------------------------------------------------------------------------------- /packages/auth/src/tests/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tests/helpers.ts -------------------------------------------------------------------------------- /packages/auth/src/tests/interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tests/interaction.ts -------------------------------------------------------------------------------- /packages/auth/src/tests/signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tests/signature.ts -------------------------------------------------------------------------------- /packages/auth/src/tests/tableManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tests/tableManager.ts -------------------------------------------------------------------------------- /packages/auth/src/tests/tenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/src/tests/tenant.ts -------------------------------------------------------------------------------- /packages/auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/auth/tsconfig.json -------------------------------------------------------------------------------- /packages/backend/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | 3 | /dist 4 | .env 5 | src/coverage 6 | tmp 7 | -------------------------------------------------------------------------------- /packages/backend/.graphqlconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/.graphqlconfig -------------------------------------------------------------------------------- /packages/backend/.npmignore: -------------------------------------------------------------------------------- 1 | ./src -------------------------------------------------------------------------------- /packages/backend/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/Dockerfile.dev -------------------------------------------------------------------------------- /packages/backend/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/Dockerfile.prod -------------------------------------------------------------------------------- /packages/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/README.md -------------------------------------------------------------------------------- /packages/backend/__mocks__/openapi-schema-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/__mocks__/openapi-schema-validator.ts -------------------------------------------------------------------------------- /packages/backend/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/codegen.yml -------------------------------------------------------------------------------- /packages/backend/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/docker-compose.yml -------------------------------------------------------------------------------- /packages/backend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/jest.config.js -------------------------------------------------------------------------------- /packages/backend/jest.custom-environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/jest.custom-environment.ts -------------------------------------------------------------------------------- /packages/backend/jest.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/jest.env.js -------------------------------------------------------------------------------- /packages/backend/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/jest.setup.ts -------------------------------------------------------------------------------- /packages/backend/jest.teardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/jest.teardown.js -------------------------------------------------------------------------------- /packages/backend/jest.tigerbeetle-environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/jest.tigerbeetle-environment.ts -------------------------------------------------------------------------------- /packages/backend/knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/knexfile.js -------------------------------------------------------------------------------- /packages/backend/migrations/20230731141948_create_fee_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/migrations/20230731141948_create_fee_table.js -------------------------------------------------------------------------------- /packages/backend/migrations/20230814152458_add_fee_quotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/migrations/20230814152458_add_fee_quotes.js -------------------------------------------------------------------------------- /packages/backend/migrations/20230907130701_add_peer_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/migrations/20230907130701_add_peer_index.js -------------------------------------------------------------------------------- /packages/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/package.json -------------------------------------------------------------------------------- /packages/backend/scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/scripts/init.sh -------------------------------------------------------------------------------- /packages/backend/src/accounting/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/psql/balance.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/psql/balance.test.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/psql/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/psql/balance.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/psql/ledger-account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/psql/ledger-account/index.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/psql/ledger-account/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/psql/ledger-account/model.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/psql/ledger-transfer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/psql/ledger-transfer/index.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/psql/ledger-transfer/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/psql/ledger-transfer/model.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/psql/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/psql/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/psql/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/psql/service.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/service.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/tigerbeetle/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/tigerbeetle/accounts.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/tigerbeetle/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/tigerbeetle/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/tigerbeetle/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/tigerbeetle/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/tigerbeetle/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/tigerbeetle/service.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/tigerbeetle/transfers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/tigerbeetle/transfers.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/tigerbeetle/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/tigerbeetle/utils.test.ts -------------------------------------------------------------------------------- /packages/backend/src/accounting/tigerbeetle/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/accounting/tigerbeetle/utils.ts -------------------------------------------------------------------------------- /packages/backend/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/app.ts -------------------------------------------------------------------------------- /packages/backend/src/asset/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/asset/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/asset/model.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/asset/model.test.ts -------------------------------------------------------------------------------- /packages/backend/src/asset/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/asset/model.ts -------------------------------------------------------------------------------- /packages/backend/src/asset/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/asset/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/asset/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/asset/service.ts -------------------------------------------------------------------------------- /packages/backend/src/auth-service-client/client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/auth-service-client/client.test.ts -------------------------------------------------------------------------------- /packages/backend/src/auth-service-client/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/auth-service-client/client.ts -------------------------------------------------------------------------------- /packages/backend/src/config/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/config/app.ts -------------------------------------------------------------------------------- /packages/backend/src/fee/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/fee/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/fee/model.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/fee/model.test.ts -------------------------------------------------------------------------------- /packages/backend/src/fee/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/fee/model.ts -------------------------------------------------------------------------------- /packages/backend/src/fee/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/fee/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/fee/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/fee/service.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/errors/index.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/generated/graphql.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/generated/graphql.schema.json -------------------------------------------------------------------------------- /packages/backend/src/graphql/generated/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/generated/graphql.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/middleware/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/middleware/index.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/middleware/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/middleware/index.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/plugin/index.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/accounting_transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/accounting_transfer.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/asset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/asset.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/asset.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/auto-peering.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/auto-peering.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/auto-peering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/auto-peering.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/combined_payments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/combined_payments.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/fee.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/fee.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/fee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/fee.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/incoming_payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/incoming_payment.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/index.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/index.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/liquidity.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/liquidity.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/liquidity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/liquidity.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/outgoing_payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/outgoing_payment.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/page.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/page.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/peer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/peer.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/peer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/peer.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/quote.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/quote.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/quote.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/receiver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/receiver.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/receiver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/receiver.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/tenant.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/tenant.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/tenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/tenant.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/tenant_settings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/tenant_settings.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/tenant_settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/tenant_settings.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/walletAddressKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/walletAddressKey.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/wallet_address.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/wallet_address.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/wallet_address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/wallet_address.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/webhooks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/webhooks.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/resolvers/webhooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/resolvers/webhooks.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/scalars/BigInt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/scalars/BigInt.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/scalars/BigInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/scalars/BigInt.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/scalars/UInt8.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/scalars/UInt8.test.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/scalars/UInt8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/scalars/UInt8.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/scalars/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/scalars/index.ts -------------------------------------------------------------------------------- /packages/backend/src/graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/graphql/schema.graphql -------------------------------------------------------------------------------- /packages/backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/index.ts -------------------------------------------------------------------------------- /packages/backend/src/middleware/cache/data-stores/in-memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/middleware/cache/data-stores/in-memory.ts -------------------------------------------------------------------------------- /packages/backend/src/middleware/cache/data-stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/middleware/cache/data-stores/index.ts -------------------------------------------------------------------------------- /packages/backend/src/middleware/cache/data-stores/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/middleware/cache/data-stores/redis.ts -------------------------------------------------------------------------------- /packages/backend/src/middleware/cache/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/middleware/cache/index.test.ts -------------------------------------------------------------------------------- /packages/backend/src/middleware/cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/middleware/cache/index.ts -------------------------------------------------------------------------------- /packages/backend/src/middleware/lock/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/middleware/lock/index.test.ts -------------------------------------------------------------------------------- /packages/backend/src/middleware/lock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/middleware/lock/index.ts -------------------------------------------------------------------------------- /packages/backend/src/middleware/lock/redis.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/middleware/lock/redis.test.ts -------------------------------------------------------------------------------- /packages/backend/src/middleware/lock/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/middleware/lock/redis.ts -------------------------------------------------------------------------------- /packages/backend/src/middleware/tenant/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/middleware/tenant/index.test.ts -------------------------------------------------------------------------------- /packages/backend/src/middleware/tenant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/middleware/tenant/index.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/amount.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/auth/middleware.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/auth/middleware.test.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/auth/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/auth/middleware.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/authServer/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/authServer/model.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/authServer/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/authServer/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/authServer/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/authServer/service.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/grant/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/grant/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/grant/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/grant/model.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/grant/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/grant/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/grant/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/grant/service.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/combined/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/combined/model.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/combined/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/combined/service.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/incoming/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/incoming/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/incoming/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/incoming/model.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/incoming/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/incoming/routes.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/incoming/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/incoming/service.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/incoming/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/incoming/types.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/outgoing/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/outgoing/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/outgoing/limits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/outgoing/limits.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/outgoing/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/outgoing/model.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/outgoing/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/outgoing/routes.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/outgoing/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/outgoing/service.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/payment/outgoing/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/payment/outgoing/worker.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/quote/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/quote/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/quote/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/quote/model.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/quote/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/quote/routes.test.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/quote/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/quote/routes.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/quote/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/quote/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/quote/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/quote/service.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/receiver/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/receiver/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/receiver/model.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/receiver/model.test.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/receiver/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/receiver/model.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/receiver/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/receiver/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/receiver/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/receiver/service.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/route-errors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/route-errors.test.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/route-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/route-errors.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/wallet_address/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/wallet_address/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/wallet_address/key/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/wallet_address/key/model.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/wallet_address/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/wallet_address/model.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/wallet_address/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/wallet_address/routes.ts -------------------------------------------------------------------------------- /packages/backend/src/open_payments/wallet_address/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/open_payments/wallet_address/service.ts -------------------------------------------------------------------------------- /packages/backend/src/openapi/specs/exchange-rates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/openapi/specs/exchange-rates.yaml -------------------------------------------------------------------------------- /packages/backend/src/openapi/specs/webhooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/openapi/specs/webhooks.yaml -------------------------------------------------------------------------------- /packages/backend/src/payment-method/handler/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/handler/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/handler/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/handler/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/handler/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/handler/service.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/auto-peering/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/auto-peering/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/auto-peering/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/auto-peering/routes.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/connector/core/controllers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './client' 2 | -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/connector/core/errors/index.ts: -------------------------------------------------------------------------------- 1 | export * from './invalid-json-body-error' 2 | -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/connector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/connector/index.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/ilp_plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/ilp_plugin.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/peer/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/peer/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/peer/model.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/peer/model.test.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/peer/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/peer/model.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/peer/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/peer/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/peer/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/peer/service.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/quote-details/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/quote-details/model.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/rates/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/rates/index.test.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/rates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/rates/index.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/service.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/spsp/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/spsp/middleware.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/spsp/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/spsp/routes.test.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/ilp/spsp/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/ilp/spsp/routes.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/local/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/local/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/local/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/local/service.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/provider/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/provider/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/payment-method/provider/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/payment-method/provider/service.ts -------------------------------------------------------------------------------- /packages/backend/src/rates/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/rates/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/rates/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/rates/service.ts -------------------------------------------------------------------------------- /packages/backend/src/rates/util.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/rates/util.test.ts -------------------------------------------------------------------------------- /packages/backend/src/rates/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/rates/util.ts -------------------------------------------------------------------------------- /packages/backend/src/shared/baseModel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/shared/baseModel.test.ts -------------------------------------------------------------------------------- /packages/backend/src/shared/baseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/shared/baseModel.ts -------------------------------------------------------------------------------- /packages/backend/src/shared/baseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/shared/baseService.ts -------------------------------------------------------------------------------- /packages/backend/src/shared/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/shared/filters.ts -------------------------------------------------------------------------------- /packages/backend/src/shared/pagination.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/shared/pagination.test.ts -------------------------------------------------------------------------------- /packages/backend/src/shared/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/shared/pagination.ts -------------------------------------------------------------------------------- /packages/backend/src/shared/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/shared/utils.test.ts -------------------------------------------------------------------------------- /packages/backend/src/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/shared/utils.ts -------------------------------------------------------------------------------- /packages/backend/src/telemetry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/telemetry/index.ts -------------------------------------------------------------------------------- /packages/backend/src/telemetry/privacy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/telemetry/privacy.test.ts -------------------------------------------------------------------------------- /packages/backend/src/telemetry/privacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/telemetry/privacy.ts -------------------------------------------------------------------------------- /packages/backend/src/telemetry/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/telemetry/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/telemetry/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/telemetry/service.ts -------------------------------------------------------------------------------- /packages/backend/src/tenants/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tenants/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/tenants/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tenants/model.ts -------------------------------------------------------------------------------- /packages/backend/src/tenants/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tenants/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/tenants/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tenants/service.ts -------------------------------------------------------------------------------- /packages/backend/src/tenants/settings/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tenants/settings/errors.ts -------------------------------------------------------------------------------- /packages/backend/src/tenants/settings/model.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tenants/settings/model.test.ts -------------------------------------------------------------------------------- /packages/backend/src/tenants/settings/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tenants/settings/model.ts -------------------------------------------------------------------------------- /packages/backend/src/tenants/settings/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tenants/settings/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/tenants/settings/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tenants/settings/service.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/accountFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/accountFactory.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/apiSignature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/apiSignature.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/app.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/asset.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/combinedPayment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/combinedPayment.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/context.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/fee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/fee.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/helpers.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/incomingPayment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/incomingPayment.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/ledgerAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/ledgerAccount.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/ledgerTransfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/ledgerTransfer.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/outgoingPayment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/outgoingPayment.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/peer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/peer.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/quote.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/rates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/rates.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/receiver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/receiver.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/tableManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/tableManager.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/telemetry.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/tenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/tenant.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/tenantSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/tenantSettings.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/tigerbeetle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/tigerbeetle.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/walletAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/walletAddress.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/walletAddressKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/walletAddressKey.ts -------------------------------------------------------------------------------- /packages/backend/src/tests/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/tests/webhook.ts -------------------------------------------------------------------------------- /packages/backend/src/webhook/event/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/webhook/event/model.ts -------------------------------------------------------------------------------- /packages/backend/src/webhook/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/webhook/model.ts -------------------------------------------------------------------------------- /packages/backend/src/webhook/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/webhook/service.test.ts -------------------------------------------------------------------------------- /packages/backend/src/webhook/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/src/webhook/service.ts -------------------------------------------------------------------------------- /packages/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/backend/tsconfig.json -------------------------------------------------------------------------------- /packages/card-service/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/Dockerfile.dev -------------------------------------------------------------------------------- /packages/card-service/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/Dockerfile.prod -------------------------------------------------------------------------------- /packages/card-service/README.md: -------------------------------------------------------------------------------- 1 | # Card Service 2 | -------------------------------------------------------------------------------- /packages/card-service/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/jest.config.js -------------------------------------------------------------------------------- /packages/card-service/jest.custom-environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/jest.custom-environment.ts -------------------------------------------------------------------------------- /packages/card-service/jest.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/jest.env.js -------------------------------------------------------------------------------- /packages/card-service/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/jest.setup.ts -------------------------------------------------------------------------------- /packages/card-service/jest.teardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/jest.teardown.js -------------------------------------------------------------------------------- /packages/card-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/package.json -------------------------------------------------------------------------------- /packages/card-service/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/app.ts -------------------------------------------------------------------------------- /packages/card-service/src/config/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/config/app.ts -------------------------------------------------------------------------------- /packages/card-service/src/graphql/generated/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/graphql/generated/graphql.ts -------------------------------------------------------------------------------- /packages/card-service/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/index.ts -------------------------------------------------------------------------------- /packages/card-service/src/openapi/specs/card-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/openapi/specs/card-server.yaml -------------------------------------------------------------------------------- /packages/card-service/src/payment/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/payment/errors.ts -------------------------------------------------------------------------------- /packages/card-service/src/payment/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/payment/routes.test.ts -------------------------------------------------------------------------------- /packages/card-service/src/payment/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/payment/routes.ts -------------------------------------------------------------------------------- /packages/card-service/src/payment/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/payment/service.test.ts -------------------------------------------------------------------------------- /packages/card-service/src/payment/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/payment/service.ts -------------------------------------------------------------------------------- /packages/card-service/src/payment/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/payment/types.ts -------------------------------------------------------------------------------- /packages/card-service/src/payment/wait-map.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/payment/wait-map.test.ts -------------------------------------------------------------------------------- /packages/card-service/src/payment/wait-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/payment/wait-map.ts -------------------------------------------------------------------------------- /packages/card-service/src/shared/baseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/shared/baseService.ts -------------------------------------------------------------------------------- /packages/card-service/src/tests/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/tests/app.ts -------------------------------------------------------------------------------- /packages/card-service/src/tests/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/tests/context.ts -------------------------------------------------------------------------------- /packages/card-service/src/utils/deferred.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/utils/deferred.test.ts -------------------------------------------------------------------------------- /packages/card-service/src/utils/deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/src/utils/deferred.ts -------------------------------------------------------------------------------- /packages/card-service/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/card-service/tsconfig.json -------------------------------------------------------------------------------- /packages/documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/.gitignore -------------------------------------------------------------------------------- /packages/documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/README.md -------------------------------------------------------------------------------- /packages/documentation/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/astro.config.mjs -------------------------------------------------------------------------------- /packages/documentation/config-auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/config-auth.yml -------------------------------------------------------------------------------- /packages/documentation/config-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/config-backend.yml -------------------------------------------------------------------------------- /packages/documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/package.json -------------------------------------------------------------------------------- /packages/documentation/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/favicon.svg -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/assets.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/create-asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/create-asset.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/create-peer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/create-peer.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/delete-asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/delete-asset.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/delete-peer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/delete-peer.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/edit-asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/edit-asset.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/edit-peer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/edit-peer.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/edit-tenant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/edit-tenant.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/home-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/home-post.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/home-pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/home-pre.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/home.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/payments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/payments.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/peers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/peers.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/tenants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/tenants.png -------------------------------------------------------------------------------- /packages/documentation/public/img/admin-guide/webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/admin-guide/webhooks.png -------------------------------------------------------------------------------- /packages/documentation/public/img/concepts-interledger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/concepts-interledger.png -------------------------------------------------------------------------------- /packages/documentation/public/img/grant-interaction-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/grant-interaction-flow.svg -------------------------------------------------------------------------------- /packages/documentation/public/img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/icon.svg -------------------------------------------------------------------------------- /packages/documentation/public/img/key-registry-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/key-registry-diagram.png -------------------------------------------------------------------------------- /packages/documentation/public/img/localenv-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/localenv-architecture.png -------------------------------------------------------------------------------- /packages/documentation/public/img/localenv-databases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/localenv-databases.png -------------------------------------------------------------------------------- /packages/documentation/public/img/localenv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/localenv.png -------------------------------------------------------------------------------- /packages/documentation/public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/logo.png -------------------------------------------------------------------------------- /packages/documentation/public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/logo.svg -------------------------------------------------------------------------------- /packages/documentation/public/img/map-accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/map-accounts.png -------------------------------------------------------------------------------- /packages/documentation/public/img/map-transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/map-transactions.png -------------------------------------------------------------------------------- /packages/documentation/public/img/rafiki-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/img/rafiki-architecture.png -------------------------------------------------------------------------------- /packages/documentation/public/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/public/scripts.js -------------------------------------------------------------------------------- /packages/documentation/src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/components/Footer.astro -------------------------------------------------------------------------------- /packages/documentation/src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/components/Header.astro -------------------------------------------------------------------------------- /packages/documentation/src/components/PageSidebar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/components/PageSidebar.astro -------------------------------------------------------------------------------- /packages/documentation/src/components/RafikiLogo.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/components/RafikiLogo.astro -------------------------------------------------------------------------------- /packages/documentation/src/content.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/content.config.ts -------------------------------------------------------------------------------- /packages/documentation/src/content/docs/404.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/content/docs/404.mdx -------------------------------------------------------------------------------- /packages/documentation/src/content/docs/es/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/content/docs/es/index.mdx -------------------------------------------------------------------------------- /packages/documentation/src/content/docs/es/v1-beta/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/content/docs/es/v1-beta/index.mdx -------------------------------------------------------------------------------- /packages/documentation/src/content/docs/i18n/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/documentation/src/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/content/docs/index.mdx -------------------------------------------------------------------------------- /packages/documentation/src/content/docs/overview/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/content/docs/overview/overview.mdx -------------------------------------------------------------------------------- /packages/documentation/src/content/docs/resources/glossary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/content/docs/resources/glossary.mdx -------------------------------------------------------------------------------- /packages/documentation/src/content/docs/resources/releases.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/content/docs/resources/releases.mdx -------------------------------------------------------------------------------- /packages/documentation/src/content/docs/v1-beta/404.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/content/docs/v1-beta/404.mdx -------------------------------------------------------------------------------- /packages/documentation/src/content/docs/v1-beta/i18n/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/documentation/src/content/docs/v1-beta/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/content/docs/v1-beta/index.mdx -------------------------------------------------------------------------------- /packages/documentation/src/content/versions/v1-beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/content/versions/v1-beta.json -------------------------------------------------------------------------------- /packages/documentation/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/env.d.ts -------------------------------------------------------------------------------- /packages/documentation/src/excalidraw/architecture.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/excalidraw/architecture.excalidraw -------------------------------------------------------------------------------- /packages/documentation/src/excalidraw/keyregistry.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/excalidraw/keyregistry.excalidraw -------------------------------------------------------------------------------- /packages/documentation/src/pages/apis/graphql/auth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/pages/apis/graphql/auth/index.html -------------------------------------------------------------------------------- /packages/documentation/src/partials/auth-variables-helm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/partials/auth-variables-helm.mdx -------------------------------------------------------------------------------- /packages/documentation/src/partials/auth-variables.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/partials/auth-variables.mdx -------------------------------------------------------------------------------- /packages/documentation/src/partials/backend-variables-helm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/partials/backend-variables-helm.mdx -------------------------------------------------------------------------------- /packages/documentation/src/partials/backend-variables.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/partials/backend-variables.mdx -------------------------------------------------------------------------------- /packages/documentation/src/partials/frontend-variables.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/partials/frontend-variables.mdx -------------------------------------------------------------------------------- /packages/documentation/src/partials/kratos-warning.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/partials/kratos-warning.mdx -------------------------------------------------------------------------------- /packages/documentation/src/partials/liquidity-idempotency.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/partials/liquidity-idempotency.mdx -------------------------------------------------------------------------------- /packages/documentation/src/partials/tenant-id-hmac-note.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/partials/tenant-id-hmac-note.mdx -------------------------------------------------------------------------------- /packages/documentation/src/partials/variables-warning.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/partials/variables-warning.mdx -------------------------------------------------------------------------------- /packages/documentation/src/styles/rafiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/src/styles/rafiki.css -------------------------------------------------------------------------------- /packages/documentation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/documentation/tsconfig.json -------------------------------------------------------------------------------- /packages/frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | generated -------------------------------------------------------------------------------- /packages/frontend/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/.eslintrc.yml -------------------------------------------------------------------------------- /packages/frontend/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/Dockerfile.dev -------------------------------------------------------------------------------- /packages/frontend/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/Dockerfile.prod -------------------------------------------------------------------------------- /packages/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/README.md -------------------------------------------------------------------------------- /packages/frontend/app/PublicEnv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/PublicEnv.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ApiCredentialsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ApiCredentialsForm.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/Badge.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ConfirmationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ConfirmationDialog.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/DangerZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/DangerZone.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/Filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/Filters.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/LiquidityConfirmDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/LiquidityConfirmDialog.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/LiquidityDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/LiquidityDialog.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/PageHeader.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/RedirectDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/RedirectDialog.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/Sidebar.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/Snackbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/Snackbar.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/icons.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/index.ts -------------------------------------------------------------------------------- /packages/frontend/app/components/ui/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ui/Button.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ui/ButtonOrLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ui/ButtonOrLink.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ui/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ui/Dropdown.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ui/ErrorPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ui/ErrorPanel.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ui/FieldError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ui/FieldError.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ui/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ui/Input.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ui/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ui/Label.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ui/PasswordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ui/PasswordInput.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ui/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ui/Select.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ui/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ui/Table.tsx -------------------------------------------------------------------------------- /packages/frontend/app/components/ui/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/components/ui/index.tsx -------------------------------------------------------------------------------- /packages/frontend/app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/entry.client.tsx -------------------------------------------------------------------------------- /packages/frontend/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/entry.server.tsx -------------------------------------------------------------------------------- /packages/frontend/app/generated/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/generated/graphql.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/api/asset.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/api/asset.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/api/payments.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/api/payments.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/api/peer.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/api/peer.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/api/tenant.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/api/tenant.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/api/wallet-address.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/api/wallet-address.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/api/webhook.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/api/webhook.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/apollo.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/apollo.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/envConfig.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/envConfig.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/kratos_checks.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/kratos_checks.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/message.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/message.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/session.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/session.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/lib/validate.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/lib/validate.server.ts -------------------------------------------------------------------------------- /packages/frontend/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/root.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/_index.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/api.set-credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/api.set-credentials.ts -------------------------------------------------------------------------------- /packages/frontend/app/routes/assets.$assetId.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/assets.$assetId.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/assets.$assetId_.fee-history.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/assets.$assetId_.fee-history.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/assets._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/assets._index.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/assets.create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/assets.create.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/auth._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/auth._index.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/auth.login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/auth.login.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/auth.manual-logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/auth.manual-logout.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/auth.recovery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/auth.recovery.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/errors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/errors.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/payments._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/payments._index.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/peers.$peerId.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/peers.$peerId.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/peers._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/peers._index.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/peers.create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/peers.create.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/settings.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/tenants.$tenantId.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/tenants.$tenantId.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/tenants._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/tenants._index.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/tenants.create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/tenants.create.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/wallet-addresses._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/wallet-addresses._index.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/wallet-addresses.create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/wallet-addresses.create.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/webhook-events.data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/webhook-events.data.tsx -------------------------------------------------------------------------------- /packages/frontend/app/routes/webhook-events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/routes/webhook-events.tsx -------------------------------------------------------------------------------- /packages/frontend/app/shared/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/shared/enums.ts -------------------------------------------------------------------------------- /packages/frontend/app/shared/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/shared/types.ts -------------------------------------------------------------------------------- /packages/frontend/app/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/shared/utils.ts -------------------------------------------------------------------------------- /packages/frontend/app/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/styles/tailwind.css -------------------------------------------------------------------------------- /packages/frontend/app/utils/logger.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/app/utils/logger.server.ts -------------------------------------------------------------------------------- /packages/frontend/kratos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/kratos/Dockerfile -------------------------------------------------------------------------------- /packages/frontend/kratos/config/identity.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/kratos/config/identity.schema.json -------------------------------------------------------------------------------- /packages/frontend/kratos/scripts/deleteUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/kratos/scripts/deleteUser.ts -------------------------------------------------------------------------------- /packages/frontend/kratos/scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/kratos/scripts/entrypoint.sh -------------------------------------------------------------------------------- /packages/frontend/kratos/scripts/userInvitation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/kratos/scripts/userInvitation.ts -------------------------------------------------------------------------------- /packages/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/package.json -------------------------------------------------------------------------------- /packages/frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/postcss.config.js -------------------------------------------------------------------------------- /packages/frontend/public/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/public/bg.svg -------------------------------------------------------------------------------- /packages/frontend/public/bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/public/bg.webp -------------------------------------------------------------------------------- /packages/frontend/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/public/logo.svg -------------------------------------------------------------------------------- /packages/frontend/public/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/public/search.svg -------------------------------------------------------------------------------- /packages/frontend/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/remix.config.js -------------------------------------------------------------------------------- /packages/frontend/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/remix.env.d.ts -------------------------------------------------------------------------------- /packages/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/tailwind.config.js -------------------------------------------------------------------------------- /packages/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/frontend/tsconfig.json -------------------------------------------------------------------------------- /packages/mock-account-service-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/mock-account-service-lib/README.md -------------------------------------------------------------------------------- /packages/mock-account-service-lib/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/mock-account-service-lib/jest.config.js -------------------------------------------------------------------------------- /packages/mock-account-service-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/mock-account-service-lib/package.json -------------------------------------------------------------------------------- /packages/mock-account-service-lib/src/account-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/mock-account-service-lib/src/account-provider.ts -------------------------------------------------------------------------------- /packages/mock-account-service-lib/src/generated/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/mock-account-service-lib/src/generated/graphql.ts -------------------------------------------------------------------------------- /packages/mock-account-service-lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/mock-account-service-lib/src/index.ts -------------------------------------------------------------------------------- /packages/mock-account-service-lib/src/requesters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/mock-account-service-lib/src/requesters.ts -------------------------------------------------------------------------------- /packages/mock-account-service-lib/src/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/mock-account-service-lib/src/seed.ts -------------------------------------------------------------------------------- /packages/mock-account-service-lib/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/mock-account-service-lib/src/types.ts -------------------------------------------------------------------------------- /packages/mock-account-service-lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/mock-account-service-lib/tsconfig.json -------------------------------------------------------------------------------- /packages/point-of-sale/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/Dockerfile.dev -------------------------------------------------------------------------------- /packages/point-of-sale/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/Dockerfile.prod -------------------------------------------------------------------------------- /packages/point-of-sale/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/jest.config.js -------------------------------------------------------------------------------- /packages/point-of-sale/jest.custom-environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/jest.custom-environment.ts -------------------------------------------------------------------------------- /packages/point-of-sale/jest.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/jest.env.js -------------------------------------------------------------------------------- /packages/point-of-sale/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/package.json -------------------------------------------------------------------------------- /packages/point-of-sale/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/app.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/card-service-client/client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/card-service-client/client.test.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/card-service-client/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/card-service-client/client.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/card-service-client/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/card-service-client/errors.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/config/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/config/app.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/graphql/generated/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/graphql/generated/graphql.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/graphql/queries/getWalletAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/graphql/queries/getWalletAddress.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/index.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/payments/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/payments/errors.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/payments/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/payments/routes.test.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/payments/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/payments/routes.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/payments/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/payments/service.test.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/payments/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/payments/service.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/shared/baseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/shared/baseService.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/shared/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/shared/filters.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/shared/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/shared/types.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/tests/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/tests/app.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/tests/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/tests/context.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/tests/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/tests/helpers.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/utils/deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/utils/deferred.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/webhook-handlers/middleware.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/webhook-handlers/middleware.test.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/webhook-handlers/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/webhook-handlers/middleware.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/webhook-handlers/request-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/webhook-handlers/request-map.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/webhook-handlers/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/webhook-handlers/routes.test.ts -------------------------------------------------------------------------------- /packages/point-of-sale/src/webhook-handlers/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/src/webhook-handlers/routes.ts -------------------------------------------------------------------------------- /packages/point-of-sale/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/point-of-sale/tsconfig.json -------------------------------------------------------------------------------- /packages/token-introspection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/README.md -------------------------------------------------------------------------------- /packages/token-introspection/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/jest.config.js -------------------------------------------------------------------------------- /packages/token-introspection/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/package.json -------------------------------------------------------------------------------- /packages/token-introspection/src/client/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/src/client/index.test.ts -------------------------------------------------------------------------------- /packages/token-introspection/src/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/src/client/index.ts -------------------------------------------------------------------------------- /packages/token-introspection/src/client/introspection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/src/client/introspection.test.ts -------------------------------------------------------------------------------- /packages/token-introspection/src/client/introspection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/src/client/introspection.ts -------------------------------------------------------------------------------- /packages/token-introspection/src/config.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | DEFAULT_REQUEST_TIMEOUT_MS: 5_000 3 | } 4 | -------------------------------------------------------------------------------- /packages/token-introspection/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/src/index.ts -------------------------------------------------------------------------------- /packages/token-introspection/src/openapi/generated/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/src/openapi/generated/types.ts -------------------------------------------------------------------------------- /packages/token-introspection/src/openapi/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/src/openapi/index.test.ts -------------------------------------------------------------------------------- /packages/token-introspection/src/openapi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/src/openapi/index.ts -------------------------------------------------------------------------------- /packages/token-introspection/src/test/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/src/test/helpers.ts -------------------------------------------------------------------------------- /packages/token-introspection/src/types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/src/types.test.ts -------------------------------------------------------------------------------- /packages/token-introspection/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/src/types.ts -------------------------------------------------------------------------------- /packages/token-introspection/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/packages/token-introspection/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/localenv-tunnel-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/scripts/localenv-tunnel-setup.js -------------------------------------------------------------------------------- /test/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/integration/README.md -------------------------------------------------------------------------------- /test/integration/integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/integration/integration.test.ts -------------------------------------------------------------------------------- /test/integration/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/integration/jest.config.js -------------------------------------------------------------------------------- /test/integration/lib/test-actions/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/integration/lib/test-actions/admin.ts -------------------------------------------------------------------------------- /test/integration/lib/test-actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/integration/lib/test-actions/index.ts -------------------------------------------------------------------------------- /test/integration/lib/test-actions/open-payments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/integration/lib/test-actions/open-payments.ts -------------------------------------------------------------------------------- /test/integration/lib/test-actions/pos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/integration/lib/test-actions/pos.ts -------------------------------------------------------------------------------- /test/integration/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/integration/lib/utils.ts -------------------------------------------------------------------------------- /test/integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/integration/package.json -------------------------------------------------------------------------------- /test/integration/scripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/integration/scripts/run-tests.sh -------------------------------------------------------------------------------- /test/integration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/integration/tsconfig.json -------------------------------------------------------------------------------- /test/performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/performance/README.md -------------------------------------------------------------------------------- /test/performance/config/local.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/performance/config/local.env -------------------------------------------------------------------------------- /test/performance/config/test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/performance/config/test.env -------------------------------------------------------------------------------- /test/performance/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/performance/package.json -------------------------------------------------------------------------------- /test/performance/scripts/create-local-outgoing-payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/performance/scripts/create-local-outgoing-payments.js -------------------------------------------------------------------------------- /test/performance/scripts/create-outgoing-payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/performance/scripts/create-outgoing-payments.js -------------------------------------------------------------------------------- /test/performance/scripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/performance/scripts/run-tests.sh -------------------------------------------------------------------------------- /test/performance/scripts/start-mases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/performance/scripts/start-mases.js -------------------------------------------------------------------------------- /test/performance/src/json-canonicalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/performance/src/json-canonicalize.js -------------------------------------------------------------------------------- /test/performance/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/performance/webpack.config.js -------------------------------------------------------------------------------- /test/test-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/test-lib/package.json -------------------------------------------------------------------------------- /test/test-lib/src/admin-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/test-lib/src/admin-client.ts -------------------------------------------------------------------------------- /test/test-lib/src/apollo-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/test-lib/src/apollo-client.ts -------------------------------------------------------------------------------- /test/test-lib/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/test-lib/src/config.ts -------------------------------------------------------------------------------- /test/test-lib/src/generated/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/test-lib/src/generated/graphql.ts -------------------------------------------------------------------------------- /test/test-lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/test-lib/src/index.ts -------------------------------------------------------------------------------- /test/test-lib/src/integration-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/test-lib/src/integration-server.ts -------------------------------------------------------------------------------- /test/test-lib/src/mock-ase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/test-lib/src/mock-ase.ts -------------------------------------------------------------------------------- /test/test-lib/src/pos-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/test-lib/src/pos-service.ts -------------------------------------------------------------------------------- /test/test-lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/test-lib/tsconfig.json -------------------------------------------------------------------------------- /test/testenv/cloud-nine-wallet/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/testenv/cloud-nine-wallet/.env -------------------------------------------------------------------------------- /test/testenv/cloud-nine-wallet/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/testenv/cloud-nine-wallet/docker-compose.yml -------------------------------------------------------------------------------- /test/testenv/cloud-nine-wallet/seed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/testenv/cloud-nine-wallet/seed.yml -------------------------------------------------------------------------------- /test/testenv/dbinit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/testenv/dbinit.sql -------------------------------------------------------------------------------- /test/testenv/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/testenv/docker-compose.yml -------------------------------------------------------------------------------- /test/testenv/happy-life-bank/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/testenv/happy-life-bank/.env -------------------------------------------------------------------------------- /test/testenv/happy-life-bank/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/testenv/happy-life-bank/docker-compose.yml -------------------------------------------------------------------------------- /test/testenv/happy-life-bank/seed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/testenv/happy-life-bank/seed.yml -------------------------------------------------------------------------------- /test/testenv/private-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/test/testenv/private-key.pem -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger/rafiki/HEAD/tsconfig.json --------------------------------------------------------------------------------