- Notifications
You must be signed in to change notification settings - Fork31
Immutable, scalable, and easy to use ledger service.
License
hoophq/sequence
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
- Website:https://decimals.app/sequence
- Community:Decimals Slack
- Documentation:https://decimals.stoplight.io/docs/sequence/
Sequence is an API that store validate and reports asset movements. Also known as a Ledger. Sequence is immutable, scalable, and easy to use.
The key features of Sequence are:
Multi-Currency: Store, move and analyse any asset, from regular currencies like USD, to shelf items.
Multi-Tenant: Run multiple ledgers using the same infrastructure. Simply setup multiple tenants in the configurations and use the different API keys.
No-SQL powered: Sequence runs on top of a No-SQL database. It is horizontally scalable from the 12-factors container to the persistency layer.
Immutable: Most existing ledger use database updates. This is bad for a ledger. Sequence is immutable. The design of the database allows for consistency of balances without a single field using updateds.
API simplicity: Sequence creates things as you use them. When you send value to an account, it is gets created if it does not exist. It gets out of the way. Use it, and things will work.
Analytics: Send asset movement events to multiple destinations. Use it for analytics, fraud-detection, anything.
- Clone and cd into the repository
- Use docker-compose to bring up DynamoDB local and Sequence
git clone https://github.com/decimals/sequence.gitcd sequencedocker-compose up
- Start the DynamoDB local container
- Start the Sequence container
docker run -p 8000:8000 amazon/dynamodb-localdocker run -p 8910:8910 docker.pkg.github.com/decimals/sequence/sequence:0.0.1
All configurations are loaded from environment variables. The available configurations are:
environment variable | configuration | dev profile |
---|---|---|
DYNAMODB_ENDPOINT | The host for the DynamoDB instance. Mostly used for local development. | http://localhost:8000 |
SEGMENT_KEY | Optional Segment.io key to generate analytics events. | |
KEYS | A string with a list of tenants and theirsha256 API keys digests. In json format. | [{ "name": "test","email": "test@decimals.app", "public-key": "abc", "secret-key-hash": "a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3"}] |
ALLOWED_ORIGINS | A list of accepted CORS hosts. Example:ALLOWED_ORIGINS= '["https://decimals.stoplight.io"]' |
Configurations can also be loaded from theprofiles.clj
file, where the dev configurations are setup.
- Start a new REPL:
lein repl
- Start Sequence in dev-mode:
(def dev-serv (start-dev))
- Connect your editor to the running REPL session.Re-evaluated code will be seen immediately in the service.
About
Immutable, scalable, and easy to use ledger service.