- Design a data structure for storing customer ledgers, balance details etc.
- By making use of the created data structure, create a gRPC service to support below features
- Create user wallet – assuming user profile is created already in other systems and a unique user id (uuid) is created
- Record keeping for user's transaction (credit to or debit from user's wallet) in ledgers
- Retrieve user wallet summary
- Get user transaction history (pagination required)
- The service should also support
- Multiple currency (e.g ETC, BTC, USD etc.)
- Multiple users
- The service should have proper unit testing coverage
- Proper logging in the service
- Documentation
- Anything you think it can make the service better
- Please try not to over complicate the task.
- You can use any third-party framework or libraries
protoc -I=./proto --go_out=. ./proto/contract.proto --go-grpc_out=.
Using mockery to generate mock data, how to install here
mockery --name Persist --dir "./service"
$ go test ./... --coverprofile=coverage.out
$ go tool cover -html=coverage.out
The storage used is a JSON file based system. Library used is here.