diff --git a/.github/workflows/sync-apis.yaml b/.github/workflows/sync-apis.yaml
index b8aad6bc..782e6eb8 100644
--- a/.github/workflows/sync-apis.yaml
+++ b/.github/workflows/sync-apis.yaml
@@ -2562,12 +2562,6 @@ jobs:
working-directory: ./zkSync
run: rdme openapi eth_getUncleCountByBlockNumber.yaml --key=$README_API_KEY --id=65eccfaf5c99780063a5faa8
- - name: Update zkSync API - eth_maxPriorityFeePerGas
- env:
- README_API_KEY: ${{ secrets.README_API_KEY }}
- working-directory: ./zkSync
- run: rdme openapi eth_maxPriorityFeePerGas.yaml --key=$README_API_KEY --id=65eccfd424d69a000ff0423b
-
- name: Update zkSync API - eth_newBlockFilter
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
diff --git a/zkSync/eth_maxPriorityFeePerGas.yaml b/zkSync/eth_maxPriorityFeePerGas.yaml
deleted file mode 100644
index c1eb2a29..00000000
--- a/zkSync/eth_maxPriorityFeePerGas.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-openapi: 3.1.0
-info:
- title: eth_maxPriorityFeePerGas - zkSync
- version: '1.0'
-servers:
- - url: 'https://{network}.g.alchemy.com/v2/'
- variables:
- network:
- enum:
- - zksync-mainnet
- - zksync-sepolia
- default: zksync-mainnet
-x-sandbox:
- category:
- type:
- $ref: '../components/sandbox.yaml#/Category'
- value: core
-paths:
- /{apiKey}:
- post:
- summary: eth_maxPriorityFeePerGas - zkSync
- description: "Returns a fee per gas that is an estimate of how much you can pay as a priority fee, or 'tip', to get a transaction included in the current block."
- tags: []
- parameters:
- - name: apiKey
- in: path
- schema:
- type: string
- default: docs-demo
- description: |
-
- For higher throughput, create your own API key
- required: true
- requestBody:
- content:
- application/json:
- schema:
- $ref: ../evm_body.yaml#/eth_maxPriorityFeePerGas
- responses:
- '200':
- description: Returns the estimated priority fee per gas.
- content:
- application/json:
- schema:
- $ref: ../evm_responses.yaml#/string_result_response
- operationId: eth-maxPriorityFeePerGas-zksync