Skip to content

Commit b9c8a7c

Browse files
authored
chore(docs): remove blast RPCs (#6801)
1 parent 323a0cf commit b9c8a7c

File tree

4 files changed

+1
-47
lines changed

4 files changed

+1
-47
lines changed

docs/content/iota-evm/getting-started/tools.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The following tools are **only available on IOTA EVM**.
5959

6060
### RPC Providers
6161

62-
The IOTA EVM is supported by well-established RPC providers like [Ankr](../tools/rpcProviders#ankr) and [Blast API](../tools/rpcProviders#blast).
62+
The IOTA EVM is supported by a well-established RPC provider: [Ankr](../tools/rpcProviders#ankr).
6363

6464
### IOTA EVM Bridge
6565

docs/content/iota-evm/tools/rpcProviders.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ keywords:
77
- node infrastructure
88
- tools
99
- Ankr api
10-
- Blast api
1110
- archive node
1211
image: /img/logo/WASP_logo_dark.png
1312
---
@@ -27,9 +26,3 @@ You can find a complete list of (archival) endpoints in the [Networks & Endpoint
2726
## Ankr
2827

2928
[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.
30-
31-
## Blast
32-
33-
[Blast API](https://blastapi.io/) is a decentralized platform that provides reliable and scalable node infrastructure
34-
for accessing blockchain data. It supports multiple blockchain networks, offering seamless integration and
35-
high-performance API endpoints for cross-chain decentralized applications (dApps).

docs/site/src/components/NetworkInfo/index.tsx

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -122,28 +122,6 @@ function Evm(props: NetworkProps) {
122122
</td>
123123
</tr>
124124
)}
125-
{props.evmCustom?.blastApiUrls && (
126-
<tr>
127-
<th>
128-
<Admonition type='tip' title='Blast API URLs'>
129-
<a href={'/build/blastAPI/'}>Blast API</a> provides highly
130-
scalable fault-tolerant API endpoints.
131-
</Admonition>
132-
</th>
133-
<td>
134-
{props.evmCustom?.blastApiUrls.map((object, index) =>
135-
typeof object === 'string' ? (
136-
<CodeBlock key={index}> {object as string} </CodeBlock>
137-
) : (
138-
<CodeBlock title={Object.keys(object)[0]} key={index}>
139-
{' '}
140-
{Object.values(object)[0]}{' '}
141-
</CodeBlock>
142-
),
143-
)}
144-
</td>
145-
</tr>
146-
)}
147125
<tr>
148126
<th>Explorer</th>
149127
<td>

docs/site/src/components/constant.tsx

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@ export const Networks: Record<string, NetworkProps> = {
3030
packageId:
3131
'0x1b33a3cf7eb5dde04ed7ae571db1763006811ff6b7bb35b3d1c780de153af9dd',
3232
ankrApiUrls: ['https://rpc.ankr.com/iota_evm'],
33-
blastApiUrls: [
34-
'https://iota-mainnet-evm.public.blastapi.io',
35-
'wss://iota-mainnet-evm.public.blastapi.io',
36-
{
37-
'Archive RPC':
38-
'https://iota-mainnet-evm.blastapi.io/e7596858-fc63-4a54-8727-b885a2af4ec8',
39-
},
40-
],
4133
bridge: {
4234
url: 'https://evm-bridge.iota.org',
4335
hasFaucet: false,
@@ -80,14 +72,6 @@ export const Networks: Record<string, NetworkProps> = {
8072
packageId:
8173
'0x1e6e060b87f55acc0a7632acab9cf5712ff01643f8577c9a6f99ebd1010e3f4c',
8274
ankrApiUrls: ['https://rpc.ankr.com/iota_evm_testnet'],
83-
blastApiUrls: [
84-
'https://iota-testnet-evm.public.blastapi.io',
85-
'wss://iota-testnet-evm.public.blastapi.io',
86-
{
87-
'Archive RPC':
88-
'https://iota-testnet-evm.blastapi.io/e7596858-fc63-4a54-8727-b885a2af4ec8',
89-
},
90-
],
9175
bridge: {
9276
url: 'https://testnet.evm-bridge.iota.org',
9377
hasFaucet: true,
@@ -162,7 +146,6 @@ export interface NetworkProps {
162146
evmCustom?: {
163147
chainId: string;
164148
packageId: string;
165-
blastApiUrls?: Array<string | object>;
166149
ankrApiUrls?: Array<string | object>;
167150
bridge?: Toolkit;
168151
api?: string;

0 commit comments

Comments
 (0)