Skip to content

Commit 35c035f

Browse files
authored
Merge pull request #5960 from ethereum-optimism/cleanup/delete-gas-oracle
cleanup: delete gas-oracle
2 parents 142448c + b12471c commit 35c035f

31 files changed

+208
-5010
lines changed

.circleci/config.yml

-4
Original file line numberDiff line numberDiff line change
@@ -1245,10 +1245,6 @@ workflows:
12451245
name: proxyd-tests
12461246
binary_name: proxyd
12471247
working_directory: proxyd
1248-
- go-lint-test-build:
1249-
name: gas-oracle-tests
1250-
binary_name: gas-oracle
1251-
working_directory: gas-oracle
12521248
- go-lint-test-build:
12531249
name: indexer-tests
12541250
binary_name: indexer

.github/CODEOWNERS

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Legacy codebases
2-
/gas-oracle @ethereum-optimism/legacy-reviewers
32
/l2geth @ethereum-optimism/legacy-reviewers
43
/packages/actor-tests @ethereum-optimism/legacy-reviewers
54
/packages/common-ts @ethereum-optimism/typescript-reviewers

.github/workflows/publish-canary.yml

-27
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
data-transport-layer: ${{ steps.packages.outputs.data-transport-layer }}
2525
contracts: ${{ steps.packages.outputs.contracts }}
2626
contracts-bedrock: ${{ steps.packages.outputs.contracts-bedrock }}
27-
gas-oracle: ${{ steps.packages.outputs.gas-oracle }}
2827
replica-healthcheck: ${{ steps.packages.outputs.replica-healthcheck }}
2928
hardhat-node: ${{ steps.packages.outputs.hardhat-node }}
3029
canary-docker-tag: ${{ steps.docker-image-name.outputs.canary-docker-tag }}
@@ -124,32 +123,6 @@ jobs:
124123
push: true
125124
tags: ethereumoptimism/l2geth:${{ needs.canary-publish.outputs.canary-docker-tag }}
126125

127-
gas-oracle:
128-
name: Publish Gas Oracle ${{ needs.canary-publish.outputs.canary-docker-tag }}
129-
needs: canary-publish
130-
if: needs.canary-publish.outputs.gas-oracle != ''
131-
runs-on: ubuntu-latest
132-
133-
steps:
134-
- name: Checkout
135-
uses: actions/checkout@v2
136-
- name: Set up Docker Buildx
137-
uses: docker/setup-buildx-action@v1
138-
139-
- name: Login to Docker Hub
140-
uses: docker/login-action@v1
141-
with:
142-
username: ${{ secrets.DOCKERHUB_ACCESS_TOKEN_USERNAME }}
143-
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN_SECRET }}
144-
145-
- name: Build and push
146-
uses: docker/build-push-action@v2
147-
with:
148-
context: .
149-
file: ./gas-oracle/Dockerfile
150-
push: true
151-
tags: ethereumoptimism/gas-oracle:${{ needs.canary-publish.outputs.canary-docker-tag }}
152-
153126
hardhat-node:
154127
name: Publish Hardhat Node ${{ needs.canary-publish.outputs.canary-docker-tag }}
155128
needs: canary-publish

.github/workflows/release.yml

-27
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
contracts: ${{ steps.packages.outputs.contracts }}
2525
contracts-bedrock: ${{ steps.packages.outputs.contracts-bedrock }}
2626
balance-monitor: ${{ steps.packages.outputs.balance-monitor }}
27-
gas-oracle: ${{ steps.packages.outputs.gas-oracle }}
2827
replica-healthcheck: ${{ steps.packages.outputs.replica-healthcheck }}
2928
hardhat-node: ${{ steps.packages.outputs.hardhat-node }}
3029
op-exporter: ${{ steps.packages.outputs.op-exporter }}
@@ -110,32 +109,6 @@ jobs:
110109
push: true
111110
tags: ethereumoptimism/l2geth:${{ needs.release.outputs.l2geth }},ethereumoptimism/l2geth:latest
112111

113-
gas-oracle:
114-
name: Publish Gas Oracle Version ${{ needs.release.outputs.gas-oracle }}
115-
needs: release
116-
if: needs.release.outputs.gas-oracle != ''
117-
runs-on: ubuntu-latest
118-
steps:
119-
- name: Checkout
120-
uses: actions/checkout@v2
121-
122-
- name: Login to Docker Hub
123-
uses: docker/login-action@v1
124-
with:
125-
username: ${{ secrets.DOCKERHUB_ACCESS_TOKEN_USERNAME }}
126-
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN_SECRET }}
127-
128-
- name: Set up Docker Buildx
129-
uses: docker/setup-buildx-action@v1
130-
131-
- name: Publish Gas Oracle
132-
uses: docker/build-push-action@v2
133-
with:
134-
context: .
135-
file: ./gas-oracle/Dockerfile
136-
push: true
137-
tags: ethereumoptimism/gas-oracle:${{ needs.release.outputs.gas-oracle }},ethereumoptimism/gas-oracle:latest
138-
139112
hardhat-node:
140113
name: Publish Hardhat Node ${{ needs.release.outputs.hardhat-node }}
141114
needs: release

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ Refer to the Directory Structure section below to understand which packages are
8989
│ ├── <a href="./packages/message-relayer">message-relayer</a>: Tool for automatically relaying L1<>L2 messages in development
9090
│ ├── <a href="./packages/replica-healthcheck">replica-healthcheck</a>: Service for monitoring the health of a replica node
9191
│ └── <a href="./packages/sdk">sdk</a>: provides a set of tools for interacting with Optimism
92-
├── <a href="./gas-oracle">gas-oracle</a>: Service for updating L1 gas prices on L2
9392
├── <a href="./indexer">indexer</a>: indexes and syncs transactions
9493
├── <a href="./infra/op-replica">infra/op-replica</a>: Deployment examples and resources for running an Optimism replica
9594
├── <a href="./l2geth">l2geth</a>: Optimism client software, a fork of <a href="https://github.com/ethereum/go-ethereum/tree/v1.9.10">geth v1.9.10</a>

gas-oracle/.gitignore

-1
This file was deleted.

gas-oracle/CHANGELOG.md

-106
This file was deleted.

gas-oracle/Dockerfile

-15
This file was deleted.

gas-oracle/Makefile

-46
This file was deleted.

gas-oracle/README.md

-89
This file was deleted.

0 commit comments

Comments
 (0)