Skip to content
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
4 changes: 4 additions & 0 deletions .changeset/release-gate-amoy-erpc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
---

CI-only: release-gate AMOY_RPC moved off the retired public amoy endpoint; no runtime change.
7 changes: 4 additions & 3 deletions .github/workflows/docker-release-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
runs-on: ubuntu-latest
env:
# RPC URLs required by the service at runtime and during tests.
# AMOY_RPC is a public endpoint with no secret.
# ETHEREUM_RPC, MATIC_RPC, and SEPOLIA_RPC use an eRPC client token.
AMOY_RPC: '["https://rpc-amoy.polygon.technology"]'
# All four use the eRPC client token. AMOY_RPC previously pointed at the
# public rpc-amoy.polygon.technology endpoint, which no longer resolves —
# ci-trigger.yml had already moved to the eRPC URL, this file never did.
AMOY_RPC: '["https://rpc.polygon.tools/internal/evm/80002?token=${{ secrets.ERPC_CLIENT_TOKEN }}"]'
ETHEREUM_RPC: '["https://rpc.polygon.tools/internal/evm/1?token=${{ secrets.ERPC_CLIENT_TOKEN }}"]'
MATIC_RPC: '["https://rpc.polygon.tools/internal/evm/137?token=${{ secrets.ERPC_CLIENT_TOKEN }}"]'
SEPOLIA_RPC: '["https://rpc.polygon.tools/internal/evm/11155111?token=${{ secrets.ERPC_CLIENT_TOKEN }}"]'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- [#89](https://github.com/0xPolygon/proof-generation-api/pull/89) [`58a7e8b`](https://github.com/0xPolygon/proof-generation-api/commit/58a7e8bd4c7212544177f2c1e41ef6e530604c88) Thanks [@shan8851](https://github.com/shan8851)! - Remove the zkEVM proof-generation endpoints (`/zkevm/mainnet` and `/zkevm/testnet` routes) — the underlying chains are sunset and their infrastructure no longer answers. PoS (v1) endpoints are unchanged.

## Breaking changes

- Removed `GET /api/zkevm/{network}/bridge`
- Removed `GET /api/zkevm/{network}/merkle-proof`
- Removed the `ZKEVM_MAINNET_URL` and `ZKEVM_TESTNET_URL` environment variables — they are no longer recognized configuration
Expand Down
Loading