diff --git a/docs/content/iota-evm/getting-started/tools.mdx b/docs/content/iota-evm/getting-started/tools.mdx index 3b85c6e4a5f..13b9684f5cc 100644 --- a/docs/content/iota-evm/getting-started/tools.mdx +++ b/docs/content/iota-evm/getting-started/tools.mdx @@ -59,7 +59,7 @@ The following tools are **only available on IOTA EVM**. ### RPC Providers -The IOTA EVM is supported by well-established RPC providers like [Ankr](../tools/rpcProviders#ankr) and [Blast API](../tools/rpcProviders#blast). +The IOTA EVM is supported by a well-established RPC provider: [Ankr](../tools/rpcProviders#ankr). ### IOTA EVM Bridge diff --git a/docs/content/iota-evm/tools/rpcProviders.md b/docs/content/iota-evm/tools/rpcProviders.md index e6a86bf2a11..baf749854b2 100644 --- a/docs/content/iota-evm/tools/rpcProviders.md +++ b/docs/content/iota-evm/tools/rpcProviders.md @@ -7,7 +7,6 @@ keywords: - node infrastructure - tools - Ankr api - - Blast api - archive node image: /img/logo/WASP_logo_dark.png --- @@ -27,9 +26,3 @@ You can find a complete list of (archival) endpoints in the [Networks & Endpoint ## Ankr [Ankr](https://www.ankr.com/web3-api/) is a well-established industry player known for its enterprise-grade globally distributed infrastructure of nodes and for the largest number of chains on the market to support your requests. - -## Blast - -[Blast API](https://blastapi.io/) is a decentralized platform that provides reliable and scalable node infrastructure -for accessing blockchain data. It supports multiple blockchain networks, offering seamless integration and -high-performance API endpoints for cross-chain decentralized applications (dApps). diff --git a/docs/site/src/components/NetworkInfo/index.tsx b/docs/site/src/components/NetworkInfo/index.tsx index 00247a2f91e..91bdb15d6e3 100644 --- a/docs/site/src/components/NetworkInfo/index.tsx +++ b/docs/site/src/components/NetworkInfo/index.tsx @@ -122,28 +122,6 @@ function Evm(props: NetworkProps) { )} - {props.evmCustom?.blastApiUrls && ( - - - - Blast API provides highly - scalable fault-tolerant API endpoints. - - - - {props.evmCustom?.blastApiUrls.map((object, index) => - typeof object === 'string' ? ( - {object as string} - ) : ( - - {' '} - {Object.values(object)[0]}{' '} - - ), - )} - - - )} Explorer diff --git a/docs/site/src/components/constant.tsx b/docs/site/src/components/constant.tsx index b2c963c8bc8..056d95cca7f 100644 --- a/docs/site/src/components/constant.tsx +++ b/docs/site/src/components/constant.tsx @@ -30,14 +30,6 @@ export const Networks: Record = { packageId: '0x1b33a3cf7eb5dde04ed7ae571db1763006811ff6b7bb35b3d1c780de153af9dd', ankrApiUrls: ['https://rpc.ankr.com/iota_evm'], - blastApiUrls: [ - 'https://iota-mainnet-evm.public.blastapi.io', - 'wss://iota-mainnet-evm.public.blastapi.io', - { - 'Archive RPC': - 'https://iota-mainnet-evm.blastapi.io/e7596858-fc63-4a54-8727-b885a2af4ec8', - }, - ], bridge: { url: 'https://evm-bridge.iota.org', hasFaucet: false, @@ -80,14 +72,6 @@ export const Networks: Record = { packageId: '0x1e6e060b87f55acc0a7632acab9cf5712ff01643f8577c9a6f99ebd1010e3f4c', ankrApiUrls: ['https://rpc.ankr.com/iota_evm_testnet'], - blastApiUrls: [ - 'https://iota-testnet-evm.public.blastapi.io', - 'wss://iota-testnet-evm.public.blastapi.io', - { - 'Archive RPC': - 'https://iota-testnet-evm.blastapi.io/e7596858-fc63-4a54-8727-b885a2af4ec8', - }, - ], bridge: { url: 'https://testnet.evm-bridge.iota.org', hasFaucet: true, @@ -162,7 +146,6 @@ export interface NetworkProps { evmCustom?: { chainId: string; packageId: string; - blastApiUrls?: Array; ankrApiUrls?: Array; bridge?: Toolkit; api?: string;