Rafiki is open source software that provides an efficient solution for an account servicing entity to enable Interledger functionality on its users' accounts.
This includes
- sending and receiving payments (via SPSP and Open Payments)
- allowing third-party access to initiate payments and view transaction data (via Open Payments)
❗ Rafiki is intended to be run by account servicing entities only and should not be used in production by non-regulated entities.
Rafiki is made up of several components, including an Interledger connector, a high-throughput accounting database called TigerBeetle, and several APIs:
- the Admin APIs to create peering relationships, add supported assets, and issue wallet addresses
- the Open Payments API to allow third parties (with the account holder's consent) to initiate payments and to view the transaction history
- the SPSP API for simple Interledger Payments
Additionally, this package also includes a reference implementation of a GNAP authorization server, which handles the access control for the Open Payment API. For more information on the architecture, check out the Architecture documentation.
Never heard of Interledger before? Or would you like to learn more? Here are some excellent places to start:
Please read the contribution guidelines before submitting contributions. All contributions must adhere to our code of conduct.
Our Rafiki community calls are open to our community members. We have them every Tuesday at 14:30 GMT, via Google Meet.
Google Meet joining info
Video call link: https://meet.google.com/sms-fwny-ezc
Or dial: (GB) +44 20 3956 0467 PIN: 140 111 239#
More phone numbers: https://tel.meet/sms-fwny-ezc?pin=5321780226087
# install node from `./.nvmrc`
nvm install
nvm use
# install pnpm
corepack enable
# if moving from yarn run
pnpm clean
# install dependencies
pnpm i
The Rafiki local environment is the best way to explore Rafiki locally. The localenv directory contains instructions for setting up a local playground. Please refer to the README for each individual package for more details.
# build all the packages in the repo:
pnpm -r build
# build specific package (e.g. backend):
pnpm --filter backend build
# generate types from specific package GraphQL schema:
pnpm --filter backend generate
# run individual tests (e.g. backend)
pnpm --filter backend test
# run all tests
pnpm -r --workspace-concurrency=1 test
# format and lint code:
pnpm format
# check lint and formatting
pnpm checks
# verify code formatting:
pnpm check:prettier
# verify lint
pnpm check:lint