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 formatting and syntax issues across documentation #1863

Merged
merged 7 commits into from
Feb 3, 2025
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
4 changes: 2 additions & 2 deletions services/reference/ipfs/http-api-methods/block_stat.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ On success, the call to this endpoint will return with 200 and the following bod

```js
{
Key: "QmfQ5QAjvg4GtA3wg3adpnDJug8ktA1BxurVqBD8rtgVjM",
Size: 18
"Key": "QmfQ5QAjvg4GtA3wg3adpnDJug8ktA1BxurVqBD8rtgVjM",
"Size": 18
}
```

Expand Down
4 changes: 2 additions & 2 deletions services/reference/ipfs/http-api-methods/get.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ curl "https://ipfs.infura.io:5001/api/v0/get?arg=QmZtmD2qt6fJot32nabSP3CUjicnypE
- `arg` _\[Required]_ - The IPFS object hash.
- `output` _\[Optional]_ - The path where the output should be stored.
- `archive` _\[Optional]_ - Output a TAR archive. The default is `false`.
- `compress` _\[\_O_ptional]_ - Compress the output with GZIP compression. The default is `false`.
- `compression-level` _\[\_O_ptional]_ - The level of compression (1-9). The default is `-1`.
- `compress` _\[Optional]_ - Compress the output with GZIP compression. The default is `false`.
- `compression-level` _\[Optional]_ - The level of compression (1-9). The default is `-1`.

### Response

Expand Down
2 changes: 1 addition & 1 deletion services/reference/ipfs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ print(response2)
print(response2.text)

### REMOVE OBJECT WITH PIN/RM ###
response3 = requests.post(endpoint + "api/v0/pin/rm", params=params, auth=(projectId, projectSecret))
response3 = requests.post(endpoint + "/api/v0/pin/rm", params=params, auth=(projectId, projectSecret))
print(response3.json())
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Node information object:
- `queueIndex`: Index in the canonical transaction chain of the last L1 to L2 message ingested.
- `index`: Index of the last L2 transaction processed.
- `verifiedIndex`: Index of the last transaction that was ingested from a batch that was posted
the to L1.
to L1.

## Example

Expand Down
4 changes: 2 additions & 2 deletions services/reference/opbnb/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ In these examples, you'll use [npm](https://docs.npmjs.com/downloading-and-insta
Replace `<YOUR-API-KEY>` with your actual Infura API key.

```javascript title="index.js"
const axios = require("axios);
const axios = require("axios");

axios.post("https://opbnb-mainnet.infura.io/v3/<YOUR-API-KEY>", {
jsonrpc: "2.0",
Expand Down Expand Up @@ -186,4 +186,4 @@ Now that you have successfully made a call to the opBNB network, you can explore
- **Monitor your usage**: Monitor your usage on the [MetaMask Developer dashboard](../../../../developer-tools/dashboard/how-to/dashboard-stats/) to ensure you're not hitting your rate limits.

Remember, the Infura community is here to help. If you have any questions or run into any issues, check out the
[Infura community](https://community.infura.io/) for help and answers to common questions.
[Infura community](https://community.infura.io/) for help and answers to common questions.
Loading