wormhole-explorer/contract-watcher
agodnic d267d3ae1f
Transaction search by address: fix case sensitivity (#591)
### Description

Tracking issue: https://github.com/wormhole-foundation/wormhole-explorer/issues/587

The endpoint `GET /api/v1/transactions?address={addr}` was incorrectly handling EVM addresses containing uppercase characters. This pull request fixes the issue.
2023-07-28 12:27:48 -03:00
..
builder Add tbtc support to the `contract-watcher` service (#584) 2023-07-26 16:26:07 -03:00
cmd Add tbtc support to the `contract-watcher` service (#584) 2023-07-26 16:26:07 -03:00
config Add tbtc support to the `contract-watcher` service (#584) 2023-07-26 16:26:07 -03:00
http/infrastructure [contract-watcher] Add opsgenie alerts and prometheus metrics (#472) 2023-06-30 11:25:09 -03:00
internal Transaction search by address: fix case sensitivity (#591) 2023-07-28 12:27:48 -03:00
processor Add contract watcher component (#190) 2023-03-15 16:52:50 -03:00
storage [contract-watcher] Add opsgenie alerts and prometheus metrics (#472) 2023-06-30 11:25:09 -03:00
watcher Transaction search by address: fix case sensitivity (#591) 2023-07-28 12:27:48 -03:00
.gitignore Add contract watcher component (#190) 2023-03-15 16:52:50 -03:00
Dockerfile Add aptos support to contract watcher (#255) 2023-04-24 12:02:19 -03:00
Makefile Add aptos support to contract watcher (#255) 2023-04-24 12:02:19 -03:00
README.md Add backfiller command to process a chain (#364) 2023-05-31 10:29:47 -03:00
go.mod [contract-watcher] Add opsgenie alerts and prometheus metrics (#472) 2023-06-30 11:25:09 -03:00
go.sum [contract-watcher] Add opsgenie alerts and prometheus metrics (#472) 2023-06-30 11:25:09 -03:00

README.md

contract-watcher

This component is in charge of obtaining the redeemed vaa's to obtain information from the target chain. .

Usage

Service

contract-watcher service

Backfiller

contract-watcher backfiller [flags]

Command-line arguments

  • --chain-name string chain name
  • --chain-url string chain URL
  • --from uint first block to be processed
  • --log-level string log level (default "INFO")
  • --mongo-database string mongo database
  • --mongo-uri string mongo connection
  • --network string network (mainnet or testnet)
  • --page-size int maximum number to process at one time (default 100)
  • --persist-blocks persist processed blocks in storage
  • --rate-limit int rate limit per second (default 3)
  • --to uint last block to be processed (included)