An integration and test platform for the TRISA Travel Rule Implementation.
The TRISA test net is comprised of the following:
- TRISA Directory Service - a user interface to explore the TRISA Global Directory Service and register to become a TRISA member
- TestNet Demo - a demo site to show TRISA interactions between “robot” VASPs that run in the TestNet
For more details, see the TRISA Documentation, or check out the TRISA codebase.
This repository consists of a monorepo that is designed to facilitate all TRISA test net operations. The organization of the repository is as follows:
cmd
: binary executables compiled with gocontainers
: Dockerfiles for various containers deployed to the test netfixtures
: initial or example data used to bootstrap serviceslib
: library modules in other languages (e.g. Python)manifests
: kubernetes manifests for our GKE clusterpkg
: Go code and implementations for various servicesproto
: Protocol Buffer definitions for the servicesscripts
: Shell, bash, and Python scripts used for local testingweb
: front-end web applications, either pure HTML or npm based
To regenerate the Go and Python code from the protocol buffers:
$ go generate ./...
The go generate directives are stored in pkg/rvasp/pb/v1/pb.go
. The directives create grpc Go in the pb
package and grpc Python in the rvaspy
module.