github.com/jackzampolin/amino-micro

A microservice that takes JSON and outputs amino encoded bytes


License
Apache-2.0
Install
go get github.com/jackzampolin/amino-micro

Documentation

Amino Micro

A small microservice for amino encoding input data:

curl -XPOST localhost:3000/tx/encode --data-binary @tx.json

Build and Run

To build and run amino-micro run:

$ make install
$ amino-micro


Usage:
  amino-micro [command]

Available Commands:
  help        Help about any command
  serve       Runs the server
  version     Prints version information

Flags:
      --config string   config file (default is $HOME/.amino-micro.yaml)
  -h, --help            help for amino-micro
  -t, --toggle          Help message for toggle

Use "amino-micro [command] --help" for more information about a command.

Docker

To build the docker image with appropriate tags:

$ make docker

To push the docker image to the configured repo:

$ make docker-push

To run the just built docker image with the local config loaded and the proper port exposed:

$ make docker-run