Skip to content
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

fix redirects #1436

Merged
merged 4 commits into from
Jul 22, 2024
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 services/concepts/websockets.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Infura support subscriptions over WebSockets for the following networks:
- [Avalanche (C-Chain)](../reference/avalanche-c-chain/index.md)
- [Linea](../reference/linea/index.md)
- [Optimism](../reference/optimism/index.md)
- [Polygon](../reference/polygon/index.md)
- [Polygon](../reference/polygon-pos/index.md)

:::info

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ Generates and returns an estimate of how much gas is necessary to allow the tran

:::warning Gas parameter is capped

To prevent abuse of the API, the `gas` parameter in this `eth_estimateGas` method and in [`eth_call`](../reference/ethereum/json-rpc-methods/eth_call.mdx) is capped at 10x (1000%) the current block gas limit. You can recreate this behavior in your local test environment (besu, geth, or other client) via the [`rpc.gascap`](https://geth.ethereum.org/docs/fundamentals/command-line-options#commands) command-line option.
To prevent abuse of the API, the `gas` parameter in this `eth_estimateGas` method and in [`eth_call`](../ethereum/json-rpc-methods/eth_call.mdx) is capped at 10x (1000%) the current block gas limit. You can recreate this behavior in your local test environment (besu, geth, or other client) via the [`rpc.gascap`](https://geth.ethereum.org/docs/fundamentals/command-line-options#commands) command-line option.
:::
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- `maxPriorityFeePerGas`: _[optional]_ Maximum fee, in Wei, the sender is willing to pay per gas above the base fee.
See [EIP-1559 transactions](../../../concepts/transaction-types.md#eip-1559-transactions).
- `maxFeePerGas`: _[optional]_ Maximum total fee (base fee + priority fee), in Wei, the sender is willing to pay per gas.
See [EIP-1559 transactions](../../concepts/transaction-types.md#eip-1559-transactions).
See [EIP-1559 transactions](../../../concepts/transaction-types.md#eip-1559-transactions).
- `value`: _[optional]_ The hexadecimal equivalent of the value sent with this transaction.
- `data`: _[optional]_ The hash of the method signature and encoded parameters. See the
[Ethereum contract ABI specification](https://docs.soliditylang.org/en/latest/abi-spec.html).
Expand Down
4 changes: 2 additions & 2 deletions services/tutorials/ethereum/send-erc-20-token-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ async fn main() -> Result<()> {

Next, make the following updates to the above code:

- On line 17 replace the `INFURA_API_KEY` with the API key of your API project from
[Infura dashboard](../../dashboard/create-api.md).
- On line 17 replace the `INFURA_API_KEY` with the API key of your API project from the
[Infura dashboard](https://app.infura.io/login).
- On line 30 replace the `SIGNER_PRIVATE_KEY` with the private key of your Ethereum account.

:::tip Secure your keys
Expand Down
Loading
Loading