-
Notifications
You must be signed in to change notification settings - Fork 19
docs: add missing Custom Webhook networks #1632
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -636,6 +636,40 @@ components: | |
| - SETTLUS_SEPTESTNET | ||
| - APECHAIN_MAINNET | ||
| - APECHAIN_CURTIS | ||
| - OPT_KOVAN | ||
| - MATIC_AMOY | ||
| - ARC_TESTNET | ||
| - ARC_MAINNET | ||
| - ETH_RINKEBY | ||
| - OPT_SEPOLIA | ||
| - ARB_RINKEBY | ||
| - RONIN_SAIGON | ||
| - CELO_SEPOLIA | ||
| - CELO_MAINNET | ||
| - ZORA_SEPOLIA | ||
| - ZORA_MAINNET | ||
| - RONIN_MAINNET | ||
| - EARNM_SEPOLIA | ||
| - ANIME_SEPOLIA | ||
| - ANIME_MAINNET | ||
| - MONAD_MAINNET | ||
| - SCROLL_SEPOLIA | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
For users generating or validating Useful? React with 👍 / 👎. |
||
| - CELO_ALFAJORES | ||
| - PLASMA_MAINNET | ||
| - MANTLE_MAINNET | ||
| - GENSYN_TESTNET | ||
| - MANTLE_SEPOLIA | ||
| - SETTLUS_MAINNET | ||
| - UNICHAIN_MAINNET | ||
| - OPENLOOT_SEPOLIA | ||
| - ABSTRACT_TESTNET | ||
| - UNICHAIN_SEPOLIA | ||
| - ABSTRACT_MAINNET | ||
| - BERACHAIN_BEPOLIA | ||
| - ROBINHOOD_MAINNET | ||
| - ROBINHOOD_TESTNET | ||
| - BERACHAIN_MAINNET | ||
| - HYPERLIQUID_MAINNET | ||
| default: ETH_MAINNET | ||
| webhook_type: | ||
| type: string | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When callers rely on the OpenAPI schema to select a Custom Webhook network, this advertises
ETH_RINKEBYas valid even though the repository's current Ethereum guidance explicitly says Rinkeby was deprecated (content/tutorials/transactions/sending-transactions/how-to-send-transactions-on-ethereum.mdx:56). A retired network cannot provide the real-time activity promised by Custom Webhooks, so this value should not be added; the nearby legacyARB_RINKEBYandOPT_KOVANentries should also be rechecked before publication.Useful? React with 👍 / 👎.