You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| [`connect(scopes, caipAccountIds)`](../reference/methods.md#connect) | Connects to MetaMask with multichain [scopes](../concepts/scopes.md) |
167
-
| [`getSession()`](../reference/methods.md#getsession) | Returns the current [session](../concepts/scopes.md#sessions-caip-25) with approved accounts |
167
+
| [`getSession()`](../reference/methods.md#getsession) | Returns the current [session](../concepts/sessions.md) with approved accounts |
168
168
| [`invokeMethod({ scope, request })`](../reference/methods.md#invokemethod) | Calls an RPC method on a specific chain using a [scope](../concepts/scopes.md) |
169
169
| [`disconnect()`](../reference/methods.md#disconnect) | Disconnects all [scopes](../concepts/scopes.md) and ends the session |
170
170
| [`disconnect(scopes)`](../reference/methods.md#disconnect) | Disconnects specific [scopes](../concepts/scopes.md) without ending the session |
@@ -174,7 +174,7 @@ Use [`invokeMethod()`](../reference/methods.md#invokemethod) to call RPC methods
174
174
175
175
## Next steps
176
176
177
-
- See [Scopes, accounts, and sessions](../concepts/scopes.md) to understand CAIP-2 chain identifiers and CAIP-25 sessions.
177
+
- Understand [scopes](../concepts/scopes.md), [accounts](../concepts/accounts.md), and [sessions](../concepts/sessions.md) for CAIP-2 chain identifiers, CAIP-10 account IDs, and CAIP-25 sessions.
178
178
- [Send transactions on EVM and Solana](../guides/send-transactions.md) from a single multichain session.
179
179
- [Sign messages on EVM and Solana](../guides/sign-transactions.md) using `invokeMethod`.
180
180
- See [Create a multichain dapp](../tutorials/create-multichain-dapp.md) for a full step-by-step tutorial with React.
| [`connect(scopes, caipAccountIds)`](../reference/methods.md#connect) | Connects to MetaMask with multichain [scopes](../concepts/scopes.md). |
182
-
| [`getSession()`](../reference/methods.md#getsession) | Returns the current [session](../concepts/scopes.md#sessions-caip-25) with approved accounts. |
182
+
| [`getSession()`](../reference/methods.md#getsession) | Returns the current [session](../concepts/sessions.md) with approved accounts. |
183
183
| [`invokeMethod({ scope, request })`](../reference/methods.md#invokemethod) | Calls an RPC method on a specific chain using a [scope](../concepts/scopes.md). |
184
184
| [`disconnect()`](../reference/methods.md#disconnect) | Disconnects all [scopes](../concepts/scopes.md) and ends the session. |
185
185
| [`disconnect(scopes)`](../reference/methods.md#disconnect) | Disconnects specific [scopes](../concepts/scopes.md) without ending the session. |
@@ -268,7 +268,7 @@ node index.mjs
268
268
269
269
## Next steps
270
270
271
-
- [Understand multichain scopes](../concepts/scopes.md)for CAIP-2 chain identifiers and CAIP-25 sessions.
271
+
- Understand [scopes](../concepts/scopes.md), [accounts](../concepts/accounts.md), and [sessions](../concepts/sessions.md) for CAIP-2 chain identifiers, CAIP-10 account IDs, and CAIP-25 sessions.
272
272
- [Sign multichain transactions](../guides/sign-transactions.md) using `invokeMethod`.
273
273
- [Send multichain transactions](../guides/send-transactions.md) from a single session.
274
274
- See [Create a multichain dapp](../tutorials/create-multichain-dapp.md) for a full step-by-step tutorial with React.
Copy file name to clipboardExpand all lines: metamask-connect/multichain/reference/api.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -423,6 +423,6 @@ according to [CAIP-217](https://github.com/ChainAgnostic/CAIPs/blob/main/CAIPs/c
423
423
## Next steps
424
424
425
425
- Follow the [JavaScript quickstart](../quickstart/javascript.md) to set up MetaMask Connect Multichain in a dapp.
426
-
- See the [MetaMask Connect Multichain methods](methods.md) for the high-level methods that wrap this API.
427
-
-See [Scopes, accounts, and sessions](../concepts/scopes.md)to understand CAIP-2, CAIP-10, and CAIP-25 identifiers.
426
+
- See the [MetaMask Connect Multichain methods](methods.md) for the client-level methods that wrap this API.
427
+
-Understand [scopes](../concepts/scopes.md), [accounts](../concepts/accounts.md), and [sessions](../concepts/sessions.md)for CAIP-2, CAIP-10, and CAIP-25 identifiers.
428
428
- See [Send transactions on EVM and Solana](../guides/send-transactions.md) for practical usage examples.
Copy file name to clipboardExpand all lines: metamask-connect/multichain/tutorials/create-multichain-dapp.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Your dapp will handle wallet login and logout, read balances across all four cha
17
17
18
18
## Key concepts
19
19
20
-
This tutorial uses [scopes, account IDs, and sessions](../concepts/scopes.md) to identify chains and
20
+
This tutorial uses [scopes](../concepts/scopes.md), [account IDs](../concepts/accounts.md), and [sessions](../concepts/sessions.md) to identify chains and
21
21
accounts across ecosystems. If you're unfamiliar with these concepts, review them before continuing.
0 commit comments