824ba3c7f9
* init contract-watcher * Add processor and blockain watchers * Add pagination and save last blocknumber procesed by chain * Add processing by blocks * Add contract-watcher deploy manifest * Add endpoint to get globalTransactions by Id * Add originTX to get globalTransactionById endpoint * Add wait time for new blocks * Add initial block for evm watcher * Add rate limit for evm watcher * Handle testnet environment and small fixes * Update wormhole dependencies * Fix api documentation for swagger --------- Co-authored-by: Agustin Pazos <agpazos85@gmail.com> |
||
---|---|---|
.. | ||
docs | ||
handlers | ||
internal | ||
middleware | ||
response | ||
routes | ||
rpc | ||
types | ||
.gitignore | ||
Dockerfile | ||
Makefile | ||
README.md | ||
go.mod | ||
go.sum | ||
main.go |
README.md
API
How to build
make build
Config
You will need to set some env variables with the prefix WORMSCAN
- WORMSCAN_DB_MONGO
- WORMSCAN_DB_NAME
- WORMSCAN_PORT
for example:
WORMSCAN_DB_URL=mongodb://localhost:27017/wormhole WORMSCAN_PORT=5555 ./api
API Documentation
Documentation is automagically generated via swaggo using annotations on code
and placed inside doc/
folder.
To install swag tool run this
go install github.com/swaggo/swag/cmd/swag@latest
To generate or update the doc run:
make doc