wormhole-explorer/api
agodnic 533b83ad28
[API] Accept additional address formats (#170)
### Summary

Context: https://github.com/wormhole-foundation/wormhole-explorer/issues/154

This PR modifies all endpoints that receive an emitter/guardian address to accept a wider range of formats.
After this pull request, all of these are equivalent:
* `0x000000000000000000000000f890982f9310df57d00f659cf4fd87e65aded8d7`
* `000000000000000000000000f890982f9310df57d00f659cf4fd87e65aded8d7`
* `0xf890982f9310df57d00f659cf4fd87e65aded8d7`
* `f890982f9310df57d00f659cf4fd87e65aded8d7`

### Testing plan
* Added unit tests for the parsing code.
* Tested manually a few of the affected endpoints.
2023-02-28 17:50:23 -03:00
..
docs [API] Remove unused query params from swagger docs (#166) 2023-02-24 10:47:20 -03:00
handlers [API] Accept additional address formats (#170) 2023-02-28 17:50:23 -03:00
internal [API] Remove unused query params from swagger docs (#166) 2023-02-24 10:47:20 -03:00
middleware [API] Accept additional address formats (#170) 2023-02-28 17:50:23 -03:00
response Add parsedPayload query param to /vaa/:chainID/:address/:sequence (#102) 2023-01-27 13:47:17 -03:00
routes [API] Accept additional address formats (#170) 2023-02-28 17:50:23 -03:00
rpc [API] Accept additional address formats (#170) 2023-02-28 17:50:23 -03:00
types [API] Accept additional address formats (#170) 2023-02-28 17:50:23 -03:00
.gitignore [API/FLY/SPY] Update .gitignore (#87) 2023-01-24 12:02:41 -03:00
Dockerfile add make to docker 2023-02-05 09:52:56 -03:00
Makefile add make to docker 2023-02-05 09:52:56 -03:00
README.md add swagger doc, makefile and readme (#53) 2023-01-10 12:32:07 -03:00
go.mod Feature/add grpc support (#73) 2023-01-23 11:45:09 -03:00
go.sum Feature/add grpc support (#73) 2023-01-23 11:45:09 -03:00
main.go Add pprof all components (#134) 2023-02-03 15:18:44 -03:00

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