Skip to content

chore(docs): remove blast RPCs #6801

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

Merged
merged 3 commits into from
May 22, 2025
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
2 changes: 1 addition & 1 deletion docs/content/iota-evm/getting-started/tools.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 0 additions & 7 deletions docs/content/iota-evm/tools/rpcProviders.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ keywords:
- node infrastructure
- tools
- Ankr api
- Blast api
- archive node
image: /img/logo/WASP_logo_dark.png
---
Expand All @@ -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).
22 changes: 0 additions & 22 deletions docs/site/src/components/NetworkInfo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,28 +122,6 @@ function Evm(props: NetworkProps) {
</td>
</tr>
)}
{props.evmCustom?.blastApiUrls && (
<tr>
<th>
<Admonition type='tip' title='Blast API URLs'>
<a href={'/build/blastAPI/'}>Blast API</a> provides highly
scalable fault-tolerant API endpoints.
</Admonition>
</th>
<td>
{props.evmCustom?.blastApiUrls.map((object, index) =>
typeof object === 'string' ? (
<CodeBlock key={index}> {object as string} </CodeBlock>
) : (
<CodeBlock title={Object.keys(object)[0]} key={index}>
{' '}
{Object.values(object)[0]}{' '}
</CodeBlock>
),
)}
</td>
</tr>
)}
<tr>
<th>Explorer</th>
<td>
Expand Down
17 changes: 0 additions & 17 deletions docs/site/src/components/constant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,6 @@ export const Networks: Record<string, NetworkProps> = {
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,
Expand Down Expand Up @@ -80,14 +72,6 @@ export const Networks: Record<string, NetworkProps> = {
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,
Expand Down Expand Up @@ -162,7 +146,6 @@ export interface NetworkProps {
evmCustom?: {
chainId: string;
packageId: string;
blastApiUrls?: Array<string | object>;
ankrApiUrls?: Array<string | object>;
bridge?: Toolkit;
api?: string;
Expand Down
Loading