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

feat: DOCS-757 Added X Layer into AAPI #1664

Merged
merged 2 commits into from
Jun 20, 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
9 changes: 7 additions & 2 deletions pages/advanced-api/javascript-sdk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ await provider.getNFTsByOwner({

Currently, `ankr.js` supports interaction with the following chains using their aliases:



**Mainnet**:

* Arbitrum: `arbitrum`.
Expand All @@ -46,7 +48,7 @@ Currently, `ankr.js` supports interaction with the following chains using their
* Ethereum: `eth`.
* Fantom: `fantom`.
* Flare: `flare`.
* Gnosis: `gnosis`.
* Gnosis: `gnosis`
* Linea: `linea`.
* Optimism: `optimism`.
* Polygon: `polygon`.
Expand All @@ -55,11 +57,14 @@ Currently, `ankr.js` supports interaction with the following chains using their
* Scroll: `scroll`.
* Stellar: `stellar`.
* Syscoin: `syscoin`.
* Telos: `telos`
* Xai: `xai`.
* X Layer: `xlayer`

**Testnet**:

* Avalanche Fuji: `avalanche_fuji`.
* Base Sepolia: `base_sepolia`.
* Base Sepolia: `base_sepolia`
* Ethereum Holesky: `eth_holesky`.
* Ethereum Sepolia: `eth_sepolia`.
* Optimism Testnet: `optimism_testnet`.
Expand Down
14 changes: 7 additions & 7 deletions pages/advanced-api/nft-methods.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ Build your request using the parameters below.
* `params` (object): the data object containing request body parameters:
* `walletAddress` (string; required): an account address to query for NFTs; supports the Ethereum Name Service (ENS).
* `blockchain` (string): a chain or a combination of chains to query:
* Single chain: `arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`.
* Chains combination: `[arbitrum, avalanche, base, bsc, eth, fantom, flare, gnosis, linea, optimism, polygon, polygon_zkevm, rollux, scroll, stellar, syscoin, telos, xai, avalanche_fuji, base_sepolia, eth_holesky, eth_sepolia, optimism_testnet, polygon_amoy]`.
* Single chain: `arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`.
* Chains combination: `[arbitrum, avalanche, base, bsc, eth, fantom, flare, gnosis, linea, optimism, polygon, polygon_zkevm, rollux, scroll, stellar, syscoin, telos, xai, xlayer, avalanche_fuji, base_sepolia, eth_holesky, eth_sepolia, optimism_testnet, polygon_amoy]`.
* All chains: leave the value empty to query all the chains available.
* `pageSize` (int32): a number of page results you'd like to get (default=10, max=50).
* `pageToken` (string): a token is provided at the end of the response body and can be referenced in the request to fetch the next page.
Expand Down Expand Up @@ -107,7 +107,7 @@ A successful response contains the following parameters:
* `id` (int64; required):
* `jsonrpc` (string; required):
* `result` (object): the data object containing a list of NFT assets and their metadata:
* `blockchain` (string; required): one of the supported chains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `blockchain` (string; required): one of the supported chains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `collectionName` (string): a collection name the NFT asset belongs to.
* `contractAddress` (string): an NFT collection's EVM-compatible contract address.
* `contractType` (int32): a type of the contract — either ERC721 or ERC1155.
Expand Down Expand Up @@ -349,7 +349,7 @@ Build your request using the parameters below.
* `method` (string; required): a method used for the request.
* `params` (object): the data object containing request body parameters.

* `blockchain` (string; required): either of the supported chains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `blockchain` (string; required): either of the supported chains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `contractAddress` (string): an address of the NFT contract the metadata belongs to; supports the Ethereum Name Service (ENS).
* `forceFetch` (boolean): source of NFT metadata — `true` the contract, `false` the database.
* `skipSyncCheck` (boolean): if set to `true`, the info will be returned regardless of indexer health.
Expand Down Expand Up @@ -397,7 +397,7 @@ A successful request returns, along with the general parameters, the `result` ob
* `result` (object): the data object containing the NFT metadata and NFT attributes:

* `metadata` (object): the data object containing the NFT metadata:
* `blockchain` (string; required): one of the supported chains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `blockchain` (string; required): one of the supported chains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `contractAddress` (string): a contract address of the NFT Collection; supports the Ethereum Name Service (ENS).
* `contractType` (string): a contract type of the NFT the metadata belongs to (example: ERC721, ERC1155).
* `tokenId` (string): a token ID of the NFT the metadata belongs to (example: 7822).
Expand Down Expand Up @@ -551,7 +551,7 @@ Build your request using the parameters below.
* `method` (string; required): a method used for the request.
* `params` (object): the data object containing request body parameters.

* `blockchain` (string; required): either of the supported blockchains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `blockchain` (string; required): either of the supported blockchains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `contractAddress` (string): a contract address of the NFT collection; supports the Ethereum Name Service (ENS).
* `pageSize` (integer): a number of results you'd like to get (max: `10000`, default: `1000`).
* `pageToken` (string): a current page token provided at the end of the response body; can be referenced in the request to fetch the next page.
Expand Down Expand Up @@ -690,7 +690,7 @@ Build your request using the parameters below.
* `params` (object): the data object containing request body parameters.

* `address` (array of strings; required): an address (or list of addresses) to search for transactions.
* `blockchain` (array of strings): either of the supported blockchains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `blockchain` (array of strings): either of the supported blockchains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `descOrder` (boolean): choose data order, either descending (if `true`) or ascending (if `false`).
* `fromBlock` (integer): narrow your search indicating the block number to start from (inclusive; `>= 0`).
* `toBlock` (integer): narrow your search indicating the block number to end with (inclusive; `>= 0`).
Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-api/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Currently, Advanced API works with the following EVM-compatible chains:

**Mainnet**:

* `Avalanche`, `Arbitrum`, `Base`, `BNB Smart Chain`, `Ethereum`, `Fantom`, `Flare`, `Gnosis`, `Linea`, `Optimism`, `Polygon`, `Polygon zkEVM`, `Rollux`, `Scroll`, `Stellar`, `Syscoin`, `Telos`, `Xai`.
* `Avalanche`, `Arbitrum`, `Base`, `BNB Smart Chain`, `Ethereum`, `Fantom`, `Flare`, `Gnosis`, `Linea`, `Optimism`, `Polygon`, `Polygon zkEVM`, `Rollux`, `Scroll`, `Stellar`, `Syscoin`, `Telos`, `Xai`, `X Layer`.

**Testnet**:

Expand Down
7 changes: 5 additions & 2 deletions pages/advanced-api/python-sdk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Currently, `ankr.py` supports interaction with the following chains using their
* Ethereum: `eth`.
* Fantom: `fantom`.
* Flare: `flare`.
* Gnosis: `gnosis`.
* Gnosis: `gnosis`
* Linea: `linea`.
* Optimism: `optimism`.
* Polygon: `polygon`.
Expand All @@ -90,11 +90,14 @@ Currently, `ankr.py` supports interaction with the following chains using their
* Scroll: `scroll`.
* Stellar: `stellar`.
* Syscoin: `syscoin`.
* Telos: `telos`
* Xai: `xai`.
* X Layer: `xlayer`

**Testnet**:

* Avalanche Fuji: `avalanche_fuji`.
* Base Sepolia: `base_sepolia`.
* Base Sepolia: `base_sepolia`
* Ethereum Holesky: `eth_holesky`.
* Ethereum Sepolia: `eth_sepolia`.
* Optimism Testnet: `optimism_testnet`.
Expand Down
20 changes: 10 additions & 10 deletions pages/advanced-api/query-methods.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ Build your request using the parameters below.
* `params` (object): the data object containing request body parameters:

* `blockchain` (string): a chain or a combination of chains to query:
* Single chain: `arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`.
* Chains combination: `[arbitrum, avalanche, base, bsc, eth, fantom, flare, gnosis, linea, optimism, polygon, polygon_zkevm, rollux, scroll, stellar, syscoin, telos, xai, avalanche_fuji, base_sepolia, eth_holelsky, eth_sepolia, polygon_amoy]`.
* Single chain: `arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`.
* Chains combination: `[arbitrum, avalanche, base, bsc, eth, fantom, flare, gnosis, linea, optimism, polygon, polygon_zkevm, rollux, scroll, stellar, syscoin, telos, xai, xlayer, avalanche_fuji, base_sepolia, eth_holelsky, eth_sepolia, polygon_amoy]`.
* All chains: leave the value empty to query all the chains available.

<Tabs
Expand Down Expand Up @@ -141,7 +141,7 @@ Build your request using the parameters below.
* `method` (string; required): a method used for the request.
* `params` (object): the data object containing request body parameters:

* `blockchain` (string; required): either of the supported chains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `blockchain` (string; required): either of the supported chains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `decodeLogs` (boolean): set to `true` to decode logs, or to `false` if you don't need this kind of info.
* `decodeTxData` (boolean): set to `true` to decode transaction data, or to `false` if not interested in it.
* `descOrder` (boolean): choose data order, either descending (if `true`) or ascending (if `false`).
Expand Down Expand Up @@ -315,8 +315,8 @@ Build your request using the parameters below.

* `address` (array of strings): a contract address or a list of addresses from which the logs originate. Supported value formats: hex or array of hexes.
* `blockchain` (string): a chain or a combination of chains to query:
* Single chain: `arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`.
* Chains combination: `[arbitrum, avalanche, base, bsc, eth, fantom, flare, gnosis, linea, optimism, polygon, polygon_zkevm, rollux, scroll, stellar, syscoin, telos, xai, avalanche_fuji, base_sepolia, eth_holelsky, eth_sepolia, polygon_amoy]`.
* Single chain: `arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`.
* Chains combination: `[arbitrum, avalanche, base, bsc, eth, fantom, flare, gnosis, linea, optimism, polygon, polygon_zkevm, rollux, scroll, stellar, syscoin, telos, xai, xlayer, avalanche_fuji, base_sepolia, eth_holelsky, eth_sepolia, polygon_amoy]`.
* All chains: leave the value empty to query all the chains available.
* `decodeLogs` (boolean): set to `true` to decode logs, or to `false` if you don't need this kind of info.
* `descOrder` (boolean): choose data order, either descending (if `true`) or ascending (if `false`).
Expand Down Expand Up @@ -541,8 +541,8 @@ Build your request using the parameters below.
* `params` (object): the data object containing request body parameters:

* `blockchain` (string): a chain or a combination of chains to query:
* Single chain: `arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`.
* Chains combination: `[arbitrum, avalanche, base, bsc, eth, fantom, flare, gnosis, linea, optimism, polygon, polygon_zkevm, rollux, scroll, stellar, syscoin, telos, xai, avalanche_fuji, base_sepolia, eth_holelsky, eth_sepolia, polygon_amoy]`.
* Single chain: `arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`.
* Chains combination: `[arbitrum, avalanche, base, bsc, eth, fantom, flare, gnosis, linea, optimism, polygon, polygon_zkevm, rollux, scroll, stellar, syscoin, telos, xai, xlayer, avalanche_fuji, base_sepolia, eth_holelsky, eth_sepolia, polygon_amoy]`.
* All chains: leave the value empty to query all the chains available.
* `transactionHash` (string): a hash of the transactions you'd like to request the details for.
* `decodeLogs` (boolean): set to `true` to decode logs, or to `false` if you don't need this kind of info.
Expand Down Expand Up @@ -956,8 +956,8 @@ Build your request using the parameters below.

* `address` (string; required): an address to search for transactions.
* `blockchain` (string): a chain or a combination of chains to query:
* Single chain: `arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`.
* Chains combination: `[arbitrum, avalanche, base, bsc, eth, fantom, flare, gnosis, linea, optimism, polygon, polygon_zkevm, rollux, scroll, stellar, syscoin, telos, xai, avalanche_fuji, base_sepolia, eth_holelsky, eth_sepolia, polygon_amoy]`.
* Single chain: `arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`.
* Chains combination: `[arbitrum, avalanche, base, bsc, eth, fantom, flare, gnosis, linea, optimism, polygon, polygon_zkevm, rollux, scroll, stellar, syscoin, telos, xai, xlayer, avalanche_fuji, base_sepolia, eth_holelsky, eth_sepolia, polygon_amoy]`.
* All chains: leave the value empty to query all the chains available.
* `fromBlock` (integer): narrow your search indicating the block number to start from (inclusive; `>= 0`). Supported value formats: hex, decimal, "earliest", "latest".
* `toBlock` (integer): narrow your search indicating the block number to end with (inclusive; `>= 0`). Supported value formats: hex, decimal, "earliest", "latest".
Expand Down Expand Up @@ -1240,7 +1240,7 @@ Build your request using the parameters below.
* `method` (string; required): a method used for the request.
* `params` (object): the data object containing request body parameters:

* `blockchain` (string; required): either of the supported chains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `blockchain` (string; required): either of the supported chains (`arbitrum`, `avalanche`, `base`, `bsc`, `eth`, `fantom`, `flare`, `gnosis`, `linea`, `optimism`, `polygon`, `polygon_zkevm`, `rollux`, `scroll`, `stellar`, `syscoin`, `telos`, `xai`, `xlayer`, `avalanche_fuji`, `base_sepolia`, `eth_holesky`, `eth_sepolia`, `optimism_testnet`, `polygon_amoy`).
* `onlyWithValue` (boolean): set to `true` to receive only the responses containing the `value` parameter.
* `parentTransactionHash` (string, hex encoded; required): the hash of a parent transaction.

Expand Down
7 changes: 5 additions & 2 deletions pages/advanced-api/react-hooks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const Page = () => {
* Ethereum: `eth`.
* Fantom: `fantom`.
* Flare: `flare`.
* Gnosis: `gnosis`.
* Gnosis: `gnosis`
* Linea: `linea`.
* Optimism: `optimism`.
* Polygon: `polygon`.
Expand All @@ -67,11 +67,14 @@ const Page = () => {
* Scroll: `scroll`.
* Stellar: `stellar`.
* Syscoin: `syscoin`.
* Telos: `telos`
* Xai: `xai`.
* X Layer: `xlayer`

**Testnet**:

* Avalanche Fuji: `avalanche_fuji`.
* Base Sepolia: `base_sepolia`.
* Base Sepolia: `base_sepolia`
* Ethereum Holesky: `eth_holesky`.
* Ethereum Sepolia: `eth_sepolia`.
* Optimism Testnet: `optimism_testnet`.
Expand Down
Loading
Loading