Skip to content

Commit eb7af90

Browse files
authored
Replace deprecated instances with metamask/snaps-sdk (#1210)
* replace with metamask snaps sdk * replace with metamask snaps sdk * add type * add type * Update relative link * update link
1 parent 7873644 commit eb7af90

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

snaps/learn/tutorials/gas-estimation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,4 +262,4 @@ name of the method for showing gas fee estimates.
262262
If you change the method name in `/packages/site/src/pages/index.tsx`, ensure you change the method name in `/packages/snap/src/index.ts` to match.
263263
264264
After you have made all necessary changes, you can
265-
[publish your Snap to npm](../../how-to/publish-a-snap.md#publish-your-snap).
265+
[publish your Snap to npm](../../how-to/publish-a-snap.md).

snaps/learn/tutorials/transaction-insights.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ export const onTransaction: OnTransactionHandler = async ({ transaction }) => {
147147
```
148148

149149
:::tip
150-
If you have previously developed a decentralized app (dApp), you're likely familiar with
151-
accessing the Ethereum provider using `window.ethereum`. In a Snap, the `window` object is not available.
152-
Instead when you request the `endowment:ethereum-provider` permission, your Snap is granted access to the `ethereum` global object.
150+
If you have previously developed a dapp, you're likely familiar with accessing the Ethereum provider using `window.ethereum`.
151+
In a Snap, the `window` object is not available.
152+
Instead, when you request the `endowment:ethereum-provider` permission, your Snap is granted access to the [`ethereum` global object](../about-snaps/apis.md#snap-requests).
153153
:::
154154

155155
### 4. Build and test the Snap

snaps/reference/entry-points.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ A promise containing the return of the implemented method.
3838
<TabItem value="TypeScript">
3939

4040
```typescript
41-
import { OnRpcRequestHandler } from '@metamask/snaps-types';
41+
import type { OnRpcRequestHandler } from '@metamask/snaps-sdk';
4242

4343
export const onRpcRequest: OnRpcRequestHandler = async ({
4444
origin,
@@ -106,8 +106,8 @@ for the transaction that `onTransaction` was called with.
106106
<TabItem value="TypeScript">
107107

108108
```typescript
109-
import { OnTransactionHandler } from '@metamask/snaps-types';
110-
import { panel, heading, text } from '@metamask/snaps-ui';
109+
import type { OnTransactionHandler } from '@metamask/snaps-sdk';
110+
import { panel, heading, text } from '@metamask/snaps-sdk';
111111

112112
export const onTransaction: OnTransactionHandler = async ({
113113
transaction,
@@ -129,7 +129,7 @@ export const onTransaction: OnTransactionHandler = async ({
129129
<TabItem value="JavaScript">
130130

131131
```js
132-
import { panel, heading, text } from '@metamask/snaps-ui';
132+
import { panel, heading, text } from '@metamask/snaps-sdk';
133133

134134
module.exports.onTransaction = async ({
135135
transaction,
@@ -164,8 +164,8 @@ insight with the severity level `critical`:
164164
<TabItem value="TypeScript">
165165

166166
```typescript
167-
import { OnTransactionHandler } from '@metamask/snaps-types';
168-
import { panel, heading, text } from '@metamask/snaps-ui';
167+
import type { OnTransactionHandler } from '@metamask/snaps-sdk';
168+
import { panel, heading, text } from '@metamask/snaps-sdk';
169169

170170
export const onTransaction: OnTransactionHandler = async ({
171171
transaction,
@@ -189,7 +189,7 @@ export const onTransaction: OnTransactionHandler = async ({
189189
<TabItem value="JavaScript">
190190

191191
```js
192-
import { panel, heading, text } from '@metamask/snaps-ui';
192+
import { panel, heading, text } from '@metamask/snaps-sdk';
193193

194194
module.exports.onTransaction = async ({
195195
transaction,
@@ -248,7 +248,7 @@ An object containing an RPC request specified in the `endowment:cronjob` permiss
248248
<TabItem value="TypeScript">
249249

250250
```typescript
251-
import { OnCronjobHandler } from '@metamask/snaps-types';
251+
import type { OnCronjobHandler } from '@metamask/sdk';
252252

253253
export const onCronjob: OnCronjobHandler = async ({ request }) => {
254254
switch (request.method) {

snaps/reference/snaps-api.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ An object containing the contents of the alert dialog:
3737
#### Example
3838

3939
```javascript
40-
import { panel, text, heading } from '@metamask/snaps-ui';
40+
import { panel, text, heading } from '@metamask/snaps-sdk';
4141

4242
await snap.request({
4343
method: 'snap_dialog',
@@ -71,7 +71,7 @@ An object containing the contents of the confirmation dialog:
7171
#### Example
7272

7373
```javascript
74-
import { panel, text, heading } from '@metamask/snaps-ui';
74+
import { panel, text, heading } from '@metamask/snaps-sdk';
7575

7676
const result = await snap.request({
7777
method: 'snap_dialog',
@@ -108,7 +108,7 @@ The text entered by the user if the prompt was submitted or `null` if the prompt
108108
#### Example
109109

110110
```javascript
111-
import { panel, text, heading } from '@metamask/snaps-ui';
111+
import { panel, text, heading } from '@metamask/snaps-sdk';
112112

113113
const walletAddress = await snap.request({
114114
method: 'snap_dialog',
@@ -524,7 +524,7 @@ The user's locale setting as a [language code](https://github.com/MetaMask/metam
524524
### Example
525525

526526
```javascript
527-
import { panel, text } from '@metamask/snaps-ui';
527+
import { panel, text } from '@metamask/snaps-sdk';
528528

529529
const locale = await snap.request({ method: 'snap_getLocale' });
530530

0 commit comments

Comments
 (0)