Skip to content

Commit

Permalink
1496 recreate proofs (#1506)
Browse files Browse the repository at this point in the history
* recreates fixes for Infura-284a and 285

* recreates fixes for Infura-286

* recreates fixes for Infura-287

* revokes get test tokens

* Update services/reference/base/index.md

proofs

Co-authored-by: Alexandra Carrillo <[email protected]>

* Update services/reference/optimism/index.md

proof

Co-authored-by: Alexandra Carrillo <[email protected]>

---------

Co-authored-by: Alexandra Carrillo <[email protected]>
  • Loading branch information
m4sterbunny and alexandratran authored Sep 4, 2024
1 parent d44007d commit ad1d519
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 19 deletions.
2 changes: 1 addition & 1 deletion services/concepts/web3-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Some popular Ethereum compatible Web3 libraries include (but are not limited to)
| :--------- | :-------------------------------------------------------------------------------------------------- |
| JavaScript | [Web3.js](https://web3js.readthedocs.io/), [Ethers.js](https://docs.ethers.org/) |
| Python | [Web3.py](https://web3py.readthedocs.io/en/stable/) |
| Rust | [ethers-js](https://github.com/gakonst/ethers-rs) (recommended), [Rust-web3](https://docs.rs/web3/) |
| Rust | [ethers-rs](https://github.com/gakonst/ethers-rs) (recommended), [Rust-web3](https://docs.rs/web3/) |
| C++ | [Aleth](https://github.com/ethereum/aleth) |
| PHP | [Web3.php](https://github.com/web3p/web3.php) |
| Java | [Web3j](https://docs.web3j.io/) |
Expand Down
4 changes: 2 additions & 2 deletions services/get-started/endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ request to `[email protected]` and we will assess if your request can be accommo
|-------------------|-------------------------|-----------------------------------------------|
| Mainnet | JSON-RPC over HTTPS | `https://bsc-mainnet.infura.io/v3/<API-KEY>` |
| Mainnet | JSON-RPC over WebSocket | `wss://bsc-mainnet.infura.io/ws/v3/<API-KEY>` |
| Testnet (Sepolia) | JSON-RPC over HTTPS | `https://bsc-testnet.infura.io/v3/<API-KEY>` |
| Testnet | JSON-RPC over HTTPS | `https://bsc-testnet.infura.io/v3/<API-KEY>` |

## Celo

Expand Down Expand Up @@ -129,7 +129,7 @@ Sepolia instead.
| Mainnet | JSON-RPC over HTTPS | `https://optimism-mainnet.infura.io/v3/<API-KEY>` |
| Mainnet | JSON-RPC over WebSocket | `wss://optimism-mainnet.infura.io/ws/v3/<API-KEY>` |
| Testnet (Sepolia) | JSON-RPC over HTTPS | `https://optimism-sepolia.infura.io/v3/<API-KEY>` |
| Testnet (Sepolia) | JSON-RPC over WebSocket | `wss://optimism-mainnet.infura.io/ws/v3/<API-KEY>` |
| Testnet (Sepolia) | JSON-RPC over WebSocket | `wss://optimism-sepolia.infura.io/ws/v3/<API-KEY>` |

## Palm

Expand Down
11 changes: 7 additions & 4 deletions services/reference/base/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,23 @@ import CardList from '@site/src/components/CardList'

# Base

Base is an optimistic layer 2 rollup chain built by Coinbase on the MIT-licensed [OP Stack](https://optimism.mirror.xyz/fLk5UGjZDiXFuvQh6R_HscMQuuY9ABYNF7PI76-qJYs), in collaboration with [Optimism](../optimism/index.md).
Base is an optimistic layer 2 rollup chain built by Coinbase on the MIT-licensed [OP Stack](https://docs.optimism.io/stack/getting-started#the-op-stack-today), in collaboration with [Optimism](../optimism/index.md).

:::caution Limited access
Base is currently only available to a limited number of customers. Production
support is also limited. If you would like access, please submit a request to `[email protected]` and
we will assess if your request can be accommodated at this time.
:::

The Base network provides seamless Coinbase integrations, easy fiat onramps, and access to more than 100 million users and $100 billion in assets
in the Coinbase ecosystem.
The Base network provides seamless Coinbase integrations, easy fiat onramps, and access to more than
100 million users and $100 billion in assets in the Coinbase ecosystem.

:::info See also

See the [official Base documentation ](https://docs.base.org/)for more information.
- The [official Base documentation](https://docs.base.org/) for more information.
- The official
[Optimism Ethereum JSON-RPC API documentation](https://docs.optimism.io/builders/node-operators/json-rpc)
(Bedrock release) for custom Base methods.

:::

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ import TabItem from "@theme/TabItem"
<TabItem value="newHeads">

```bash
wscat -c wss://linea-sepolia.infura.io/ws/v3/YOUR-API-KEY -x '{"jsonrpc": "2.0", "id": 1, "method": "eth_subscribe", "params": ["newHeads"]}'
wscat -c wss://bsc-mainnet.infura.io/ws/v3/YOUR-API-KEY -x '{"jsonrpc": "2.0", "id": 1, "method": "eth_subscribe", "params": ["newHeads"]}'
```

</TabItem>
<TabItem value="logs">

```bash
wscat -c wss://linea-sepolia.infura.io/ws/v3/YOUR-API-KEY -x '{"jsonrpc": "2.0", "id": 1, "method": "eth_subscribe", "params": ["logs", {"address": "0x8320fe7702b96808f7bbc0d4a888ed1468216cfd", "topics":["0xd78a0cb8bb633d06981248b816e7bd33c2a35a6089241d099fa519e361cab902"]}]}'
wscat -c wss://bsc-mainnet.infura.io/ws/v3/YOUR-API-KEY -x '{"jsonrpc": "2.0", "id": 1, "method": "eth_subscribe", "params": ["logs", {"address": "0x8320fe7702b96808f7bbc0d4a888ed1468216cfd", "topics":["0xd78a0cb8bb633d06981248b816e7bd33c2a35a6089241d099fa519e361cab902"]}]}'
```

</TabItem>

<TabItem value="newPendingTransactions">

```bash
wscat -c wss://linea-sepolia.infura.io/ws/v3/YOUR-API-KEY -x '{"jsonrpc": "2.0", "id": 1, "method": "eth_subscribe", "params": ["newPendingTransactions"]}'
wscat -c wss://bsc-mainnet.infura.io/ws/v3/YOUR-API-KEY -x '{"jsonrpc": "2.0", "id": 1, "method": "eth_subscribe", "params": ["newPendingTransactions"]}'
```

</TabItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ import Params from "/services/reference/_partials/subscription-methods/_eth_subs

<Params />

:::note
The `newPendingTransactions` event is only available on Linea Sepolia.
:::

## Returns

import Returns from "/services/reference/_partials/subscription-methods/_eth_subscribe-returns.mdx";
Expand Down
2 changes: 1 addition & 1 deletion services/reference/bnb-smart-chain/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Don't have an Infura account? Sign up for our free plan and start using the BNB

## Prerequisites

Ensure you have an [API key](../../../developer-tools/dashboard/get-started/create-api) with the BNB Smart Chain networked enabled.
- Ensure you have an [API key](../../../developer-tools/dashboard/get-started/create-api) with the BNB Smart Chain networked enabled.

## Make calls

Expand Down
1 change: 0 additions & 1 deletion services/reference/mantle/json-rpc-methods/debug/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ methods on the Mantle network:
- [`debug_traceBlockByNumber`](debug_traceblockbynumber.md)
- [`debug_traceTransaction`](debug_tracetransaction.md)
- [`debug_traceCall`](debug_tracecall.md)
- [`debug_traceTransaction`](debug_tracetransaction.md)

## Debug tracing types

Expand Down
6 changes: 3 additions & 3 deletions services/reference/optimism/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ occur on Optimism are posted and validated on Ethereum mainnet using Optimistic
:::info see also

- For more information on the Optimism network, please see the
[official Optimism developer documentation](https://community.optimism.io/docs/developers/).
- Developers should be aware of some
[important differences between the behavior of Ethereum and Optimism](https://community.optimism.io/docs/developers/build/differences/).
[official Optimism developer documentation](https://docs.optimism.io/).
- See the [differences between the behavior of Ethereum and Optimism](https://docs.optimism.io/stack/differences).
- See the [JSON-RPC methods specific to Optimism Bedrock](https://docs.optimism.io/builders/node-operators/json-rpc).

:::

Expand Down

0 comments on commit ad1d519

Please sign in to comment.