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
6 changes: 5 additions & 1 deletion fern/api-reference/starknet/starknet-api-faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Explained in the [Starknet API Quickstart Guide](/reference/starknet-api-quickst

## What versions of Starknet API are supported?

Alchemy currently supports `v0_6`, `v0_7`, and `v0_8`. We strongly recommend using `v0_8`.
Alchemy currently supports `v0_6`, `v0_7`, `v0_8`, and `v0_9`. We strongly recommend using the latest version, `v0_9`.

To access `v0_6` (**notice the underscore**) you can use the following URLs to make requests:
* Mainnet: `https://starknet-mainnet.g.alchemy.com/starknet/version/rpc/v0_6/{apiKey}`
Expand All @@ -33,6 +33,10 @@ To access `v0_8` (**notice the underscore**) you can use the following URLs to m
* Mainnet: `https://starknet-mainnet.g.alchemy.com/starknet/version/rpc/v0_8/{apiKey}`
* Testnet: `https://starknet-sepolia.g.alchemy.com/starknet/version/rpc/v0_8/{apiKey}`

To access `v0_9` (**notice the underscore**) you can use the following URLs to make requests:
* Mainnet: `https://starknet-mainnet.g.alchemy.com/starknet/version/rpc/v0_9/{apiKey}`
* Testnet: `https://starknet-sepolia.g.alchemy.com/starknet/version/rpc/v0_9/{apiKey}`

You can also directly try these APIs from browser in our [API references for Starknet](/reference/starknet-api-endpoints)

## Is Starknet EVM compatible?
Expand Down
3 changes: 2 additions & 1 deletion src/openrpc/chains/_components/evm/methods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -809,10 +809,11 @@ components:
|-------|------|---------------|------------|
| Ethereum, Base, Optimism, Arbitrum, Worldchain, zkSync | 10 | unlimited | unlimited |
| Polygon | 10 | 2000 | unlimited |
| BSC, Sei, Unichain | 10 | 10,000 | 10,000 |
| BSC, Unichain | 10 | 10,000 | 10,000 |
| Berachain, Plasma | 10 | 10,000 | 100,000 |
| Monad | 10 | 1000 | 1000 |
| Polygon zkEVM | 10 | 10,000 | 20,000 |
| Sei | 10 | 2000 | 2000 |
| All Other Chains | 10 | 10,000 | uncapped*** |
params:
- name: Filter
Expand Down
Loading