├── .circleci └── config.yml ├── .gitignore ├── .husky ├── post-commit └── pre-commit ├── .ncurc.yaml ├── .nvmrc ├── CODEOWNERS ├── LICENSE.md ├── README.md ├── contributing-guide.md ├── docs ├── .vuepress │ ├── components │ │ ├── Foo │ │ │ └── Bar.vue │ │ └── demo-component.vue │ ├── config.js │ ├── enhanceApp.js │ ├── public │ │ ├── BizOps-Framework-BizOps-Framework.png │ │ ├── BizOps-Framework-IaC-3.xx-&-Mojaloop-13.xx.png │ │ ├── BizOps-Framework-IaC-4.xx-&-Mojaloop-13.xx.png │ │ ├── BizOps-Framework-Micro-frontend-deploy.png │ │ ├── BizOps-Framework-Security-BC.png │ │ ├── BizOps-Framework-Settlements.png │ │ ├── BusinessFlowView.png │ │ ├── PM4ML_system_architecture.png │ │ ├── Reporting-&-Auditing-Overview.png │ │ ├── RestReportingArchitecture.drawio.png │ │ ├── TLS_connection.svg │ │ ├── action_add_withdraw.png │ │ ├── action_change_net_debit_cap.png │ │ ├── action_update_ndc.png │ │ ├── add_withdraw_funds.png │ │ ├── change_mgmt_flow.png │ │ ├── check_settlement_details.png │ │ ├── client.png │ │ ├── clientgraphql.png │ │ ├── close.png │ │ ├── confirm_action_add_withdraw_funds.png │ │ ├── confirm_action_update_ndc.png │ │ ├── defect_triage.png │ │ ├── dfsp_financial_positions_2.png │ │ ├── disable_dfsp_position_ledger.png │ │ ├── enable_dfsp_position_ledger.png │ │ ├── finalise_settlement.png │ │ ├── finalising_settlement_popup.png │ │ ├── find_transfers.png │ │ ├── frontend.png │ │ ├── implement.png │ │ ├── incident_mgmt_single_image.jpeg │ │ ├── incident_mgmt_single_image.png │ │ ├── mes_portal.png │ │ ├── mes_portal_request_types.png │ │ ├── mes_report_bug.png │ │ ├── mes_technical_support.png │ │ ├── microfrontendloading.png │ │ ├── mlns_position_popup.png │ │ ├── mojaloop-sdk.png │ │ ├── mojaloop_logo_med copy 2.png │ │ ├── mojaloop_logo_med copy.png │ │ ├── mojaloop_logo_med.png │ │ ├── mttr.png │ │ ├── plan_approve.png │ │ ├── portal_login.png │ │ ├── problem_mgmt.png │ │ ├── raise_rfc.png │ │ ├── release_mgmt.png │ │ ├── release_process.png │ │ ├── release_service_components.png │ │ ├── review_authorize.png │ │ ├── rolepermissions.png │ │ ├── security_incident_process.jpeg │ │ ├── security_incident_process.png │ │ ├── security_overview.png │ │ ├── settlementProcessAPI.svg │ │ ├── settlementProcessFinaliseErrors.svg │ │ ├── settlementProcessInitiationErrors.svg │ │ ├── settlement_details_popup.png │ │ ├── settlement_processing.jpg │ │ ├── settlement_window_mgmt.png │ │ ├── settlement_window_mgmt_close.png │ │ ├── settlement_window_mgmt_selector.png │ │ ├── settlement_window_mgmt_settle_button.png │ │ ├── settlement_window_settlement_submitted.png │ │ ├── transfer_details_quote_parties.png │ │ ├── transfer_details_quote_request.png │ │ ├── transfer_details_quote_responses.png │ │ ├── transfer_details_transfer_fulfilments.png │ │ ├── transfer_details_transfer_participants.png │ │ ├── transfer_details_transfer_prepares.png │ │ ├── transfer_details_transfer_state_changes.png │ │ ├── update_participant.png │ │ └── userroles.png │ ├── styles │ │ ├── index.styl │ │ └── palette.styl │ ├── theme │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── components │ │ │ ├── AlgoliaSearchBox.vue │ │ │ ├── ContentSidebar.vue │ │ │ ├── ContentSidebarButton.vue │ │ │ ├── ContentSidebarLink.vue │ │ │ ├── DropdownLink.vue │ │ │ ├── DropdownTransition.vue │ │ │ ├── Footer.vue │ │ │ ├── Home.vue │ │ │ ├── NavLink.vue │ │ │ ├── NavLinks.vue │ │ │ ├── Navbar.vue │ │ │ ├── Page.vue │ │ │ ├── PageEdit.vue │ │ │ ├── PageNav.vue │ │ │ ├── PreviewBanner.vue │ │ │ ├── SearchBoxWrapper.vue │ │ │ ├── Sidebar.vue │ │ │ ├── SidebarArrow.vue │ │ │ ├── SidebarButton.vue │ │ │ ├── SidebarGroup.vue │ │ │ ├── SidebarLink.vue │ │ │ └── SidebarLinks.vue │ │ ├── global-components │ │ │ ├── AppHeading.vue │ │ │ └── Badge.vue │ │ ├── index.js │ │ ├── layouts │ │ │ ├── 404.vue │ │ │ ├── GlobalLayout.vue │ │ │ └── Layout.vue │ │ ├── noopModule.js │ │ ├── package.json │ │ ├── plugins │ │ │ └── smoothScroll │ │ │ │ ├── appHeading.js │ │ │ │ ├── enhanceApp.js │ │ │ │ └── index.js │ │ ├── styles │ │ │ ├── arrow.styl │ │ │ ├── code.styl │ │ │ ├── colors.styl │ │ │ ├── custom-blocks.styl │ │ │ ├── mobile.styl │ │ │ ├── nprogress.styl │ │ │ ├── palette.styl │ │ │ ├── table.styl │ │ │ ├── theme.styl │ │ │ ├── toc.styl │ │ │ └── wrapper.styl │ │ ├── templates │ │ │ └── ssr.html │ │ └── util │ │ │ └── index.js │ └── versions.json ├── adoption │ ├── HubOperations │ │ ├── Onboarding │ │ │ ├── business-onboarding.md │ │ │ ├── onboarding-introduction.md │ │ │ └── technical-onboarding.md │ │ ├── Portalv2 │ │ │ ├── accessing-the-portal.md │ │ │ ├── busops-portal-introduction.md │ │ │ ├── checking-settlement-details.md │ │ │ ├── enabling-disabling-transactions.md │ │ │ ├── managing-windows.md │ │ │ ├── monitoring-dfsp-financial-details.md │ │ │ ├── recording-funds-in-out.md │ │ │ ├── searching-for-transfer-data.md │ │ │ ├── settlement-business-process.md │ │ │ ├── settling.md │ │ │ └── updating-ndc.md │ │ ├── RBAC │ │ │ └── Role-based-access-control.md │ │ ├── Settlement │ │ │ ├── ledgers-in-the-hub.md │ │ │ ├── settlement-basic-concepts.md │ │ │ └── settlement-management-introduction.md │ │ └── TechOps │ │ │ ├── change-management.md │ │ │ ├── defect-triage.md │ │ │ ├── incident-management-escalation-matrix.md │ │ │ ├── incident-management.md │ │ │ ├── key-terms-kpis.md │ │ │ ├── problem-management.md │ │ │ ├── release-management.md │ │ │ ├── service-level-agreements.md │ │ │ └── tech-ops-introduction.md │ ├── Scheme │ │ ├── platform-operating-guideline.md │ │ ├── scheme-business-rules.md │ │ ├── scheme-key-choices.md │ │ ├── scheme-participation-agreement.md │ │ └── scheme-uniform-glossary.md │ ├── assets │ │ └── cla │ │ │ ├── admin_configure.png │ │ │ ├── admin_sign_in.png │ │ │ ├── cla_1.png │ │ │ ├── cla_2_1.png │ │ │ ├── cla_2_2.png │ │ │ └── cla_3.png │ ├── guides │ │ └── Role-based-access-control.md │ └── index.md ├── community │ ├── README.md │ ├── archive │ │ ├── discussion-docs │ │ │ ├── Mojaloop Performance 2020.pdf │ │ │ ├── README.md │ │ │ ├── aws_tagging.md │ │ │ ├── code-improvement.md │ │ │ ├── cross-border-day-1.md │ │ │ ├── cross-border-day-2.md │ │ │ ├── cross-border.md │ │ │ ├── images │ │ │ │ ├── cb_board_1.jpg │ │ │ │ ├── cb_board_2.jpg │ │ │ │ ├── cb_board_3.jpg │ │ │ │ ├── mojaloop_spokes.png │ │ │ │ ├── tagging_01.png │ │ │ │ ├── tagging_02.png │ │ │ │ ├── tagging_03.png │ │ │ │ ├── tagging_04.png │ │ │ │ ├── tagging_05.png │ │ │ │ └── tagging_06.png │ │ │ ├── iso-integration.md │ │ │ ├── mojaloop-decimal.md │ │ │ ├── performance-project.md │ │ │ ├── psip-project.md │ │ │ ├── versioning-draft-proposal.md │ │ │ └── workbench.md │ │ └── notes │ │ │ ├── README.md │ │ │ ├── ccb-notes.md │ │ │ ├── da-notes.md │ │ │ └── scrum-of-scrum-notes.md │ ├── assets │ │ └── cla │ │ │ ├── admin_configure.png │ │ │ ├── admin_sign_in.png │ │ │ ├── cla_1.png │ │ │ ├── cla_2_1.png │ │ │ ├── cla_2_2.png │ │ │ └── cla_3.png │ ├── contributing │ │ ├── assets │ │ │ ├── consequential-change-process.jpg │ │ │ ├── critical-change-process.jpg │ │ │ ├── mojaloop-product-engineering-process-overview.jpg │ │ │ ├── mojaloop-product-feature-flow.jpg │ │ │ ├── mojaloop-workstream-sprint-process.jpg │ │ │ └── mojaloop-workstream-team-charter-template.pptx │ │ ├── code-of-conduct.md │ │ ├── consequential-change-process.md │ │ ├── contributors-guide.md │ │ ├── critical-change-process.md │ │ ├── cvd.md │ │ ├── design-review.md │ │ ├── new-contributor-checklist.md │ │ ├── product-engineering-process.md │ │ └── signing-the-cla.md │ ├── documentation │ │ ├── api-documentation.md │ │ ├── standards.md │ │ └── style-guide.md │ ├── faqs.md │ ├── mojaloop-publications.md │ ├── mojaloop-roadmap.md │ ├── standards │ │ ├── creating-new-features.md │ │ ├── guide.md │ │ ├── invariants.md │ │ ├── triaging-bugs.md │ │ └── versioning.md │ └── tools │ │ ├── assets │ │ ├── automated-testing │ │ │ ├── QARegressionTestingMojaloop-Complete.plantuml │ │ │ └── QARegressionTestingMojaloop-Complete.svg │ │ └── images │ │ │ ├── ci_cd_lib_master.png │ │ │ ├── ci_cd_lib_pr.png │ │ │ ├── ci_cd_lib_tag.png │ │ │ ├── ci_cd_svc_master.png │ │ │ ├── ci_cd_svc_pr.png │ │ │ ├── ci_cd_svc_tag.png │ │ │ ├── mojaloop_cybersec_architecture.jpg │ │ │ └── mojaloop_security_layers.jpg │ │ ├── automated-testing.md │ │ ├── ci_cd_pipelines.md │ │ ├── code-quality-metrics.md │ │ ├── cybersecurity.md │ │ ├── pragmatic-rest.md │ │ ├── test.md │ │ └── tools-and-technologies.md ├── getting-started │ ├── README.md │ ├── demo-one.md │ ├── demo.md │ ├── demos │ │ ├── financial-inclusion-101.md │ │ ├── inside-the-loop.md │ │ ├── mojaloop-overview.md │ │ ├── what-is-rtp.md │ │ ├── what-makes-a-successful-financial-ecosystem.md │ │ ├── why-mojaloop.md │ │ └── working-with-mojaloop.md │ ├── faqs.md │ ├── general-faqs.md │ ├── installation │ │ └── installing-mojaloop.md │ ├── license.md │ ├── quickstart-one.md │ ├── quickstart-two.md │ ├── quickstart.md │ └── technical-faqs.md ├── index.md ├── product │ ├── README.md │ └── features │ │ ├── ComplexXB.svg │ │ ├── CrossBorder.md │ │ ├── CurrencyConversion │ │ ├── FXAPI_Discovery.plantuml │ │ ├── FXAPI_Discovery.svg │ │ ├── FXAPI_Payer_Agreement.plantuml │ │ ├── FXAPI_Payer_Agreement.svg │ │ ├── FXAPI_Payer_CurrencyConversion.plantuml │ │ ├── FXAPI_Payer_CurrencyConversion.svg │ │ ├── FXAPI_Payer_Receive_Agreement.plantuml │ │ ├── FXAPI_Payer_Receive_Agreement.svg │ │ ├── FXAPI_Payer_Receive_Discovery.plantuml │ │ ├── FXAPI_Payer_Receive_Discovery.svg │ │ ├── FXAPI_Payer_Receive_SenderConfirmation.plantuml │ │ ├── FXAPI_Payer_Receive_SenderConfirmation.svg │ │ ├── FXAPI_Payer_Receive_TransferPhase.plantuml │ │ ├── FXAPI_Payer_Receive_TransferPhase.svg │ │ ├── FXAPI_Payer_SenderConfirmation.plantuml │ │ ├── FXAPI_Payer_SenderConfirmation.svg │ │ ├── FXAPI_Payer_Transfer.plantuml │ │ ├── FXAPI_Payer_Transfer.svg │ │ ├── PAYER_SEND_Agreement.plantuml │ │ ├── PAYER_SEND_Agreement.svg │ │ ├── PAYER_SEND_Confirmation.plantuml │ │ ├── PAYER_SEND_Confirmation.svg │ │ ├── PAYER_SEND_CurrencyConversion.plantuml │ │ ├── PAYER_SEND_CurrencyConversion.svg │ │ ├── PAYER_SEND_Transfer.plantuml │ │ ├── PAYER_SEND_Transfer.svg │ │ ├── Payer_SEND_ABORT_TransferPhase.plantuml │ │ ├── Payer_SEND_ABORT_TransferPhase.svg │ │ ├── Payer_SEND_Discovery.plantuml │ │ └── Payer_SEND_Discovery.svg │ │ ├── FXP.svg │ │ ├── ForeignExchange.md │ │ ├── InterconnectingSchemes.md │ │ ├── Interscheme │ │ ├── Interscheme-Agreement.plantuml │ │ ├── Interscheme-Agreement.svg │ │ ├── Interscheme-ErrorCases.plantuml │ │ ├── Interscheme-ErrorCases.svg │ │ ├── Interscheme-GETTransfer.plantuml │ │ ├── Interscheme-GETTransfer.svg │ │ ├── Interscheme-Happypath.plantuml │ │ ├── Interscheme-Happypath.svg │ │ ├── Interscheme-OnDemandDiscovery.plantuml │ │ ├── Interscheme-OnDemandDiscovery.svg │ │ ├── Interscheme-StalePartyIdentifierCache.plantuml │ │ ├── Interscheme-StalePartyIdentifierCache.svg │ │ ├── Interscheme-Transfer.plantuml │ │ ├── Interscheme-Transfer.svg │ │ ├── InterschemeAccounts-Clearing.png │ │ ├── SettingUpProxys.plantuml │ │ └── SettingUpProxys.svg │ │ ├── Iso20022 │ │ └── v1.0 │ │ │ ├── Appendix.md │ │ │ ├── IntegrationPatterns.md │ │ │ ├── MarketPracticeDocument.md │ │ │ ├── SequenceDiagrams │ │ │ ├── Agreement.plantuml │ │ │ ├── Agreement.svg │ │ │ ├── AgreementConversion.plantuml │ │ │ ├── AgreementConversion.svg │ │ │ ├── ConversionTransfer.plantuml │ │ │ ├── ConversionTransfer.svg │ │ │ ├── Discovery.plantuml │ │ │ ├── Discovery.svg │ │ │ ├── Transfer.plantuml │ │ │ └── Transfer.svg │ │ │ └── script │ │ │ ├── fxquotes_POST.md │ │ │ ├── fxquotes_PUT.md │ │ │ ├── fxquotes_error_PUT.md │ │ │ ├── fxtransfers_PATCH.md │ │ │ ├── fxtransfers_POST.md │ │ │ ├── fxtransfers_PUT.md │ │ │ ├── fxtransfers_error_PUT.md │ │ │ ├── parties_GET.md │ │ │ ├── parties_PUT.md │ │ │ ├── parties_error_PUT.md │ │ │ ├── quotes_POST.md │ │ │ ├── quotes_PUT.md │ │ │ ├── quotes_error_PUT.md │ │ │ ├── transfers_PATCH.md │ │ │ ├── transfers_POST.md │ │ │ ├── transfers_PUT.md │ │ │ └── transfers_error_PUT.md │ │ ├── SimpleInterscheme.svg │ │ ├── Test.png │ │ ├── XB.svg │ │ ├── connectivity.md │ │ ├── connectivity │ │ └── participant-matrix.md │ │ ├── deployment.md │ │ ├── deployment │ │ ├── deploying.md │ │ └── tools.md │ │ ├── development.md │ │ ├── ecosystem.svg │ │ ├── engineering.md │ │ ├── fx.md │ │ ├── htlc.md │ │ ├── interscheme.md │ │ ├── invariants.md │ │ ├── iso20022.md │ │ ├── merchant-payments.md │ │ ├── metadata.md │ │ ├── ml-feature-list.md │ │ ├── mojaloop_security_layers.jpg │ │ ├── performance.md │ │ ├── product.md │ │ ├── risk.md │ │ ├── security.md │ │ ├── tariffs.md │ │ ├── transaction.md │ │ ├── use-cases.md │ │ └── workstreams │ │ ├── core.md │ │ ├── deployment.md │ │ ├── dispute.md │ │ ├── evolution.md │ │ ├── fintech_participation.md │ │ ├── iso20022.md │ │ ├── lei.md │ │ ├── participation.md │ │ ├── performance.md │ │ ├── pqs.md │ │ └── qa.md ├── quickstarts │ ├── README.md │ ├── one.md │ └── two.md └── technical │ ├── README.md │ ├── api │ ├── README.md │ ├── administration │ │ ├── README.md │ │ └── central-ledger-api.md │ ├── assets │ │ ├── diagrams │ │ │ ├── images │ │ │ │ ├── figure1-platforms-layout.svg │ │ │ │ ├── figure11.svg │ │ │ │ ├── figure12.svg │ │ │ │ ├── figure14.svg │ │ │ │ ├── figure16.svg │ │ │ │ ├── figure18.svg │ │ │ │ ├── figure20.svg │ │ │ │ ├── figure22.svg │ │ │ │ ├── figure24.svg │ │ │ │ ├── figure26.svg │ │ │ │ ├── figure28.svg │ │ │ │ ├── figure30.svg │ │ │ │ ├── figure32.svg │ │ │ │ ├── figure34.svg │ │ │ │ ├── figure36.svg │ │ │ │ ├── figure38.svg │ │ │ │ ├── figure40.svg │ │ │ │ ├── figure46.svg │ │ │ │ ├── figure48.svg │ │ │ │ ├── figure56.svg │ │ │ │ ├── figure58.svg │ │ │ │ ├── figure60.svg │ │ │ │ ├── figure62.svg │ │ │ │ ├── figure63.svg │ │ │ │ ├── figure7.svg │ │ │ │ ├── figure73.svg │ │ │ │ └── figure9.svg │ │ │ └── sequence │ │ │ │ ├── figure1.plantuml │ │ │ │ ├── figure1.svg │ │ │ │ ├── figure10.plantuml │ │ │ │ ├── figure10.svg │ │ │ │ ├── figure13.plantuml │ │ │ │ ├── figure13.svg │ │ │ │ ├── figure15.plantuml │ │ │ │ ├── figure15.svg │ │ │ │ ├── figure17.plantuml │ │ │ │ ├── figure17.svg │ │ │ │ ├── figure19.plantuml │ │ │ │ ├── figure19.svg │ │ │ │ ├── figure1_http-timeout.plantuml │ │ │ │ ├── figure1_http-timeout.svg │ │ │ │ ├── figure2.plantuml │ │ │ │ ├── figure2.svg │ │ │ │ ├── figure21.plantuml │ │ │ │ ├── figure21.svg │ │ │ │ ├── figure23.plantuml │ │ │ │ ├── figure23.svg │ │ │ │ ├── figure25.plantuml │ │ │ │ ├── figure25.svg │ │ │ │ ├── figure27.plantuml │ │ │ │ ├── figure27.svg │ │ │ │ ├── figure29.plantuml │ │ │ │ ├── figure29.svg │ │ │ │ ├── figure2_callback_timeout.plantuml │ │ │ │ ├── figure2_callback_timeout.svg │ │ │ │ ├── figure3.plantuml │ │ │ │ ├── figure3.svg │ │ │ │ ├── figure31.plantuml │ │ │ │ ├── figure31.svg │ │ │ │ ├── figure33.plantuml │ │ │ │ ├── figure33.svg │ │ │ │ ├── figure35.plantuml │ │ │ │ ├── figure35.svg │ │ │ │ ├── figure37.plantuml │ │ │ │ ├── figure37.svg │ │ │ │ ├── figure39.plantuml │ │ │ │ ├── figure39.svg │ │ │ │ ├── figure4.plantuml │ │ │ │ ├── figure4.svg │ │ │ │ ├── figure41.plantuml │ │ │ │ ├── figure41.svg │ │ │ │ ├── figure42.plantuml │ │ │ │ ├── figure42.svg │ │ │ │ ├── figure43.plantuml │ │ │ │ ├── figure43.svg │ │ │ │ ├── figure44.plantuml │ │ │ │ ├── figure44.svg │ │ │ │ ├── figure45.plantuml │ │ │ │ ├── figure45.svg │ │ │ │ ├── figure47.plantuml │ │ │ │ ├── figure47.svg │ │ │ │ ├── figure49.plantuml │ │ │ │ ├── figure49.svg │ │ │ │ ├── figure5.plantuml │ │ │ │ ├── figure5.svg │ │ │ │ ├── figure50.plantuml │ │ │ │ ├── figure50.svg │ │ │ │ ├── figure51.plantuml │ │ │ │ ├── figure51.svg │ │ │ │ ├── figure52.plantuml │ │ │ │ ├── figure52.svg │ │ │ │ ├── figure53.plantuml │ │ │ │ ├── figure53.svg │ │ │ │ ├── figure54.plantuml │ │ │ │ ├── figure54.svg │ │ │ │ ├── figure55.plantuml │ │ │ │ ├── figure55.svg │ │ │ │ ├── figure57.plantuml │ │ │ │ ├── figure57.svg │ │ │ │ ├── figure59.plantuml │ │ │ │ ├── figure59.svg │ │ │ │ ├── figure6.plantuml │ │ │ │ ├── figure6.svg │ │ │ │ ├── figure61.plantuml │ │ │ │ ├── figure61.svg │ │ │ │ ├── figure64.plantuml │ │ │ │ ├── figure64.svg │ │ │ │ ├── figure64a.plantuml │ │ │ │ ├── figure64a.svg │ │ │ │ ├── figure65.plantuml │ │ │ │ ├── figure65.svg │ │ │ │ ├── figure65a.plantuml │ │ │ │ ├── figure65a.svg │ │ │ │ ├── figure66.plantuml │ │ │ │ ├── figure66.svg │ │ │ │ ├── figure66a.plantuml │ │ │ │ ├── figure66a.svg │ │ │ │ ├── figure67.plantuml │ │ │ │ ├── figure67.svg │ │ │ │ ├── figure67a.plantuml │ │ │ │ ├── figure67a.svg │ │ │ │ ├── figure68.plantuml │ │ │ │ ├── figure68.svg │ │ │ │ ├── figure69.plantuml │ │ │ │ ├── figure69.svg │ │ │ │ ├── figure70.plantuml │ │ │ │ ├── figure70.svg │ │ │ │ ├── figure71.plantuml │ │ │ │ ├── figure71.svg │ │ │ │ ├── figure72.plantuml │ │ │ │ ├── figure72.svg │ │ │ │ ├── figure74.plantuml │ │ │ │ ├── figure74.svg │ │ │ │ ├── figure8.plantuml │ │ │ │ └── figure8.svg │ │ ├── figure1-platforms-layout.svg │ │ ├── scheme-rules-figure-1-http-timeout.png │ │ ├── scheme-rules-figure-2-callback-timeout.png │ │ └── sequence-diagram-figure-1.png │ ├── fspiop │ │ ├── README.md │ │ ├── definitions.md │ │ ├── generic-transaction-patterns.md │ │ ├── glossary.md │ │ ├── json-binding-rules.md │ │ ├── logical-data-model.md │ │ ├── pki-best-practices.md │ │ ├── sandbox.md │ │ ├── scheme-rules.md │ │ ├── use-cases.md │ │ ├── v1.0 │ │ │ ├── README.md │ │ │ └── api-definition.md │ │ └── v1.1 │ │ │ ├── api-definition.md │ │ │ ├── encryption.md │ │ │ └── signature.md │ ├── license.md │ ├── settlement │ │ └── README.md │ └── thirdparty │ │ ├── README.md │ │ ├── _sync_docs.sh │ │ ├── assets │ │ └── diagrams │ │ │ ├── linking │ │ │ ├── 0-pre-linking.puml │ │ │ ├── 0-pre-linking.svg │ │ │ ├── 1-discovery.puml │ │ │ ├── 1-discovery.svg │ │ │ ├── 2-request-consent-otp.puml │ │ │ ├── 2-request-consent-otp.svg │ │ │ ├── 2-request-consent-web.puml │ │ │ ├── 2-request-consent-web.svg │ │ │ ├── 3-authentication-otp.puml │ │ │ ├── 3-authentication-otp.svg │ │ │ ├── 3-authentication-third-party-fido.puml │ │ │ ├── 3-authentication-third-party-fido.svg │ │ │ ├── 3-authentication-web.puml │ │ │ ├── 3-authentication-web.svg │ │ │ ├── 4-grant-consent.puml │ │ │ ├── 4-grant-consent.svg │ │ │ ├── 5a-credential-registration.puml │ │ │ ├── 5a-credential-registration.svg │ │ │ ├── 5b-finalize_consent.puml │ │ │ ├── 5b-finalize_consent.svg │ │ │ ├── 6a-unlinking-dfsp-hosted.puml │ │ │ ├── 6a-unlinking-dfsp-hosted.svg │ │ │ ├── 6b-unlinking-hub-hosted.puml │ │ │ ├── 6b-unlinking-hub-hosted.svg │ │ │ └── error_scenarios │ │ │ │ ├── 1-discovery-error.puml │ │ │ │ ├── 1-discovery-error.svg │ │ │ │ ├── 2-request-consent-error.puml │ │ │ │ ├── 2-request-consent-error.svg │ │ │ │ ├── 3-authentication-otp-invalid.puml │ │ │ │ ├── 3-authentication-otp-invalid.svg │ │ │ │ ├── 4-grant-consent-scope-error.puml │ │ │ │ └── 4-grant-consent-scope-error.svg │ │ │ └── transfer │ │ │ ├── 1-1-discovery.puml │ │ │ ├── 1-1-discovery.svg │ │ │ ├── 1-2-1-agreement.puml │ │ │ ├── 1-2-1-agreement.svg │ │ │ ├── 1-2-2-authorization.puml │ │ │ ├── 1-2-2-authorization.svg │ │ │ ├── 1-2-3-rejected-authorization.puml │ │ │ ├── 1-2-3-rejected-authorization.svg │ │ │ ├── 1-2-3-signed-authorization-fido.puml │ │ │ ├── 1-2-3-signed-authorization-fido.svg │ │ │ ├── 1-2-3-signed-authorization-generic.puml │ │ │ ├── 1-2-3-signed-authorization-generic.svg │ │ │ ├── 1-2-4-verify-authorization.puml │ │ │ ├── 1-2-4-verify-authorization.svg │ │ │ ├── 1-3-transfer.puml │ │ │ ├── 1-3-transfer.svg │ │ │ ├── 3-2-1-bad-tx-request.puml │ │ │ ├── 3-2-1-bad-tx-request.svg │ │ │ ├── 3-3-1-bad-quote-request.puml │ │ │ ├── 3-3-1-bad-quote-request.svg │ │ │ ├── 3-3-2-bad-transfer-request.puml │ │ │ ├── 3-3-2-bad-transfer-request.svg │ │ │ ├── 3-4-1-bad-signed-challenge-self-hosted.puml │ │ │ ├── 3-4-1-bad-signed-challenge-self-hosted.svg │ │ │ ├── 3-4-2-bad-signed-challenge-auth-service.puml │ │ │ ├── 3-4-2-bad-signed-challenge-auth-service.svg │ │ │ ├── 3-6-tpr-timeout.puml │ │ │ ├── 3-6-tpr-timeout.svg │ │ │ ├── get_transaction_request.puml │ │ │ └── get_transaction_request.svg │ │ ├── data-models.md │ │ ├── thirdparty-dfsp-v1.0.yaml │ │ ├── thirdparty-pisp-v1.0.yaml │ │ ├── transaction-patterns-linking.md │ │ ├── transaction-patterns-transfer.md │ │ └── transaction-patterns.md │ ├── business-operations-framework │ ├── Microfrontend-JAMStack.md │ ├── README.md │ ├── ReportDeveloperGuide.md │ ├── ReportingBC.md │ ├── SecurityBC.md │ └── SettlementBC.md │ ├── central-fx-transfers │ ├── assets │ │ └── diagrams │ │ │ └── sequence │ │ │ ├── seq-fx-fulfil-2.1.0.plantuml │ │ │ ├── seq-fx-fulfil-2.1.0.svg │ │ │ ├── seq-fx-prepare-1.1.0.plantuml │ │ │ ├── seq-fx-prepare-1.1.0.svg │ │ │ ├── seq-fx-prepare-1.1.1.a.plantuml │ │ │ ├── seq-fx-prepare-1.1.1.a.svg │ │ │ ├── seq-fx-prepare-1.1.2.a.plantuml │ │ │ ├── seq-fx-prepare-1.1.2.a.svg │ │ │ ├── seq-fx-reject-2.2.0.a.plantuml │ │ │ ├── seq-fx-reject-2.2.0.a.svg │ │ │ ├── seq-prepare-1.1.4.a-v2.0.plantuml │ │ │ └── seq-prepare-1.1.4.a-v2.0.svg │ └── transfers │ │ ├── 1.1.0-fx-prepare-transfer-request.md │ │ ├── 1.1.1.a-fx-prepare-handler-consume.md │ │ ├── 1.1.2.a-fx-position-handler-consume.md │ │ ├── 1.1.4.a-send-notification-to-participant-v2.0.md │ │ ├── 2.1.0-fx-fulfil-transfer-request.md │ │ ├── 2.2.0-fx-fulfil-reject-transfer.md │ │ └── README.md │ ├── faqs.md │ ├── reference-architecture │ ├── boundedContexts │ │ ├── accountLookupAndDiscovery │ │ │ ├── assets │ │ │ │ ├── ML2RA_bc_accLookDiscvry_Apr22-b400.png │ │ │ │ ├── aldGetParticipant_20210825.png │ │ │ │ ├── aldGetParty_20210825.png │ │ │ │ ├── aldPartyParticipantAssoc_20220919.png │ │ │ │ └── aldPartyParticipantDisassoc_20220919.png │ │ │ └── index.md │ │ ├── accountsAndBalances │ │ │ ├── assets │ │ │ │ └── ML2RA_A&B-bcAccBal-FunctionalOverview_Mar22-c.png │ │ │ └── index.md │ │ ├── auditing │ │ │ ├── assets │ │ │ │ ├── ML2RA_Audit_bcFunctionalOverview_Mar22_1450.png │ │ │ │ ├── ML2RA_Audit_ucAuditingBCStartup_Mar22_1450.png │ │ │ │ ├── ML2RA_Audit_ucEventBasedAudit_Mar22_1450.png │ │ │ │ └── ML2RA_Audit_ucSyncRPCAudit_Mar22_1450.png │ │ │ └── index.md │ │ ├── commonInterfaces │ │ │ └── index.md │ │ ├── commonTermsConventions │ │ │ └── index.md │ │ ├── fspInteropApi │ │ │ ├── assets │ │ │ │ ├── 0-0-0-notifications.jpg │ │ │ │ ├── 0-0-functional-overview.jpg │ │ │ │ ├── 0-1-party-participant-associate.jpg │ │ │ │ ├── 0-2-party-participant-disassociate.jpg │ │ │ │ ├── 0-3-get-participant.jpg │ │ │ │ ├── 0-4-get-party.jpg │ │ │ │ ├── 1-1-calculate-quote-happy-path.jpg │ │ │ │ ├── 1-2-get-quote-happy-path.jpg │ │ │ │ ├── 1-3-calculate-quote-invalid-quote-request.jpg │ │ │ │ ├── 1-4-calculate-quote-invalid-fsps.jpg │ │ │ │ ├── 1-5-calculate-quote-invalid-scheme-rules-request.jpg │ │ │ │ ├── 1-6-calculate-quote-invalid-scheme-rules-response.jpg │ │ │ │ ├── 2-1-perform-transfer-universal-mode.jpg │ │ │ │ ├── 2-10-perform-transfer-duplicate-none-matching.jpg │ │ │ │ ├── 2-11-perform-transfer-payer-insuficiant-liquidity.jpg │ │ │ │ ├── 2-12-perform-transfer-prepare-rejected.jpg │ │ │ │ ├── 2-13-perform-transfer-prepare-validation-failure-invalid-payer-participant.jpg │ │ │ │ ├── 2-14-perform-transfer-prepare-validation-failure-invalid-payee-participant.jpg │ │ │ │ ├── 2-2-perform-transfer-payee-confirmation.jpg │ │ │ │ ├── 2-3-query-get-transfer.jpg │ │ │ │ ├── 2-4-perform-transfer-duplicate-post.jpg │ │ │ │ ├── 2-5-perform-transfer-duplicate-post-ignor.jpg │ │ │ │ ├── 2-6-perform-transfer-payeefsp-rejects-transfer.jpg │ │ │ │ ├── 2-7-perform-transfer-timeout-prepare.jpg │ │ │ │ ├── 2-8-perform-transfer-timeout-pre-committed.jpg │ │ │ │ └── 2-9-perform-transfer-timeout-post-commit.jpg │ │ │ └── index.md │ │ ├── index.md │ │ ├── logging │ │ │ ├── assets │ │ │ │ └── ML2RA_Logging_ucEventBasedLogging_Apr22-b-1450.png │ │ │ └── index.md │ │ ├── notificationsAndAlerts │ │ │ ├── assets │ │ │ │ ├── alertNotification.png │ │ │ │ ├── alertRegistration.png │ │ │ │ ├── sendAsyncNotificationWithDeliveryReport.png │ │ │ │ └── sendSyncNotificationWithDeliveryReport.png │ │ │ └── index.md │ │ ├── participantLifecycleManagement │ │ │ ├── assets │ │ │ │ ├── ML2RA_PLM-bcOverviewFlowDiagram_Apr22-a_1429.png │ │ │ │ ├── ML2RA_PLM-ucAddParticipantAccountAppro_Apr22-a_P2-1429.png │ │ │ │ ├── ML2RA_PLM-ucAddParticipantAccountInit_Apr22-a_P1-1429.png │ │ │ │ ├── ML2RA_PLM-ucCreateParticipantAppro_Apr22-a_P2-1429.png │ │ │ │ ├── ML2RA_PLM-ucCreateParticipantInit_Apr22-a_P1-1429.png │ │ │ │ ├── ML2RA_PLM-ucGetParticipant_Apr22-a_1429.png │ │ │ │ ├── ML2RA_PLM-ucLiquidityCoverQuery_Apr22-a_1429.png │ │ │ │ ├── ML2RA_PLM-ucLiquidityCoverReserveAppro_Apr22-a_P2-1429.png │ │ │ │ ├── ML2RA_PLM-ucLiquidityCoverReserveInit_Apr22-a_P1-1429.png │ │ │ │ ├── ML2RA_PLM-ucLiquidityLimit&ThresholdReset_Apr22-a_1429.png │ │ │ │ ├── ML2RA_PLM-ucLiquidityLimitedExceeded_Apr22-a_1429.png │ │ │ │ ├── ML2RA_PLM-ucLiquidityThresholdExceeded_Apr22-a_1429.png │ │ │ │ ├── ML2RA_PLM-ucManageFundsAppro_Apr22-a_P2-1429.png │ │ │ │ ├── ML2RA_PLM-ucManageFundsInit_Apr22-a_P1-1429.png │ │ │ │ ├── ML2RA_PLM-ucUpdateEndpointAppro_Apr22-a_P2-1429.png │ │ │ │ ├── ML2RA_PLM-ucUpdateEndpointsInit_Apr22-a_P1-1429.png │ │ │ │ ├── ML2RA_PLM-ucUpdateParticipantStatusAppro_Apr22-a_P2-1429.png │ │ │ │ └── ML2RA_PLM-ucUpdateParticipantStatusInit_Apr22-a_P1-1429.png │ │ │ └── index.md │ │ ├── platformMonitoring │ │ │ ├── assets │ │ │ │ └── useCaseExample.png │ │ │ └── index.md │ │ ├── quotingAgreement │ │ │ ├── assets │ │ │ │ ├── qtaCalculateQuoteHappyPath_20210825.png │ │ │ │ ├── qtaCalculateQuoteInvalidFSPs_20210825.png │ │ │ │ ├── qtaCalculateQuoteInvalidQuoteRequest_20210825.png │ │ │ │ ├── qtaCalculateQuoteInvalidSchemeRulesRequest_20210825.png │ │ │ │ ├── qtaCalculateQuoteInvalidSchemeRulesResponse_20210825.png │ │ │ │ ├── qtaFunctionalOverview_20210825.png │ │ │ │ ├── qtaGetQuoteHappyPath.png │ │ │ │ └── qtaTransfersVelocityRuleEval-Trigger_20210825.png │ │ │ └── index.md │ │ ├── reporting │ │ │ ├── assets │ │ │ │ ├── ML2RA_Rpts_eventBasedReporting_Apr22-b.png │ │ │ │ ├── ML2RA_Rpts_functionalOverview_Apr22-b.png │ │ │ │ ├── ML2RA_Rpts_pullReporting_Apr22-b.png │ │ │ │ ├── ML2RA_Rpts_pushReporting_Apr22-b.png │ │ │ │ └── ML2RA_Rpts_reportDashboardConsumption_Apr22-b.png │ │ │ └── index.md │ │ ├── scheduling │ │ │ ├── assets │ │ │ │ ├── schedulingCreateReminder_20211021.png │ │ │ │ ├── schedulingDeleteRecurringReminder_20211021.png │ │ │ │ ├── schedulingReminderTriggered_20211021.png │ │ │ │ └── useCaseExample.png │ │ │ └── index.md │ │ ├── security │ │ │ ├── assets │ │ │ │ ├── ML2RA_SecAuth-ucAuthModel_Apr22_1829.png │ │ │ │ ├── ML2RA_SecAuth-ucBcBootstrap-OncePerNewVer_Apr22_1829.png │ │ │ │ ├── ML2RA_SecAuth-ucBcStartup_Apr22_1829.png │ │ │ │ ├── ML2RA_SecAuth-ucExampleApiQueryCall_Apr22_1829.png │ │ │ │ ├── ML2RA_SecAuth-ucRolePriviledgeAssoc_Apr22_1829.png │ │ │ │ └── ML2RA_SecAuth-ucUserOpsLogin(AuthN)_Apr22_1829.png │ │ │ └── index.md │ │ ├── settlements │ │ │ ├── assets │ │ │ │ ├── ML2RA_SET-ucBootStrapSettleModViaConfig_Mar22-b.png │ │ │ │ ├── ML2RA_SET-ucDeferNetSettle_Mar22-a-P1-2.png │ │ │ │ ├── ML2RA_SET-ucInstantGrossSettle_Mar22-a.png │ │ │ │ ├── settleAbortSettle_20210827.png │ │ │ │ ├── settleCreateSettleAccountsNewPart_20210827.png │ │ │ │ ├── settleCreateUpdateModel_20210827.png │ │ │ │ └── settleFunctionalOverview_20210826.png │ │ │ └── index.md │ │ ├── thirdPartyApi │ │ │ ├── assets │ │ │ │ ├── ML2RA_3PaL-ucCredentialRegError_Mar22-a_P1&2.png │ │ │ │ ├── ML2RA_3PaL-ucDfspRejectsOtpAuthTokenFromPisp_Mar22-a_P1&2.png │ │ │ │ ├── ML2RA_3PaL-ucLinkAccnts-AccntDiscoveryFail_Mar22-a.png │ │ │ │ ├── ML2RA_3PaL-ucLinkAccnts-DfspRejectConsentReq_Mar22-a.png │ │ │ │ ├── ML2RA_3PaL-ucPispGetDfspAccList&Id_Feb22-a.png │ │ │ │ ├── ML2RA_3PaL-ucUnlinkAccnts-ConsentNotFound_Mar22a.png │ │ │ │ ├── ML2RA_3PaL-ucUnlinkAccntsDownstrmFail_Mar22-a_P1&2.png │ │ │ │ ├── ML2RA_3PaL_ucDfspIssueConsent_Feb22a_P1&2.png │ │ │ │ ├── ML2RA_3PaL_ucPispConsentRequest_Feb22a.png │ │ │ │ ├── ML2RA_3PaL_ucPispGetSupportedDFSPs_Feb22a.png │ │ │ │ ├── ML2RA_3PaL_ucUnlinkAccounts-HubHostAuth_Feb22-a_P1&2.png │ │ │ │ ├── ML2RA_3PaT-ucPayToPisp-PispAsPayee_Mar22-b_P1-2.png │ │ │ │ ├── ML2RA_3PaT-ucPispBulkTransactReq_Mar22-a_P1-4.png │ │ │ │ ├── ML2RA_3PaT-ucThirdPartyInitTransactReq_Mar22-a_P1P2P3bP4.png │ │ │ │ ├── ML2RA_3PaT-ucTransactReqFail-AuthInvalid_Mar22-a-P1-3.png │ │ │ │ ├── ML2RA_3PaT-ucTransactReqFail-BadPartyLookup_Mar22-b.png │ │ │ │ ├── ML2RA_3PaT-ucTransactReqFail-BadTransactReq_Mar22-b.png │ │ │ │ ├── ML2RA_3PaT-ucTransactReqFail-DownStreamFspiopFail_Mar22-b-P1-2.png │ │ │ │ ├── ML2RA_3PaT-ucTransactReqFail-dfspTimeout_Mar22-a-P1-3.png │ │ │ │ └── ML2RA_3PaT-ucTransactReqFail-rejectedByUser_Mar22-a-P1-3.png │ │ │ └── index.md │ │ └── transfers │ │ │ ├── assets │ │ │ ├── ML2RA_Trf_ucPayerFspInsufficientLiquid_Mar22a.png │ │ │ ├── ML2RA_Trf_ucPerformTrfBulk_2022-03-22-a.png │ │ │ ├── ML2RA_Trf_ucPerformTrfDuplicPostIgnor_Mar22a.png │ │ │ ├── ML2RA_Trf_ucPerformTrfDuplicPostResend_Mar22a.png │ │ │ ├── ML2RA_Trf_ucPerformTrfPayeeConfirm_Mar22a-P1-2.png │ │ │ ├── ML2RA_Trf_ucPerformTrfPayeeFspReject_Mar22a.png │ │ │ ├── ML2RA_Trf_ucPerformTrfTimeoutDuplicPostNoMatch_Mar22a.png │ │ │ ├── ML2RA_Trf_ucPerformTrfTimeoutPostCommit_Mar22a.png │ │ │ ├── ML2RA_Trf_ucPerformTrfTimeoutPreCommit_Mar22b-P1-2.png │ │ │ ├── ML2RA_Trf_ucPerformTrfTimeoutPrepare_Mar22a.png │ │ │ ├── ML2RA_Trf_ucPerformTrfUniMode_Mar22a.png │ │ │ ├── ML2RA_Trf_ucQueryTrfGET_Mar22a.png │ │ │ ├── ML2RA_Trf_ucTransferPrepReject_Mar22a.png │ │ │ ├── ML2RA_Trf_ucTransferPrepValidationFail-InvalidPayee_Mar22a.png │ │ │ └── ML2RA_Trf_ucTransferPrepValidationFail-InvalidPayer_Mar22a.png │ │ │ └── index.md │ ├── furtherReading │ │ └── README.md │ ├── gettingStarted │ │ ├── README.md │ │ └── subMenu │ │ │ └── README.md │ ├── glossary │ │ └── README.md │ ├── howToImplement │ │ └── README.md │ ├── index.md │ ├── introduction │ │ ├── assets │ │ │ └── process.png │ │ └── index.md │ └── refarch │ │ ├── assets │ │ ├── ML2RA_in_RefArchOver_Core_Apr22c_1670.png │ │ ├── ML2RA_in_RefArchOver_Generic_Apr22c_1670.png │ │ ├── ML2RA_in_RefArchOver_NFRs_Apr22c_1670.png │ │ ├── ML2RA_in_RefArchOver_SolutionSpace_Apr22a.png │ │ ├── ML2RA_in_RefArchOver_Supporting_Apr22c_1670.png │ │ └── ML2RA_in_RefArchOver_newUnclassified_Apr22c_1670.png │ │ └── index.md │ └── technical │ ├── account-lookup-service │ ├── README.md │ ├── als-admin-del-oracles.md │ ├── als-admin-get-oracles.md │ ├── als-admin-post-oracles.md │ ├── als-admin-put-oracles.md │ ├── als-del-endpoint.md │ ├── als-del-participants.md │ ├── als-get-participants.md │ ├── als-get-parties.md │ ├── als-post-participants-batch.md │ ├── als-post-participants.md │ └── assets │ │ ├── .gitkeep │ │ ├── diagrams │ │ ├── architecture │ │ │ ├── arch-flow-account-lookup-admin.svg │ │ │ ├── arch-flow-account-lookup-participants.svg │ │ │ └── arch-flow-account-lookup-parties.svg │ │ └── sequence │ │ │ ├── seq-acct-lookup-admin-delete-oracle-7.3.4.puml │ │ │ ├── seq-acct-lookup-admin-delete-oracle-7.3.4.svg │ │ │ ├── seq-acct-lookup-admin-get-oracle-7.3.1.puml │ │ │ ├── seq-acct-lookup-admin-get-oracle-7.3.1.svg │ │ │ ├── seq-acct-lookup-admin-post-oracle-7.3.2.puml │ │ │ ├── seq-acct-lookup-admin-post-oracle-7.3.2.svg │ │ │ ├── seq-acct-lookup-admin-put-oracle-7.3.3.puml │ │ │ ├── seq-acct-lookup-admin-put-oracle-7.3.3.svg │ │ │ ├── seq-acct-lookup-del-endpoint-cache-7.3.0.puml │ │ │ ├── seq-acct-lookup-del-endpoint-cache-7.3.0.svg │ │ │ ├── seq-acct-lookup-del-participants-7.1.2.plantuml │ │ │ ├── seq-acct-lookup-del-participants-7.1.2.svg │ │ │ ├── seq-acct-lookup-get-participants-7.1.0.plantuml │ │ │ ├── seq-acct-lookup-get-participants-7.1.0.svg │ │ │ ├── seq-acct-lookup-get-parties-7.2.0.plantuml │ │ │ ├── seq-acct-lookup-get-parties-7.2.0.svg │ │ │ ├── seq-acct-lookup-post-participants-7.1.3.plantuml │ │ │ ├── seq-acct-lookup-post-participants-7.1.3.svg │ │ │ ├── seq-acct-lookup-post-participants-batch-7.1.1.plantuml │ │ │ └── seq-acct-lookup-post-participants-batch-7.1.1.svg │ │ └── entities │ │ ├── AccountLookup-ddl-MySQLWorkbench.sql │ │ ├── AccountLookupDB-schema-DBeaver.erd │ │ └── AccountLookupService-schema.png │ ├── assets │ └── diagrams │ │ └── architecture │ │ ├── Arch-Mojaloop-end-to-end-PI5.svg │ │ ├── Arch-Mojaloop-end-to-end-PI6.svg │ │ ├── Arch-Mojaloop-end-to-end-simple.svg │ │ └── central_ledger_block_diagram.png │ ├── central-bulk-transfers │ ├── README.md │ ├── assets │ │ ├── database │ │ │ ├── central-ledger-ddl-MySQLWorkbench.sql │ │ │ ├── central-ledger-schema-DBeaver.erd │ │ │ └── central-ledger-schema.png │ │ └── diagrams │ │ │ ├── architecture │ │ │ ├── Figure60-Example-Bulk-Transfer-Process-Spec1.0.png │ │ │ └── bulk-transfer-arch-flows.svg │ │ │ └── sequence │ │ │ ├── seq-bulk-1.1.0-bulk-prepare-overview.plantuml │ │ │ ├── seq-bulk-1.1.0-bulk-prepare-overview.svg │ │ │ ├── seq-bulk-1.1.1-bulk-prepare-handler.plantuml │ │ │ ├── seq-bulk-1.1.1-bulk-prepare-handler.svg │ │ │ ├── seq-bulk-1.2.1-prepare-handler.plantuml │ │ │ ├── seq-bulk-1.2.1-prepare-handler.svg │ │ │ ├── seq-bulk-1.3.0-position-overview.plantuml │ │ │ ├── seq-bulk-1.3.0-position-overview.svg │ │ │ ├── seq-bulk-1.3.1-position-prepare.plantuml │ │ │ ├── seq-bulk-1.3.1-position-prepare.svg │ │ │ ├── seq-bulk-1.4.1-bulk-processing-handler.plantuml │ │ │ ├── seq-bulk-1.4.1-bulk-processing-handler.svg │ │ │ ├── seq-bulk-2.1.0-bulk-fulfil-overview.plantuml │ │ │ ├── seq-bulk-2.1.0-bulk-fulfil-overview.svg │ │ │ ├── seq-bulk-2.1.1-bulk-fulfil-handler.plantuml │ │ │ ├── seq-bulk-2.1.1-bulk-fulfil-handler.svg │ │ │ ├── seq-bulk-2.2.1-fulfil-handler-commit.plantuml │ │ │ ├── seq-bulk-2.2.1-fulfil-handler-commit.svg │ │ │ ├── seq-bulk-2.2.2-fulfil-handler-abort.plantuml │ │ │ ├── seq-bulk-2.2.2-fulfil-handler-abort.svg │ │ │ ├── seq-bulk-2.3.1-position-fulfil.plantuml │ │ │ ├── seq-bulk-2.3.1-position-fulfil.svg │ │ │ ├── seq-bulk-2.3.2-position-abort.plantuml │ │ │ ├── seq-bulk-2.3.2-position-abort.svg │ │ │ ├── seq-bulk-3.1.0-timeout-overview.plantuml │ │ │ ├── seq-bulk-3.1.0-timeout-overview.svg │ │ │ ├── seq-bulk-3.1.1-timeout-handler.plantuml │ │ │ ├── seq-bulk-3.1.1-timeout-handler.svg │ │ │ ├── seq-bulk-4.1.0-abort-overview.plantuml │ │ │ ├── seq-bulk-4.1.0-abort-overview.svg │ │ │ ├── seq-bulk-5.1.0-get-overview.plantuml │ │ │ └── seq-bulk-5.1.0-get-overview.svg │ └── transfers │ │ ├── 1.1.0-bulk-prepare-transfer-request-overview.md │ │ ├── 1.1.1-bulk-prepare-handler-consume.md │ │ ├── 1.2.1-prepare-handler-consume-for-bulk.md │ │ ├── 1.3.0-position-handler-consume-overview.md │ │ ├── 1.3.1-prepare-position-handler-consume.md │ │ ├── 1.4.1-bulk-processing-handler.md │ │ ├── 2.1.0-bulk-fulfil-transfer-request-overview.md │ │ ├── 2.1.1-bulk-fulfil-handler-consume.md │ │ ├── 2.2.1-fulfil-commit-for-bulk.md │ │ ├── 2.2.2-fulfil-abort-for-bulk.md │ │ ├── 2.3.1-fulfil-position-handler-consume.md │ │ ├── 2.3.2-position-consume-abort.md │ │ ├── 3.1.0-transfer-timeout-overview-for-bulk.md │ │ ├── 3.1.1-transfer-timeout-handler-consume.md │ │ ├── 4.1.0-transfer-abort-overview-for-bulk.md │ │ ├── 5.1.0-transfer-get-overview-for-bulk.md │ │ └── README.md │ ├── central-event-processor │ ├── README.md │ ├── assets │ │ └── diagrams │ │ │ ├── architecture │ │ │ └── CEPArchTechOverview.svg │ │ │ └── sequence │ │ │ ├── seq-event-9.1.0.plantuml │ │ │ ├── seq-event-9.1.0.svg │ │ │ ├── seq-notification-reject-5.1.1.plantuml │ │ │ ├── seq-notification-reject-5.1.1.svg │ │ │ ├── seq-signature-validation.plantuml │ │ │ └── seq-signature-validation.svg │ ├── event-handler-placeholder.md │ ├── notification-handler-for-rejections.md │ └── signature-validation.md │ ├── central-ledger │ ├── .gitkeep │ ├── README.md │ ├── admin-operations │ │ ├── 1.0.0-get-health-check.md │ │ ├── 1.0.0-get-limits-for-all-participants.md │ │ ├── 1.0.0-post-participant-position-limit.md │ │ ├── 1.1.0-get-participant-limit-details.md │ │ ├── 1.1.0-post-participant-limits.md │ │ ├── 1.1.5-get-transfer-status.md │ │ ├── 3.1.0-get-participant-callback-details.md │ │ ├── 3.1.0-post-participant-callback-details.md │ │ ├── 4.1.0-get-participant-position-details.md │ │ ├── 4.2.0-get-positions-of-all-participants.md │ │ └── README.md │ ├── assets │ │ ├── database │ │ │ ├── README.md │ │ │ ├── central-ledger-ddl-MySQLWorkbench.sql │ │ │ ├── central-ledger-schema-DBeaver.erd │ │ │ └── central-ledger-schema.png │ │ └── diagrams │ │ │ ├── architecture │ │ │ ├── Arch-mojaloop-central-ledger.svg │ │ │ ├── Transfers-Arch-End-to-End-v1.0-old.svg │ │ │ ├── Transfers-Arch-End-to-End-v1.0.svg │ │ │ └── Transfers-Arch-End-to-End-v1.1.svg │ │ │ └── sequence │ │ │ ├── seq-callback-3.1.0.plantuml │ │ │ ├── seq-callback-3.1.0.svg │ │ │ ├── seq-callback-add-3.1.0.plantuml │ │ │ ├── seq-callback-add-3.1.0.svg │ │ │ ├── seq-fulfil-2.1.0-v1.1.plantuml │ │ │ ├── seq-fulfil-2.1.0-v1.1.svg │ │ │ ├── seq-fulfil-2.1.0.plantuml │ │ │ ├── seq-fulfil-2.1.0.svg │ │ │ ├── seq-fulfil-2.1.1-v1.1.plantuml │ │ │ ├── seq-fulfil-2.1.1-v1.1.svg │ │ │ ├── seq-fulfil-2.1.1.plantuml │ │ │ ├── seq-fulfil-2.1.1.svg │ │ │ ├── seq-get-all-participant-limit-1.0.0.plantuml │ │ │ ├── seq-get-all-participant-limit-1.0.0.svg │ │ │ ├── seq-get-health-1.0.0.plantuml │ │ │ ├── seq-get-health-1.0.0.svg │ │ │ ├── seq-get-participant-position-limit-1.1.0.plantuml │ │ │ ├── seq-get-participant-position-limit-1.1.0.svg │ │ │ ├── seq-get-transfer-1.1.5-phase2.plantuml │ │ │ ├── seq-get-transfer-1.1.5-phase2.svg │ │ │ ├── seq-manage-participant-limit-1.1.0.plantuml │ │ │ ├── seq-manage-participant-limit-1.1.0.svg │ │ │ ├── seq-participant-position-limits-1.0.0.plantuml │ │ │ ├── seq-participant-position-limits-1.0.0.svg │ │ │ ├── seq-participants-positions-query-4.1.0.plantuml │ │ │ ├── seq-participants-positions-query-4.1.0.svg │ │ │ ├── seq-participants-positions-query-all-4.2.0.plantuml │ │ │ ├── seq-participants-positions-query-all-4.2.0.svg │ │ │ ├── seq-position-1.3.0-v1.1.plantuml │ │ │ ├── seq-position-1.3.0-v1.1.svg │ │ │ ├── seq-position-1.3.0.plantuml │ │ │ ├── seq-position-1.3.0.svg │ │ │ ├── seq-position-1.3.1-prepare.plantuml │ │ │ ├── seq-position-1.3.1-prepare.svg │ │ │ ├── seq-position-1.3.2-fulfil-v1.1.plantuml │ │ │ ├── seq-position-1.3.2-fulfil-v1.1.svg │ │ │ ├── seq-position-1.3.2-fulfil.plantuml │ │ │ ├── seq-position-1.3.2-fulfil.svg │ │ │ ├── seq-position-1.3.3-abort.plantuml │ │ │ ├── seq-position-1.3.3-abort.svg │ │ │ ├── seq-prepare-1.1.0.plantuml │ │ │ ├── seq-prepare-1.1.0.svg │ │ │ ├── seq-prepare-1.1.1.a.plantuml │ │ │ ├── seq-prepare-1.1.1.a.svg │ │ │ ├── seq-prepare-1.1.1.b.plantuml │ │ │ ├── seq-prepare-1.1.1.b.svg │ │ │ ├── seq-prepare-1.1.2.a.plantuml │ │ │ ├── seq-prepare-1.1.2.a.svg │ │ │ ├── seq-prepare-1.1.2.b.plantuml │ │ │ ├── seq-prepare-1.1.2.b.svg │ │ │ ├── seq-prepare-1.1.4.a-v1.1.plantuml │ │ │ ├── seq-prepare-1.1.4.a-v1.1.svg │ │ │ ├── seq-prepare-1.1.4.a.plantuml │ │ │ ├── seq-prepare-1.1.4.a.svg │ │ │ ├── seq-prepare-1.1.4.b.plantuml │ │ │ ├── seq-prepare-1.1.4.b.svg │ │ │ ├── seq-reject-2.2.0-v1.1.plantuml │ │ │ ├── seq-reject-2.2.0-v1.1.svg │ │ │ ├── seq-reject-2.2.0.a-v1.1.plantuml │ │ │ ├── seq-reject-2.2.0.a-v1.1.svg │ │ │ ├── seq-reject-2.2.0.a.plantuml │ │ │ ├── seq-reject-2.2.0.a.svg │ │ │ ├── seq-reject-2.2.0.plantuml │ │ │ ├── seq-reject-2.2.0.svg │ │ │ ├── seq-reject-2.2.1-v1.1.plantuml │ │ │ ├── seq-reject-2.2.1-v1.1.svg │ │ │ ├── seq-reject-2.2.1.plantuml │ │ │ ├── seq-reject-2.2.1.svg │ │ │ ├── seq-request-dup-check-9.1.1.plantuml │ │ │ ├── seq-request-dup-check-9.1.1.svg │ │ │ ├── seq-setmodel-2.1.2.plantuml │ │ │ ├── seq-setmodel-2.1.2.svg │ │ │ ├── seq-timeout-2.3.0.plantuml │ │ │ ├── seq-timeout-2.3.0.svg │ │ │ ├── seq-timeout-2.3.1.plantuml │ │ │ ├── seq-timeout-2.3.1.svg │ │ │ ├── seq-timeout-2.3.2.plantuml │ │ │ └── seq-timeout-2.3.2.svg │ └── transfers │ │ ├── 1.1.0-prepare-transfer-request.md │ │ ├── 1.1.1.a-prepare-handler-consume.md │ │ ├── 1.1.1.b-prepare-handler-consume.md │ │ ├── 1.1.2.a-position-handler-consume.md │ │ ├── 1.1.2.b-position-handler-consume.md │ │ ├── 1.1.4.a-send-notification-to-participant-v1.1.md │ │ ├── 1.1.4.a-send-notification-to-participant.md │ │ ├── 1.1.4.b-send-notification-to-participant.md │ │ ├── 1.3.0-position-handler-consume-v1.1.md │ │ ├── 1.3.0-position-handler-consume.md │ │ ├── 1.3.1-prepare-position-handler-consume.md │ │ ├── 1.3.2-fulfil-position-handler-consume-v1.1.md │ │ ├── 1.3.2-fulfil-position-handler-consume.md │ │ ├── 1.3.3-abort-position-handler-consume.md │ │ ├── 2.1.0-fulfil-transfer-request-v1.1.md │ │ ├── 2.1.0-fulfil-transfer-request.md │ │ ├── 2.1.1-fulfil-handler-consume-v1.1.md │ │ ├── 2.1.1-fulfil-handler-consume.md │ │ ├── 2.2.0-fulfil-reject-transfer-v1.1.md │ │ ├── 2.2.0-fulfil-reject-transfer.md │ │ ├── 2.2.0.a-fulfil-abort-transfer-v1.1.md │ │ ├── 2.2.0.a-fulfil-abort-transfer.md │ │ ├── 2.2.1-fulfil-reject-handler-v1.1.md │ │ ├── 2.2.1-fulfil-reject-handler.md │ │ ├── 2.3.0-transfer-timeout.md │ │ ├── 2.3.1-timeout-handler-consume.md │ │ └── README.md │ ├── deployment-guide │ ├── README.md │ ├── assets │ │ ├── diagrams │ │ │ ├── deployment │ │ │ │ └── KubeInfrastructureArch.svg │ │ │ ├── repositoryUpdate │ │ │ │ ├── repository-update-sequence.mmd │ │ │ │ └── repository-update-sequence.svg │ │ │ ├── upgradeStrategies │ │ │ │ ├── helm-blue-green-upgrade-strategy.svg │ │ │ │ └── helm-canary-upgrade-strategy.svg │ │ │ └── vulnerabilityManagement │ │ │ │ ├── dependency-vulnerability-management-process.png │ │ │ │ ├── dependency-vulnerability-management-process.puml │ │ │ │ └── dependency-vulnerability-management-process.svg │ │ └── screenshots │ │ │ └── vulnerabilityManagement │ │ │ ├── audit-check-script.png │ │ │ ├── gh-dependabot-alert.png │ │ │ ├── gh-dependabot-alerts.png │ │ │ ├── grype-scan-vulnerabilities-ci.png │ │ │ ├── severity-id-allowed.png │ │ │ └── severity-level-allowed.png │ ├── deployment-troubleshooting.md │ ├── mojaloop-repository-update-guide.md │ ├── nodejs-dependency-update-guide.md │ └── upgrade-strategy-guide.md │ ├── event-framework │ ├── README.md │ └── assets │ │ └── diagrams │ │ └── architecture │ │ ├── architecture-event-framework.svg │ │ ├── architecture-event-sidecar.svg │ │ └── architecture-event-trace.svg │ ├── event-stream-processor │ ├── README.md │ └── assets │ │ └── diagrams │ │ ├── architecture │ │ └── event-stream-processor-overview.svg │ │ └── sequence │ │ ├── process-flow.plantuml │ │ └── process-flow.svg │ ├── fraud-services │ ├── README.md │ └── related-documents │ │ └── documentation.md │ ├── ml-testing-toolkit │ └── README.md │ ├── overview │ ├── README.md │ ├── assets │ │ └── diagrams │ │ │ └── architecture │ │ │ ├── Arch-Mojaloop-overview-PI11.svg │ │ │ ├── Arch-Mojaloop-overview-PI12.svg │ │ │ ├── Arch-Mojaloop-overview-PI14.svg │ │ │ ├── Arch-Mojaloop-overview-PI18.svg │ │ │ ├── Arch-Mojaloop-overview-PI3.svg │ │ │ ├── Arch-Mojaloop-overview-PI5.svg │ │ │ ├── Arch-Mojaloop-overview-PI6.svg │ │ │ ├── Arch-Mojaloop-overview-PI7.svg │ │ │ └── Arch-Mojaloop-overview-PI8.svg │ ├── components-PI11.md │ ├── components-PI12.md │ ├── components-PI14.md │ ├── components-PI18.md │ ├── components-PI3.md │ ├── components-PI5.md │ ├── components-PI6.md │ ├── components-PI7.md │ └── components-PI8.md │ ├── quoting-service │ ├── README.md │ ├── assets │ │ └── diagrams │ │ │ └── sequence │ │ │ ├── seq-get-bulk-quotes-2.1.0.plantuml │ │ │ ├── seq-get-bulk-quotes-2.1.0.svg │ │ │ ├── seq-get-quotes-1.1.0.plantuml │ │ │ ├── seq-get-quotes-1.1.0.svg │ │ │ ├── seq-post-bulk-quotes-2.2.0.plantuml │ │ │ ├── seq-post-bulk-quotes-2.2.0.svg │ │ │ ├── seq-post-quotes-1.2.0.plantuml │ │ │ ├── seq-post-quotes-1.2.0.svg │ │ │ ├── seq-quotes-1.0.0.plantuml │ │ │ ├── seq-quotes-1.0.0.svg │ │ │ ├── seq-quotes-overview-1.0.0.plantuml │ │ │ └── seq-quotes-overview-1.0.0.svg │ ├── qs-get-bulk-quotes.md │ ├── qs-get-quotes.md │ ├── qs-post-bulk-quotes.md │ └── qs-post-quotes.md │ ├── releases.md │ ├── sdk-scheme-adapter │ ├── BulkEnhancements │ │ ├── Readme.md │ │ ├── SDKBulk-API-Design.md │ │ ├── SDKBulk-EventSourcing-Design.md │ │ └── SDKBulk-Tests.md │ ├── IntegrationBulkFlowPatterns.md │ ├── IntegrationFlowPatterns.md │ ├── README.md │ ├── RequestToPay.md │ ├── assets │ │ ├── BulkSDKEnhancements-Architecture.drawio.svg │ │ ├── BulkSDKEnhancements.drawio │ │ ├── BulkSDKEnhancements.drawio.svg │ │ ├── CHIntegrationTestHarness.drawio.svg │ │ ├── SDKSchemeAdapterMode1.svg │ │ ├── SDKSchemeAdapterMode2.svg │ │ ├── SDKSchemeAdapterMode3.svg │ │ ├── bulk-functional-local-test-setup.drawio.svg │ │ ├── overview-drawio.png │ │ └── sequence │ │ │ ├── BULK-ERRORCODES.md │ │ │ ├── PayeeDFSPBulkIdealPattern.PlantUML │ │ │ ├── PayeeDFSPBulkIdealPattern.svg │ │ │ ├── PayeeDFSPBulkSingleIntegrationApiOnPatch.PlantUML │ │ │ ├── PayeeDFSPBulkSingleIntegrationApiOnPatch.svg │ │ │ ├── PayeeDFSPIdealPattern.PlantUML │ │ │ ├── PayeeDFSPIdealPattern.svg │ │ │ ├── PayeeDFSPSingleIntegrationApiOnPatch.PlantUML │ │ │ ├── PayeeDFSPSingleIntegrationApiOnPatchPattern.svg │ │ │ ├── PayeeDFSPSingleIntegrationApiOnTransfer.PlantUML │ │ │ ├── PayeeDFSPSingleIntegrationApiOnTransferPattern.svg │ │ │ ├── PayerDFSPBulkDoubleIntegrationApi.PlantUML │ │ │ ├── PayerDFSPBulkDoubleIntegrationApiPattern.svg │ │ │ ├── PayerDFSPBulkSingleIntegrationApi.PlantUML │ │ │ ├── PayerDFSPBulkSingleIntegrationApiPattern.svg │ │ │ ├── PayerDFSPDoubleIntegrationApiPattern.PlantUML │ │ │ ├── PayerDFSPDoubleIntegrationApiPattern.svg │ │ │ ├── PayerDFSPSingleIntegrationApiPattern.PlantUML │ │ │ ├── PayerDFSPSingleIntegrationApiPattern.svg │ │ │ ├── SDKBulkSequenceDiagram.plantuml │ │ │ ├── SDKBulkSequenceDiagram.svg │ │ │ ├── SDKrequestToPay.plantuml │ │ │ ├── SDKrequestToPay.svg │ │ │ ├── inbound-bulk-quotes-sequence.svg │ │ │ ├── inbound-bulk-transfers-sequence.svg │ │ │ ├── outbound-sequence.svg │ │ │ └── requestToPaySDK-R2P-SequenceDiagram.svg │ └── usage │ │ ├── README.md │ │ ├── scheme-adapter-and-local-k8s │ │ ├── README.md │ │ ├── assets │ │ │ └── postman_files │ │ │ │ ├── Mojaloop-Local.postman_environment_modified.json │ │ │ │ └── OSS-Custom-FSP-Onboaring-SchemeAdapter-Setup.postman_collection.json │ │ └── scheme-adapter-and-local-k8s-overview.png │ │ ├── scheme-adapter-and-wso2-api-gateway │ │ ├── README.md │ │ └── scheme-adapter-and-wso2-api-gateway-overview.png │ │ └── scheme-adapter-to-scheme-adapter │ │ ├── README.md │ │ └── scheme-adapter-to-scheme-adapter-overview.png │ ├── security │ ├── assets │ │ ├── diagrams │ │ │ └── vulnerabilityManagement │ │ │ │ ├── dependency-vulnerability-management-process.png │ │ │ │ ├── dependency-vulnerability-management-process.puml │ │ │ │ └── dependency-vulnerability-management-process.svg │ │ └── screenshots │ │ │ └── vulnerabilityManagement │ │ │ ├── audit-check-script.png │ │ │ ├── gh-dependabot-alert.png │ │ │ ├── gh-dependabot-alerts.png │ │ │ ├── grype-scan-vulnerabilities-ci.png │ │ │ ├── severity-id-allowed.png │ │ │ └── severity-level-allowed.png │ ├── dependency-vulnerability-management.md │ └── security-overview.md │ └── transaction-requests-service │ ├── README.md │ ├── assets │ └── diagrams │ │ └── sequence │ │ ├── seq-trx-req-authorizations-3.0.0.plantuml │ │ ├── seq-trx-req-authorizations-3.0.0.svg │ │ ├── seq-trx-req-service-1.0.0.plantuml │ │ ├── seq-trx-req-service-1.0.0.svg │ │ ├── seq-trx-req-service-get-2.0.0.plantuml │ │ ├── seq-trx-req-service-get-2.0.0.svg │ │ ├── trx-service-overview-spec.plantuml │ │ └── trx-service-overview-spec.svg │ ├── authorizations.md │ ├── transaction-requests-get.md │ └── transaction-requests-post.md ├── infra ├── README.md ├── src │ ├── .terraform.lock.hcl │ ├── cloudfront.tf │ ├── iam.tf │ ├── main.tf │ ├── outputs.tf │ ├── redirect │ │ ├── _generate_js_list.sh │ │ ├── index.js │ │ ├── link_list.md │ │ └── link_list.txt │ ├── s3.tf │ ├── terraform.tfvars │ └── variables.tf └── state │ ├── .terraform.lock.hcl │ ├── README.md │ ├── main.tf │ ├── terraform.tfstate │ ├── terraform.tfstate.backup_dep │ ├── terraform.tfstate_dep │ ├── terraform.tfvars │ └── variables.tf ├── legacy ├── .bookignore ├── .circleci │ └── config.yml ├── .dockerignore ├── .gitbook.md ├── .gitignore ├── .ncurc.json ├── .nvmrc ├── CODEOWNERS ├── Dockerfile ├── LICENSE.md ├── NOTES.md ├── README.md ├── SUMMARY.md ├── api │ ├── README.md │ ├── als-oracle-api-specification.md │ ├── assets │ │ └── interface-contracts │ │ │ └── oracle-service-swagger-v1.yaml │ ├── central-ledger-api-specification.md │ ├── central-settlements-api-specification.md │ └── mojaloop-api-specification.md ├── assets │ ├── .gitkeep │ └── diagrams │ │ └── .gitkeep ├── book.json ├── book_variables.yml ├── changelog.md ├── contributors-guide │ ├── README.md │ ├── code-of-conduct.md │ ├── documentation │ │ ├── README.md │ │ ├── api-documentation.md │ │ └── documentation-style-guide.md │ ├── frequently-asked-questions.md │ ├── images │ │ └── cla │ │ │ ├── admin_configure.png │ │ │ ├── admin_sign_in.png │ │ │ ├── cla_1.png │ │ │ ├── cla_2_1.png │ │ │ ├── cla_2_2.png │ │ │ └── cla_3.png │ ├── new-contributor-checklist.md │ ├── personas.md │ ├── signing-the-cla.md │ ├── standards │ │ ├── README.md │ │ ├── creating-new-features.md │ │ ├── triaging-ml-oss-bugs.md │ │ └── versioning.md │ └── tools-and-technologies │ │ ├── README.md │ │ ├── assets │ │ ├── diagrams │ │ │ ├── automated-license-scanning │ │ │ │ ├── audit-licenses-build.svg │ │ │ │ └── audit-licenses-pr.svg │ │ │ ├── automated-testing │ │ │ │ ├── QARegressionTestingMojaloop-Complete.plantuml │ │ │ │ └── QARegressionTestingMojaloop-Complete.svg │ │ │ └── rest │ │ │ │ └── glory-of-rest.png │ │ └── images │ │ │ └── automated-license-scanning │ │ │ ├── circle-pr-build.png │ │ │ └── circle-release-build.png │ │ ├── automated-license-scanning.md │ │ ├── automated-testing.md │ │ ├── aws-cli.md │ │ ├── code-quality-metrics.md │ │ └── pragmatic-rest.md ├── cover.jpg ├── deployment-guide │ ├── README.md │ ├── assets │ │ └── diagrams │ │ │ ├── deployment │ │ │ ├── DockerAdvanceSettings.png │ │ │ ├── DockerForDesktop.png │ │ │ ├── DockerIsRunning.png │ │ │ ├── EnableKubernetes.png │ │ │ ├── KubeInfrastructureArch.svg │ │ │ ├── KubernetesInstallWithDocker-1.png │ │ │ ├── KubernetesInstallWithDocker-2.png │ │ │ └── kubernetesDashboard.png │ │ │ └── upgradeStrategies │ │ │ ├── helm-blue-green-upgrade-strategy.svg │ │ │ └── helm-canary-upgrade-strategy.svg │ ├── deployment-troubleshooting.md │ ├── helm-legacy-deployment.md │ ├── helm-legacy-migration.md │ ├── local-setup-linux.md │ ├── local-setup-mac.md │ ├── local-setup-windows.md │ ├── releases.md │ └── upgrade-strategy-guide.md ├── discussions │ ├── ISO_Integration.md │ ├── Mojaloop Performance 2020.pdf │ ├── aws_tagging.md │ ├── code_improvement.md │ ├── cross_border_day_1.md │ ├── cross_border_day_2.md │ ├── crossborder.md │ ├── decimal.md │ ├── dicussion-docs.md │ ├── images │ │ ├── cb_board_1.jpg │ │ ├── cb_board_2.jpg │ │ ├── cb_board_3.jpg │ │ ├── mojaloop_spokes.png │ │ ├── tagging_01.png │ │ ├── tagging_02.png │ │ ├── tagging_03.png │ │ ├── tagging_04.png │ │ ├── tagging_05.png │ │ └── tagging_06.png │ ├── performance.md │ ├── pisp.md │ ├── versioning_draft_proposal.md │ └── workbench.md ├── gitbook.Dockerfile ├── glossary.md ├── hackathon-materials │ ├── README.md │ ├── images │ │ ├── lab_onboarding_01.png │ │ ├── lab_onboarding_02.png │ │ ├── lab_onboarding_04.png │ │ ├── lab_onboarding_05.png │ │ ├── lab_onboarding_06.png │ │ ├── lab_onboarding_07.png │ │ ├── lab_onboarding_08.png │ │ ├── lab_onboarding_09.png │ │ ├── lab_onboarding_10.png │ │ ├── lab_onboarding_11.png │ │ ├── lab_onboarding_12.png │ │ ├── lab_onboarding_13.png │ │ ├── lab_onboarding_14.png │ │ ├── lab_onboarding_15.png │ │ ├── lab_onboarding_16.png │ │ ├── lab_onboarding_17.png │ │ ├── lab_onboarding_18.png │ │ ├── lab_onboarding_19.png │ │ ├── lab_onboarding_20.png │ │ ├── postman_01.png │ │ └── postman_02.png │ ├── lab_onboarding.md │ └── preread.md ├── index.js ├── meeting-notes │ ├── ccb-notes.md │ ├── da-notes.md │ ├── readme.md │ └── scrum-of-scrum-notes.md ├── mojaloop-background.md ├── mojaloop-background │ ├── README.md │ ├── core-scenarios.md │ └── level-one-principles.md ├── mojaloop-publications.md ├── mojaloop-roadmap.md ├── mojaloop-technical-overview │ ├── README.md │ ├── account-lookup-service │ │ ├── README.md │ │ ├── als-admin-del-oracles.md │ │ ├── als-admin-get-oracles.md │ │ ├── als-admin-post-oracles.md │ │ ├── als-admin-put-oracles.md │ │ ├── als-del-endpoint.md │ │ ├── als-del-participants.md │ │ ├── als-get-participants.md │ │ ├── als-get-parties.md │ │ ├── als-post-participants-batch.md │ │ ├── als-post-participants.md │ │ └── assets │ │ │ ├── .gitkeep │ │ │ ├── diagrams │ │ │ ├── architecture │ │ │ │ ├── arch-flow-account-lookup-admin.svg │ │ │ │ ├── arch-flow-account-lookup-participants.svg │ │ │ │ └── arch-flow-account-lookup-parties.svg │ │ │ └── sequence │ │ │ │ ├── seq-acct-lookup-admin-delete-oracle-7.3.4.puml │ │ │ │ ├── seq-acct-lookup-admin-delete-oracle-7.3.4.svg │ │ │ │ ├── seq-acct-lookup-admin-get-oracle-7.3.1.puml │ │ │ │ ├── seq-acct-lookup-admin-get-oracle-7.3.1.svg │ │ │ │ ├── seq-acct-lookup-admin-post-oracle-7.3.2.puml │ │ │ │ ├── seq-acct-lookup-admin-post-oracle-7.3.2.svg │ │ │ │ ├── seq-acct-lookup-admin-put-oracle-7.3.3.puml │ │ │ │ ├── seq-acct-lookup-admin-put-oracle-7.3.3.svg │ │ │ │ ├── seq-acct-lookup-del-endpoint-cache-7.3.0.puml │ │ │ │ ├── seq-acct-lookup-del-endpoint-cache-7.3.0.svg │ │ │ │ ├── seq-acct-lookup-del-participants-7.1.2.plantuml │ │ │ │ ├── seq-acct-lookup-del-participants-7.1.2.svg │ │ │ │ ├── seq-acct-lookup-get-participants-7.1.0.plantuml │ │ │ │ ├── seq-acct-lookup-get-participants-7.1.0.svg │ │ │ │ ├── seq-acct-lookup-get-parties-7.2.0.plantuml │ │ │ │ ├── seq-acct-lookup-get-parties-7.2.0.svg │ │ │ │ ├── seq-acct-lookup-post-participants-7.1.3.plantuml │ │ │ │ ├── seq-acct-lookup-post-participants-7.1.3.svg │ │ │ │ ├── seq-acct-lookup-post-participants-batch-7.1.1.plantuml │ │ │ │ └── seq-acct-lookup-post-participants-batch-7.1.1.svg │ │ │ └── entities │ │ │ ├── AccountLookup-ddl-MySQLWorkbench.sql │ │ │ ├── AccountLookupDB-schema-DBeaver.erd │ │ │ └── AccountLookupService-schema.png │ ├── assets │ │ └── diagrams │ │ │ └── architecture │ │ │ ├── Arch-Mojaloop-end-to-end-PI5.svg │ │ │ ├── Arch-Mojaloop-end-to-end-PI6.svg │ │ │ ├── Arch-Mojaloop-end-to-end-simple.svg │ │ │ └── central_ledger_block_diagram.png │ ├── central-bulk-transfers │ │ ├── README.md │ │ ├── assets │ │ │ ├── database │ │ │ │ ├── central-ledger-ddl-MySQLWorkbench.sql │ │ │ │ ├── central-ledger-schema-DBeaver.erd │ │ │ │ └── central-ledger-schema.png │ │ │ └── diagrams │ │ │ │ ├── architecture │ │ │ │ ├── Figure60-Example-Bulk-Transfer-Process-Spec1.0.png │ │ │ │ └── bulk-transfer-arch-flows.svg │ │ │ │ └── sequence │ │ │ │ ├── seq-bulk-1.1.0-bulk-prepare-overview.plantuml │ │ │ │ ├── seq-bulk-1.1.0-bulk-prepare-overview.svg │ │ │ │ ├── seq-bulk-1.1.1-bulk-prepare-handler.plantuml │ │ │ │ ├── seq-bulk-1.1.1-bulk-prepare-handler.svg │ │ │ │ ├── seq-bulk-1.2.1-prepare-handler.plantuml │ │ │ │ ├── seq-bulk-1.2.1-prepare-handler.svg │ │ │ │ ├── seq-bulk-1.3.0-position-overview.plantuml │ │ │ │ ├── seq-bulk-1.3.0-position-overview.svg │ │ │ │ ├── seq-bulk-1.3.1-position-prepare.plantuml │ │ │ │ ├── seq-bulk-1.3.1-position-prepare.svg │ │ │ │ ├── seq-bulk-1.4.1-bulk-processing-handler.plantuml │ │ │ │ ├── seq-bulk-1.4.1-bulk-processing-handler.svg │ │ │ │ ├── seq-bulk-2.1.0-bulk-fulfil-overview.plantuml │ │ │ │ ├── seq-bulk-2.1.0-bulk-fulfil-overview.svg │ │ │ │ ├── seq-bulk-2.1.1-bulk-fulfil-handler.plantuml │ │ │ │ ├── seq-bulk-2.1.1-bulk-fulfil-handler.svg │ │ │ │ ├── seq-bulk-2.2.1-fulfil-handler-commit.plantuml │ │ │ │ ├── seq-bulk-2.2.1-fulfil-handler-commit.svg │ │ │ │ ├── seq-bulk-2.2.2-fulfil-handler-abort.plantuml │ │ │ │ ├── seq-bulk-2.2.2-fulfil-handler-abort.svg │ │ │ │ ├── seq-bulk-2.3.1-position-fulfil.plantuml │ │ │ │ ├── seq-bulk-2.3.1-position-fulfil.svg │ │ │ │ ├── seq-bulk-2.3.2-position-abort.plantuml │ │ │ │ ├── seq-bulk-2.3.2-position-abort.svg │ │ │ │ ├── seq-bulk-3.1.0-timeout-overview.plantuml │ │ │ │ ├── seq-bulk-3.1.0-timeout-overview.svg │ │ │ │ ├── seq-bulk-3.1.1-timeout-handler.plantuml │ │ │ │ ├── seq-bulk-3.1.1-timeout-handler.svg │ │ │ │ ├── seq-bulk-4.1.0-abort-overview.plantuml │ │ │ │ ├── seq-bulk-4.1.0-abort-overview.svg │ │ │ │ ├── seq-bulk-5.1.0-get-overview.plantuml │ │ │ │ └── seq-bulk-5.1.0-get-overview.svg │ │ └── transfers │ │ │ ├── 1.1.0-bulk-prepare-transfer-request-overview.md │ │ │ ├── 1.1.1-bulk-prepare-handler-consume.md │ │ │ ├── 1.2.1-prepare-handler-consume-for-bulk.md │ │ │ ├── 1.3.0-position-handler-consume-overview.md │ │ │ ├── 1.3.1-prepare-position-handler-consume.md │ │ │ ├── 1.4.1-bulk-processing-handler.md │ │ │ ├── 2.1.0-bulk-fulfil-transfer-request-overview.md │ │ │ ├── 2.1.1-bulk-fulfil-handler-consume.md │ │ │ ├── 2.2.1-fulfil-commit-for-bulk.md │ │ │ ├── 2.2.2-fulfil-abort-for-bulk.md │ │ │ ├── 2.3.1-fulfil-position-handler-consume.md │ │ │ ├── 2.3.2-position-consume-abort.md │ │ │ ├── 3.1.0-transfer-timeout-overview-for-bulk.md │ │ │ ├── 3.1.1-transfer-timeout-handler-consume.md │ │ │ ├── 4.1.0-transfer-abort-overview-for-bulk.md │ │ │ ├── 5.1.0-transfer-get-overview-for-bulk.md │ │ │ └── README.md │ ├── central-event-processor │ │ ├── 5.1.1-notification-handler-for-rejections.md │ │ ├── 9.1.0-event-handler-placeholder.md │ │ ├── README.md │ │ ├── assets │ │ │ └── diagrams │ │ │ │ ├── architecture │ │ │ │ └── CEPArchTechOverview.svg │ │ │ │ └── sequence │ │ │ │ ├── seq-event-9.1.0.plantuml │ │ │ │ ├── seq-event-9.1.0.svg │ │ │ │ ├── seq-notification-reject-5.1.1.plantuml │ │ │ │ ├── seq-notification-reject-5.1.1.svg │ │ │ │ ├── seq-signature-validation.plantuml │ │ │ │ └── seq-signature-validation.svg │ │ └── signature-validation.md │ ├── central-ledger │ │ ├── .gitkeep │ │ ├── README.md │ │ ├── admin-operations │ │ │ ├── 1.0.0-get-health-check.md │ │ │ ├── 1.0.0-get-limits-for-all-participants.md │ │ │ ├── 1.0.0-post-participant-position-limit.md │ │ │ ├── 1.1.0-get-participant-limit-details.md │ │ │ ├── 1.1.0-post-participant-limits.md │ │ │ ├── 1.1.5-get-transfer-status.md │ │ │ ├── 3.1.0-get-participant-callback-details.md │ │ │ ├── 3.1.0-post-participant-callback-details.md │ │ │ ├── 4.1.0-get-participant-position-details.md │ │ │ ├── 4.2.0-get-positions-of-all-participants.md │ │ │ └── README.md │ │ ├── assets │ │ │ ├── database │ │ │ │ ├── README.md │ │ │ │ ├── central-ledger-ddl-MySQLWorkbench.sql │ │ │ │ ├── central-ledger-schema-DBeaver.erd │ │ │ │ └── central-ledger-schema.png │ │ │ └── diagrams │ │ │ │ ├── architecture │ │ │ │ ├── Arch-mojaloop-central-ledger.svg │ │ │ │ ├── Transfers-Arch-End-to-End-v1.0-old.svg │ │ │ │ ├── Transfers-Arch-End-to-End-v1.0.svg │ │ │ │ └── Transfers-Arch-End-to-End-v1.1.svg │ │ │ │ └── sequence │ │ │ │ ├── seq-callback-3.1.0.plantuml │ │ │ │ ├── seq-callback-3.1.0.svg │ │ │ │ ├── seq-callback-add-3.1.0.plantuml │ │ │ │ ├── seq-callback-add-3.1.0.svg │ │ │ │ ├── seq-fulfil-2.1.0-v1.1.plantuml │ │ │ │ ├── seq-fulfil-2.1.0-v1.1.svg │ │ │ │ ├── seq-fulfil-2.1.0.plantuml │ │ │ │ ├── seq-fulfil-2.1.0.svg │ │ │ │ ├── seq-fulfil-2.1.1-v1.1.plantuml │ │ │ │ ├── seq-fulfil-2.1.1-v1.1.svg │ │ │ │ ├── seq-fulfil-2.1.1.plantuml │ │ │ │ ├── seq-fulfil-2.1.1.svg │ │ │ │ ├── seq-get-all-participant-limit-1.0.0.plantuml │ │ │ │ ├── seq-get-all-participant-limit-1.0.0.svg │ │ │ │ ├── seq-get-health-1.0.0.plantuml │ │ │ │ ├── seq-get-health-1.0.0.svg │ │ │ │ ├── seq-get-participant-position-limit-1.1.0.plantuml │ │ │ │ ├── seq-get-participant-position-limit-1.1.0.svg │ │ │ │ ├── seq-get-transfer-1.1.5-phase2.plantuml │ │ │ │ ├── seq-get-transfer-1.1.5-phase2.svg │ │ │ │ ├── seq-manage-participant-limit-1.1.0.plantuml │ │ │ │ ├── seq-manage-participant-limit-1.1.0.svg │ │ │ │ ├── seq-participant-position-limits-1.0.0.plantuml │ │ │ │ ├── seq-participant-position-limits-1.0.0.svg │ │ │ │ ├── seq-participants-positions-query-4.1.0.plantuml │ │ │ │ ├── seq-participants-positions-query-4.1.0.svg │ │ │ │ ├── seq-participants-positions-query-all-4.2.0.plantuml │ │ │ │ ├── seq-participants-positions-query-all-4.2.0.svg │ │ │ │ ├── seq-position-1.3.0-v1.1.plantuml │ │ │ │ ├── seq-position-1.3.0-v1.1.svg │ │ │ │ ├── seq-position-1.3.0.plantuml │ │ │ │ ├── seq-position-1.3.0.svg │ │ │ │ ├── seq-position-1.3.1-prepare.plantuml │ │ │ │ ├── seq-position-1.3.1-prepare.svg │ │ │ │ ├── seq-position-1.3.2-fulfil-v1.1.plantuml │ │ │ │ ├── seq-position-1.3.2-fulfil-v1.1.svg │ │ │ │ ├── seq-position-1.3.2-fulfil.plantuml │ │ │ │ ├── seq-position-1.3.2-fulfil.svg │ │ │ │ ├── seq-position-1.3.3-abort.plantuml │ │ │ │ ├── seq-position-1.3.3-abort.svg │ │ │ │ ├── seq-prepare-1.1.0.plantuml │ │ │ │ ├── seq-prepare-1.1.0.svg │ │ │ │ ├── seq-prepare-1.1.1.a.plantuml │ │ │ │ ├── seq-prepare-1.1.1.a.svg │ │ │ │ ├── seq-prepare-1.1.1.b.plantuml │ │ │ │ ├── seq-prepare-1.1.1.b.svg │ │ │ │ ├── seq-prepare-1.1.2.a.plantuml │ │ │ │ ├── seq-prepare-1.1.2.a.svg │ │ │ │ ├── seq-prepare-1.1.2.b.plantuml │ │ │ │ ├── seq-prepare-1.1.2.b.svg │ │ │ │ ├── seq-prepare-1.1.4.a-v1.1.plantuml │ │ │ │ ├── seq-prepare-1.1.4.a-v1.1.svg │ │ │ │ ├── seq-prepare-1.1.4.a.plantuml │ │ │ │ ├── seq-prepare-1.1.4.a.svg │ │ │ │ ├── seq-prepare-1.1.4.b.plantuml │ │ │ │ ├── seq-prepare-1.1.4.b.svg │ │ │ │ ├── seq-reject-2.2.0-v1.1.plantuml │ │ │ │ ├── seq-reject-2.2.0-v1.1.svg │ │ │ │ ├── seq-reject-2.2.0.a-v1.1.plantuml │ │ │ │ ├── seq-reject-2.2.0.a-v1.1.svg │ │ │ │ ├── seq-reject-2.2.0.a.plantuml │ │ │ │ ├── seq-reject-2.2.0.a.svg │ │ │ │ ├── seq-reject-2.2.0.plantuml │ │ │ │ ├── seq-reject-2.2.0.svg │ │ │ │ ├── seq-reject-2.2.1-v1.1.plantuml │ │ │ │ ├── seq-reject-2.2.1-v1.1.svg │ │ │ │ ├── seq-reject-2.2.1.plantuml │ │ │ │ ├── seq-reject-2.2.1.svg │ │ │ │ ├── seq-request-dup-check-9.1.1.plantuml │ │ │ │ ├── seq-request-dup-check-9.1.1.svg │ │ │ │ ├── seq-setmodel-2.1.2.plantuml │ │ │ │ ├── seq-setmodel-2.1.2.svg │ │ │ │ ├── seq-timeout-2.3.0.plantuml │ │ │ │ ├── seq-timeout-2.3.0.svg │ │ │ │ ├── seq-timeout-2.3.1.plantuml │ │ │ │ ├── seq-timeout-2.3.1.svg │ │ │ │ ├── seq-timeout-2.3.2.plantuml │ │ │ │ └── seq-timeout-2.3.2.svg │ │ └── transfers │ │ │ ├── 1.1.0-prepare-transfer-request.md │ │ │ ├── 1.1.1.a-prepare-handler-consume.md │ │ │ ├── 1.1.1.b-prepare-handler-consume.md │ │ │ ├── 1.1.2.a-position-handler-consume.md │ │ │ ├── 1.1.2.b-position-handler-consume.md │ │ │ ├── 1.1.4.a-send-notification-to-participant-v1.1.md │ │ │ ├── 1.1.4.a-send-notification-to-participant.md │ │ │ ├── 1.1.4.b-send-notification-to-participant.md │ │ │ ├── 1.3.0-position-handler-consume-v1.1.md │ │ │ ├── 1.3.0-position-handler-consume.md │ │ │ ├── 1.3.1-prepare-position-handler-consume.md │ │ │ ├── 1.3.2-fulfil-position-handler-consume-v1.1.md │ │ │ ├── 1.3.2-fulfil-position-handler-consume.md │ │ │ ├── 1.3.3-abort-position-handler-consume.md │ │ │ ├── 2.1.0-fulfil-transfer-request-v1.1.md │ │ │ ├── 2.1.0-fulfil-transfer-request.md │ │ │ ├── 2.1.1-fulfil-handler-consume-v1.1.md │ │ │ ├── 2.1.1-fulfil-handler-consume.md │ │ │ ├── 2.2.0-fulfil-reject-transfer-v1.1.md │ │ │ ├── 2.2.0-fulfil-reject-transfer.md │ │ │ ├── 2.2.0.a-fulfil-abort-transfer-v1.1.md │ │ │ ├── 2.2.0.a-fulfil-abort-transfer.md │ │ │ ├── 2.2.1-fulfil-reject-handler-v1.1.md │ │ │ ├── 2.2.1-fulfil-reject-handler.md │ │ │ ├── 2.3.0-transfer-timeout.md │ │ │ ├── 2.3.1-timeout-handler-consume.md │ │ │ └── README.md │ ├── central-settlements │ │ ├── .gitkeep │ │ ├── README.md │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── diagrams │ │ │ │ ├── Settlement_ERD.png │ │ │ │ └── architecture │ │ │ │ └── Arch-Mojaloop-Settlements-PI4.svg │ │ ├── funds-in-out │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ └── diagrams │ │ │ │ │ └── sequence │ │ │ │ │ ├── seq-recfunds-5.1.0.a-reconciliationTransferPrepare.plantuml │ │ │ │ │ ├── seq-recfunds-5.1.0.a-reconciliationTransferPrepare.svg │ │ │ │ │ ├── seq-recfunds-5.1.0.b-transferStateAndPositionChange.plantuml │ │ │ │ │ ├── seq-recfunds-5.1.0.b-transferStateAndPositionChange.svg │ │ │ │ │ ├── seq-recfunds-5.1.1-in.plantuml │ │ │ │ │ ├── seq-recfunds-5.1.1-in.svg │ │ │ │ │ ├── seq-recfunds-5.2.1-out-prepare-reserve.plantuml │ │ │ │ │ ├── seq-recfunds-5.2.1-out-prepare-reserve.svg │ │ │ │ │ ├── seq-recfunds-5.2.2-out-commit.plantuml │ │ │ │ │ ├── seq-recfunds-5.2.2-out-commit.svg │ │ │ │ │ ├── seq-recfunds-5.2.3-out-abort.plantuml │ │ │ │ │ └── seq-recfunds-5.2.3-out-abort.svg │ │ │ ├── funds-in-prepare-reserve-commit.md │ │ │ ├── funds-out-abort.md │ │ │ ├── funds-out-commit.md │ │ │ ├── funds-out-prepare-reserve.md │ │ │ ├── reconciliation-transfer-prepare.md │ │ │ └── transfer-state-and-position-change.md │ │ ├── oss-settlement-fsd.md │ │ └── settlement-process │ │ │ ├── README.md │ │ │ ├── assets │ │ │ ├── diagrams │ │ │ │ └── sequence │ │ │ │ │ ├── seq-gross-settlement-handler.plantuml │ │ │ │ │ ├── seq-gross-settlement-handler.svg │ │ │ │ │ ├── seq-rules-handler.plantuml │ │ │ │ │ ├── seq-rules-handler.svg │ │ │ │ │ ├── seq-settlement-6.2.1.plantuml │ │ │ │ │ ├── seq-settlement-6.2.1.svg │ │ │ │ │ ├── seq-settlement-6.2.2.plantuml │ │ │ │ │ ├── seq-settlement-6.2.2.svg │ │ │ │ │ ├── seq-settlement-6.2.3.plantuml │ │ │ │ │ ├── seq-settlement-6.2.3.svg │ │ │ │ │ ├── seq-settlement-6.2.4.plantuml │ │ │ │ │ ├── seq-settlement-6.2.4.svg │ │ │ │ │ ├── seq-settlement-6.2.5.plantuml │ │ │ │ │ ├── seq-settlement-6.2.5.svg │ │ │ │ │ ├── seq-settlement-6.2.6.plantuml │ │ │ │ │ ├── seq-settlement-6.2.6.svg │ │ │ │ │ ├── seq-setwindow-6.1.1.plantuml │ │ │ │ │ ├── seq-setwindow-6.1.1.svg │ │ │ │ │ ├── seq-setwindow-6.1.2.plantuml │ │ │ │ │ ├── seq-setwindow-6.1.2.svg │ │ │ │ │ ├── seq-setwindow-6.1.3.plantuml │ │ │ │ │ └── seq-setwindow-6.1.3.svg │ │ │ └── entities │ │ │ │ ├── central-settlements-db-schema-dbeaver.erd │ │ │ │ └── central-settlements-db-schema.png │ │ │ ├── get-settlement-by-id.md │ │ │ ├── get-settlement-by-spa.md │ │ │ ├── get-settlement-window-by-id.md │ │ │ ├── get-settlement-windows-by-params.md │ │ │ ├── get-settlements-by-params.md │ │ │ ├── gross-settlement-handler-consume.md │ │ │ ├── post-close-settlement-window.md │ │ │ ├── post-create-settlement.md │ │ │ ├── put-settlement-abort.md │ │ │ ├── put-settlement-transfer-ack.md │ │ │ └── rules-handler-consume.md │ ├── event-framework │ │ ├── README.md │ │ └── assets │ │ │ └── diagrams │ │ │ └── architecture │ │ │ ├── architecture-event-framework.svg │ │ │ ├── architecture-event-sidecar.svg │ │ │ └── architecture-event-trace.svg │ ├── event-stream-processor │ │ ├── README.md │ │ └── assets │ │ │ └── diagrams │ │ │ ├── architecture │ │ │ └── event-stream-processor-overview.svg │ │ │ └── sequence │ │ │ ├── process-flow.plantuml │ │ │ └── process-flow.svg │ ├── fraud-services │ │ ├── README.md │ │ └── related-documents │ │ │ └── documentation.md │ ├── ml-testing-toolkit │ │ └── README.md │ ├── overview │ │ ├── README.md │ │ ├── assets │ │ │ └── diagrams │ │ │ │ └── architecture │ │ │ │ ├── Arch-Mojaloop-overview-PI11.svg │ │ │ │ ├── Arch-Mojaloop-overview-PI12.svg │ │ │ │ ├── Arch-Mojaloop-overview-PI14.svg │ │ │ │ ├── Arch-Mojaloop-overview-PI3.svg │ │ │ │ ├── Arch-Mojaloop-overview-PI5.svg │ │ │ │ ├── Arch-Mojaloop-overview-PI6.svg │ │ │ │ ├── Arch-Mojaloop-overview-PI7.svg │ │ │ │ └── Arch-Mojaloop-overview-PI8.svg │ │ ├── components-PI11.md │ │ ├── components-PI12.md │ │ ├── components-PI14.md │ │ ├── components-PI3.md │ │ ├── components-PI5.md │ │ ├── components-PI6.md │ │ ├── components-PI7.md │ │ └── components-PI8.md │ ├── quoting-service │ │ ├── README.md │ │ ├── assets │ │ │ └── diagrams │ │ │ │ └── sequence │ │ │ │ ├── seq-get-bulk-quotes-2.1.0.plantuml │ │ │ │ ├── seq-get-bulk-quotes-2.1.0.svg │ │ │ │ ├── seq-get-quotes-1.1.0.plantuml │ │ │ │ ├── seq-get-quotes-1.1.0.svg │ │ │ │ ├── seq-post-bulk-quotes-2.2.0.plantuml │ │ │ │ ├── seq-post-bulk-quotes-2.2.0.svg │ │ │ │ ├── seq-post-quotes-1.2.0.plantuml │ │ │ │ ├── seq-post-quotes-1.2.0.svg │ │ │ │ ├── seq-quotes-1.0.0.plantuml │ │ │ │ ├── seq-quotes-1.0.0.svg │ │ │ │ ├── seq-quotes-overview-1.0.0.plantuml │ │ │ │ └── seq-quotes-overview-1.0.0.svg │ │ ├── qs-get-bulk-quotes.md │ │ ├── qs-get-quotes.md │ │ ├── qs-post-bulk-quotes.md │ │ └── qs-post-quotes.md │ ├── sdk-scheme-adapter │ │ ├── README.md │ │ └── usage │ │ │ ├── README.md │ │ │ ├── scheme-adapter-and-local-k8s │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ └── postman_files │ │ │ │ │ ├── Mojaloop-Local.postman_environment_modified.json │ │ │ │ │ └── OSS-Custom-FSP-Onboaring-SchemeAdapter-Setup.postman_collection.json │ │ │ └── scheme-adapter-and-local-k8s-overview.png │ │ │ ├── scheme-adapter-and-wso2-api-gateway │ │ │ ├── README.md │ │ │ └── scheme-adapter-and-wso2-api-gateway-overview.png │ │ │ └── scheme-adapter-to-scheme-adapter │ │ │ ├── README.md │ │ │ └── scheme-adapter-to-scheme-adapter-overview.png │ └── transaction-requests-service │ │ ├── README.md │ │ ├── assets │ │ └── diagrams │ │ │ └── sequence │ │ │ ├── seq-trx-req-authorizations-3.0.0.plantuml │ │ │ ├── seq-trx-req-authorizations-3.0.0.svg │ │ │ ├── seq-trx-req-service-1.0.0.plantuml │ │ │ ├── seq-trx-req-service-1.0.0.svg │ │ │ ├── seq-trx-req-service-get-2.0.0.plantuml │ │ │ ├── seq-trx-req-service-get-2.0.0.svg │ │ │ ├── trx-service-overview-spec.plantuml │ │ │ └── trx-service-overview-spec.svg │ │ ├── authorizations.md │ │ ├── transaction-requests-get.md │ │ └── transaction-requests-post.md ├── onboarding.md ├── package-lock.json ├── package.json ├── publish-gh-pages.sh ├── quality-security │ ├── assets │ │ ├── cqs_overview.drawio │ │ └── cqs_overview.svg │ ├── program-management │ │ ├── readme.md │ │ ├── scheme-rules-guidelines.md │ │ └── vulnerability-disclosure-procedure.md │ ├── readme.md │ ├── reference-implementation.md │ ├── snyk_investigation.md │ └── standards-guidelines │ │ ├── audit_logging_standard.md │ │ ├── log_analysis_report.md │ │ └── readme.md ├── repositories │ ├── README.md │ ├── assets │ │ └── diagrams │ │ │ └── helm │ │ │ ├── HelmChartOverview.png │ │ │ ├── HelmHierarchyRelationship.png │ │ │ └── HelmHierarchyValues.png │ ├── helm.md │ └── project.md └── scripts │ ├── _build_plantuml_all.sh │ ├── _build_plantuml_diff.sh │ └── _render_svg.js ├── markdownlint.yaml ├── package.json ├── scripts ├── _build_plantuml.sh ├── _deploy_preview_s3.sh ├── _render_svg.mjs └── _sync_sequence_puml.sh ├── tmp-regex.md └── website ├── README.md └── versioned_docs └── v1.0.1 ├── api ├── README.md ├── administration │ ├── README.md │ └── central-ledger-api.md ├── assets │ ├── figure1-platforms-layout.svg │ ├── scheme-rules-figure-1-http-timeout.png │ ├── scheme-rules-figure-2-callback-timeout.png │ └── sequence-diagram-figure-1.png ├── fspiop │ ├── README.md │ ├── definitions.md │ ├── generic-transaction-patterns.md │ ├── glossary.md │ ├── json-binding-rules.md │ ├── logical-data-model.md │ ├── pki-best-practices.md │ ├── sandbox.md │ ├── scheme-rules.md │ ├── use-cases.md │ ├── v1.0 │ │ ├── README.md │ │ └── api-definition.md │ └── v1.1 │ │ ├── api-definition.md │ │ ├── encryption.md │ │ └── signature.md ├── settlement │ └── README.md └── thirdparty │ ├── README.md │ ├── _sync_docs.sh │ ├── assets │ ├── README.md │ ├── _build_plantuml_all.sh │ ├── _build_plantuml_diff.sh │ ├── _render_svg.js │ └── diagrams │ │ ├── linking │ │ ├── 0-pre-linking.puml │ │ ├── 0-pre-linking.svg │ │ ├── 1-discovery.puml │ │ ├── 1-discovery.svg │ │ ├── 2-request-consent-otp.puml │ │ ├── 2-request-consent-otp.svg │ │ ├── 2-request-consent-web.puml │ │ ├── 2-request-consent-web.svg │ │ ├── 3-authentication-otp.puml │ │ ├── 3-authentication-otp.svg │ │ ├── 3-authentication-third-party-fido.puml │ │ ├── 3-authentication-third-party-fido.svg │ │ ├── 3-authentication-web.puml │ │ ├── 3-authentication-web.svg │ │ ├── 4-grant-consent.puml │ │ ├── 4-grant-consent.svg │ │ ├── 5a-credential-registration.puml │ │ ├── 5a-credential-registration.svg │ │ ├── 5b-finalize_consent.puml │ │ ├── 5b-finalize_consent.svg │ │ ├── 6a-unlinking-dfsp-hosted.puml │ │ ├── 6a-unlinking-dfsp-hosted.svg │ │ ├── 6b-unlinking-hub-hosted.puml │ │ ├── 6b-unlinking-hub-hosted.svg │ │ └── error_scenarios │ │ │ ├── 1-discovery-error.puml │ │ │ ├── 1-discovery-error.svg │ │ │ ├── 2-request-consent-error.puml │ │ │ ├── 2-request-consent-error.svg │ │ │ ├── 3-authentication-otp-invalid.puml │ │ │ ├── 3-authentication-otp-invalid.svg │ │ │ ├── 4-grant-consent-scope-error.puml │ │ │ └── 4-grant-consent-scope-error.svg │ │ └── transfer │ │ ├── 1-1-discovery.puml │ │ ├── 1-1-discovery.svg │ │ ├── 1-2-1-agreement.puml │ │ ├── 1-2-1-agreement.svg │ │ ├── 1-2-2-authorization.puml │ │ ├── 1-2-2-authorization.svg │ │ ├── 1-2-3-rejected-authorization.puml │ │ ├── 1-2-3-rejected-authorization.svg │ │ ├── 1-2-3-signed-authorization-fido.puml │ │ ├── 1-2-3-signed-authorization-fido.svg │ │ ├── 1-2-3-signed-authorization-generic.puml │ │ ├── 1-2-3-signed-authorization-generic.svg │ │ ├── 1-2-4-verify-authorization.puml │ │ ├── 1-2-4-verify-authorization.svg │ │ ├── 1-3-transfer.puml │ │ ├── 1-3-transfer.svg │ │ ├── 3-2-1-bad-tx-request.puml │ │ ├── 3-2-1-bad-tx-request.svg │ │ ├── 3-3-1-bad-quote-request.puml │ │ ├── 3-3-1-bad-quote-request.svg │ │ ├── 3-3-2-bad-transfer-request.puml │ │ ├── 3-3-2-bad-transfer-request.svg │ │ ├── 3-4-1-bad-signed-challenge-self-hosted.puml │ │ ├── 3-4-1-bad-signed-challenge-self-hosted.svg │ │ ├── 3-4-2-bad-signed-challenge-auth-service.puml │ │ ├── 3-4-2-bad-signed-challenge-auth-service.svg │ │ ├── 3-6-tpr-timeout.puml │ │ ├── 3-6-tpr-timeout.svg │ │ ├── get_transaction_request.puml │ │ └── get_transaction_request.svg │ ├── data-models.md │ ├── thirdparty-dfsp-v1.0.yaml │ ├── thirdparty-pisp-v1.0.yaml │ ├── transaction-patterns-linking.md │ ├── transaction-patterns-transfer.md │ └── transaction-patterns.md ├── community ├── README.md ├── archive │ ├── discussion-docs │ │ ├── Mojaloop Performance 2020.pdf │ │ ├── README.md │ │ ├── aws_tagging.md │ │ ├── code-improvement.md │ │ ├── cross-border-day-1.md │ │ ├── cross-border-day-2.md │ │ ├── cross-border.md │ │ ├── images │ │ │ ├── cb_board_1.jpg │ │ │ ├── cb_board_2.jpg │ │ │ ├── cb_board_3.jpg │ │ │ ├── mojaloop_spokes.png │ │ │ ├── tagging_01.png │ │ │ ├── tagging_02.png │ │ │ ├── tagging_03.png │ │ │ ├── tagging_04.png │ │ │ ├── tagging_05.png │ │ │ └── tagging_06.png │ │ ├── iso-integration.md │ │ ├── mojaloop-decimal.md │ │ ├── performance-project.md │ │ ├── psip-project.md │ │ ├── versioning-draft-proposal.md │ │ └── workbench.md │ └── notes │ │ ├── README.md │ │ ├── ccb-notes.md │ │ ├── da-notes.md │ │ └── scrum-of-scrum-notes.md ├── assets │ └── cla │ │ ├── admin_configure.png │ │ ├── admin_sign_in.png │ │ ├── cla_1.png │ │ ├── cla_2_1.png │ │ ├── cla_2_2.png │ │ └── cla_3.png ├── contributing │ ├── code-of-conduct.md │ ├── contributors-guide.md │ ├── new-contributor-checklist.md │ └── signing-the-cla.md ├── documentation │ ├── api-documentation.md │ ├── standards.md │ └── style-guide.md ├── faqs.md ├── mojaloop-publications.md ├── mojaloop-roadmap.md ├── standards │ ├── creating-new-features.md │ ├── guide.md │ ├── triaging-bugs.md │ └── versioning.md └── tools │ ├── assets │ └── images │ │ ├── ci_cd_lib_master.png │ │ ├── ci_cd_lib_pr.png │ │ ├── ci_cd_lib_tag.png │ │ ├── ci_cd_svc_master.png │ │ ├── ci_cd_svc_pr.png │ │ └── ci_cd_svc_tag.png │ ├── automated-testing.md │ ├── ci_cd_pipelines.md │ ├── code-quality-metrics.md │ ├── pragmatic-rest.md │ └── tools-and-technologies.md ├── getting-started ├── README.md ├── demo-one.md ├── demo.md ├── faqs.md ├── general-faqs.md ├── quickstart-one.md ├── quickstart-two.md ├── quickstart.md └── technical-faqs.md ├── index.md ├── quickstarts ├── README.md ├── one.md └── two.md ├── sidebar.config.json └── technical ├── README.md ├── account-lookup-service ├── README.md ├── als-admin-del-oracles.md ├── als-admin-get-oracles.md ├── als-admin-post-oracles.md ├── als-admin-put-oracles.md ├── als-del-endpoint.md ├── als-del-participants.md ├── als-get-participants.md ├── als-get-parties.md ├── als-post-participants-batch.md ├── als-post-participants.md └── assets │ ├── .gitkeep │ ├── diagrams │ ├── architecture │ │ ├── arch-flow-account-lookup-admin.svg │ │ ├── arch-flow-account-lookup-participants.svg │ │ └── arch-flow-account-lookup-parties.svg │ └── sequence │ │ ├── seq-acct-lookup-admin-delete-oracle-7.3.4.puml │ │ ├── seq-acct-lookup-admin-delete-oracle-7.3.4.svg │ │ ├── seq-acct-lookup-admin-get-oracle-7.3.1.puml │ │ ├── seq-acct-lookup-admin-get-oracle-7.3.1.svg │ │ ├── seq-acct-lookup-admin-post-oracle-7.3.2.puml │ │ ├── seq-acct-lookup-admin-post-oracle-7.3.2.svg │ │ ├── seq-acct-lookup-admin-put-oracle-7.3.3.puml │ │ ├── seq-acct-lookup-admin-put-oracle-7.3.3.svg │ │ ├── seq-acct-lookup-del-endpoint-cache-7.3.0.puml │ │ ├── seq-acct-lookup-del-endpoint-cache-7.3.0.svg │ │ ├── seq-acct-lookup-del-participants-7.1.2.plantuml │ │ ├── seq-acct-lookup-del-participants-7.1.2.svg │ │ ├── seq-acct-lookup-get-participants-7.1.0.plantuml │ │ ├── seq-acct-lookup-get-participants-7.1.0.svg │ │ ├── seq-acct-lookup-get-parties-7.2.0.plantuml │ │ ├── seq-acct-lookup-get-parties-7.2.0.svg │ │ ├── seq-acct-lookup-post-participants-7.1.3.plantuml │ │ ├── seq-acct-lookup-post-participants-7.1.3.svg │ │ ├── seq-acct-lookup-post-participants-batch-7.1.1.plantuml │ │ └── seq-acct-lookup-post-participants-batch-7.1.1.svg │ └── entities │ ├── AccountLookup-ddl-MySQLWorkbench.sql │ ├── AccountLookupDB-schema-DBeaver.erd │ └── AccountLookupService-schema.png ├── assets └── diagrams │ └── architecture │ ├── Arch-Mojaloop-end-to-end-PI5.svg │ ├── Arch-Mojaloop-end-to-end-PI6.svg │ ├── Arch-Mojaloop-end-to-end-simple.svg │ └── central_ledger_block_diagram.png ├── central-event-processor ├── README.md ├── assets │ └── diagrams │ │ ├── architecture │ │ └── CEPArchTechOverview.svg │ │ └── sequence │ │ ├── seq-event-9.1.0.plantuml │ │ ├── seq-event-9.1.0.svg │ │ ├── seq-notification-reject-5.1.1.plantuml │ │ ├── seq-notification-reject-5.1.1.svg │ │ ├── seq-signature-validation.plantuml │ │ └── seq-signature-validation.svg ├── event-handler-placeholder.md ├── notification-handler-for-rejections.md └── signature-validation.md ├── event-framework ├── README.md └── assets │ └── diagrams │ └── architecture │ ├── architecture-event-framework.svg │ ├── architecture-event-sidecar.svg │ └── architecture-event-trace.svg ├── event-stream-processor ├── README.md └── assets │ └── diagrams │ ├── architecture │ └── event-stream-processor-overview.svg │ └── sequence │ ├── process-flow.plantuml │ └── process-flow.svg ├── faqs.md ├── fraud-services ├── README.md └── related-documents │ └── documentation.md ├── ml-testing-toolkit └── README.md ├── overview ├── README.md ├── assets │ └── diagrams │ │ └── architecture │ │ ├── Arch-Mojaloop-overview-PI11.svg │ │ ├── Arch-Mojaloop-overview-PI12.svg │ │ ├── Arch-Mojaloop-overview-PI14.svg │ │ ├── Arch-Mojaloop-overview-PI3.svg │ │ ├── Arch-Mojaloop-overview-PI5.svg │ │ ├── Arch-Mojaloop-overview-PI6.svg │ │ ├── Arch-Mojaloop-overview-PI7.svg │ │ └── Arch-Mojaloop-overview-PI8.svg ├── components-PI11.md ├── components-PI12.md ├── components-PI14.md ├── components-PI3.md ├── components-PI5.md ├── components-PI6.md ├── components-PI7.md └── components-PI8.md ├── quoting-service ├── README.md ├── assets │ └── diagrams │ │ └── sequence │ │ ├── seq-get-bulk-quotes-2.1.0.plantuml │ │ ├── seq-get-bulk-quotes-2.1.0.svg │ │ ├── seq-get-quotes-1.1.0.plantuml │ │ ├── seq-get-quotes-1.1.0.svg │ │ ├── seq-post-bulk-quotes-2.2.0.plantuml │ │ ├── seq-post-bulk-quotes-2.2.0.svg │ │ ├── seq-post-quotes-1.2.0.plantuml │ │ ├── seq-post-quotes-1.2.0.svg │ │ ├── seq-quotes-1.0.0.plantuml │ │ ├── seq-quotes-1.0.0.svg │ │ ├── seq-quotes-overview-1.0.0.plantuml │ │ └── seq-quotes-overview-1.0.0.svg ├── qs-get-bulk-quotes.md ├── qs-get-quotes.md ├── qs-post-bulk-quotes.md └── qs-post-quotes.md ├── sdk-scheme-adapter ├── README.md └── usage │ ├── README.md │ ├── scheme-adapter-and-local-k8s │ ├── README.md │ ├── assets │ │ └── postman_files │ │ │ ├── Mojaloop-Local.postman_environment_modified.json │ │ │ └── OSS-Custom-FSP-Onboaring-SchemeAdapter-Setup.postman_collection.json │ └── scheme-adapter-and-local-k8s-overview.png │ ├── scheme-adapter-and-wso2-api-gateway │ ├── README.md │ └── scheme-adapter-and-wso2-api-gateway-overview.png │ └── scheme-adapter-to-scheme-adapter │ ├── README.md │ └── scheme-adapter-to-scheme-adapter-overview.png └── transaction-requests-service ├── README.md ├── assets └── diagrams │ └── sequence │ ├── seq-trx-req-authorizations-3.0.0.plantuml │ ├── seq-trx-req-authorizations-3.0.0.svg │ ├── seq-trx-req-service-1.0.0.plantuml │ ├── seq-trx-req-service-1.0.0.svg │ ├── seq-trx-req-service-get-2.0.0.plantuml │ ├── seq-trx-req-service-get-2.0.0.svg │ ├── trx-service-overview-spec.plantuml │ └── trx-service-overview-spec.svg ├── authorizations.md ├── transaction-requests-get.md └── transaction-requests-post.md /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/.husky/post-commit -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.ncurc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/.ncurc.yaml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.15.0 -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/README.md -------------------------------------------------------------------------------- /contributing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/contributing-guide.md -------------------------------------------------------------------------------- /docs/.vuepress/components/Foo/Bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/components/Foo/Bar.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo-component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/components/demo-component.vue -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/enhanceApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/enhanceApp.js -------------------------------------------------------------------------------- /docs/.vuepress/public/BizOps-Framework-BizOps-Framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/BizOps-Framework-BizOps-Framework.png -------------------------------------------------------------------------------- /docs/.vuepress/public/BizOps-Framework-Micro-frontend-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/BizOps-Framework-Micro-frontend-deploy.png -------------------------------------------------------------------------------- /docs/.vuepress/public/BizOps-Framework-Security-BC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/BizOps-Framework-Security-BC.png -------------------------------------------------------------------------------- /docs/.vuepress/public/BizOps-Framework-Settlements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/BizOps-Framework-Settlements.png -------------------------------------------------------------------------------- /docs/.vuepress/public/BusinessFlowView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/BusinessFlowView.png -------------------------------------------------------------------------------- /docs/.vuepress/public/PM4ML_system_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/PM4ML_system_architecture.png -------------------------------------------------------------------------------- /docs/.vuepress/public/Reporting-&-Auditing-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/Reporting-&-Auditing-Overview.png -------------------------------------------------------------------------------- /docs/.vuepress/public/RestReportingArchitecture.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/RestReportingArchitecture.drawio.png -------------------------------------------------------------------------------- /docs/.vuepress/public/TLS_connection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/TLS_connection.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/action_add_withdraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/action_add_withdraw.png -------------------------------------------------------------------------------- /docs/.vuepress/public/action_change_net_debit_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/action_change_net_debit_cap.png -------------------------------------------------------------------------------- /docs/.vuepress/public/action_update_ndc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/action_update_ndc.png -------------------------------------------------------------------------------- /docs/.vuepress/public/add_withdraw_funds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/add_withdraw_funds.png -------------------------------------------------------------------------------- /docs/.vuepress/public/change_mgmt_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/change_mgmt_flow.png -------------------------------------------------------------------------------- /docs/.vuepress/public/check_settlement_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/check_settlement_details.png -------------------------------------------------------------------------------- /docs/.vuepress/public/client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/client.png -------------------------------------------------------------------------------- /docs/.vuepress/public/clientgraphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/clientgraphql.png -------------------------------------------------------------------------------- /docs/.vuepress/public/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/close.png -------------------------------------------------------------------------------- /docs/.vuepress/public/confirm_action_add_withdraw_funds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/confirm_action_add_withdraw_funds.png -------------------------------------------------------------------------------- /docs/.vuepress/public/confirm_action_update_ndc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/confirm_action_update_ndc.png -------------------------------------------------------------------------------- /docs/.vuepress/public/defect_triage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/defect_triage.png -------------------------------------------------------------------------------- /docs/.vuepress/public/dfsp_financial_positions_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/dfsp_financial_positions_2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/disable_dfsp_position_ledger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/disable_dfsp_position_ledger.png -------------------------------------------------------------------------------- /docs/.vuepress/public/enable_dfsp_position_ledger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/enable_dfsp_position_ledger.png -------------------------------------------------------------------------------- /docs/.vuepress/public/finalise_settlement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/finalise_settlement.png -------------------------------------------------------------------------------- /docs/.vuepress/public/finalising_settlement_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/finalising_settlement_popup.png -------------------------------------------------------------------------------- /docs/.vuepress/public/find_transfers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/find_transfers.png -------------------------------------------------------------------------------- /docs/.vuepress/public/frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/frontend.png -------------------------------------------------------------------------------- /docs/.vuepress/public/implement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/implement.png -------------------------------------------------------------------------------- /docs/.vuepress/public/incident_mgmt_single_image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/incident_mgmt_single_image.jpeg -------------------------------------------------------------------------------- /docs/.vuepress/public/incident_mgmt_single_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/incident_mgmt_single_image.png -------------------------------------------------------------------------------- /docs/.vuepress/public/mes_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/mes_portal.png -------------------------------------------------------------------------------- /docs/.vuepress/public/mes_portal_request_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/mes_portal_request_types.png -------------------------------------------------------------------------------- /docs/.vuepress/public/mes_report_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/mes_report_bug.png -------------------------------------------------------------------------------- /docs/.vuepress/public/mes_technical_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/mes_technical_support.png -------------------------------------------------------------------------------- /docs/.vuepress/public/microfrontendloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/microfrontendloading.png -------------------------------------------------------------------------------- /docs/.vuepress/public/mlns_position_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/mlns_position_popup.png -------------------------------------------------------------------------------- /docs/.vuepress/public/mojaloop-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/mojaloop-sdk.png -------------------------------------------------------------------------------- /docs/.vuepress/public/mojaloop_logo_med copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/mojaloop_logo_med copy 2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/mojaloop_logo_med copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/mojaloop_logo_med copy.png -------------------------------------------------------------------------------- /docs/.vuepress/public/mojaloop_logo_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/mojaloop_logo_med.png -------------------------------------------------------------------------------- /docs/.vuepress/public/mttr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/mttr.png -------------------------------------------------------------------------------- /docs/.vuepress/public/plan_approve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/plan_approve.png -------------------------------------------------------------------------------- /docs/.vuepress/public/portal_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/portal_login.png -------------------------------------------------------------------------------- /docs/.vuepress/public/problem_mgmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/problem_mgmt.png -------------------------------------------------------------------------------- /docs/.vuepress/public/raise_rfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/raise_rfc.png -------------------------------------------------------------------------------- /docs/.vuepress/public/release_mgmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/release_mgmt.png -------------------------------------------------------------------------------- /docs/.vuepress/public/release_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/release_process.png -------------------------------------------------------------------------------- /docs/.vuepress/public/release_service_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/release_service_components.png -------------------------------------------------------------------------------- /docs/.vuepress/public/review_authorize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/review_authorize.png -------------------------------------------------------------------------------- /docs/.vuepress/public/rolepermissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/rolepermissions.png -------------------------------------------------------------------------------- /docs/.vuepress/public/security_incident_process.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/security_incident_process.jpeg -------------------------------------------------------------------------------- /docs/.vuepress/public/security_incident_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/security_incident_process.png -------------------------------------------------------------------------------- /docs/.vuepress/public/security_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/security_overview.png -------------------------------------------------------------------------------- /docs/.vuepress/public/settlementProcessAPI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/settlementProcessAPI.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/settlementProcessFinaliseErrors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/settlementProcessFinaliseErrors.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/settlementProcessInitiationErrors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/settlementProcessInitiationErrors.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/settlement_details_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/settlement_details_popup.png -------------------------------------------------------------------------------- /docs/.vuepress/public/settlement_processing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/settlement_processing.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/settlement_window_mgmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/settlement_window_mgmt.png -------------------------------------------------------------------------------- /docs/.vuepress/public/settlement_window_mgmt_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/settlement_window_mgmt_close.png -------------------------------------------------------------------------------- /docs/.vuepress/public/settlement_window_mgmt_selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/settlement_window_mgmt_selector.png -------------------------------------------------------------------------------- /docs/.vuepress/public/settlement_window_mgmt_settle_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/settlement_window_mgmt_settle_button.png -------------------------------------------------------------------------------- /docs/.vuepress/public/settlement_window_settlement_submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/settlement_window_settlement_submitted.png -------------------------------------------------------------------------------- /docs/.vuepress/public/transfer_details_quote_parties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/transfer_details_quote_parties.png -------------------------------------------------------------------------------- /docs/.vuepress/public/transfer_details_quote_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/transfer_details_quote_request.png -------------------------------------------------------------------------------- /docs/.vuepress/public/transfer_details_quote_responses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/transfer_details_quote_responses.png -------------------------------------------------------------------------------- /docs/.vuepress/public/transfer_details_transfer_fulfilments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/transfer_details_transfer_fulfilments.png -------------------------------------------------------------------------------- /docs/.vuepress/public/transfer_details_transfer_participants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/transfer_details_transfer_participants.png -------------------------------------------------------------------------------- /docs/.vuepress/public/transfer_details_transfer_prepares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/transfer_details_transfer_prepares.png -------------------------------------------------------------------------------- /docs/.vuepress/public/transfer_details_transfer_state_changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/transfer_details_transfer_state_changes.png -------------------------------------------------------------------------------- /docs/.vuepress/public/update_participant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/update_participant.png -------------------------------------------------------------------------------- /docs/.vuepress/public/userroles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/public/userroles.png -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/CHANGELOG.md -------------------------------------------------------------------------------- /docs/.vuepress/theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/LICENSE -------------------------------------------------------------------------------- /docs/.vuepress/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/README.md -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/AlgoliaSearchBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/AlgoliaSearchBox.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/ContentSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/ContentSidebar.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/ContentSidebarButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/ContentSidebarButton.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/ContentSidebarLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/ContentSidebarLink.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/DropdownLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/DropdownLink.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/DropdownTransition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/DropdownTransition.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/Footer.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/Home.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/NavLink.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/NavLinks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/NavLinks.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/Navbar.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/Page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/Page.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/PageEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/PageEdit.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/PageNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/PageNav.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/PreviewBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/PreviewBanner.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/SearchBoxWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/SearchBoxWrapper.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/Sidebar.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/SidebarArrow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/SidebarArrow.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/SidebarButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/SidebarButton.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/SidebarGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/SidebarGroup.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/SidebarLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/SidebarLink.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/components/SidebarLinks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/components/SidebarLinks.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/global-components/AppHeading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/global-components/AppHeading.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/global-components/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/global-components/Badge.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/index.js -------------------------------------------------------------------------------- /docs/.vuepress/theme/layouts/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/layouts/404.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/layouts/GlobalLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/layouts/GlobalLayout.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/layouts/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/layouts/Layout.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/noopModule.js: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /docs/.vuepress/theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/package.json -------------------------------------------------------------------------------- /docs/.vuepress/theme/plugins/smoothScroll/appHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/plugins/smoothScroll/appHeading.js -------------------------------------------------------------------------------- /docs/.vuepress/theme/plugins/smoothScroll/enhanceApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/plugins/smoothScroll/enhanceApp.js -------------------------------------------------------------------------------- /docs/.vuepress/theme/plugins/smoothScroll/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/plugins/smoothScroll/index.js -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/arrow.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/styles/arrow.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/code.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/styles/code.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/colors.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/styles/colors.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/custom-blocks.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/styles/custom-blocks.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/mobile.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/styles/mobile.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/nprogress.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/styles/nprogress.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/styles/palette.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/table.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/styles/table.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/theme.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/styles/theme.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/toc.styl: -------------------------------------------------------------------------------- 1 | .table-of-contents 2 | .badge 3 | vertical-align middle 4 | -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/wrapper.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/styles/wrapper.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/templates/ssr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/templates/ssr.html -------------------------------------------------------------------------------- /docs/.vuepress/theme/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/.vuepress/theme/util/index.js -------------------------------------------------------------------------------- /docs/.vuepress/versions.json: -------------------------------------------------------------------------------- 1 | [ 2 | "v1.0.1" 3 | ] -------------------------------------------------------------------------------- /docs/adoption/HubOperations/Onboarding/business-onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/Onboarding/business-onboarding.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/Onboarding/onboarding-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/Onboarding/onboarding-introduction.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/Onboarding/technical-onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/Onboarding/technical-onboarding.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/Portalv2/accessing-the-portal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/Portalv2/accessing-the-portal.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/Portalv2/managing-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/Portalv2/managing-windows.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/Portalv2/recording-funds-in-out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/Portalv2/recording-funds-in-out.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/Portalv2/settling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/Portalv2/settling.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/Portalv2/updating-ndc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/Portalv2/updating-ndc.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/RBAC/Role-based-access-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/RBAC/Role-based-access-control.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/Settlement/ledgers-in-the-hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/Settlement/ledgers-in-the-hub.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/TechOps/change-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/TechOps/change-management.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/TechOps/defect-triage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/TechOps/defect-triage.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/TechOps/incident-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/TechOps/incident-management.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/TechOps/key-terms-kpis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/TechOps/key-terms-kpis.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/TechOps/problem-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/TechOps/problem-management.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/TechOps/release-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/TechOps/release-management.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/TechOps/service-level-agreements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/TechOps/service-level-agreements.md -------------------------------------------------------------------------------- /docs/adoption/HubOperations/TechOps/tech-ops-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/HubOperations/TechOps/tech-ops-introduction.md -------------------------------------------------------------------------------- /docs/adoption/Scheme/platform-operating-guideline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/Scheme/platform-operating-guideline.md -------------------------------------------------------------------------------- /docs/adoption/Scheme/scheme-business-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/Scheme/scheme-business-rules.md -------------------------------------------------------------------------------- /docs/adoption/Scheme/scheme-key-choices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/Scheme/scheme-key-choices.md -------------------------------------------------------------------------------- /docs/adoption/Scheme/scheme-participation-agreement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/Scheme/scheme-participation-agreement.md -------------------------------------------------------------------------------- /docs/adoption/Scheme/scheme-uniform-glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/Scheme/scheme-uniform-glossary.md -------------------------------------------------------------------------------- /docs/adoption/assets/cla/admin_configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/assets/cla/admin_configure.png -------------------------------------------------------------------------------- /docs/adoption/assets/cla/admin_sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/assets/cla/admin_sign_in.png -------------------------------------------------------------------------------- /docs/adoption/assets/cla/cla_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/assets/cla/cla_1.png -------------------------------------------------------------------------------- /docs/adoption/assets/cla/cla_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/assets/cla/cla_2_1.png -------------------------------------------------------------------------------- /docs/adoption/assets/cla/cla_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/assets/cla/cla_2_2.png -------------------------------------------------------------------------------- /docs/adoption/assets/cla/cla_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/assets/cla/cla_3.png -------------------------------------------------------------------------------- /docs/adoption/guides/Role-based-access-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/guides/Role-based-access-control.md -------------------------------------------------------------------------------- /docs/adoption/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/adoption/index.md -------------------------------------------------------------------------------- /docs/community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/README.md -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/README.md -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/aws_tagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/aws_tagging.md -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/code-improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/code-improvement.md -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/cross-border-day-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/cross-border-day-1.md -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/cross-border-day-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/cross-border-day-2.md -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/cross-border.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/cross-border.md -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/images/cb_board_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/images/cb_board_1.jpg -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/images/cb_board_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/images/cb_board_2.jpg -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/images/cb_board_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/images/cb_board_3.jpg -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/images/mojaloop_spokes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/images/mojaloop_spokes.png -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/images/tagging_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/images/tagging_01.png -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/images/tagging_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/images/tagging_02.png -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/images/tagging_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/images/tagging_03.png -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/images/tagging_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/images/tagging_04.png -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/images/tagging_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/images/tagging_05.png -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/images/tagging_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/images/tagging_06.png -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/iso-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/iso-integration.md -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/mojaloop-decimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/mojaloop-decimal.md -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/performance-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/performance-project.md -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/psip-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/psip-project.md -------------------------------------------------------------------------------- /docs/community/archive/discussion-docs/workbench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/discussion-docs/workbench.md -------------------------------------------------------------------------------- /docs/community/archive/notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/notes/README.md -------------------------------------------------------------------------------- /docs/community/archive/notes/ccb-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/notes/ccb-notes.md -------------------------------------------------------------------------------- /docs/community/archive/notes/da-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/notes/da-notes.md -------------------------------------------------------------------------------- /docs/community/archive/notes/scrum-of-scrum-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/archive/notes/scrum-of-scrum-notes.md -------------------------------------------------------------------------------- /docs/community/assets/cla/admin_configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/assets/cla/admin_configure.png -------------------------------------------------------------------------------- /docs/community/assets/cla/admin_sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/assets/cla/admin_sign_in.png -------------------------------------------------------------------------------- /docs/community/assets/cla/cla_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/assets/cla/cla_1.png -------------------------------------------------------------------------------- /docs/community/assets/cla/cla_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/assets/cla/cla_2_1.png -------------------------------------------------------------------------------- /docs/community/assets/cla/cla_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/assets/cla/cla_2_2.png -------------------------------------------------------------------------------- /docs/community/assets/cla/cla_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/assets/cla/cla_3.png -------------------------------------------------------------------------------- /docs/community/contributing/assets/critical-change-process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/contributing/assets/critical-change-process.jpg -------------------------------------------------------------------------------- /docs/community/contributing/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/contributing/code-of-conduct.md -------------------------------------------------------------------------------- /docs/community/contributing/consequential-change-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/contributing/consequential-change-process.md -------------------------------------------------------------------------------- /docs/community/contributing/contributors-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/contributing/contributors-guide.md -------------------------------------------------------------------------------- /docs/community/contributing/critical-change-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/contributing/critical-change-process.md -------------------------------------------------------------------------------- /docs/community/contributing/cvd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/contributing/cvd.md -------------------------------------------------------------------------------- /docs/community/contributing/design-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/contributing/design-review.md -------------------------------------------------------------------------------- /docs/community/contributing/new-contributor-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/contributing/new-contributor-checklist.md -------------------------------------------------------------------------------- /docs/community/contributing/product-engineering-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/contributing/product-engineering-process.md -------------------------------------------------------------------------------- /docs/community/contributing/signing-the-cla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/contributing/signing-the-cla.md -------------------------------------------------------------------------------- /docs/community/documentation/api-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/documentation/api-documentation.md -------------------------------------------------------------------------------- /docs/community/documentation/standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/documentation/standards.md -------------------------------------------------------------------------------- /docs/community/documentation/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/documentation/style-guide.md -------------------------------------------------------------------------------- /docs/community/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/faqs.md -------------------------------------------------------------------------------- /docs/community/mojaloop-publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/mojaloop-publications.md -------------------------------------------------------------------------------- /docs/community/mojaloop-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/mojaloop-roadmap.md -------------------------------------------------------------------------------- /docs/community/standards/creating-new-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/standards/creating-new-features.md -------------------------------------------------------------------------------- /docs/community/standards/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/standards/guide.md -------------------------------------------------------------------------------- /docs/community/standards/invariants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/standards/invariants.md -------------------------------------------------------------------------------- /docs/community/standards/triaging-bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/standards/triaging-bugs.md -------------------------------------------------------------------------------- /docs/community/standards/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/standards/versioning.md -------------------------------------------------------------------------------- /docs/community/tools/assets/images/ci_cd_lib_master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/assets/images/ci_cd_lib_master.png -------------------------------------------------------------------------------- /docs/community/tools/assets/images/ci_cd_lib_pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/assets/images/ci_cd_lib_pr.png -------------------------------------------------------------------------------- /docs/community/tools/assets/images/ci_cd_lib_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/assets/images/ci_cd_lib_tag.png -------------------------------------------------------------------------------- /docs/community/tools/assets/images/ci_cd_svc_master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/assets/images/ci_cd_svc_master.png -------------------------------------------------------------------------------- /docs/community/tools/assets/images/ci_cd_svc_pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/assets/images/ci_cd_svc_pr.png -------------------------------------------------------------------------------- /docs/community/tools/assets/images/ci_cd_svc_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/assets/images/ci_cd_svc_tag.png -------------------------------------------------------------------------------- /docs/community/tools/assets/images/mojaloop_security_layers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/assets/images/mojaloop_security_layers.jpg -------------------------------------------------------------------------------- /docs/community/tools/automated-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/automated-testing.md -------------------------------------------------------------------------------- /docs/community/tools/ci_cd_pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/ci_cd_pipelines.md -------------------------------------------------------------------------------- /docs/community/tools/code-quality-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/code-quality-metrics.md -------------------------------------------------------------------------------- /docs/community/tools/cybersecurity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/cybersecurity.md -------------------------------------------------------------------------------- /docs/community/tools/pragmatic-rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/pragmatic-rest.md -------------------------------------------------------------------------------- /docs/community/tools/test.md: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /docs/community/tools/tools-and-technologies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/community/tools/tools-and-technologies.md -------------------------------------------------------------------------------- /docs/getting-started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/README.md -------------------------------------------------------------------------------- /docs/getting-started/demo-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/demo-one.md -------------------------------------------------------------------------------- /docs/getting-started/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/demo.md -------------------------------------------------------------------------------- /docs/getting-started/demos/financial-inclusion-101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/demos/financial-inclusion-101.md -------------------------------------------------------------------------------- /docs/getting-started/demos/inside-the-loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/demos/inside-the-loop.md -------------------------------------------------------------------------------- /docs/getting-started/demos/mojaloop-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/demos/mojaloop-overview.md -------------------------------------------------------------------------------- /docs/getting-started/demos/what-is-rtp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/demos/what-is-rtp.md -------------------------------------------------------------------------------- /docs/getting-started/demos/why-mojaloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/demos/why-mojaloop.md -------------------------------------------------------------------------------- /docs/getting-started/demos/working-with-mojaloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/demos/working-with-mojaloop.md -------------------------------------------------------------------------------- /docs/getting-started/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/faqs.md -------------------------------------------------------------------------------- /docs/getting-started/general-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/general-faqs.md -------------------------------------------------------------------------------- /docs/getting-started/installation/installing-mojaloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/installation/installing-mojaloop.md -------------------------------------------------------------------------------- /docs/getting-started/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/license.md -------------------------------------------------------------------------------- /docs/getting-started/quickstart-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/quickstart-one.md -------------------------------------------------------------------------------- /docs/getting-started/quickstart-two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/quickstart-two.md -------------------------------------------------------------------------------- /docs/getting-started/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/quickstart.md -------------------------------------------------------------------------------- /docs/getting-started/technical-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/getting-started/technical-faqs.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/product/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/README.md -------------------------------------------------------------------------------- /docs/product/features/ComplexXB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/ComplexXB.svg -------------------------------------------------------------------------------- /docs/product/features/CrossBorder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/CrossBorder.md -------------------------------------------------------------------------------- /docs/product/features/CurrencyConversion/FXAPI_Discovery.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/CurrencyConversion/FXAPI_Discovery.plantuml -------------------------------------------------------------------------------- /docs/product/features/CurrencyConversion/FXAPI_Discovery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/CurrencyConversion/FXAPI_Discovery.svg -------------------------------------------------------------------------------- /docs/product/features/CurrencyConversion/FXAPI_Payer_Transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/CurrencyConversion/FXAPI_Payer_Transfer.svg -------------------------------------------------------------------------------- /docs/product/features/CurrencyConversion/PAYER_SEND_Agreement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/CurrencyConversion/PAYER_SEND_Agreement.svg -------------------------------------------------------------------------------- /docs/product/features/CurrencyConversion/PAYER_SEND_Transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/CurrencyConversion/PAYER_SEND_Transfer.svg -------------------------------------------------------------------------------- /docs/product/features/CurrencyConversion/Payer_SEND_Discovery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/CurrencyConversion/Payer_SEND_Discovery.svg -------------------------------------------------------------------------------- /docs/product/features/FXP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/FXP.svg -------------------------------------------------------------------------------- /docs/product/features/ForeignExchange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/ForeignExchange.md -------------------------------------------------------------------------------- /docs/product/features/InterconnectingSchemes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/InterconnectingSchemes.md -------------------------------------------------------------------------------- /docs/product/features/Interscheme/Interscheme-Agreement.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Interscheme/Interscheme-Agreement.plantuml -------------------------------------------------------------------------------- /docs/product/features/Interscheme/Interscheme-Agreement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Interscheme/Interscheme-Agreement.svg -------------------------------------------------------------------------------- /docs/product/features/Interscheme/Interscheme-ErrorCases.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Interscheme/Interscheme-ErrorCases.plantuml -------------------------------------------------------------------------------- /docs/product/features/Interscheme/Interscheme-ErrorCases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Interscheme/Interscheme-ErrorCases.svg -------------------------------------------------------------------------------- /docs/product/features/Interscheme/Interscheme-GETTransfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Interscheme/Interscheme-GETTransfer.svg -------------------------------------------------------------------------------- /docs/product/features/Interscheme/Interscheme-Happypath.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Interscheme/Interscheme-Happypath.plantuml -------------------------------------------------------------------------------- /docs/product/features/Interscheme/Interscheme-Happypath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Interscheme/Interscheme-Happypath.svg -------------------------------------------------------------------------------- /docs/product/features/Interscheme/Interscheme-Transfer.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Interscheme/Interscheme-Transfer.plantuml -------------------------------------------------------------------------------- /docs/product/features/Interscheme/Interscheme-Transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Interscheme/Interscheme-Transfer.svg -------------------------------------------------------------------------------- /docs/product/features/Interscheme/SettingUpProxys.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Interscheme/SettingUpProxys.plantuml -------------------------------------------------------------------------------- /docs/product/features/Interscheme/SettingUpProxys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Interscheme/SettingUpProxys.svg -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/Appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/Appendix.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/IntegrationPatterns.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/MarketPracticeDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/MarketPracticeDocument.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/SequenceDiagrams/Transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/SequenceDiagrams/Transfer.svg -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/fxquotes_POST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/fxquotes_POST.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/fxquotes_PUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/fxquotes_PUT.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/fxquotes_error_PUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/fxquotes_error_PUT.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/fxtransfers_PATCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/fxtransfers_PATCH.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/fxtransfers_POST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/fxtransfers_POST.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/fxtransfers_PUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/fxtransfers_PUT.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/parties_GET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/parties_GET.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/parties_PUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/parties_PUT.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/parties_error_PUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/parties_error_PUT.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/quotes_POST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/quotes_POST.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/quotes_PUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/quotes_PUT.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/quotes_error_PUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/quotes_error_PUT.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/transfers_PATCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/transfers_PATCH.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/transfers_POST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/transfers_POST.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/transfers_PUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/transfers_PUT.md -------------------------------------------------------------------------------- /docs/product/features/Iso20022/v1.0/script/transfers_error_PUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Iso20022/v1.0/script/transfers_error_PUT.md -------------------------------------------------------------------------------- /docs/product/features/SimpleInterscheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/SimpleInterscheme.svg -------------------------------------------------------------------------------- /docs/product/features/Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/Test.png -------------------------------------------------------------------------------- /docs/product/features/XB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/XB.svg -------------------------------------------------------------------------------- /docs/product/features/connectivity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/connectivity.md -------------------------------------------------------------------------------- /docs/product/features/connectivity/participant-matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/connectivity/participant-matrix.md -------------------------------------------------------------------------------- /docs/product/features/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/deployment.md -------------------------------------------------------------------------------- /docs/product/features/deployment/deploying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/deployment/deploying.md -------------------------------------------------------------------------------- /docs/product/features/deployment/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/deployment/tools.md -------------------------------------------------------------------------------- /docs/product/features/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/development.md -------------------------------------------------------------------------------- /docs/product/features/ecosystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/ecosystem.svg -------------------------------------------------------------------------------- /docs/product/features/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/engineering.md -------------------------------------------------------------------------------- /docs/product/features/fx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/fx.md -------------------------------------------------------------------------------- /docs/product/features/htlc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/htlc.md -------------------------------------------------------------------------------- /docs/product/features/interscheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/interscheme.md -------------------------------------------------------------------------------- /docs/product/features/invariants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/invariants.md -------------------------------------------------------------------------------- /docs/product/features/iso20022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/iso20022.md -------------------------------------------------------------------------------- /docs/product/features/merchant-payments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/merchant-payments.md -------------------------------------------------------------------------------- /docs/product/features/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/metadata.md -------------------------------------------------------------------------------- /docs/product/features/ml-feature-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/ml-feature-list.md -------------------------------------------------------------------------------- /docs/product/features/mojaloop_security_layers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/mojaloop_security_layers.jpg -------------------------------------------------------------------------------- /docs/product/features/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/performance.md -------------------------------------------------------------------------------- /docs/product/features/product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/product.md -------------------------------------------------------------------------------- /docs/product/features/risk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/risk.md -------------------------------------------------------------------------------- /docs/product/features/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/security.md -------------------------------------------------------------------------------- /docs/product/features/tariffs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/tariffs.md -------------------------------------------------------------------------------- /docs/product/features/transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/transaction.md -------------------------------------------------------------------------------- /docs/product/features/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/use-cases.md -------------------------------------------------------------------------------- /docs/product/features/workstreams/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/workstreams/core.md -------------------------------------------------------------------------------- /docs/product/features/workstreams/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/workstreams/deployment.md -------------------------------------------------------------------------------- /docs/product/features/workstreams/dispute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/workstreams/dispute.md -------------------------------------------------------------------------------- /docs/product/features/workstreams/evolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/workstreams/evolution.md -------------------------------------------------------------------------------- /docs/product/features/workstreams/fintech_participation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/workstreams/fintech_participation.md -------------------------------------------------------------------------------- /docs/product/features/workstreams/iso20022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/workstreams/iso20022.md -------------------------------------------------------------------------------- /docs/product/features/workstreams/lei.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/workstreams/lei.md -------------------------------------------------------------------------------- /docs/product/features/workstreams/participation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/workstreams/participation.md -------------------------------------------------------------------------------- /docs/product/features/workstreams/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/workstreams/performance.md -------------------------------------------------------------------------------- /docs/product/features/workstreams/pqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/workstreams/pqs.md -------------------------------------------------------------------------------- /docs/product/features/workstreams/qa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/product/features/workstreams/qa.md -------------------------------------------------------------------------------- /docs/quickstarts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/quickstarts/README.md -------------------------------------------------------------------------------- /docs/quickstarts/one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/quickstarts/one.md -------------------------------------------------------------------------------- /docs/quickstarts/two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/quickstarts/two.md -------------------------------------------------------------------------------- /docs/technical/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/README.md -------------------------------------------------------------------------------- /docs/technical/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/README.md -------------------------------------------------------------------------------- /docs/technical/api/administration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/administration/README.md -------------------------------------------------------------------------------- /docs/technical/api/administration/central-ledger-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/administration/central-ledger-api.md -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure11.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure12.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure14.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure16.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure18.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure20.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure22.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure24.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure26.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure28.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure30.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure32.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure34.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure34.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure36.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure38.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure38.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure40.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure46.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure46.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure48.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure56.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure56.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure58.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure58.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure60.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure62.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure62.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure63.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure63.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure7.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure73.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure73.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/images/figure9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/images/figure9.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure1.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure1.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure1.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure10.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure10.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure10.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure13.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure13.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure13.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure15.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure15.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure15.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure17.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure17.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure17.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure19.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure19.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure19.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure2.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure2.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure2.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure21.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure21.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure21.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure23.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure23.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure23.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure25.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure25.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure25.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure27.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure27.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure27.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure29.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure29.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure29.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure3.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure3.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure3.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure31.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure31.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure31.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure33.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure33.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure33.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure35.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure35.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure35.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure37.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure37.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure37.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure39.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure39.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure39.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure39.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure4.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure4.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure4.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure41.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure41.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure41.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure41.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure42.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure42.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure42.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure43.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure43.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure43.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure43.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure44.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure44.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure44.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure44.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure45.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure45.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure45.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure45.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure47.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure47.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure47.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure47.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure49.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure49.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure49.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure49.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure5.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure5.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure5.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure50.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure50.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure50.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure51.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure51.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure51.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure51.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure52.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure52.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure52.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure52.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure53.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure53.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure53.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure53.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure54.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure54.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure54.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure55.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure55.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure55.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure55.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure57.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure57.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure57.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure57.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure59.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure59.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure59.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure59.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure6.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure6.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure6.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure61.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure61.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure61.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure61.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure64.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure64.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure64.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure64a.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure64a.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure64a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure64a.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure65.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure65.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure65.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure65.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure65a.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure65a.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure65a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure65a.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure66.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure66.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure66.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure66.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure66a.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure66a.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure66a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure66a.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure67.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure67.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure67.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure67.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure67a.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure67a.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure67a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure67a.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure68.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure68.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure68.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure68.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure69.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure69.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure69.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure69.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure70.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure70.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure70.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure70.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure71.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure71.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure71.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure71.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure72.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure72.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure72.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure72.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure74.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure74.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure74.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure74.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure8.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure8.plantuml -------------------------------------------------------------------------------- /docs/technical/api/assets/diagrams/sequence/figure8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/diagrams/sequence/figure8.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/figure1-platforms-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/figure1-platforms-layout.svg -------------------------------------------------------------------------------- /docs/technical/api/assets/scheme-rules-figure-1-http-timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/scheme-rules-figure-1-http-timeout.png -------------------------------------------------------------------------------- /docs/technical/api/assets/sequence-diagram-figure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/assets/sequence-diagram-figure-1.png -------------------------------------------------------------------------------- /docs/technical/api/fspiop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/README.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/definitions.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/generic-transaction-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/generic-transaction-patterns.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/glossary.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/json-binding-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/json-binding-rules.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/logical-data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/logical-data-model.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/pki-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/pki-best-practices.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/sandbox.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/technical/api/fspiop/scheme-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/scheme-rules.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/use-cases.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/v1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/v1.0/README.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/v1.0/api-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/v1.0/api-definition.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/v1.1/api-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/v1.1/api-definition.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/v1.1/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/v1.1/encryption.md -------------------------------------------------------------------------------- /docs/technical/api/fspiop/v1.1/signature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/fspiop/v1.1/signature.md -------------------------------------------------------------------------------- /docs/technical/api/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/license.md -------------------------------------------------------------------------------- /docs/technical/api/settlement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/settlement/README.md -------------------------------------------------------------------------------- /docs/technical/api/thirdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/thirdparty/README.md -------------------------------------------------------------------------------- /docs/technical/api/thirdparty/_sync_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/thirdparty/_sync_docs.sh -------------------------------------------------------------------------------- /docs/technical/api/thirdparty/data-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/thirdparty/data-models.md -------------------------------------------------------------------------------- /docs/technical/api/thirdparty/thirdparty-dfsp-v1.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/thirdparty/thirdparty-dfsp-v1.0.yaml -------------------------------------------------------------------------------- /docs/technical/api/thirdparty/thirdparty-pisp-v1.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/thirdparty/thirdparty-pisp-v1.0.yaml -------------------------------------------------------------------------------- /docs/technical/api/thirdparty/transaction-patterns-linking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/thirdparty/transaction-patterns-linking.md -------------------------------------------------------------------------------- /docs/technical/api/thirdparty/transaction-patterns-transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/thirdparty/transaction-patterns-transfer.md -------------------------------------------------------------------------------- /docs/technical/api/thirdparty/transaction-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/api/thirdparty/transaction-patterns.md -------------------------------------------------------------------------------- /docs/technical/business-operations-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/business-operations-framework/README.md -------------------------------------------------------------------------------- /docs/technical/business-operations-framework/ReportingBC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/business-operations-framework/ReportingBC.md -------------------------------------------------------------------------------- /docs/technical/business-operations-framework/SecurityBC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/business-operations-framework/SecurityBC.md -------------------------------------------------------------------------------- /docs/technical/business-operations-framework/SettlementBC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/business-operations-framework/SettlementBC.md -------------------------------------------------------------------------------- /docs/technical/central-fx-transfers/transfers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/central-fx-transfers/transfers/README.md -------------------------------------------------------------------------------- /docs/technical/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/faqs.md -------------------------------------------------------------------------------- /docs/technical/reference-architecture/boundedContexts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/reference-architecture/boundedContexts/index.md -------------------------------------------------------------------------------- /docs/technical/reference-architecture/furtherReading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/reference-architecture/furtherReading/README.md -------------------------------------------------------------------------------- /docs/technical/reference-architecture/gettingStarted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/reference-architecture/gettingStarted/README.md -------------------------------------------------------------------------------- /docs/technical/reference-architecture/glossary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/reference-architecture/glossary/README.md -------------------------------------------------------------------------------- /docs/technical/reference-architecture/howToImplement/README.md: -------------------------------------------------------------------------------- 1 | # TBD Placeholder for vNext Implementation architecture 2 | 3 | -------------------------------------------------------------------------------- /docs/technical/reference-architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/reference-architecture/index.md -------------------------------------------------------------------------------- /docs/technical/reference-architecture/introduction/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/reference-architecture/introduction/index.md -------------------------------------------------------------------------------- /docs/technical/reference-architecture/refarch/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/reference-architecture/refarch/index.md -------------------------------------------------------------------------------- /docs/technical/technical/account-lookup-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/account-lookup-service/README.md -------------------------------------------------------------------------------- /docs/technical/technical/account-lookup-service/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/technical/technical/central-bulk-transfers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/central-bulk-transfers/README.md -------------------------------------------------------------------------------- /docs/technical/technical/central-event-processor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/central-event-processor/README.md -------------------------------------------------------------------------------- /docs/technical/technical/central-ledger/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/technical/technical/central-ledger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/central-ledger/README.md -------------------------------------------------------------------------------- /docs/technical/technical/central-ledger/assets/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/central-ledger/assets/database/README.md -------------------------------------------------------------------------------- /docs/technical/technical/central-ledger/transfers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/central-ledger/transfers/README.md -------------------------------------------------------------------------------- /docs/technical/technical/deployment-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/deployment-guide/README.md -------------------------------------------------------------------------------- /docs/technical/technical/event-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/event-framework/README.md -------------------------------------------------------------------------------- /docs/technical/technical/event-stream-processor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/event-stream-processor/README.md -------------------------------------------------------------------------------- /docs/technical/technical/fraud-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/fraud-services/README.md -------------------------------------------------------------------------------- /docs/technical/technical/ml-testing-toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/ml-testing-toolkit/README.md -------------------------------------------------------------------------------- /docs/technical/technical/overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/overview/README.md -------------------------------------------------------------------------------- /docs/technical/technical/overview/components-PI11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/overview/components-PI11.md -------------------------------------------------------------------------------- /docs/technical/technical/overview/components-PI12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/overview/components-PI12.md -------------------------------------------------------------------------------- /docs/technical/technical/overview/components-PI14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/overview/components-PI14.md -------------------------------------------------------------------------------- /docs/technical/technical/overview/components-PI18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/overview/components-PI18.md -------------------------------------------------------------------------------- /docs/technical/technical/overview/components-PI3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/overview/components-PI3.md -------------------------------------------------------------------------------- /docs/technical/technical/overview/components-PI5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/overview/components-PI5.md -------------------------------------------------------------------------------- /docs/technical/technical/overview/components-PI6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/overview/components-PI6.md -------------------------------------------------------------------------------- /docs/technical/technical/overview/components-PI7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/overview/components-PI7.md -------------------------------------------------------------------------------- /docs/technical/technical/overview/components-PI8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/overview/components-PI8.md -------------------------------------------------------------------------------- /docs/technical/technical/quoting-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/quoting-service/README.md -------------------------------------------------------------------------------- /docs/technical/technical/quoting-service/qs-get-bulk-quotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/quoting-service/qs-get-bulk-quotes.md -------------------------------------------------------------------------------- /docs/technical/technical/quoting-service/qs-get-quotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/quoting-service/qs-get-quotes.md -------------------------------------------------------------------------------- /docs/technical/technical/quoting-service/qs-post-bulk-quotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/quoting-service/qs-post-bulk-quotes.md -------------------------------------------------------------------------------- /docs/technical/technical/quoting-service/qs-post-quotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/quoting-service/qs-post-quotes.md -------------------------------------------------------------------------------- /docs/technical/technical/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/releases.md -------------------------------------------------------------------------------- /docs/technical/technical/sdk-scheme-adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/sdk-scheme-adapter/README.md -------------------------------------------------------------------------------- /docs/technical/technical/sdk-scheme-adapter/RequestToPay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/sdk-scheme-adapter/RequestToPay.md -------------------------------------------------------------------------------- /docs/technical/technical/sdk-scheme-adapter/usage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/sdk-scheme-adapter/usage/README.md -------------------------------------------------------------------------------- /docs/technical/technical/security/security-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/security/security-overview.md -------------------------------------------------------------------------------- /docs/technical/technical/transaction-requests-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/docs/technical/technical/transaction-requests-service/README.md -------------------------------------------------------------------------------- /infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/README.md -------------------------------------------------------------------------------- /infra/src/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/.terraform.lock.hcl -------------------------------------------------------------------------------- /infra/src/cloudfront.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/cloudfront.tf -------------------------------------------------------------------------------- /infra/src/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/iam.tf -------------------------------------------------------------------------------- /infra/src/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/main.tf -------------------------------------------------------------------------------- /infra/src/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/outputs.tf -------------------------------------------------------------------------------- /infra/src/redirect/_generate_js_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/redirect/_generate_js_list.sh -------------------------------------------------------------------------------- /infra/src/redirect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/redirect/index.js -------------------------------------------------------------------------------- /infra/src/redirect/link_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/redirect/link_list.md -------------------------------------------------------------------------------- /infra/src/redirect/link_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/redirect/link_list.txt -------------------------------------------------------------------------------- /infra/src/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/s3.tf -------------------------------------------------------------------------------- /infra/src/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/terraform.tfvars -------------------------------------------------------------------------------- /infra/src/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/src/variables.tf -------------------------------------------------------------------------------- /infra/state/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/state/.terraform.lock.hcl -------------------------------------------------------------------------------- /infra/state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/state/README.md -------------------------------------------------------------------------------- /infra/state/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/state/main.tf -------------------------------------------------------------------------------- /infra/state/terraform.tfstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/state/terraform.tfstate -------------------------------------------------------------------------------- /infra/state/terraform.tfstate.backup_dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/state/terraform.tfstate.backup_dep -------------------------------------------------------------------------------- /infra/state/terraform.tfstate_dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/state/terraform.tfstate_dep -------------------------------------------------------------------------------- /infra/state/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/state/terraform.tfvars -------------------------------------------------------------------------------- /infra/state/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/infra/state/variables.tf -------------------------------------------------------------------------------- /legacy/.bookignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/.bookignore -------------------------------------------------------------------------------- /legacy/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/.circleci/config.yml -------------------------------------------------------------------------------- /legacy/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/.dockerignore -------------------------------------------------------------------------------- /legacy/.gitbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/.gitbook.md -------------------------------------------------------------------------------- /legacy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/.gitignore -------------------------------------------------------------------------------- /legacy/.ncurc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/.ncurc.json -------------------------------------------------------------------------------- /legacy/.nvmrc: -------------------------------------------------------------------------------- 1 | 10.15.2 2 | -------------------------------------------------------------------------------- /legacy/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/CODEOWNERS -------------------------------------------------------------------------------- /legacy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/Dockerfile -------------------------------------------------------------------------------- /legacy/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/LICENSE.md -------------------------------------------------------------------------------- /legacy/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/NOTES.md -------------------------------------------------------------------------------- /legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/README.md -------------------------------------------------------------------------------- /legacy/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/SUMMARY.md -------------------------------------------------------------------------------- /legacy/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/api/README.md -------------------------------------------------------------------------------- /legacy/api/als-oracle-api-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/api/als-oracle-api-specification.md -------------------------------------------------------------------------------- /legacy/api/central-ledger-api-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/api/central-ledger-api-specification.md -------------------------------------------------------------------------------- /legacy/api/central-settlements-api-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/api/central-settlements-api-specification.md -------------------------------------------------------------------------------- /legacy/api/mojaloop-api-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/api/mojaloop-api-specification.md -------------------------------------------------------------------------------- /legacy/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/assets/diagrams/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/book.json -------------------------------------------------------------------------------- /legacy/book_variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/book_variables.yml -------------------------------------------------------------------------------- /legacy/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/changelog.md -------------------------------------------------------------------------------- /legacy/contributors-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/README.md -------------------------------------------------------------------------------- /legacy/contributors-guide/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/code-of-conduct.md -------------------------------------------------------------------------------- /legacy/contributors-guide/documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/documentation/README.md -------------------------------------------------------------------------------- /legacy/contributors-guide/documentation/api-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/documentation/api-documentation.md -------------------------------------------------------------------------------- /legacy/contributors-guide/frequently-asked-questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/frequently-asked-questions.md -------------------------------------------------------------------------------- /legacy/contributors-guide/images/cla/admin_configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/images/cla/admin_configure.png -------------------------------------------------------------------------------- /legacy/contributors-guide/images/cla/admin_sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/images/cla/admin_sign_in.png -------------------------------------------------------------------------------- /legacy/contributors-guide/images/cla/cla_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/images/cla/cla_1.png -------------------------------------------------------------------------------- /legacy/contributors-guide/images/cla/cla_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/images/cla/cla_2_1.png -------------------------------------------------------------------------------- /legacy/contributors-guide/images/cla/cla_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/images/cla/cla_2_2.png -------------------------------------------------------------------------------- /legacy/contributors-guide/images/cla/cla_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/images/cla/cla_3.png -------------------------------------------------------------------------------- /legacy/contributors-guide/new-contributor-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/new-contributor-checklist.md -------------------------------------------------------------------------------- /legacy/contributors-guide/personas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/personas.md -------------------------------------------------------------------------------- /legacy/contributors-guide/signing-the-cla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/signing-the-cla.md -------------------------------------------------------------------------------- /legacy/contributors-guide/standards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/standards/README.md -------------------------------------------------------------------------------- /legacy/contributors-guide/standards/creating-new-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/standards/creating-new-features.md -------------------------------------------------------------------------------- /legacy/contributors-guide/standards/triaging-ml-oss-bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/standards/triaging-ml-oss-bugs.md -------------------------------------------------------------------------------- /legacy/contributors-guide/standards/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/standards/versioning.md -------------------------------------------------------------------------------- /legacy/contributors-guide/tools-and-technologies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/tools-and-technologies/README.md -------------------------------------------------------------------------------- /legacy/contributors-guide/tools-and-technologies/aws-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/contributors-guide/tools-and-technologies/aws-cli.md -------------------------------------------------------------------------------- /legacy/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/cover.jpg -------------------------------------------------------------------------------- /legacy/deployment-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/deployment-guide/README.md -------------------------------------------------------------------------------- /legacy/deployment-guide/deployment-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/deployment-guide/deployment-troubleshooting.md -------------------------------------------------------------------------------- /legacy/deployment-guide/helm-legacy-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/deployment-guide/helm-legacy-deployment.md -------------------------------------------------------------------------------- /legacy/deployment-guide/helm-legacy-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/deployment-guide/helm-legacy-migration.md -------------------------------------------------------------------------------- /legacy/deployment-guide/local-setup-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/deployment-guide/local-setup-linux.md -------------------------------------------------------------------------------- /legacy/deployment-guide/local-setup-mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/deployment-guide/local-setup-mac.md -------------------------------------------------------------------------------- /legacy/deployment-guide/local-setup-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/deployment-guide/local-setup-windows.md -------------------------------------------------------------------------------- /legacy/deployment-guide/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/deployment-guide/releases.md -------------------------------------------------------------------------------- /legacy/deployment-guide/upgrade-strategy-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/deployment-guide/upgrade-strategy-guide.md -------------------------------------------------------------------------------- /legacy/discussions/ISO_Integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/ISO_Integration.md -------------------------------------------------------------------------------- /legacy/discussions/Mojaloop Performance 2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/Mojaloop Performance 2020.pdf -------------------------------------------------------------------------------- /legacy/discussions/aws_tagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/aws_tagging.md -------------------------------------------------------------------------------- /legacy/discussions/code_improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/code_improvement.md -------------------------------------------------------------------------------- /legacy/discussions/cross_border_day_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/cross_border_day_1.md -------------------------------------------------------------------------------- /legacy/discussions/cross_border_day_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/cross_border_day_2.md -------------------------------------------------------------------------------- /legacy/discussions/crossborder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/crossborder.md -------------------------------------------------------------------------------- /legacy/discussions/decimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/decimal.md -------------------------------------------------------------------------------- /legacy/discussions/dicussion-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/dicussion-docs.md -------------------------------------------------------------------------------- /legacy/discussions/images/cb_board_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/images/cb_board_1.jpg -------------------------------------------------------------------------------- /legacy/discussions/images/cb_board_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/images/cb_board_2.jpg -------------------------------------------------------------------------------- /legacy/discussions/images/cb_board_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/images/cb_board_3.jpg -------------------------------------------------------------------------------- /legacy/discussions/images/mojaloop_spokes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/images/mojaloop_spokes.png -------------------------------------------------------------------------------- /legacy/discussions/images/tagging_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/images/tagging_01.png -------------------------------------------------------------------------------- /legacy/discussions/images/tagging_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/images/tagging_02.png -------------------------------------------------------------------------------- /legacy/discussions/images/tagging_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/images/tagging_03.png -------------------------------------------------------------------------------- /legacy/discussions/images/tagging_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/images/tagging_04.png -------------------------------------------------------------------------------- /legacy/discussions/images/tagging_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/images/tagging_05.png -------------------------------------------------------------------------------- /legacy/discussions/images/tagging_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/images/tagging_06.png -------------------------------------------------------------------------------- /legacy/discussions/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/performance.md -------------------------------------------------------------------------------- /legacy/discussions/pisp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/pisp.md -------------------------------------------------------------------------------- /legacy/discussions/versioning_draft_proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/versioning_draft_proposal.md -------------------------------------------------------------------------------- /legacy/discussions/workbench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/discussions/workbench.md -------------------------------------------------------------------------------- /legacy/gitbook.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/gitbook.Dockerfile -------------------------------------------------------------------------------- /legacy/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/glossary.md -------------------------------------------------------------------------------- /legacy/hackathon-materials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/README.md -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_01.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_02.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_04.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_05.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_06.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_07.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_08.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_09.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_10.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_11.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_12.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_13.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_14.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_15.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_16.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_17.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_18.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_19.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/lab_onboarding_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/lab_onboarding_20.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/postman_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/postman_01.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/images/postman_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/images/postman_02.png -------------------------------------------------------------------------------- /legacy/hackathon-materials/lab_onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/lab_onboarding.md -------------------------------------------------------------------------------- /legacy/hackathon-materials/preread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/hackathon-materials/preread.md -------------------------------------------------------------------------------- /legacy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/index.js -------------------------------------------------------------------------------- /legacy/meeting-notes/ccb-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/meeting-notes/ccb-notes.md -------------------------------------------------------------------------------- /legacy/meeting-notes/da-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/meeting-notes/da-notes.md -------------------------------------------------------------------------------- /legacy/meeting-notes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/meeting-notes/readme.md -------------------------------------------------------------------------------- /legacy/meeting-notes/scrum-of-scrum-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/meeting-notes/scrum-of-scrum-notes.md -------------------------------------------------------------------------------- /legacy/mojaloop-background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-background.md -------------------------------------------------------------------------------- /legacy/mojaloop-background/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-background/README.md -------------------------------------------------------------------------------- /legacy/mojaloop-background/core-scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-background/core-scenarios.md -------------------------------------------------------------------------------- /legacy/mojaloop-background/level-one-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-background/level-one-principles.md -------------------------------------------------------------------------------- /legacy/mojaloop-publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-publications.md -------------------------------------------------------------------------------- /legacy/mojaloop-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-roadmap.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/README.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/account-lookup-service/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/central-ledger/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/central-ledger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/central-ledger/README.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/central-settlements/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/central-settlements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/central-settlements/README.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/central-settlements/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/event-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/event-framework/README.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/fraud-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/fraud-services/README.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/ml-testing-toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/ml-testing-toolkit/README.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/overview/README.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/overview/components-PI11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/overview/components-PI11.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/overview/components-PI12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/overview/components-PI12.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/overview/components-PI14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/overview/components-PI14.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/overview/components-PI3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/overview/components-PI3.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/overview/components-PI5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/overview/components-PI5.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/overview/components-PI6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/overview/components-PI6.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/overview/components-PI7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/overview/components-PI7.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/overview/components-PI8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/overview/components-PI8.md -------------------------------------------------------------------------------- /legacy/mojaloop-technical-overview/quoting-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/mojaloop-technical-overview/quoting-service/README.md -------------------------------------------------------------------------------- /legacy/onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/onboarding.md -------------------------------------------------------------------------------- /legacy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/package-lock.json -------------------------------------------------------------------------------- /legacy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/package.json -------------------------------------------------------------------------------- /legacy/publish-gh-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/publish-gh-pages.sh -------------------------------------------------------------------------------- /legacy/quality-security/assets/cqs_overview.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/quality-security/assets/cqs_overview.drawio -------------------------------------------------------------------------------- /legacy/quality-security/assets/cqs_overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/quality-security/assets/cqs_overview.svg -------------------------------------------------------------------------------- /legacy/quality-security/program-management/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/quality-security/program-management/readme.md -------------------------------------------------------------------------------- /legacy/quality-security/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/quality-security/readme.md -------------------------------------------------------------------------------- /legacy/quality-security/reference-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/quality-security/reference-implementation.md -------------------------------------------------------------------------------- /legacy/quality-security/snyk_investigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/quality-security/snyk_investigation.md -------------------------------------------------------------------------------- /legacy/quality-security/standards-guidelines/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/quality-security/standards-guidelines/readme.md -------------------------------------------------------------------------------- /legacy/repositories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/repositories/README.md -------------------------------------------------------------------------------- /legacy/repositories/assets/diagrams/helm/HelmChartOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/repositories/assets/diagrams/helm/HelmChartOverview.png -------------------------------------------------------------------------------- /legacy/repositories/helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/repositories/helm.md -------------------------------------------------------------------------------- /legacy/repositories/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/repositories/project.md -------------------------------------------------------------------------------- /legacy/scripts/_build_plantuml_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/scripts/_build_plantuml_all.sh -------------------------------------------------------------------------------- /legacy/scripts/_build_plantuml_diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/scripts/_build_plantuml_diff.sh -------------------------------------------------------------------------------- /legacy/scripts/_render_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/legacy/scripts/_render_svg.js -------------------------------------------------------------------------------- /markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/markdownlint.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/package.json -------------------------------------------------------------------------------- /scripts/_build_plantuml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/scripts/_build_plantuml.sh -------------------------------------------------------------------------------- /scripts/_deploy_preview_s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/scripts/_deploy_preview_s3.sh -------------------------------------------------------------------------------- /scripts/_render_svg.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/scripts/_render_svg.mjs -------------------------------------------------------------------------------- /scripts/_sync_sequence_puml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/scripts/_sync_sequence_puml.sh -------------------------------------------------------------------------------- /tmp-regex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/tmp-regex.md -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/administration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/administration/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/fspiop/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/fspiop/definitions.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/fspiop/glossary.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/json-binding-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/fspiop/json-binding-rules.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/logical-data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/fspiop/logical-data-model.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/pki-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/fspiop/pki-best-practices.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/sandbox.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/scheme-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/fspiop/scheme-rules.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/fspiop/use-cases.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/v1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/fspiop/v1.0/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/v1.1/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/fspiop/v1.1/encryption.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/fspiop/v1.1/signature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/fspiop/v1.1/signature.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/settlement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/settlement/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/thirdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/thirdparty/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/thirdparty/_sync_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/thirdparty/_sync_docs.sh -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/thirdparty/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/thirdparty/assets/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/api/thirdparty/data-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/api/thirdparty/data-models.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/community/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/community/assets/cla/cla_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/community/assets/cla/cla_1.png -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/community/assets/cla/cla_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/community/assets/cla/cla_2_1.png -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/community/assets/cla/cla_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/community/assets/cla/cla_2_2.png -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/community/assets/cla/cla_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/community/assets/cla/cla_3.png -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/community/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/community/faqs.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/community/mojaloop-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/community/mojaloop-roadmap.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/community/standards/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/community/standards/guide.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/getting-started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/getting-started/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/getting-started/demo-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/getting-started/demo-one.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/getting-started/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/getting-started/demo.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/getting-started/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/getting-started/faqs.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/getting-started/general-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/getting-started/general-faqs.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/getting-started/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/getting-started/quickstart.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/index.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/quickstarts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/quickstarts/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/quickstarts/one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/quickstarts/one.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/quickstarts/two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/quickstarts/two.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/sidebar.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/sidebar.config.json -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/technical/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/technical/README.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/technical/account-lookup-service/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/technical/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/technical/faqs.md -------------------------------------------------------------------------------- /website/versioned_docs/v1.0.1/technical/overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojaloop/documentation/HEAD/website/versioned_docs/v1.0.1/technical/overview/README.md --------------------------------------------------------------------------------