Skip to content
Closed
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
29 changes: 29 additions & 0 deletions fern/api-reference/frax/frax-api-overview.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: Frax API Overview
description: Overview of available Frax API methods
subtitle: Comprehensive list of Frax JSON-RPC methods
slug: docs/frax/frax-api-overview
---

## Frax APIs

📙 Get started with our [Frax API Quickstart Guide](/docs/frax).

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Point Frax quickstart CTA to an existing route

The new overview page links users to /docs/frax, but this repo does not define a page or redirect for that URL; the actual quickstart page is slugged as reference/frax-api-quickstart (see content/api-reference/frax/frax-api-quickstart.mdx), and the Frax section in content/docs.yml has no overview path that would create a /docs/frax landing page. If this generated page is published, the “Quickstart Guide” CTA will send readers to a dead link instead of the Frax quickstart.

Useful? React with 👍 / 👎.


| | |
| ----------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
| [`eth_blockNumber`](/docs/chains/frax/frax-api-endpoints/eth-block-number) | [`eth_call`](/docs/chains/frax/frax-api-endpoints/eth-call) |
| [`eth_chainId`](/docs/chains/frax/frax-api-endpoints/eth-chain-id) | [`eth_estimateGas`](/docs/chains/frax/frax-api-endpoints/eth-estimate-gas) |
| [`eth_gasPrice`](/docs/chains/frax/frax-api-endpoints/eth-gas-price) | [`eth_getAccount`](/docs/chains/frax/frax-api-endpoints/eth-get-account) |
| [`eth_getBalance`](/docs/chains/frax/frax-api-endpoints/eth-get-balance) | [`eth_getBlockByHash`](/docs/chains/frax/frax-api-endpoints/eth-get-block-by-hash) |
| [`eth_getBlockByNumber`](/docs/chains/frax/frax-api-endpoints/eth-get-block-by-number) | [`eth_getBlockTransactionCountByHash`](/docs/chains/frax/frax-api-endpoints/eth-get-block-transaction-count-by-hash) |
| [`eth_getBlockTransactionCountByNumber`](/docs/chains/frax/frax-api-endpoints/eth-get-block-transaction-count-by-number) | [`eth_getCode`](/docs/chains/frax/frax-api-endpoints/eth-get-code) |
| [`eth_getFilterChanges`](/docs/chains/frax/frax-api-endpoints/eth-get-filter-changes) | [`eth_getFilterLogs`](/docs/chains/frax/frax-api-endpoints/eth-get-filter-logs) |
| [`eth_getLogs`](/docs/chains/frax/frax-api-endpoints/eth-get-logs) | [`eth_getRawTransactionByHash`](/docs/chains/frax/frax-api-endpoints/eth-get-raw-transaction-by-hash) |
| [`eth_getStorageAt`](/docs/chains/frax/frax-api-endpoints/eth-get-storage-at) | [`eth_getTransactionByBlockHashAndIndex`](/docs/chains/frax/frax-api-endpoints/eth-get-transaction-by-block-hash-and-index) |
| [`eth_getTransactionByBlockNumberAndIndex`](/docs/chains/frax/frax-api-endpoints/eth-get-transaction-by-block-number-and-index) | [`eth_getTransactionByHash`](/docs/chains/frax/frax-api-endpoints/eth-get-transaction-by-hash) |
| [`eth_getTransactionCount`](/docs/chains/frax/frax-api-endpoints/eth-get-transaction-count) | [`eth_getTransactionReceipt`](/docs/chains/frax/frax-api-endpoints/eth-get-transaction-receipt) |
| [`eth_newBlockFilter`](/docs/chains/frax/frax-api-endpoints/eth-new-block-filter) | [`eth_newFilter`](/docs/chains/frax/frax-api-endpoints/eth-new-filter) |
| [`eth_sendRawTransaction`](/docs/chains/frax/frax-api-endpoints/eth-send-raw-transaction) | [`eth_submitWork`](/docs/chains/frax/frax-api-endpoints/eth-submit-work) |
| [`eth_subscribe`](/docs/chains/frax/frax-api-endpoints/eth-subscribe) | [`eth_uninstallFilter`](/docs/chains/frax/frax-api-endpoints/eth-uninstall-filter) |
| [`eth_unsubscribe`](/docs/chains/frax/frax-api-endpoints/eth-unsubscribe) | [`net_version`](/docs/chains/frax/frax-api-endpoints/net-version) |
| [`web3_clientVersion`](/docs/chains/frax/frax-api-endpoints/web-3-client-version) | [`web3_sha3`](/docs/chains/frax/frax-api-endpoints/web-3-sha-3) |
4 changes: 2 additions & 2 deletions src/openrpc/chains/frax/frax.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ info:
servers:
- url: https://frax-mainnet.g.alchemy.com/v2
name: Frax Mainnet
- url: https://frax-hoodi.g.alchemy.com/v2
name: Frax Hoodi
- url: https://frax-sepolia.g.alchemy.com/v2
name: Frax Sepolia
methods:
- $ref: ../_components/evm/methods.yaml#/components/methods/eth_blockNumber
- $ref: ../_components/evm/methods.yaml#/components/methods/eth_call
Expand Down
Loading