[EXPERIMENTAL] A project template for FX conversion to be used between SDK and Core connectors.
This repository is still under development
Refer to CONTRIBUTING.md for information on how to contribute, committing changes, releases and snapshots.
This repository is a sample implementation for the FX converter. The actual implementation may vary based on the business usecases and rules. The FX converter sits between SDK and Core connector. So FX converter speaks sends SDK outbound API requests to SDK service and Core connector API requests to speak to core connector service.
flowchart TD
CC[Core Connector] -->|Requests in Currency1| FX(fa:fa-exchange FX Converter)
FX -->|Requests in Currency2| SDK[SDK Scheme Adapter]
SDK -->|Responses in Currency2| FX
FX -->|Responses in Currency1| CC
npm install
Command to transpile Typescript into JS:
npm run build
Command to LIVE transpile Typescript into JS live when any changes are made to the code-base:
npm run watch
npm start
npm test