Skip to content

Commit b034e01

Browse files
Add more multichain info (#2479)
* Add more multichain info * minor edits
1 parent c04fb6d commit b034e01

21 files changed

+172
-47
lines changed

sdk/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ We recommend using services like [MetaMask Developer](https://developer.metamask
2929

3030
<p align="center">
3131

32-
![SDK architecture](_assets/architecture.png)
32+
![MM Connect architecture](_assets/architecture.png)
3333

3434
</p>

sdk/evm/connect/guides/connectkit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords: [connect, MetaMask, JavaScript, ConnectKit, SDK, dapp, Wallet SDK]
88
# Connect to MetaMask using JavaScript + ConnectKit
99

1010
Get started with MM Connect in a JavaScript and ConnectKit dapp.
11-
You can [download the quickstart template](#set-up-using-a-template) or [manually set up the SDK](#set-up-manually) in an existing dapp.
11+
You can [download the quickstart template](#set-up-using-a-template) or [manually set up MM Connect](#set-up-manually) in an existing dapp.
1212

1313
<p align="center">
1414
<a href="https://metamask-connectkit-demo.vercel.app/" target="_blank">

sdk/evm/connect/guides/dynamic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords: [connect, MetaMask, Dynamic, SDK, dapp, Wallet SDK]
99

1010
Get started with MM Connect and [Dynamic SDK](https://docs.dynamic.xyz/introduction/welcome).
1111
You can use MM Connect features directly within Dynamic SDK.
12-
You can [download the quickstart template](#set-up-using-a-template) or [manually set up the SDKs](#set-up-manually) in an existing dapp.
12+
You can [download the quickstart template](#set-up-using-a-template) or [manually set up MM Connects](#set-up-manually) in an existing dapp.
1313

1414
<p align="center">
1515
<a href="https://metamask-dynamic-demo.vercel.app/" target="_blank">

sdk/evm/connect/guides/javascript/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import TabItem from "@theme/TabItem";
1010
# Connect to MetaMask using JavaScript
1111

1212
Get started with MM Connect in your JavaScript dapp.
13-
You can [download the quickstart template](#set-up-using-a-template) or [manually set up the SDK](#set-up-manually) in an existing dapp.
13+
You can [download the quickstart template](#set-up-using-a-template) or [manually set up MM Connect](#set-up-manually) in an existing dapp.
1414

1515
<p align="center">
1616
<a href="https://metamask-javascript-demo.vercel.app/" target="_blank">
@@ -106,7 +106,7 @@ const evmClient = createEVMClient({
106106
dappMetadata: {
107107
name: "Example JavaScript dapp",
108108
url: window.location.href,
109-
// iconUrl: "https://mydapp.com/icon.png" // Optional
109+
iconUrl: "https://mydapp.com/icon.png" // Optional
110110
},
111111
infuraAPIKey: process.env.INFURA_API_KEY,
112112
})
@@ -123,7 +123,7 @@ const evmClient = createEVMClient({
123123
dappMetadata: {
124124
name: "Example JavaScript dapp",
125125
url: window.location.href,
126-
// iconUrl: "https://mydapp.com/icon.png" // Optional
126+
iconUrl: "https://mydapp.com/icon.png" // Optional
127127
},
128128
infuraAPIKey: process.env.INFURA_API_KEY,
129129
})
@@ -134,7 +134,7 @@ const evmClient = createEVMClient({
134134
</TabItem>
135135
</Tabs>
136136
137-
These examples configure the SDK with the following options:
137+
These examples configure MM Connect with the following options:
138138
139139
- [`dappMetadata`](../../../../reference/options.md#dappmetadata) - Ensures trust by showing your dapp's `name`, `url`, and `iconUrl` during connection.
140140
- [`infuraAPIKey`](../../../../reference/options.md#infuraapikey) - Enables read-only RPC and load‑balancing.
@@ -161,7 +161,7 @@ console.log("eth_accounts result:", result)
161161
162162
Use `provider.request()` for arbitrary [JSON-RPC requests](../../reference/json-rpc-api/index.md) like `eth_chainId` or `eth_getBalance`, or for [batching requests](batch-requests.md) via `metamask_batch`.
163163
164-
## Common SDK methods at a glance
164+
## Common MM Connect methods at a glance
165165
166166
| Method | Description |
167167
| --------------------------------------------------------------------------------- | -------------------------------------------------------- |

sdk/evm/connect/guides/javascript/interact-with-contracts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Interact with contracts with the SDK in your JavaScript dapp.
2+
description: Interact with contracts with MM Connect in your JavaScript dapp.
33
keywords: [SDK, JavaScript, read, write, smart, contract, contracts, dapp]
44
sidebar_label: Interact with contracts
55
toc_max_heading_level: 2
@@ -8,7 +8,7 @@ toc_max_heading_level: 2
88
# Interact with smart contracts
99

1010
Interact with smart contracts in your JavaScript dapp.
11-
With the SDK, you can:
11+
With MM Connect, you can:
1212

1313
- **Read data** from smart contracts.
1414
- **Write data** to smart contracts.

sdk/evm/connect/guides/javascript/manage-networks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
description: Manage networks with the SDK in your JavaScript dapp.
2+
description: Manage networks with MM Connect in your JavaScript dapp.
33
keywords: [SDK, JavaScript, detect, switch, add, network, networks, dapp]
44
toc_max_heading_level: 2
55
---
66

77
# Manage networks
88

99
Manage networks in your JavaScript dapp.
10-
With the SDK, you can:
10+
With MM Connect, you can:
1111

1212
- **Detect the current network** and monitor network changes.
1313
- **Switch between networks** programmatically.

sdk/evm/connect/guides/javascript/manage-user-accounts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
description: Authenticate users with the SDK in your JavaScript dapp.
2+
description: Authenticate users with MM Connect in your JavaScript dapp.
33
keywords: [SDK, JavaScript, authenticate, connect, sign, accounts, wallet, dapp]
44
toc_max_heading_level: 3
55
---
66

77
# Manage user accounts
88

99
Connect and manage user wallet sessions in your JavaScript dapp.
10-
With the SDK, you can:
10+
With MM Connect, you can:
1111

1212
- **Connect users' wallets** to your dapp.
1313
- **Access user accounts** (addresses).

sdk/evm/connect/guides/javascript/send-transactions/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
description: Handle transactions with the SDK in your JavaScript dapp.
2+
description: Handle transactions with MM Connect in your JavaScript dapp.
33
keywords: [SDK, JavaScript, send, transaction, transactions, status, estimate, gas, dapp]
44
toc_max_heading_level: 2
55
---
66

77
# Send transactions
88

99
Handle EVM transactions in your JavaScript dapp.
10-
With the SDK, you can:
10+
With MM Connect, you can:
1111

1212
- **Send transactions**.
1313
- **Track transaction status** in real time.

sdk/evm/connect/guides/rainbowkit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords: [connect, MetaMask, JavaScript, RainbowKit, SDK, dapp, Wallet SDK]
88
# Connect to MetaMask using JavaScript + RainbowKit
99

1010
Get started with MM Connect in a JavaScript and RainbowKit dapp.
11-
You can [download the quickstart template](#set-up-using-a-template) or [manually set up the SDK](#set-up-manually) in an existing dapp.
11+
You can [download the quickstart template](#set-up-using-a-template) or [manually set up MM Connect](#set-up-manually) in an existing dapp.
1212

1313
<p align="center">
1414
<a href="https://metamask-rainbowkit-demo.vercel.app/" target="_blank">

sdk/evm/connect/guides/react-native.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Quickstart guide for using the SDK with a React Native dapp.
2+
description: Quickstart guide for using MM Connect with a React Native dapp.
33
sidebar_label: React Native
44
keywords: [connect, MetaMask, React, Native, SDK, dapp]
55
---
@@ -167,9 +167,9 @@ npx expo run:ios
167167
</TabItem>
168168
</Tabs>
169169

170-
### 6. Use the SDK
170+
### 6. Use MM Connect
171171

172-
Initialize and use the SDK in your React Native or Expo project using the `useSDK` hook.
172+
Initialize and use MM Connect in your React Native or Expo project using the `useSDK` hook.
173173
For example:
174174

175175
```javascript

0 commit comments

Comments
 (0)