wormhole-explorer/api
Mariano ce1b7707fb
[WORMSCAN-API-1225] Add new endpoint for fetching x-chain-activity tops data (#1342)
* add 2 new tasks for collecting chain activity every day and hour

* making progress

* change query 2

* add query by month and year

* changes on task

* more changes

* change to 1d

* add 1d

* fix query

* adjust queryies

* change the way the query is executed

* changes on query

* making more progress

* fix per year query

* add a second group of tasks for downsampling

* add app_id

* update swagger docs

* optimize new tasks

* fix W

* fix W

* start using the new measurement

* change endpoint signature

* update endpoint name

* fix indents

* code review changes

* remove unnecessary break
2024-04-26 15:03:02 -03:00
..
cacheable Fallback metrics endpoint (#921) 2023-12-19 12:24:58 -03:00
docs [WORMSCAN-API-1225] Add new endpoint for fetching x-chain-activity tops data (#1342) 2024-04-26 15:03:02 -03:00
handlers [WORMSCAN-API-1225] Add new endpoint for fetching x-chain-activity tops data (#1342) 2024-04-26 15:03:02 -03:00
internal [ISSUE-1213] Refactor of top-contributors stats and activity job (#1215) 2024-03-18 10:21:42 -03:00
middleware [WORMSCAN-API-1225] Add new endpoint for fetching x-chain-activity tops data (#1342) 2024-04-26 15:03:02 -03:00
response Create an api endpoint to call vaa payload parser component (#596) 2023-08-10 11:02:14 -03:00
routes [WORMSCAN-API-1225] Add new endpoint for fetching x-chain-activity tops data (#1342) 2024-04-26 15:03:02 -03:00
rpc Store duplicate vaas on a secondary collection (#1308) 2024-04-22 14:26:07 -03:00
.gitignore [API/FLY/SPY] Update .gitignore (#87) 2023-01-24 12:02:41 -03:00
Dockerfile Store duplicate vaas on a secondary collection (#1308) 2024-04-22 14:26:07 -03:00
Makefile add make to docker 2023-02-05 09:52:56 -03:00
README.md Relays api endpoint (#689) 2023-09-13 10:23:10 -03:00
go.mod Fix go dependencies in api and pipeline (#1344) 2024-04-23 11:41:06 -03:00
go.sum Fix go dependencies in api and pipeline (#1344) 2024-04-23 11:41:06 -03:00
main.go Add cache to governor endpoints (#1271) 2024-04-03 14:58:04 -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_DB_NAME=wormhole WORMSCAN_PORT=5555 WORMSCAN_RUNMODE=DEVELOPMENT ./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