Skip to content

Commit 5a2b3f4

Browse files
committed
Address reviewer feedback.
Signed-off-by: bgravenorst <[email protected]>
1 parent 40c4b3e commit 5a2b3f4

File tree

6 files changed

+7
-18
lines changed

6 files changed

+7
-18
lines changed

docs/whats-new.md

-6
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,9 @@ of the [MetaMask developer page](https://metamask.io/developer/).
2121

2222
## April 2025
2323

24-
<<<<<<< HEAD
25-
<<<<<<< HEAD
2624
- Added a tutorial for [creating a wallet AI agent with the SDK](/sdk/tutorials/create-wallet-ai-agent).
2725
([#1993](https://github.com/MetaMask/metamask-docs/pull/1993))
28-
=======
29-
>>>>>>> a71cf7a46af (Add hoodi support. (#1977))
30-
=======
3126
- Documented [Solana](/services/reference/solana) support. ([#1978](https://github.com/MetaMask/metamask-docs/pull/1978))
32-
>>>>>>> 07ddad4e1a9 (Merge main and add what's new.)
3327
- Documented [Ethereum Hoodi testnet](/services/get-started/endpoints/#ethereum) support. ([#1977](https://github.com/MetaMask/metamask-docs/pull/1977))
3428
- Documented [how to use deeplinks](/sdk/guides/use-deeplinks).
3529
([#1928](https://github.com/MetaMask/metamask-docs/pull/1928))

services/get-started/endpoints.md

-5
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,6 @@ Switch to the Hoodi testnet, now available on Infura via
7676
|-------------------|-------------------------|------------------------------------------------|
7777
| Mainnet | JSON-RPC over HTTPS | `https://mainnet.infura.io/v3/<YOUR-API-KEY>` |
7878
| Mainnet | JSON-RPC over WebSocket | `wss://mainnet.infura.io/ws/v3/<YOUR-API-KEY>` |
79-
<<<<<<< HEAD
80-
=======
81-
| Testnet (Holesky) | JSON-RPC over HTTPS | `https://holesky.infura.io/v3/<YOUR-API-KEY>` |
82-
| Testnet (Holesky) | JSON-RPC over WebSocket | `wss://holesky.infura.io/ws/v3/<YOUR-API-KEY>` |
83-
>>>>>>> a71cf7a46af (Add hoodi support. (#1977))
8479
| Testnet (Hoodi) | JSON-RPC over HTTPS | `https://hoodi.infura.io/v3/<YOUR-API-KEY>` |
8580
| Testnet (Hoodi) | JSON-RPC over WebSocket | `wss://hoodi.infura.io/ws/v3/<YOUR-API-KEY>` |
8681
| Testnet (Sepolia) | JSON-RPC over HTTPS | `https://sepolia.infura.io/v3/<YOUR-API-KEY>` |

services/reference/solana/json-rpc-methods/digital-asset-standard/getassetproofbatch.mdx renamed to services/reference/solana/json-rpc-methods/digital-asset-standard/getassetproofs.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: "getAssetProofBatch"
2+
title: "getAssetProofs"
33
---
44

55
import Tabs from '@theme/Tabs';
66
import TabItem from '@theme/TabItem';
77

8-
# `getAssetProofBatch`
8+
# `getAssetProofs`
99

1010
Returns the Merkle tree proof information for multiple compressed assets.
1111

@@ -36,7 +36,7 @@ Replace `<YOUR-API-KEY>` with your API key.
3636
curl https://solana-mainnet.infura.io/v3/<YOUR-API-KEY> \
3737
-X POST \
3838
-H "Content-Type: application/json" \
39-
-d '{"jsonrpc": "2.0", "id": 1, "method": "getAssetProofBatch", "params": [["D85MZkvir9yQZFDHt8U2ZmS7D3LXKdiSjvw2MBdscJJa", "ELDjRRs5Wb478K4h3B5bMPEhqFD8FvoET5ctHku5uiYi"]]}'
39+
-d '{"jsonrpc": "2.0", "id": 1, "method": "getAssetProofs", "params": [["D85MZkvir9yQZFDHt8U2ZmS7D3LXKdiSjvw2MBdscJJa", "ELDjRRs5Wb478K4h3B5bMPEhqFD8FvoET5ctHku5uiYi"]]}'
4040
```
4141

4242
</TabItem>

services/reference/solana/json-rpc-methods/digital-asset-standard/getnfteditions.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Retrieves all printable editions for a parent edition NFT mint.
1111

1212
## Parameters
1313

14-
- `mint`: (string) _[required]_ - The mint address of the parent edition.
14+
- `mintAddress`: (string) _[required]_ - The mint address of the parent edition.
1515
- `page`: (number) _[optional]_ - The current pagination page.
1616
- `limit`: (number) _[optional]_ - The number of results per page.
1717
- `cursor`: (string) _[optional]_ - Optional pagination cursor.

services/reference/solana/json-rpc-methods/digital-asset-standard/gettokenaccounts.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Retrieves information about all token accounts for a specific mint or an owner.
1111

1212
## Parameters
1313

14-
- `mint`: (string) _[optional]_ - The address of the associated mint.
15-
- `owner`: (string) _[optional]_ - The owner address of the tokens.
14+
- `mintAddress`: (string) _[optional]_ - The address of the associated mint.
15+
- `ownerAddress`: (string) _[optional]_ - The owner address of the tokens.
1616
- `page`: (integer) _[optional]_ - The index of the page to retrieve. The page parameter starts at `1`
1717
- `limit`: (integer) _[optional]_ - The number of results per page.
1818
- `cursor`: (string) _[optional]_ - Optional pagination cursor.

services/reference/solana/json-rpc-methods/digital-asset-standard/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Infura supports the following DAS API methods:
1313

1414
- [`getAsset`](./getasset.mdx)
1515
- [`getAssetProof`](./getassetproof.mdx)
16-
- [`getAssetProofBatch`](./getassetproofbatch.mdx)
16+
- [`getAssetProofs`](getassetproofs.mdx)
1717
- [`getAssets`](./getassets.mdx)
1818
- [`getAssetsByAuthority`](./getassetsbyauthority.mdx)
1919
- [`getAssetsByCreator`](./getassetsbycreator.mdx)

0 commit comments

Comments
 (0)