Skip to content

Commit a2da066

Browse files
Update services metadata (#2040)
* Update services metadata * address reviewer comments
1 parent 9d2651c commit a2da066

File tree

825 files changed

+3491
-1348
lines changed

Some content is hidden

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

825 files changed

+3491
-1348
lines changed

services/get-started/infura.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ view your API key.
5050
## 3. Send requests
5151

5252
Use the API key when sending requests. The following examples interact with the Ethereum network by
53-
sending requests using HTTP:
53+
sending requests using HTTP.
5454

5555
:::info
5656

@@ -62,6 +62,23 @@ sending requests using HTTP:
6262

6363
Use a tool such as the [Client Uniform Resource Locator (curl)](../concepts/curl.md) or [Postman](https://www.postman.com/downloads/) to make requests.
6464

65+
<details>
66+
<summary>Supported API methods</summary>
67+
<div>
68+
View the supported API methods for each network in the **Reference** section in the left sidebar.
69+
The following methods are not supported on any network by Infura:
70+
71+
- `eth_coinbase`
72+
- `eth_sendTransaction`
73+
- `eth_sign`
74+
75+
Infura doesn't store the user's private key required to sign transactions.
76+
You can use [`web3.eth.sendTransaction`](https://web3js.readthedocs.io/en/v1.2.0/web3-eth.html#sendtransaction),
77+
which signs the transaction locally using the private key of the account, and sends the transaction via [`web3.eth.sendSignedTransaction`](https://web3js.readthedocs.io/en/v1.2.0/web3-eth.html#sendsignedtransaction),
78+
which is a wrapper for [`eth_sendRawTransaction`](../reference/ethereum/json-rpc-methods/eth_sendrawtransaction.mdx).
79+
</div>
80+
</details>
81+
6582
### 3.1 Get the current block number
6683

6784
Retrieve the current block number.

services/reference/_partials/_eth_coinbase-description.mdx

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Returns information about a block whose hash is in the request.
1+
Returns information about a block given its block hash.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Returns information about a block by hash.
1+
Returns information about a block given its block number.

services/reference/_partials/_eth_sendtransaction-description.mdx

Lines changed: 0 additions & 7 deletions
This file was deleted.

services/reference/_partials/_eth_sign-description.mdx

Lines changed: 0 additions & 7 deletions
This file was deleted.

services/reference/_partials/filter-methods/_eth_newpendingtransactionfilter-description.mdx

Lines changed: 0 additions & 5 deletions
This file was deleted.

services/reference/arbitrum/json-rpc-methods/eth_accounts.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
---
2-
title: "eth_accounts"
2+
title: Arbitrum eth_accounts
3+
sidebar_label: eth_accounts
4+
description: Returns a list of Arbitrum addresses.
35
---
46

57
import Tabs from "@theme/Tabs"
68
import TabItem from "@theme/TabItem"
79

810
import Description from "/services/reference/_partials/_eth_accounts-description.mdx"
911

12+
# `eth_accounts`
13+
1014
<Description />
1115

1216
## Parameters

services/reference/arbitrum/json-rpc-methods/eth_blocknumber.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
---
2-
title: "eth_blockNumber"
2+
title: Arbitrum eth_blockNumber
3+
sidebar_label: eth_blockNumber
4+
description: Returns the latest Arbitrum block number.
35
---
46

57
import Tabs from "@theme/Tabs"
68
import TabItem from "@theme/TabItem"
79

810
import Description from "/services/reference/_partials/_eth_blocknumber-description.mdx"
911

12+
# `eth_blockNumber`
13+
1014
<Description />
1115

1216
## Parameters

services/reference/arbitrum/json-rpc-methods/eth_call.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
---
2-
title: "eth_call"
2+
title: Arbitrum eth_call
3+
sidebar_label: eth_call
4+
description: Executes an Arbitrum call without creating a transaction.
35
---
46

57
import Tabs from "@theme/Tabs"
68
import TabItem from "@theme/TabItem"
79

810
import Description from "/services/reference/_partials/_eth_call-description.mdx"
911

12+
# `eth_call`
13+
1014
<Description />
1115

1216
## Parameters

0 commit comments

Comments
 (0)