wormhole-explorer/parser
ftocal 7fb3857a97
297 contract watchertx trackeranalyticfly change access to use iam role (#306)
* Use aws role to access sqs

Co-authored-by: walker-16 <agpazos85@gmail.com>

* Add ServiceAccount in deployment

Co-authored-by: walker-16 <agpazos85@gmail.com>

---------

Co-authored-by: walker-16 <agpazos85@gmail.com>
2023-05-10 15:49:40 -03:00
..
cmd 297 contract watchertx trackeranalyticfly change access to use iam role (#306) 2023-05-10 15:49:40 -03:00
config 297 contract watchertx trackeranalyticfly change access to use iam role (#306) 2023-05-10 15:49:40 -03:00
consumer [API/PARSER] Chain activity and last transaction endpoints (#175) 2023-03-07 16:25:42 -03:00
http/infrastructure Improve logs for health/ready endpoints (#133) 2023-02-03 15:58:58 -03:00
internal Feature/refactor parser to use sns sqs (#148) 2023-02-16 10:55:54 -03:00
parser [API/PARSER] Chain activity and last transaction endpoints (#175) 2023-03-07 16:25:42 -03:00
processor Add 24h volume to scorecards (#274) 2023-05-04 20:17:03 -03:00
queue Feature/refactor parser to use sns sqs (#148) 2023-02-16 10:55:54 -03:00
.env.example Feature/add parser pipeline (#46) 2023-01-18 12:42:14 -03:00
.gitignore [PARSER/PIPELINE] Update .gitignore (#174) 2023-03-06 14:35:53 -03:00
Dockerfile [API/PARSER] Chain activity and last transaction endpoints (#175) 2023-03-07 16:25:42 -03:00
Makefile [PARSER/PIPELINE] Update .gitignore (#174) 2023-03-06 14:35:53 -03:00
README.md Feature/refactor parser to use sns sqs (#148) 2023-02-16 10:55:54 -03:00
go.mod 297 contract watchertx trackeranalyticfly change access to use iam role (#306) 2023-05-10 15:49:40 -03:00
go.sum 297 contract watchertx trackeranalyticfly change access to use iam role (#306) 2023-05-10 15:49:40 -03:00

README.md

Parser

Config sns topic

aws --profile localstack --endpoint-url=http://localhost:4566 sns create-topic --name vaas-pipeline.fifo --attributes FifoTopic=true,ContentBasedDeduplication=false

Config SQS FIFO with dead letter queue localstack

aws --profile localstack --endpoint-url=http://localhost:4566 sqs create-queue --queue-name=wormhole-vaa-parser-dlq-queue.fifo --attributes "FifoQueue=true"

aws --profile localstack --endpoint-url=http://localhost:4566 sqs create-queue --queue-name=wormhole-vaa-parser-queue.fifo --attributes FifoQueue=true,MessageRetentionPeriod=3600,ReceiveMessageWaitTimeSeconds=5,VisibilityTimeout=20,RedrivePolicy=""{\"deadLetterTargetArn\":\"arn:aws:sqs:us-east-1:000000000000:wormhole-vaa-parser-dlq-queue.fifo\",\"maxReceiveCount\":\"2\"}""

Subscribe SQS FIFO to vaas-pipeline.fifo topic

aws --profile localstack --endpoint-url=http://localhost:4566 sns subscribe --topic-arn arn:aws:sns:us-east-1:000000000000:vaas-pipeline.fifo --protocol sqs --notification-endpoint http://localhost:4566/000000000000/wormhole-vaa-parser-queue.fifo

Check message in the dead letter queue localstack

aws --profile localstack --endpoint-url=http://localhost:4566 sqs receive-message --queue-url=http://localhost:4566/000000000000/wormhole-vaa-parser-dlq-queue.fifo