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

Deprecate Goerli #26

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export

.PHONY: build wrap dbt

DB_NAME ?= base_goerli
DB_NAME ?= base_sepolia
CONTAINER_NAME ?= data-db-1

# Target to recreate the database
Expand Down
2 changes: 1 addition & 1 deletion dashboard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The `secrets_default.toml` file contains default environment variables for this

## Development

The dashboard service consists of a page in the `pages` directory which corresponds to a network (OP mainnet, Base Goerli, Base Mainnet, etc.) Each page is set up to import a set of modules from the `modules` directory. To add new modules:
The dashboard service consists of a page in the `pages` directory which corresponds to a network (OP mainnet, Base Sepolia, Base Mainnet, etc.) Each page is set up to import a set of modules from the `modules` directory. To add new modules:

1. Create a new python file in the `modules` directory for the corresponding network
1. Import the module in the `pages` file for the corresponding network
Expand Down
26 changes: 0 additions & 26 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,6 @@ services:
env_file:
- ./indexers/base-mainnet/.env

base-goerli-processor:
build:
context: ./indexers/base-goerli
networks:
- data
depends_on:
- db
restart: always
environment:
DB_PASS: $PG_PASSWORD
env_file:
- ./indexers/base-goerli/.env

base-sepolia-processor:
build:
context: ./indexers/base-sepolia
Expand All @@ -54,19 +41,6 @@ services:
env_file:
- ./indexers/base-sepolia/.env

optimism-goerli-processor:
build:
context: ./indexers/optimism-goerli
networks:
- data
depends_on:
- db
restart: always
environment:
DB_PASS: $PG_PASSWORD
env_file:
- ./indexers/optimism-goerli/.env

optimism-mainnet-processor:
build:
context: ./indexers/optimism-mainnet
Expand Down
5 changes: 0 additions & 5 deletions indexers/base-goerli/.dockerignore

This file was deleted.

6 changes: 0 additions & 6 deletions indexers/base-goerli/.env.example

This file was deleted.

14 changes: 0 additions & 14 deletions indexers/base-goerli/Dockerfile

This file was deleted.

Loading