Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change to dual db type #1717

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/analytics/env/production-mainnet.env
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ AWS_IAM_ROLE=
CACHE_CHANNEL=WORMSCAN:NOTIONAL
VAA_PAYLOAD_PARSER_URL=http://wormscan-vaa-payload-parser.wormscan
VAA_PAYLOAD_PARSER_TIMEOUT=10
DB_LAYER=mongo
DB_LAYER=dual
2 changes: 1 addition & 1 deletion deploy/analytics/env/production-testnet.env
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ AWS_IAM_ROLE=
CACHE_CHANNEL=WORMSCAN:NOTIONAL
VAA_PAYLOAD_PARSER_URL=http://wormscan-vaa-payload-parser.wormscan-testnet
VAA_PAYLOAD_PARSER_TIMEOUT=10
DB_LAYER=mongo
DB_LAYER=dual
2 changes: 1 addition & 1 deletion deploy/analytics/env/staging-testnet.env
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ AWS_IAM_ROLE=
CACHE_CHANNEL=WORMSCAN:NOTIONAL
VAA_PAYLOAD_PARSER_URL=http://wormscan-vaa-payload-parser.wormscan-testnet
VAA_PAYLOAD_PARSER_TIMEOUT=10
DB_LAYER=mongo
DB_LAYER=dual
2 changes: 1 addition & 1 deletion deploy/parser/env/production-mainnet.env
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ PPROF_ENABLED=false
AWS_IAM_ROLE=
ALERT_ENABLED=false
METRICS_ENABLED=true
DB_LAYER=mongo
DB_LAYER=dual
2 changes: 1 addition & 1 deletion deploy/parser/env/production-testnet.env
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ PPROF_ENABLED=false
AWS_IAM_ROLE=
ALERT_ENABLED=false
METRICS_ENABLED=true
DB_LAYER=mongo
DB_LAYER=dual
2 changes: 1 addition & 1 deletion deploy/parser/env/staging-testnet.env
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ PPROF_ENABLED=false
AWS_IAM_ROLE=
ALERT_ENABLED=false
METRICS_ENABLED=true
DB_LAYER=mongo
DB_LAYER=dual
2 changes: 1 addition & 1 deletion deploy/tx-tracker/env/production-mainnet.env
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ P2P_NETWORK=mainnet
AWS_IAM_ROLE=
METRICS_ENABLED=true
NOTIONAL_CACHE_CHANNEL=WORMSCAN:NOTIONAL
DB_LAYER=mongo
DB_LAYER=dual

ACALA_BASE_URL=https://eth-rpc-acala.aca-api.network
ACALA_REQUESTS_PER_MINUTE=12
Expand Down
2 changes: 1 addition & 1 deletion deploy/tx-tracker/env/production-testnet.env
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ P2P_NETWORK=testnet
AWS_IAM_ROLE=
METRICS_ENABLED=true
NOTIONAL_CACHE_CHANNEL=WORMSCAN:NOTIONAL
DB_LAYER=mongo
DB_LAYER=dual

ACALA_BASE_URL=https://acala-dev.aca-dev.network/eth/http
ACALA_REQUESTS_PER_MINUTE=12
Expand Down
2 changes: 1 addition & 1 deletion deploy/tx-tracker/env/staging-testnet.env
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ P2P_NETWORK=testnet
AWS_IAM_ROLE=
METRICS_ENABLED=true
NOTIONAL_CACHE_CHANNEL=WORMSCAN:NOTIONAL
DB_LAYER=mongo
DB_LAYER=dual

ACALA_BASE_URL=https://acala-dev.aca-dev.network/eth/http
ACALA_REQUESTS_PER_MINUTE=12
Expand Down
2 changes: 1 addition & 1 deletion fly/migration/migration.sql
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ CREATE TABLE wormholescan.wh_operation_prices (
"coingecko_id" varchar not null,
"symbol" varchar not null,
"token_usd_price" decimal(20,8) not null,
"total_token" decimal(20,8) not null,
"total_token" decimal(30,8) not null,
"total_usd" decimal(20,8) not null,
"timestamp" timestamptz not null,
"created_at" timestamptz not null,
Expand Down
Loading