Skip to content

Commit c43a9ef

Browse files
committed
edits
1 parent 4b29bf9 commit c43a9ef

File tree

580 files changed

+761
-721
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

580 files changed

+761
-721
lines changed

developer-tools/dashboard/how-to/dashboard-stats.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ You can view your Web3 API usage stats in the following charts and tables.
4040

4141
### Requests Volume chart
4242

43-
This chart displays the total volume of requests sent to Infura using the selected API key(s) over
43+
This chart displays the total volume of requests sent to Infura using the selected API keys over
4444
the selected time period.
4545

4646
### Product Request Volumes
4747

4848
This chart displays the aggregate request volumes for the top five API methods called using the
49-
selected API key(s) over the selected time period.
49+
selected API keys over the selected time period.
5050
To view stats for a particular product (network) instead of the default of all products, make a
5151
selection from the products dropdown.
5252
This change will impact what API methods are displayed in the
@@ -55,14 +55,14 @@ This change will impact what API methods are displayed in the
5555
### Method Request Volumes
5656

5757
This chart displays the aggregate request volumes for requests made on the top five networks using
58-
the selected API key(s) over the selected time period.
58+
the selected API keys over the selected time period.
5959
To view stats for a particular method instead of the default of all methods, make a selection from
6060
the methods dropdown.
6161

6262
### Requests Activity
6363

6464
This table displays the total request volumes and successful and failed requests, based on each
65-
product (network) and method called using the selected API key(s) over the selected time period.
65+
product (network) and method called using the selected API keys over the selected time period.
6666

6767
For more details about the failure status codes, select the two diagonal arrows to the right of the
6868
**FAILED REQUESTS (%)** values.
@@ -72,7 +72,7 @@ requests, grouped by the returned status codes.
7272
### Eth_call activity
7373

7474
This table displays the activities made on the `eth_call` method, including contract addresses that
75-
interacted with the selected API key(s).
75+
interacted with the selected API keys.
7676
This table only shows the `eth_call` activity for the last 30 minutes, and is not impacted by any
7777
time period selection.
7878

@@ -85,15 +85,15 @@ You can view your IPFS usage stats in the following charts.
8585

8686
### Data Transfer Up
8787

88-
This chart displays the amount of data sent to the IPFS service using the selected API key(s) over
88+
This chart displays the amount of data sent to the IPFS service using the selected API keys over
8989
the selected time period.
9090

9191
### Data Transfer Down
9292

93-
This chart displays the amount of data retrieved from the IPFS service using the selected API key(s)
93+
This chart displays the amount of data retrieved from the IPFS service using the selected API keys
9494
over the selected time period.
9595

9696
### Total Storage
9797

98-
This chart displays the total amount of data stored by the selected API key(s) over the selected
98+
This chart displays the total amount of data stored by the selected API keys over the selected
9999
time period.

developer-tools/dashboard/how-to/secure-an-api/api-key-secret.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If your dapp operates solely on the client side without a server, use only the A
2222
The API key is exposed in client-side code, so you should secure it using [allowlists](use-an-allowlist.md).
2323

2424
:::tip
25-
For customers on the Developer tier or higher, Infura supports [overriding your allowlist](use-an-allowlist.md#overide-your-allowlist-settings)
25+
For customers on the Developer tier or higher, Infura supports [overriding your allowlist](use-an-allowlist.md#override-your-allowlist-settings)
2626
when you specify an API key secret. This allows you to apply the principle of least privilege on the
2727
client side while allowing unrestricted access on the server side.
2828
:::

developer-tools/dashboard/how-to/secure-an-api/set-rate-limits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ Set rate limiting in the API key's **Settings** tab **Key Credit Limits** sectio
2323
The value `0` means default limits are applied.
2424

2525
- **PER DAY TOTAL CREDITS** restricts total daily credit usage for the API key. Set a limit on number of
26-
credits per day in integers, e.g. 20000. The value `0` means default limits are applied.
26+
credits per day in integers, for example, 20000. The value `0` means default limits are applied.
2727

2828
When the number of used credits reach this limit, all requests will be rejected until the next day (00:00 UTC).

developer-tools/dashboard/how-to/secure-an-api/use-an-allowlist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ This functionality is only available to customers on the Developer tier or highe
188188
[upgrade your plan](../upgrade-your-plan.md) if you're currently on the free Core tier.
189189
:::
190190

191-
The **OVERIDE ALLOWLIST** switch lets you overide your allowlist settings when a request includes an
191+
The **OVERRIDE ALLOWLIST** switch lets you override your allowlist settings when a request includes an
192192
[API key secret](api-key-secret.md). This means requests will be accepted even if an IP address or
193193
URL isn't on your allowlist, provided they include both the API key and the API key secret.
194194

services/get-started/infura.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ For more information refer to the [Infura pricing information](https://www.infur
3030
## 2. Configure your API key
3131

3232
After verification, you'll be directed to the [Infura dashboard](../../../developer-tools/dashboard) to configure your
33-
auto-generated API key.
33+
autogenerated API key.
3434

3535
Infura will automatically generate the **My First Key** API key.
3636

@@ -80,7 +80,7 @@ We recommend using Postman if you're a Windows user.
8080
Retrieve the current block number.
8181

8282
<Tabs>
83-
<TabItem value="cURL" label="cURL" default>
83+
<TabItem value="curl" label="curl" default>
8484

8585
```bash
8686
curl https://mainnet.infura.io/v3/<YOUR-API-KEY> \
@@ -122,7 +122,7 @@ Check the balance of an Ethereum smart contract.
122122
The example code checks the latest balance of the Ethereum Proof of Stake (PoS) contract.
123123

124124
<Tabs>
125-
<TabItem value="cURL" label="cURL" default>
125+
<TabItem value="curl" label="curl" default>
126126

127127
```bash
128128
curl https://mainnet.infura.io/v3/<YOUR-API-KEY> \
@@ -158,9 +158,9 @@ You'll receive a result similar to:
158158
{"jsonrpc": "2.0", "id": 1, "result": "0x96c8e932f1e499c855045"}
159159
```
160160

161-
This result is the hexadecimal value of the contract in Wei (the smallest denomination of Ether).
161+
This result is the hexadecimal value of the contract in wei (the smallest denomination of Ether).
162162

163-
The decimal conversion of the result is `11392978000069000000000069` Wei, which equals `11392978.000069000000000069` Ether.
163+
The decimal conversion of the result is `11392978000069000000000069` wei, which equals `11392978.000069000000000069` Ether.
164164

165165
## 4. Secure your API key
166166

services/how-to/interact-with-erc-20-tokens.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Use [`eth_sendRawTransaction`](../reference/ethereum/json-rpc-methods/eth_sendra
4242
The JSON-RPC format expects `eth_sendRawTransaction` to have a specific data field format that requires normalizing the `Transfer` function to a short [function selector](https://solidity.readthedocs.io/en/develop/abi-spec.html#function-selector). To do this, set the parameters for the function and run it through Ethereum’s [sha3 keccak hash](https://solidity.readthedocs.io/en/develop/abi-spec.html#function-selector):
4343

4444
<Tabs>
45-
<TabItem value="Javascript" label="Javascript" default>
45+
<TabItem value="JavaScript" label="JavaScript" default>
4646

4747
```javascript
4848
web3.sha3("Transfer(address, address, uint256)")[0..4]

services/reference/_partials/_eth_accounts-request.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Tabs from "@theme/Tabs"
22
import TabItem from "@theme/TabItem"
33

44
<Tabs>
5-
<TabItem value="cURL">
5+
<TabItem value="curl">
66

77
```bash
88
curl https://mainnet.infura.io/v3/<YOUR-API-KEY> \

services/reference/_partials/_eth_blobbasefee-request.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Tabs from "@theme/Tabs"
22
import TabItem from "@theme/TabItem"
33

44
<Tabs>
5-
<TabItem value="cURL">
5+
<TabItem value="curl">
66

77
```bash
88
curl https://mainnet.infura.io/v3/<YOUR-API-KEY> \

services/reference/_partials/_eth_blocknumber-request.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Tabs from "@theme/Tabs"
22
import TabItem from "@theme/TabItem"
33

44
<Tabs>
5-
<TabItem value="cURL">
5+
<TabItem value="curl">
66

77
```bash
88
curl https://mainnet.infura.io/v3/<YOUR-API-KEY> \

services/reference/_partials/_eth_call-parameters.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
- `to`: 20 bytes - Address the transaction is directed to.
33
- `gas`: Hexadecimal value of the gas provided for the transaction execution. `eth_call` consumes zero gas, but this parameter may be needed by some executions.
44
- `gasPrice`: Hexadecimal value of the `gasPrice` used for each paid gas.
5-
- `maxPriorityFeePerGas`: 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).
6-
- `maxFeePerGas`: 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).
5+
- `maxPriorityFeePerGas`: 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).
6+
- `maxFeePerGas`: 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).
77
- `value`: Hexadecimal of the value sent with this transaction.
88
- `data`: Hash of the method signature and encoded parameters. See [Ethereum contract ABI specification](https://docs.soliditylang.org/en/latest/abi-spec.html).
99
- `block parameter`: [_Required_] A hexadecimal block number, or one of the string tags `latest`, `earliest`, `pending`, `safe`, or `finalized`. See the [default block parameter](https://ethereum.org/en/developers/docs/apis/json-rpc/#default-block).

0 commit comments

Comments
 (0)