[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-metamask-migrate-wagmi-metamask-connector":3,"mdc-dssstu-key":34,"related-repo-metamask-migrate-wagmi-metamask-connector":4245,"related-org-metamask-migrate-wagmi-metamask-connector":4338},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":24,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"migrate-wagmi-metamask-connector","migrate wagmi apps to MetaMask connector","Migrate a wagmi app from @metamask\u002Fsdk to the new @metamask\u002Fconnect-evm connector (wagmi PR",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"metamask","MetaMask","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmetamask.png",[12,15,18,21],{"name":13,"slug":13,"type":14},"wagmi","tag",{"name":16,"slug":17,"type":14},"Web3","web3",{"name":19,"slug":20,"type":14},"Migration","migration",{"name":22,"slug":23,"type":14},"Ethereum","ethereum",2,"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fmetamask-connect-cursor-plugin","2026-07-13T06:12:23.110706",null,[],{"repoUrl":25,"stars":24,"forks":24,"topics":30,"description":31},[],"Cursor plugin for building dApps with the MetaMask Connect SDK — skills, rules, and agents for EVM, Solana, and multichain integrations","https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fmetamask-connect-cursor-plugin\u002Ftree\u002FHEAD\u002Fskills\u002Fmigrate-wagmi-metamask-connector","---\nname: migrate-wagmi-metamask-connector\ndescription: Migrate a wagmi app from @metamask\u002Fsdk to the new @metamask\u002Fconnect-evm connector (wagmi PR #4960)\n---\n\n# Migrate Wagmi MetaMask Connector to @metamask\u002Fconnect-evm\n\n## When to use\n- Upgrading a wagmi project from `@wagmi\u002Fconnectors` v6.x\u002Fv7.x (which bundled `@metamask\u002Fsdk`) to v8.x+ \u002F wagmi >= 3.6 (which uses `@metamask\u002Fconnect-evm`)\n- You see errors like `Cannot find module '@metamask\u002Fsdk'` after updating wagmi\n- You want to adopt the new MetaMask Connect SDK in an existing wagmi app\n- Consumer is migrating to the latest wagmi version that includes the MetaMask connector refactor (PR [#4960](https:\u002F\u002Fgithub.com\u002Fwevm\u002Fwagmi\u002Fpull\u002F4960))\n\n## Breaking Change Summary\n\nThe MetaMask connector in wagmi has been **completely rewritten**. The underlying SDK changed from `@metamask\u002Fsdk` to `@metamask\u002Fconnect-evm`. The connector now dynamically imports `@metamask\u002Fconnect-evm` instead of bundling `@metamask\u002Fsdk`.\n\n**Key impacts:**\n- New optional peer dependency: `@metamask\u002Fconnect-evm` must be installed explicitly, at a version inside wagmi's declared peer range (check `npm info @wagmi\u002Fconnectors peerDependencies` — currently `^1.3.0`)\n- Old dependency `@metamask\u002Fsdk` should be removed\n- Configuration parameter names changed (`dappMetadata` → `dapp`, `useDeeplink` → `mobile.useDeeplink`)\n- Several deprecated SDK-specific options are removed entirely\n- Internal provider type changed from `SDKProvider` to `EIP1193Provider`\n\n## Workflow\n\n### Step 1: Update Dependencies\n\nRemove the old SDK and install the new one:\n\n```bash\n# npm\nnpm uninstall @metamask\u002Fsdk\nnpm install @metamask\u002Fconnect-evm\n\n# pnpm\npnpm remove @metamask\u002Fsdk\npnpm add @metamask\u002Fconnect-evm\n\n# yarn\nyarn remove @metamask\u002Fsdk\nyarn add @metamask\u002Fconnect-evm\n```\n\nThen update wagmi packages to the latest:\n\n```bash\nnpm install wagmi@latest @wagmi\u002Fcore@latest @wagmi\u002Fconnectors@latest\n```\n\n### Step 2: Update MetaMask Connector Configuration\n\n#### Before (old `@metamask\u002Fsdk` options):\n\n```typescript\nimport { metaMask } from 'wagmi\u002Fconnectors'\n\nmetaMask({\n  dappMetadata: {\n    name: 'My Dapp',\n    url: 'https:\u002F\u002Fmydapp.com',\n  },\n  useDeeplink: true,\n  logging: { sdk: false },\n  \u002F\u002F These SDK-specific options are REMOVED:\n  forceDeleteProvider: false,\n  forceInjectProvider: false,\n  injectProvider: false,\n})\n```\n\n#### After (new `@metamask\u002Fconnect-evm` options):\n\n```typescript\nimport { metaMask } from 'wagmi\u002Fconnectors'\n\nmetaMask({\n  dapp: {\n    name: 'My Dapp',\n    url: 'https:\u002F\u002Fmydapp.com',\n    iconUrl: 'https:\u002F\u002Fmydapp.com\u002Ficon.png', \u002F\u002F new optional field\n  },\n  debug: false,\n  \u002F\u002F Mobile options are now nested:\n  mobile: {\n    useDeeplink: true,\n    preferredOpenLink: undefined, \u002F\u002F required for React Native\n  },\n})\n```\n\n### Step 3: Configuration Parameter Migration Reference\n\n| Old Parameter (`@metamask\u002Fsdk`) | New Parameter (`@metamask\u002Fconnect-evm`) | Notes |\n|---|---|---|\n| `dappMetadata: { name, url }` | `dapp: { name, url, iconUrl }` | `dappMetadata` still works but is deprecated |\n| `logging: { sdk: true }` | `debug: true` | `logging` still works but is deprecated |\n| `useDeeplink: boolean` | `mobile: { useDeeplink: boolean }` | Moved into `mobile` namespace |\n| `preferredOpenLink` | `mobile: { preferredOpenLink }` | Moved into `mobile` namespace |\n| `forceDeleteProvider` | *(removed)* | No replacement — not needed with new SDK |\n| `forceInjectProvider` | *(removed)* | No replacement — not needed with new SDK |\n| `injectProvider` | *(removed)* | No replacement — not needed with new SDK |\n| `readonlyRPCMap` | *(auto-configured)* | Built automatically from wagmi's chain config |\n| `_source` | *(auto-set to 'wagmi')* | Set internally by the connector |\n\n### Step 4: Update connectAndSign \u002F connectWith Usage (if applicable)\n\nThe `connectAndSign` parameter name changed from `msg` to `message` internally. However, at the wagmi connector level the API is the same — you still pass `connectAndSign: 'message string'` in the `metaMask()` parameters.\n\n```typescript\n\u002F\u002F Still works the same at the wagmi config level:\nmetaMask({\n  dapp: { name: 'My Dapp' },\n  connectAndSign: 'Please sign this message to verify your identity',\n})\n```\n\nThe `connectWith` API is also unchanged at the wagmi level:\n\n```typescript\nmetaMask({\n  dapp: { name: 'My Dapp' },\n  connectWith: {\n    method: 'eth_signTypedData_v4',\n    params: [address, typedData],\n  },\n})\n```\n\n### Step 5: Handle Provider Type Changes\n\nIf your code directly accesses the provider from the connector, the type has changed:\n\n```typescript\n\u002F\u002F Before: provider was SDKProvider from @metamask\u002Fsdk\n\u002F\u002F After: provider is EIP1193Provider from @metamask\u002Fconnect-evm\n\n\u002F\u002F The EIP1193Provider interface is the same standard interface,\n\u002F\u002F so provider.request() calls remain unchanged.\n\n\u002F\u002F New: You can access the underlying MetamaskConnectEVM instance:\nconst connector = config.connectors.find(c => c.id === 'metaMaskSDK')\nif (connector) {\n  const instance = await connector.getInstance()\n  \u002F\u002F instance.accounts, instance.getChainId(), instance.switchChain(), etc.\n}\n```\n\n### Step 6: Remove Deprecated Patterns\n\nThe new connector handles event listeners internally. If you had code that manually managed MetaMask SDK event listeners, you can remove it:\n\n```typescript\n\u002F\u002F REMOVE any manual SDK event management like:\n\u002F\u002F sdk.on('accountsChanged', ...)\n\u002F\u002F sdk.on('chainChanged', ...)\n\u002F\u002F provider.removeListener(...)\n\n\u002F\u002F Event handlers are now passed to createEVMClient internally.\n\u002F\u002F Wagmi hooks (useAccount, useChainId, etc.) handle state automatically.\n```\n\n### Step 7: Additional Wagmi API Renames (same major version)\n\nThis wagmi release also includes several API renames. Deprecated aliases are provided but you should migrate:\n\n| Old API | New API | Package |\n|---|---|---|\n| `useAccount()` | `useConnection()` | `wagmi` |\n| `useAccountEffect()` | `useConnectionEffect()` | `wagmi` |\n| `useSwitchAccount()` | `useSwitchConnection()` | `wagmi` |\n| `getAccount()` | `getConnection()` | `@wagmi\u002Fcore` |\n| `switchAccount()` | `switchConnection()` | `@wagmi\u002Fcore` |\n| `watchAccount()` | `watchConnection()` | `@wagmi\u002Fcore` |\n| `WagmiConfig` | `WagmiProvider` | `wagmi` (alias removed) |\n| `useToken()` | `useReadContracts()` | `wagmi` (hook removed) |\n| `useFeeData()` | `useEstimateFeesPerGas()` | `wagmi` (alias removed) |\n| `normalizeChainId()` | *(removed)* | `wagmi` (export removed) |\n\n### Step 8: Verify the Migration\n\nAfter making changes, verify:\n\n1. **Build succeeds** — `npm run build` or `tsc --noEmit` should pass\n2. **No `@metamask\u002Fsdk` imports remain** — search your codebase:\n   ```bash\n   grep -r \"@metamask\u002Fsdk\" --include=\"*.ts\" --include=\"*.tsx\" --include=\"*.js\"\n   ```\n3. **Wallet connection works** — test connecting via MetaMask browser extension\n4. **Mobile deep-link works** (if applicable) — test QR code \u002F deep-link flow\n5. **Chain switching works** — test switching between configured chains\n6. **Signing works** — test message signing and transaction signing\n\n## Complete Before\u002FAfter Example\n\n### Before (`@wagmi\u002Fconnectors` \u003C= 7.x + @metamask\u002Fsdk):\n\n```typescript\nimport { createConfig, http } from 'wagmi'\nimport { mainnet, sepolia, optimism } from 'wagmi\u002Fchains'\nimport { metaMask } from 'wagmi\u002Fconnectors'\n\nexport const config = createConfig({\n  chains: [mainnet, sepolia, optimism],\n  connectors: [\n    metaMask({\n      dappMetadata: {\n        name: 'My Dapp',\n        url: window.location.origin,\n      },\n      useDeeplink: true,\n    }),\n  ],\n  transports: {\n    [mainnet.id]: http(),\n    [sepolia.id]: http(),\n    [optimism.id]: http(),\n  },\n})\n```\n\n### After (wagmi >= 3.6 \u002F `@wagmi\u002Fconnectors` >= 8 + @metamask\u002Fconnect-evm):\n\n```typescript\nimport { createConfig, http } from 'wagmi'\nimport { mainnet, sepolia, optimism } from 'wagmi\u002Fchains'\nimport { metaMask } from 'wagmi\u002Fconnectors'\n\nexport const config = createConfig({\n  chains: [mainnet, sepolia, optimism],\n  connectors: [\n    metaMask({\n      dapp: {\n        name: 'My Dapp',\n        url: window.location.origin,\n      },\n      mobile: {\n        useDeeplink: true,\n      },\n    }),\n  ],\n  transports: {\n    [mainnet.id]: http(),\n    [sepolia.id]: http(),\n    [optimism.id]: http(),\n  },\n})\n```\n\n## React Native Specific Migration\n\nIf you are using wagmi with React Native, the `preferredOpenLink` callback has moved:\n\n```typescript\n\u002F\u002F Before:\nmetaMask({\n  dappMetadata: { name: 'My RN App' },\n  preferredOpenLink: (link, target) => Linking.openURL(link),\n  useDeeplink: true,\n})\n\n\u002F\u002F After:\nmetaMask({\n  dapp: { name: 'My RN App' },\n  mobile: {\n    preferredOpenLink: (link, target) => Linking.openURL(link),\n    useDeeplink: true,\n  },\n})\n```\n\n## Important Notes\n- `@metamask\u002Fconnect-evm` is an **optional peer dependency** of `@wagmi\u002Fconnectors` — you only need it if you use the `metaMask()` connector\n- The connector ID remains `'metaMaskSDK'` and the name remains `'MetaMask'` — no changes to connector identity\n- The connector's `rdns` is `['io.metamask', 'io.metamask.mobile']` — unchanged\n- The `supportedNetworks` map is now auto-built from wagmi's configured chains and their default RPC URLs — you no longer need to pass `readonlyRPCMap`\n- The `dappMetadata` parameter still works (it's mapped to `dapp` internally) but is deprecated — migrate to `dapp` for forward compatibility\n- The `logging` parameter still works (mapped to `debug: true`) but is deprecated\n- If no `dapp` config is provided, the connector defaults to `{ name: window.location.hostname, url: window.location.href }` in browsers, or `{ name: 'wagmi' }` in Node.js\u002FSSR\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,48,55,123,129,171,179,279,285,292,297,462,467,500,506,520,829,841,1122,1128,1422,1428,1472,1582,1594,1748,1754,1759,1988,1994,1999,2061,2067,2072,2395,2401,2406,2580,2586,2599,3156,3169,3714,3720,3732,4070,4076,4239],{"type":40,"tag":41,"props":42,"children":44},"element","h1",{"id":43},"migrate-wagmi-metamask-connector-to-metamaskconnect-evm",[45],{"type":46,"value":47},"text","Migrate Wagmi MetaMask Connector to @metamask\u002Fconnect-evm",{"type":40,"tag":49,"props":50,"children":52},"h2",{"id":51},"when-to-use",[53],{"type":46,"value":54},"When to use",{"type":40,"tag":56,"props":57,"children":58},"ul",{},[59,90,103,108],{"type":40,"tag":60,"props":61,"children":62},"li",{},[63,65,72,74,80,82,88],{"type":46,"value":64},"Upgrading a wagmi project from ",{"type":40,"tag":66,"props":67,"children":69},"code",{"className":68},[],[70],{"type":46,"value":71},"@wagmi\u002Fconnectors",{"type":46,"value":73}," v6.x\u002Fv7.x (which bundled ",{"type":40,"tag":66,"props":75,"children":77},{"className":76},[],[78],{"type":46,"value":79},"@metamask\u002Fsdk",{"type":46,"value":81},") to v8.x+ \u002F wagmi >= 3.6 (which uses ",{"type":40,"tag":66,"props":83,"children":85},{"className":84},[],[86],{"type":46,"value":87},"@metamask\u002Fconnect-evm",{"type":46,"value":89},")",{"type":40,"tag":60,"props":91,"children":92},{},[93,95,101],{"type":46,"value":94},"You see errors like ",{"type":40,"tag":66,"props":96,"children":98},{"className":97},[],[99],{"type":46,"value":100},"Cannot find module '@metamask\u002Fsdk'",{"type":46,"value":102}," after updating wagmi",{"type":40,"tag":60,"props":104,"children":105},{},[106],{"type":46,"value":107},"You want to adopt the new MetaMask Connect SDK in an existing wagmi app",{"type":40,"tag":60,"props":109,"children":110},{},[111,113,122],{"type":46,"value":112},"Consumer is migrating to the latest wagmi version that includes the MetaMask connector refactor (PR ",{"type":40,"tag":114,"props":115,"children":119},"a",{"href":116,"rel":117},"https:\u002F\u002Fgithub.com\u002Fwevm\u002Fwagmi\u002Fpull\u002F4960",[118],"nofollow",[120],{"type":46,"value":121},"#4960",{"type":46,"value":89},{"type":40,"tag":49,"props":124,"children":126},{"id":125},"breaking-change-summary",[127],{"type":46,"value":128},"Breaking Change Summary",{"type":40,"tag":130,"props":131,"children":132},"p",{},[133,135,141,143,148,150,155,157,162,164,169],{"type":46,"value":134},"The MetaMask connector in wagmi has been ",{"type":40,"tag":136,"props":137,"children":138},"strong",{},[139],{"type":46,"value":140},"completely rewritten",{"type":46,"value":142},". The underlying SDK changed from ",{"type":40,"tag":66,"props":144,"children":146},{"className":145},[],[147],{"type":46,"value":79},{"type":46,"value":149}," to ",{"type":40,"tag":66,"props":151,"children":153},{"className":152},[],[154],{"type":46,"value":87},{"type":46,"value":156},". The connector now dynamically imports ",{"type":40,"tag":66,"props":158,"children":160},{"className":159},[],[161],{"type":46,"value":87},{"type":46,"value":163}," instead of bundling ",{"type":40,"tag":66,"props":165,"children":167},{"className":166},[],[168],{"type":46,"value":79},{"type":46,"value":170},".",{"type":40,"tag":130,"props":172,"children":173},{},[174],{"type":40,"tag":136,"props":175,"children":176},{},[177],{"type":46,"value":178},"Key impacts:",{"type":40,"tag":56,"props":180,"children":181},{},[182,209,221,256,261],{"type":40,"tag":60,"props":183,"children":184},{},[185,187,192,194,200,202,208],{"type":46,"value":186},"New optional peer dependency: ",{"type":40,"tag":66,"props":188,"children":190},{"className":189},[],[191],{"type":46,"value":87},{"type":46,"value":193}," must be installed explicitly, at a version inside wagmi's declared peer range (check ",{"type":40,"tag":66,"props":195,"children":197},{"className":196},[],[198],{"type":46,"value":199},"npm info @wagmi\u002Fconnectors peerDependencies",{"type":46,"value":201}," — currently ",{"type":40,"tag":66,"props":203,"children":205},{"className":204},[],[206],{"type":46,"value":207},"^1.3.0",{"type":46,"value":89},{"type":40,"tag":60,"props":210,"children":211},{},[212,214,219],{"type":46,"value":213},"Old dependency ",{"type":40,"tag":66,"props":215,"children":217},{"className":216},[],[218],{"type":46,"value":79},{"type":46,"value":220}," should be removed",{"type":40,"tag":60,"props":222,"children":223},{},[224,226,232,234,240,242,248,249,255],{"type":46,"value":225},"Configuration parameter names changed (",{"type":40,"tag":66,"props":227,"children":229},{"className":228},[],[230],{"type":46,"value":231},"dappMetadata",{"type":46,"value":233}," → ",{"type":40,"tag":66,"props":235,"children":237},{"className":236},[],[238],{"type":46,"value":239},"dapp",{"type":46,"value":241},", ",{"type":40,"tag":66,"props":243,"children":245},{"className":244},[],[246],{"type":46,"value":247},"useDeeplink",{"type":46,"value":233},{"type":40,"tag":66,"props":250,"children":252},{"className":251},[],[253],{"type":46,"value":254},"mobile.useDeeplink",{"type":46,"value":89},{"type":40,"tag":60,"props":257,"children":258},{},[259],{"type":46,"value":260},"Several deprecated SDK-specific options are removed entirely",{"type":40,"tag":60,"props":262,"children":263},{},[264,266,272,273],{"type":46,"value":265},"Internal provider type changed from ",{"type":40,"tag":66,"props":267,"children":269},{"className":268},[],[270],{"type":46,"value":271},"SDKProvider",{"type":46,"value":149},{"type":40,"tag":66,"props":274,"children":276},{"className":275},[],[277],{"type":46,"value":278},"EIP1193Provider",{"type":40,"tag":49,"props":280,"children":282},{"id":281},"workflow",[283],{"type":46,"value":284},"Workflow",{"type":40,"tag":286,"props":287,"children":289},"h3",{"id":288},"step-1-update-dependencies",[290],{"type":46,"value":291},"Step 1: Update Dependencies",{"type":40,"tag":130,"props":293,"children":294},{},[295],{"type":46,"value":296},"Remove the old SDK and install the new one:",{"type":40,"tag":298,"props":299,"children":304},"pre",{"className":300,"code":301,"language":302,"meta":303,"style":303},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# npm\nnpm uninstall @metamask\u002Fsdk\nnpm install @metamask\u002Fconnect-evm\n\n# pnpm\npnpm remove @metamask\u002Fsdk\npnpm add @metamask\u002Fconnect-evm\n\n# yarn\nyarn remove @metamask\u002Fsdk\nyarn add @metamask\u002Fconnect-evm\n","bash","",[305],{"type":40,"tag":66,"props":306,"children":307},{"__ignoreMap":303},[308,320,340,358,368,377,395,412,420,429,446],{"type":40,"tag":309,"props":310,"children":313},"span",{"class":311,"line":312},"line",1,[314],{"type":40,"tag":309,"props":315,"children":317},{"style":316},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[318],{"type":46,"value":319},"# npm\n",{"type":40,"tag":309,"props":321,"children":322},{"class":311,"line":24},[323,329,335],{"type":40,"tag":309,"props":324,"children":326},{"style":325},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[327],{"type":46,"value":328},"npm",{"type":40,"tag":309,"props":330,"children":332},{"style":331},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[333],{"type":46,"value":334}," uninstall",{"type":40,"tag":309,"props":336,"children":337},{"style":331},[338],{"type":46,"value":339}," @metamask\u002Fsdk\n",{"type":40,"tag":309,"props":341,"children":343},{"class":311,"line":342},3,[344,348,353],{"type":40,"tag":309,"props":345,"children":346},{"style":325},[347],{"type":46,"value":328},{"type":40,"tag":309,"props":349,"children":350},{"style":331},[351],{"type":46,"value":352}," install",{"type":40,"tag":309,"props":354,"children":355},{"style":331},[356],{"type":46,"value":357}," @metamask\u002Fconnect-evm\n",{"type":40,"tag":309,"props":359,"children":361},{"class":311,"line":360},4,[362],{"type":40,"tag":309,"props":363,"children":365},{"emptyLinePlaceholder":364},true,[366],{"type":46,"value":367},"\n",{"type":40,"tag":309,"props":369,"children":371},{"class":311,"line":370},5,[372],{"type":40,"tag":309,"props":373,"children":374},{"style":316},[375],{"type":46,"value":376},"# pnpm\n",{"type":40,"tag":309,"props":378,"children":380},{"class":311,"line":379},6,[381,386,391],{"type":40,"tag":309,"props":382,"children":383},{"style":325},[384],{"type":46,"value":385},"pnpm",{"type":40,"tag":309,"props":387,"children":388},{"style":331},[389],{"type":46,"value":390}," remove",{"type":40,"tag":309,"props":392,"children":393},{"style":331},[394],{"type":46,"value":339},{"type":40,"tag":309,"props":396,"children":398},{"class":311,"line":397},7,[399,403,408],{"type":40,"tag":309,"props":400,"children":401},{"style":325},[402],{"type":46,"value":385},{"type":40,"tag":309,"props":404,"children":405},{"style":331},[406],{"type":46,"value":407}," add",{"type":40,"tag":309,"props":409,"children":410},{"style":331},[411],{"type":46,"value":357},{"type":40,"tag":309,"props":413,"children":415},{"class":311,"line":414},8,[416],{"type":40,"tag":309,"props":417,"children":418},{"emptyLinePlaceholder":364},[419],{"type":46,"value":367},{"type":40,"tag":309,"props":421,"children":423},{"class":311,"line":422},9,[424],{"type":40,"tag":309,"props":425,"children":426},{"style":316},[427],{"type":46,"value":428},"# yarn\n",{"type":40,"tag":309,"props":430,"children":432},{"class":311,"line":431},10,[433,438,442],{"type":40,"tag":309,"props":434,"children":435},{"style":325},[436],{"type":46,"value":437},"yarn",{"type":40,"tag":309,"props":439,"children":440},{"style":331},[441],{"type":46,"value":390},{"type":40,"tag":309,"props":443,"children":444},{"style":331},[445],{"type":46,"value":339},{"type":40,"tag":309,"props":447,"children":449},{"class":311,"line":448},11,[450,454,458],{"type":40,"tag":309,"props":451,"children":452},{"style":325},[453],{"type":46,"value":437},{"type":40,"tag":309,"props":455,"children":456},{"style":331},[457],{"type":46,"value":407},{"type":40,"tag":309,"props":459,"children":460},{"style":331},[461],{"type":46,"value":357},{"type":40,"tag":130,"props":463,"children":464},{},[465],{"type":46,"value":466},"Then update wagmi packages to the latest:",{"type":40,"tag":298,"props":468,"children":470},{"className":300,"code":469,"language":302,"meta":303,"style":303},"npm install wagmi@latest @wagmi\u002Fcore@latest @wagmi\u002Fconnectors@latest\n",[471],{"type":40,"tag":66,"props":472,"children":473},{"__ignoreMap":303},[474],{"type":40,"tag":309,"props":475,"children":476},{"class":311,"line":312},[477,481,485,490,495],{"type":40,"tag":309,"props":478,"children":479},{"style":325},[480],{"type":46,"value":328},{"type":40,"tag":309,"props":482,"children":483},{"style":331},[484],{"type":46,"value":352},{"type":40,"tag":309,"props":486,"children":487},{"style":331},[488],{"type":46,"value":489}," wagmi@latest",{"type":40,"tag":309,"props":491,"children":492},{"style":331},[493],{"type":46,"value":494}," @wagmi\u002Fcore@latest",{"type":40,"tag":309,"props":496,"children":497},{"style":331},[498],{"type":46,"value":499}," @wagmi\u002Fconnectors@latest\n",{"type":40,"tag":286,"props":501,"children":503},{"id":502},"step-2-update-metamask-connector-configuration",[504],{"type":46,"value":505},"Step 2: Update MetaMask Connector Configuration",{"type":40,"tag":507,"props":508,"children":510},"h4",{"id":509},"before-old-metamasksdk-options",[511,513,518],{"type":46,"value":512},"Before (old ",{"type":40,"tag":66,"props":514,"children":516},{"className":515},[],[517],{"type":46,"value":79},{"type":46,"value":519}," options):",{"type":40,"tag":298,"props":521,"children":525},{"className":522,"code":523,"language":524,"meta":303,"style":303},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { metaMask } from 'wagmi\u002Fconnectors'\n\nmetaMask({\n  dappMetadata: {\n    name: 'My Dapp',\n    url: 'https:\u002F\u002Fmydapp.com',\n  },\n  useDeeplink: true,\n  logging: { sdk: false },\n  \u002F\u002F These SDK-specific options are REMOVED:\n  forceDeleteProvider: false,\n  forceInjectProvider: false,\n  injectProvider: false,\n})\n","typescript",[526],{"type":40,"tag":66,"props":527,"children":528},{"__ignoreMap":303},[529,575,582,601,620,651,680,688,710,745,753,773,794,815],{"type":40,"tag":309,"props":530,"children":531},{"class":311,"line":312},[532,538,544,550,555,560,565,570],{"type":40,"tag":309,"props":533,"children":535},{"style":534},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[536],{"type":46,"value":537},"import",{"type":40,"tag":309,"props":539,"children":541},{"style":540},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[542],{"type":46,"value":543}," {",{"type":40,"tag":309,"props":545,"children":547},{"style":546},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[548],{"type":46,"value":549}," metaMask",{"type":40,"tag":309,"props":551,"children":552},{"style":540},[553],{"type":46,"value":554}," }",{"type":40,"tag":309,"props":556,"children":557},{"style":534},[558],{"type":46,"value":559}," from",{"type":40,"tag":309,"props":561,"children":562},{"style":540},[563],{"type":46,"value":564}," '",{"type":40,"tag":309,"props":566,"children":567},{"style":331},[568],{"type":46,"value":569},"wagmi\u002Fconnectors",{"type":40,"tag":309,"props":571,"children":572},{"style":540},[573],{"type":46,"value":574},"'\n",{"type":40,"tag":309,"props":576,"children":577},{"class":311,"line":24},[578],{"type":40,"tag":309,"props":579,"children":580},{"emptyLinePlaceholder":364},[581],{"type":46,"value":367},{"type":40,"tag":309,"props":583,"children":584},{"class":311,"line":342},[585,591,596],{"type":40,"tag":309,"props":586,"children":588},{"style":587},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[589],{"type":46,"value":590},"metaMask",{"type":40,"tag":309,"props":592,"children":593},{"style":546},[594],{"type":46,"value":595},"(",{"type":40,"tag":309,"props":597,"children":598},{"style":540},[599],{"type":46,"value":600},"{\n",{"type":40,"tag":309,"props":602,"children":603},{"class":311,"line":360},[604,610,615],{"type":40,"tag":309,"props":605,"children":607},{"style":606},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[608],{"type":46,"value":609},"  dappMetadata",{"type":40,"tag":309,"props":611,"children":612},{"style":540},[613],{"type":46,"value":614},":",{"type":40,"tag":309,"props":616,"children":617},{"style":540},[618],{"type":46,"value":619}," {\n",{"type":40,"tag":309,"props":621,"children":622},{"class":311,"line":370},[623,628,632,636,641,646],{"type":40,"tag":309,"props":624,"children":625},{"style":606},[626],{"type":46,"value":627},"    name",{"type":40,"tag":309,"props":629,"children":630},{"style":540},[631],{"type":46,"value":614},{"type":40,"tag":309,"props":633,"children":634},{"style":540},[635],{"type":46,"value":564},{"type":40,"tag":309,"props":637,"children":638},{"style":331},[639],{"type":46,"value":640},"My Dapp",{"type":40,"tag":309,"props":642,"children":643},{"style":540},[644],{"type":46,"value":645},"'",{"type":40,"tag":309,"props":647,"children":648},{"style":540},[649],{"type":46,"value":650},",\n",{"type":40,"tag":309,"props":652,"children":653},{"class":311,"line":379},[654,659,663,667,672,676],{"type":40,"tag":309,"props":655,"children":656},{"style":606},[657],{"type":46,"value":658},"    url",{"type":40,"tag":309,"props":660,"children":661},{"style":540},[662],{"type":46,"value":614},{"type":40,"tag":309,"props":664,"children":665},{"style":540},[666],{"type":46,"value":564},{"type":40,"tag":309,"props":668,"children":669},{"style":331},[670],{"type":46,"value":671},"https:\u002F\u002Fmydapp.com",{"type":40,"tag":309,"props":673,"children":674},{"style":540},[675],{"type":46,"value":645},{"type":40,"tag":309,"props":677,"children":678},{"style":540},[679],{"type":46,"value":650},{"type":40,"tag":309,"props":681,"children":682},{"class":311,"line":397},[683],{"type":40,"tag":309,"props":684,"children":685},{"style":540},[686],{"type":46,"value":687},"  },\n",{"type":40,"tag":309,"props":689,"children":690},{"class":311,"line":414},[691,696,700,706],{"type":40,"tag":309,"props":692,"children":693},{"style":606},[694],{"type":46,"value":695},"  useDeeplink",{"type":40,"tag":309,"props":697,"children":698},{"style":540},[699],{"type":46,"value":614},{"type":40,"tag":309,"props":701,"children":703},{"style":702},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[704],{"type":46,"value":705}," true",{"type":40,"tag":309,"props":707,"children":708},{"style":540},[709],{"type":46,"value":650},{"type":40,"tag":309,"props":711,"children":712},{"class":311,"line":422},[713,718,722,726,731,735,740],{"type":40,"tag":309,"props":714,"children":715},{"style":606},[716],{"type":46,"value":717},"  logging",{"type":40,"tag":309,"props":719,"children":720},{"style":540},[721],{"type":46,"value":614},{"type":40,"tag":309,"props":723,"children":724},{"style":540},[725],{"type":46,"value":543},{"type":40,"tag":309,"props":727,"children":728},{"style":606},[729],{"type":46,"value":730}," sdk",{"type":40,"tag":309,"props":732,"children":733},{"style":540},[734],{"type":46,"value":614},{"type":40,"tag":309,"props":736,"children":737},{"style":702},[738],{"type":46,"value":739}," false",{"type":40,"tag":309,"props":741,"children":742},{"style":540},[743],{"type":46,"value":744}," },\n",{"type":40,"tag":309,"props":746,"children":747},{"class":311,"line":431},[748],{"type":40,"tag":309,"props":749,"children":750},{"style":316},[751],{"type":46,"value":752},"  \u002F\u002F These SDK-specific options are REMOVED:\n",{"type":40,"tag":309,"props":754,"children":755},{"class":311,"line":448},[756,761,765,769],{"type":40,"tag":309,"props":757,"children":758},{"style":606},[759],{"type":46,"value":760},"  forceDeleteProvider",{"type":40,"tag":309,"props":762,"children":763},{"style":540},[764],{"type":46,"value":614},{"type":40,"tag":309,"props":766,"children":767},{"style":702},[768],{"type":46,"value":739},{"type":40,"tag":309,"props":770,"children":771},{"style":540},[772],{"type":46,"value":650},{"type":40,"tag":309,"props":774,"children":776},{"class":311,"line":775},12,[777,782,786,790],{"type":40,"tag":309,"props":778,"children":779},{"style":606},[780],{"type":46,"value":781},"  forceInjectProvider",{"type":40,"tag":309,"props":783,"children":784},{"style":540},[785],{"type":46,"value":614},{"type":40,"tag":309,"props":787,"children":788},{"style":702},[789],{"type":46,"value":739},{"type":40,"tag":309,"props":791,"children":792},{"style":540},[793],{"type":46,"value":650},{"type":40,"tag":309,"props":795,"children":797},{"class":311,"line":796},13,[798,803,807,811],{"type":40,"tag":309,"props":799,"children":800},{"style":606},[801],{"type":46,"value":802},"  injectProvider",{"type":40,"tag":309,"props":804,"children":805},{"style":540},[806],{"type":46,"value":614},{"type":40,"tag":309,"props":808,"children":809},{"style":702},[810],{"type":46,"value":739},{"type":40,"tag":309,"props":812,"children":813},{"style":540},[814],{"type":46,"value":650},{"type":40,"tag":309,"props":816,"children":818},{"class":311,"line":817},14,[819,824],{"type":40,"tag":309,"props":820,"children":821},{"style":540},[822],{"type":46,"value":823},"}",{"type":40,"tag":309,"props":825,"children":826},{"style":546},[827],{"type":46,"value":828},")\n",{"type":40,"tag":507,"props":830,"children":832},{"id":831},"after-new-metamaskconnect-evm-options",[833,835,840],{"type":46,"value":834},"After (new ",{"type":40,"tag":66,"props":836,"children":838},{"className":837},[],[839],{"type":46,"value":87},{"type":46,"value":519},{"type":40,"tag":298,"props":842,"children":844},{"className":522,"code":843,"language":524,"meta":303,"style":303},"import { metaMask } from 'wagmi\u002Fconnectors'\n\nmetaMask({\n  dapp: {\n    name: 'My Dapp',\n    url: 'https:\u002F\u002Fmydapp.com',\n    iconUrl: 'https:\u002F\u002Fmydapp.com\u002Ficon.png', \u002F\u002F new optional field\n  },\n  debug: false,\n  \u002F\u002F Mobile options are now nested:\n  mobile: {\n    useDeeplink: true,\n    preferredOpenLink: undefined, \u002F\u002F required for React Native\n  },\n})\n",[845],{"type":40,"tag":66,"props":846,"children":847},{"__ignoreMap":303},[848,883,890,905,921,948,975,1010,1017,1037,1045,1061,1081,1103,1110],{"type":40,"tag":309,"props":849,"children":850},{"class":311,"line":312},[851,855,859,863,867,871,875,879],{"type":40,"tag":309,"props":852,"children":853},{"style":534},[854],{"type":46,"value":537},{"type":40,"tag":309,"props":856,"children":857},{"style":540},[858],{"type":46,"value":543},{"type":40,"tag":309,"props":860,"children":861},{"style":546},[862],{"type":46,"value":549},{"type":40,"tag":309,"props":864,"children":865},{"style":540},[866],{"type":46,"value":554},{"type":40,"tag":309,"props":868,"children":869},{"style":534},[870],{"type":46,"value":559},{"type":40,"tag":309,"props":872,"children":873},{"style":540},[874],{"type":46,"value":564},{"type":40,"tag":309,"props":876,"children":877},{"style":331},[878],{"type":46,"value":569},{"type":40,"tag":309,"props":880,"children":881},{"style":540},[882],{"type":46,"value":574},{"type":40,"tag":309,"props":884,"children":885},{"class":311,"line":24},[886],{"type":40,"tag":309,"props":887,"children":888},{"emptyLinePlaceholder":364},[889],{"type":46,"value":367},{"type":40,"tag":309,"props":891,"children":892},{"class":311,"line":342},[893,897,901],{"type":40,"tag":309,"props":894,"children":895},{"style":587},[896],{"type":46,"value":590},{"type":40,"tag":309,"props":898,"children":899},{"style":546},[900],{"type":46,"value":595},{"type":40,"tag":309,"props":902,"children":903},{"style":540},[904],{"type":46,"value":600},{"type":40,"tag":309,"props":906,"children":907},{"class":311,"line":360},[908,913,917],{"type":40,"tag":309,"props":909,"children":910},{"style":606},[911],{"type":46,"value":912},"  dapp",{"type":40,"tag":309,"props":914,"children":915},{"style":540},[916],{"type":46,"value":614},{"type":40,"tag":309,"props":918,"children":919},{"style":540},[920],{"type":46,"value":619},{"type":40,"tag":309,"props":922,"children":923},{"class":311,"line":370},[924,928,932,936,940,944],{"type":40,"tag":309,"props":925,"children":926},{"style":606},[927],{"type":46,"value":627},{"type":40,"tag":309,"props":929,"children":930},{"style":540},[931],{"type":46,"value":614},{"type":40,"tag":309,"props":933,"children":934},{"style":540},[935],{"type":46,"value":564},{"type":40,"tag":309,"props":937,"children":938},{"style":331},[939],{"type":46,"value":640},{"type":40,"tag":309,"props":941,"children":942},{"style":540},[943],{"type":46,"value":645},{"type":40,"tag":309,"props":945,"children":946},{"style":540},[947],{"type":46,"value":650},{"type":40,"tag":309,"props":949,"children":950},{"class":311,"line":379},[951,955,959,963,967,971],{"type":40,"tag":309,"props":952,"children":953},{"style":606},[954],{"type":46,"value":658},{"type":40,"tag":309,"props":956,"children":957},{"style":540},[958],{"type":46,"value":614},{"type":40,"tag":309,"props":960,"children":961},{"style":540},[962],{"type":46,"value":564},{"type":40,"tag":309,"props":964,"children":965},{"style":331},[966],{"type":46,"value":671},{"type":40,"tag":309,"props":968,"children":969},{"style":540},[970],{"type":46,"value":645},{"type":40,"tag":309,"props":972,"children":973},{"style":540},[974],{"type":46,"value":650},{"type":40,"tag":309,"props":976,"children":977},{"class":311,"line":397},[978,983,987,991,996,1000,1005],{"type":40,"tag":309,"props":979,"children":980},{"style":606},[981],{"type":46,"value":982},"    iconUrl",{"type":40,"tag":309,"props":984,"children":985},{"style":540},[986],{"type":46,"value":614},{"type":40,"tag":309,"props":988,"children":989},{"style":540},[990],{"type":46,"value":564},{"type":40,"tag":309,"props":992,"children":993},{"style":331},[994],{"type":46,"value":995},"https:\u002F\u002Fmydapp.com\u002Ficon.png",{"type":40,"tag":309,"props":997,"children":998},{"style":540},[999],{"type":46,"value":645},{"type":40,"tag":309,"props":1001,"children":1002},{"style":540},[1003],{"type":46,"value":1004},",",{"type":40,"tag":309,"props":1006,"children":1007},{"style":316},[1008],{"type":46,"value":1009}," \u002F\u002F new optional field\n",{"type":40,"tag":309,"props":1011,"children":1012},{"class":311,"line":414},[1013],{"type":40,"tag":309,"props":1014,"children":1015},{"style":540},[1016],{"type":46,"value":687},{"type":40,"tag":309,"props":1018,"children":1019},{"class":311,"line":422},[1020,1025,1029,1033],{"type":40,"tag":309,"props":1021,"children":1022},{"style":606},[1023],{"type":46,"value":1024},"  debug",{"type":40,"tag":309,"props":1026,"children":1027},{"style":540},[1028],{"type":46,"value":614},{"type":40,"tag":309,"props":1030,"children":1031},{"style":702},[1032],{"type":46,"value":739},{"type":40,"tag":309,"props":1034,"children":1035},{"style":540},[1036],{"type":46,"value":650},{"type":40,"tag":309,"props":1038,"children":1039},{"class":311,"line":431},[1040],{"type":40,"tag":309,"props":1041,"children":1042},{"style":316},[1043],{"type":46,"value":1044},"  \u002F\u002F Mobile options are now nested:\n",{"type":40,"tag":309,"props":1046,"children":1047},{"class":311,"line":448},[1048,1053,1057],{"type":40,"tag":309,"props":1049,"children":1050},{"style":606},[1051],{"type":46,"value":1052},"  mobile",{"type":40,"tag":309,"props":1054,"children":1055},{"style":540},[1056],{"type":46,"value":614},{"type":40,"tag":309,"props":1058,"children":1059},{"style":540},[1060],{"type":46,"value":619},{"type":40,"tag":309,"props":1062,"children":1063},{"class":311,"line":775},[1064,1069,1073,1077],{"type":40,"tag":309,"props":1065,"children":1066},{"style":606},[1067],{"type":46,"value":1068},"    useDeeplink",{"type":40,"tag":309,"props":1070,"children":1071},{"style":540},[1072],{"type":46,"value":614},{"type":40,"tag":309,"props":1074,"children":1075},{"style":702},[1076],{"type":46,"value":705},{"type":40,"tag":309,"props":1078,"children":1079},{"style":540},[1080],{"type":46,"value":650},{"type":40,"tag":309,"props":1082,"children":1083},{"class":311,"line":796},[1084,1089,1093,1098],{"type":40,"tag":309,"props":1085,"children":1086},{"style":606},[1087],{"type":46,"value":1088},"    preferredOpenLink",{"type":40,"tag":309,"props":1090,"children":1091},{"style":540},[1092],{"type":46,"value":614},{"type":40,"tag":309,"props":1094,"children":1095},{"style":540},[1096],{"type":46,"value":1097}," undefined,",{"type":40,"tag":309,"props":1099,"children":1100},{"style":316},[1101],{"type":46,"value":1102}," \u002F\u002F required for React Native\n",{"type":40,"tag":309,"props":1104,"children":1105},{"class":311,"line":817},[1106],{"type":40,"tag":309,"props":1107,"children":1108},{"style":540},[1109],{"type":46,"value":687},{"type":40,"tag":309,"props":1111,"children":1113},{"class":311,"line":1112},15,[1114,1118],{"type":40,"tag":309,"props":1115,"children":1116},{"style":540},[1117],{"type":46,"value":823},{"type":40,"tag":309,"props":1119,"children":1120},{"style":546},[1121],{"type":46,"value":828},{"type":40,"tag":286,"props":1123,"children":1125},{"id":1124},"step-3-configuration-parameter-migration-reference",[1126],{"type":46,"value":1127},"Step 3: Configuration Parameter Migration Reference",{"type":40,"tag":1129,"props":1130,"children":1131},"table",{},[1132,1168],{"type":40,"tag":1133,"props":1134,"children":1135},"thead",{},[1136],{"type":40,"tag":1137,"props":1138,"children":1139},"tr",{},[1140,1152,1163],{"type":40,"tag":1141,"props":1142,"children":1143},"th",{},[1144,1146,1151],{"type":46,"value":1145},"Old Parameter (",{"type":40,"tag":66,"props":1147,"children":1149},{"className":1148},[],[1150],{"type":46,"value":79},{"type":46,"value":89},{"type":40,"tag":1141,"props":1153,"children":1154},{},[1155,1157,1162],{"type":46,"value":1156},"New Parameter (",{"type":40,"tag":66,"props":1158,"children":1160},{"className":1159},[],[1161],{"type":46,"value":87},{"type":46,"value":89},{"type":40,"tag":1141,"props":1164,"children":1165},{},[1166],{"type":46,"value":1167},"Notes",{"type":40,"tag":1169,"props":1170,"children":1171},"tbody",{},[1172,1204,1235,1269,1300,1326,1349,1372,1397],{"type":40,"tag":1137,"props":1173,"children":1174},{},[1175,1185,1194],{"type":40,"tag":1176,"props":1177,"children":1178},"td",{},[1179],{"type":40,"tag":66,"props":1180,"children":1182},{"className":1181},[],[1183],{"type":46,"value":1184},"dappMetadata: { name, url }",{"type":40,"tag":1176,"props":1186,"children":1187},{},[1188],{"type":40,"tag":66,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":46,"value":1193},"dapp: { name, url, iconUrl }",{"type":40,"tag":1176,"props":1195,"children":1196},{},[1197,1202],{"type":40,"tag":66,"props":1198,"children":1200},{"className":1199},[],[1201],{"type":46,"value":231},{"type":46,"value":1203}," still works but is deprecated",{"type":40,"tag":1137,"props":1205,"children":1206},{},[1207,1216,1225],{"type":40,"tag":1176,"props":1208,"children":1209},{},[1210],{"type":40,"tag":66,"props":1211,"children":1213},{"className":1212},[],[1214],{"type":46,"value":1215},"logging: { sdk: true }",{"type":40,"tag":1176,"props":1217,"children":1218},{},[1219],{"type":40,"tag":66,"props":1220,"children":1222},{"className":1221},[],[1223],{"type":46,"value":1224},"debug: true",{"type":40,"tag":1176,"props":1226,"children":1227},{},[1228,1234],{"type":40,"tag":66,"props":1229,"children":1231},{"className":1230},[],[1232],{"type":46,"value":1233},"logging",{"type":46,"value":1203},{"type":40,"tag":1137,"props":1236,"children":1237},{},[1238,1247,1256],{"type":40,"tag":1176,"props":1239,"children":1240},{},[1241],{"type":40,"tag":66,"props":1242,"children":1244},{"className":1243},[],[1245],{"type":46,"value":1246},"useDeeplink: boolean",{"type":40,"tag":1176,"props":1248,"children":1249},{},[1250],{"type":40,"tag":66,"props":1251,"children":1253},{"className":1252},[],[1254],{"type":46,"value":1255},"mobile: { useDeeplink: boolean }",{"type":40,"tag":1176,"props":1257,"children":1258},{},[1259,1261,1267],{"type":46,"value":1260},"Moved into ",{"type":40,"tag":66,"props":1262,"children":1264},{"className":1263},[],[1265],{"type":46,"value":1266},"mobile",{"type":46,"value":1268}," namespace",{"type":40,"tag":1137,"props":1270,"children":1271},{},[1272,1281,1290],{"type":40,"tag":1176,"props":1273,"children":1274},{},[1275],{"type":40,"tag":66,"props":1276,"children":1278},{"className":1277},[],[1279],{"type":46,"value":1280},"preferredOpenLink",{"type":40,"tag":1176,"props":1282,"children":1283},{},[1284],{"type":40,"tag":66,"props":1285,"children":1287},{"className":1286},[],[1288],{"type":46,"value":1289},"mobile: { preferredOpenLink }",{"type":40,"tag":1176,"props":1291,"children":1292},{},[1293,1294,1299],{"type":46,"value":1260},{"type":40,"tag":66,"props":1295,"children":1297},{"className":1296},[],[1298],{"type":46,"value":1266},{"type":46,"value":1268},{"type":40,"tag":1137,"props":1301,"children":1302},{},[1303,1312,1321],{"type":40,"tag":1176,"props":1304,"children":1305},{},[1306],{"type":40,"tag":66,"props":1307,"children":1309},{"className":1308},[],[1310],{"type":46,"value":1311},"forceDeleteProvider",{"type":40,"tag":1176,"props":1313,"children":1314},{},[1315],{"type":40,"tag":1316,"props":1317,"children":1318},"em",{},[1319],{"type":46,"value":1320},"(removed)",{"type":40,"tag":1176,"props":1322,"children":1323},{},[1324],{"type":46,"value":1325},"No replacement — not needed with new SDK",{"type":40,"tag":1137,"props":1327,"children":1328},{},[1329,1338,1345],{"type":40,"tag":1176,"props":1330,"children":1331},{},[1332],{"type":40,"tag":66,"props":1333,"children":1335},{"className":1334},[],[1336],{"type":46,"value":1337},"forceInjectProvider",{"type":40,"tag":1176,"props":1339,"children":1340},{},[1341],{"type":40,"tag":1316,"props":1342,"children":1343},{},[1344],{"type":46,"value":1320},{"type":40,"tag":1176,"props":1346,"children":1347},{},[1348],{"type":46,"value":1325},{"type":40,"tag":1137,"props":1350,"children":1351},{},[1352,1361,1368],{"type":40,"tag":1176,"props":1353,"children":1354},{},[1355],{"type":40,"tag":66,"props":1356,"children":1358},{"className":1357},[],[1359],{"type":46,"value":1360},"injectProvider",{"type":40,"tag":1176,"props":1362,"children":1363},{},[1364],{"type":40,"tag":1316,"props":1365,"children":1366},{},[1367],{"type":46,"value":1320},{"type":40,"tag":1176,"props":1369,"children":1370},{},[1371],{"type":46,"value":1325},{"type":40,"tag":1137,"props":1373,"children":1374},{},[1375,1384,1392],{"type":40,"tag":1176,"props":1376,"children":1377},{},[1378],{"type":40,"tag":66,"props":1379,"children":1381},{"className":1380},[],[1382],{"type":46,"value":1383},"readonlyRPCMap",{"type":40,"tag":1176,"props":1385,"children":1386},{},[1387],{"type":40,"tag":1316,"props":1388,"children":1389},{},[1390],{"type":46,"value":1391},"(auto-configured)",{"type":40,"tag":1176,"props":1393,"children":1394},{},[1395],{"type":46,"value":1396},"Built automatically from wagmi's chain config",{"type":40,"tag":1137,"props":1398,"children":1399},{},[1400,1409,1417],{"type":40,"tag":1176,"props":1401,"children":1402},{},[1403],{"type":40,"tag":66,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":46,"value":1408},"_source",{"type":40,"tag":1176,"props":1410,"children":1411},{},[1412],{"type":40,"tag":1316,"props":1413,"children":1414},{},[1415],{"type":46,"value":1416},"(auto-set to 'wagmi')",{"type":40,"tag":1176,"props":1418,"children":1419},{},[1420],{"type":46,"value":1421},"Set internally by the connector",{"type":40,"tag":286,"props":1423,"children":1425},{"id":1424},"step-4-update-connectandsign-connectwith-usage-if-applicable",[1426],{"type":46,"value":1427},"Step 4: Update connectAndSign \u002F connectWith Usage (if applicable)",{"type":40,"tag":130,"props":1429,"children":1430},{},[1431,1433,1439,1441,1447,1448,1454,1456,1462,1464,1470],{"type":46,"value":1432},"The ",{"type":40,"tag":66,"props":1434,"children":1436},{"className":1435},[],[1437],{"type":46,"value":1438},"connectAndSign",{"type":46,"value":1440}," parameter name changed from ",{"type":40,"tag":66,"props":1442,"children":1444},{"className":1443},[],[1445],{"type":46,"value":1446},"msg",{"type":46,"value":149},{"type":40,"tag":66,"props":1449,"children":1451},{"className":1450},[],[1452],{"type":46,"value":1453},"message",{"type":46,"value":1455}," internally. However, at the wagmi connector level the API is the same — you still pass ",{"type":40,"tag":66,"props":1457,"children":1459},{"className":1458},[],[1460],{"type":46,"value":1461},"connectAndSign: 'message string'",{"type":46,"value":1463}," in the ",{"type":40,"tag":66,"props":1465,"children":1467},{"className":1466},[],[1468],{"type":46,"value":1469},"metaMask()",{"type":46,"value":1471}," parameters.",{"type":40,"tag":298,"props":1473,"children":1475},{"className":522,"code":1474,"language":524,"meta":303,"style":303},"\u002F\u002F Still works the same at the wagmi config level:\nmetaMask({\n  dapp: { name: 'My Dapp' },\n  connectAndSign: 'Please sign this message to verify your identity',\n})\n",[1476],{"type":40,"tag":66,"props":1477,"children":1478},{"__ignoreMap":303},[1479,1487,1502,1542,1571],{"type":40,"tag":309,"props":1480,"children":1481},{"class":311,"line":312},[1482],{"type":40,"tag":309,"props":1483,"children":1484},{"style":316},[1485],{"type":46,"value":1486},"\u002F\u002F Still works the same at the wagmi config level:\n",{"type":40,"tag":309,"props":1488,"children":1489},{"class":311,"line":24},[1490,1494,1498],{"type":40,"tag":309,"props":1491,"children":1492},{"style":587},[1493],{"type":46,"value":590},{"type":40,"tag":309,"props":1495,"children":1496},{"style":546},[1497],{"type":46,"value":595},{"type":40,"tag":309,"props":1499,"children":1500},{"style":540},[1501],{"type":46,"value":600},{"type":40,"tag":309,"props":1503,"children":1504},{"class":311,"line":342},[1505,1509,1513,1517,1522,1526,1530,1534,1538],{"type":40,"tag":309,"props":1506,"children":1507},{"style":606},[1508],{"type":46,"value":912},{"type":40,"tag":309,"props":1510,"children":1511},{"style":540},[1512],{"type":46,"value":614},{"type":40,"tag":309,"props":1514,"children":1515},{"style":540},[1516],{"type":46,"value":543},{"type":40,"tag":309,"props":1518,"children":1519},{"style":606},[1520],{"type":46,"value":1521}," name",{"type":40,"tag":309,"props":1523,"children":1524},{"style":540},[1525],{"type":46,"value":614},{"type":40,"tag":309,"props":1527,"children":1528},{"style":540},[1529],{"type":46,"value":564},{"type":40,"tag":309,"props":1531,"children":1532},{"style":331},[1533],{"type":46,"value":640},{"type":40,"tag":309,"props":1535,"children":1536},{"style":540},[1537],{"type":46,"value":645},{"type":40,"tag":309,"props":1539,"children":1540},{"style":540},[1541],{"type":46,"value":744},{"type":40,"tag":309,"props":1543,"children":1544},{"class":311,"line":360},[1545,1550,1554,1558,1563,1567],{"type":40,"tag":309,"props":1546,"children":1547},{"style":606},[1548],{"type":46,"value":1549},"  connectAndSign",{"type":40,"tag":309,"props":1551,"children":1552},{"style":540},[1553],{"type":46,"value":614},{"type":40,"tag":309,"props":1555,"children":1556},{"style":540},[1557],{"type":46,"value":564},{"type":40,"tag":309,"props":1559,"children":1560},{"style":331},[1561],{"type":46,"value":1562},"Please sign this message to verify your identity",{"type":40,"tag":309,"props":1564,"children":1565},{"style":540},[1566],{"type":46,"value":645},{"type":40,"tag":309,"props":1568,"children":1569},{"style":540},[1570],{"type":46,"value":650},{"type":40,"tag":309,"props":1572,"children":1573},{"class":311,"line":370},[1574,1578],{"type":40,"tag":309,"props":1575,"children":1576},{"style":540},[1577],{"type":46,"value":823},{"type":40,"tag":309,"props":1579,"children":1580},{"style":546},[1581],{"type":46,"value":828},{"type":40,"tag":130,"props":1583,"children":1584},{},[1585,1586,1592],{"type":46,"value":1432},{"type":40,"tag":66,"props":1587,"children":1589},{"className":1588},[],[1590],{"type":46,"value":1591},"connectWith",{"type":46,"value":1593}," API is also unchanged at the wagmi level:",{"type":40,"tag":298,"props":1595,"children":1597},{"className":522,"code":1596,"language":524,"meta":303,"style":303},"metaMask({\n  dapp: { name: 'My Dapp' },\n  connectWith: {\n    method: 'eth_signTypedData_v4',\n    params: [address, typedData],\n  },\n})\n",[1598],{"type":40,"tag":66,"props":1599,"children":1600},{"__ignoreMap":303},[1601,1616,1655,1671,1700,1730,1737],{"type":40,"tag":309,"props":1602,"children":1603},{"class":311,"line":312},[1604,1608,1612],{"type":40,"tag":309,"props":1605,"children":1606},{"style":587},[1607],{"type":46,"value":590},{"type":40,"tag":309,"props":1609,"children":1610},{"style":546},[1611],{"type":46,"value":595},{"type":40,"tag":309,"props":1613,"children":1614},{"style":540},[1615],{"type":46,"value":600},{"type":40,"tag":309,"props":1617,"children":1618},{"class":311,"line":24},[1619,1623,1627,1631,1635,1639,1643,1647,1651],{"type":40,"tag":309,"props":1620,"children":1621},{"style":606},[1622],{"type":46,"value":912},{"type":40,"tag":309,"props":1624,"children":1625},{"style":540},[1626],{"type":46,"value":614},{"type":40,"tag":309,"props":1628,"children":1629},{"style":540},[1630],{"type":46,"value":543},{"type":40,"tag":309,"props":1632,"children":1633},{"style":606},[1634],{"type":46,"value":1521},{"type":40,"tag":309,"props":1636,"children":1637},{"style":540},[1638],{"type":46,"value":614},{"type":40,"tag":309,"props":1640,"children":1641},{"style":540},[1642],{"type":46,"value":564},{"type":40,"tag":309,"props":1644,"children":1645},{"style":331},[1646],{"type":46,"value":640},{"type":40,"tag":309,"props":1648,"children":1649},{"style":540},[1650],{"type":46,"value":645},{"type":40,"tag":309,"props":1652,"children":1653},{"style":540},[1654],{"type":46,"value":744},{"type":40,"tag":309,"props":1656,"children":1657},{"class":311,"line":342},[1658,1663,1667],{"type":40,"tag":309,"props":1659,"children":1660},{"style":606},[1661],{"type":46,"value":1662},"  connectWith",{"type":40,"tag":309,"props":1664,"children":1665},{"style":540},[1666],{"type":46,"value":614},{"type":40,"tag":309,"props":1668,"children":1669},{"style":540},[1670],{"type":46,"value":619},{"type":40,"tag":309,"props":1672,"children":1673},{"class":311,"line":360},[1674,1679,1683,1687,1692,1696],{"type":40,"tag":309,"props":1675,"children":1676},{"style":606},[1677],{"type":46,"value":1678},"    method",{"type":40,"tag":309,"props":1680,"children":1681},{"style":540},[1682],{"type":46,"value":614},{"type":40,"tag":309,"props":1684,"children":1685},{"style":540},[1686],{"type":46,"value":564},{"type":40,"tag":309,"props":1688,"children":1689},{"style":331},[1690],{"type":46,"value":1691},"eth_signTypedData_v4",{"type":40,"tag":309,"props":1693,"children":1694},{"style":540},[1695],{"type":46,"value":645},{"type":40,"tag":309,"props":1697,"children":1698},{"style":540},[1699],{"type":46,"value":650},{"type":40,"tag":309,"props":1701,"children":1702},{"class":311,"line":370},[1703,1708,1712,1717,1721,1726],{"type":40,"tag":309,"props":1704,"children":1705},{"style":606},[1706],{"type":46,"value":1707},"    params",{"type":40,"tag":309,"props":1709,"children":1710},{"style":540},[1711],{"type":46,"value":614},{"type":40,"tag":309,"props":1713,"children":1714},{"style":546},[1715],{"type":46,"value":1716}," [address",{"type":40,"tag":309,"props":1718,"children":1719},{"style":540},[1720],{"type":46,"value":1004},{"type":40,"tag":309,"props":1722,"children":1723},{"style":546},[1724],{"type":46,"value":1725}," typedData]",{"type":40,"tag":309,"props":1727,"children":1728},{"style":540},[1729],{"type":46,"value":650},{"type":40,"tag":309,"props":1731,"children":1732},{"class":311,"line":379},[1733],{"type":40,"tag":309,"props":1734,"children":1735},{"style":540},[1736],{"type":46,"value":687},{"type":40,"tag":309,"props":1738,"children":1739},{"class":311,"line":397},[1740,1744],{"type":40,"tag":309,"props":1741,"children":1742},{"style":540},[1743],{"type":46,"value":823},{"type":40,"tag":309,"props":1745,"children":1746},{"style":546},[1747],{"type":46,"value":828},{"type":40,"tag":286,"props":1749,"children":1751},{"id":1750},"step-5-handle-provider-type-changes",[1752],{"type":46,"value":1753},"Step 5: Handle Provider Type Changes",{"type":40,"tag":130,"props":1755,"children":1756},{},[1757],{"type":46,"value":1758},"If your code directly accesses the provider from the connector, the type has changed:",{"type":40,"tag":298,"props":1760,"children":1762},{"className":522,"code":1761,"language":524,"meta":303,"style":303},"\u002F\u002F Before: provider was SDKProvider from @metamask\u002Fsdk\n\u002F\u002F After: provider is EIP1193Provider from @metamask\u002Fconnect-evm\n\n\u002F\u002F The EIP1193Provider interface is the same standard interface,\n\u002F\u002F so provider.request() calls remain unchanged.\n\n\u002F\u002F New: You can access the underlying MetamaskConnectEVM instance:\nconst connector = config.connectors.find(c => c.id === 'metaMaskSDK')\nif (connector) {\n  const instance = await connector.getInstance()\n  \u002F\u002F instance.accounts, instance.getChainId(), instance.switchChain(), etc.\n}\n",[1763],{"type":40,"tag":66,"props":1764,"children":1765},{"__ignoreMap":303},[1766,1774,1782,1789,1797,1805,1812,1820,1913,1930,1972,1980],{"type":40,"tag":309,"props":1767,"children":1768},{"class":311,"line":312},[1769],{"type":40,"tag":309,"props":1770,"children":1771},{"style":316},[1772],{"type":46,"value":1773},"\u002F\u002F Before: provider was SDKProvider from @metamask\u002Fsdk\n",{"type":40,"tag":309,"props":1775,"children":1776},{"class":311,"line":24},[1777],{"type":40,"tag":309,"props":1778,"children":1779},{"style":316},[1780],{"type":46,"value":1781},"\u002F\u002F After: provider is EIP1193Provider from @metamask\u002Fconnect-evm\n",{"type":40,"tag":309,"props":1783,"children":1784},{"class":311,"line":342},[1785],{"type":40,"tag":309,"props":1786,"children":1787},{"emptyLinePlaceholder":364},[1788],{"type":46,"value":367},{"type":40,"tag":309,"props":1790,"children":1791},{"class":311,"line":360},[1792],{"type":40,"tag":309,"props":1793,"children":1794},{"style":316},[1795],{"type":46,"value":1796},"\u002F\u002F The EIP1193Provider interface is the same standard interface,\n",{"type":40,"tag":309,"props":1798,"children":1799},{"class":311,"line":370},[1800],{"type":40,"tag":309,"props":1801,"children":1802},{"style":316},[1803],{"type":46,"value":1804},"\u002F\u002F so provider.request() calls remain unchanged.\n",{"type":40,"tag":309,"props":1806,"children":1807},{"class":311,"line":379},[1808],{"type":40,"tag":309,"props":1809,"children":1810},{"emptyLinePlaceholder":364},[1811],{"type":46,"value":367},{"type":40,"tag":309,"props":1813,"children":1814},{"class":311,"line":397},[1815],{"type":40,"tag":309,"props":1816,"children":1817},{"style":316},[1818],{"type":46,"value":1819},"\u002F\u002F New: You can access the underlying MetamaskConnectEVM instance:\n",{"type":40,"tag":309,"props":1821,"children":1822},{"class":311,"line":414},[1823,1829,1834,1839,1844,1848,1853,1857,1862,1866,1872,1877,1882,1886,1891,1896,1900,1905,1909],{"type":40,"tag":309,"props":1824,"children":1826},{"style":1825},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1827],{"type":46,"value":1828},"const",{"type":40,"tag":309,"props":1830,"children":1831},{"style":546},[1832],{"type":46,"value":1833}," connector ",{"type":40,"tag":309,"props":1835,"children":1836},{"style":540},[1837],{"type":46,"value":1838},"=",{"type":40,"tag":309,"props":1840,"children":1841},{"style":546},[1842],{"type":46,"value":1843}," config",{"type":40,"tag":309,"props":1845,"children":1846},{"style":540},[1847],{"type":46,"value":170},{"type":40,"tag":309,"props":1849,"children":1850},{"style":546},[1851],{"type":46,"value":1852},"connectors",{"type":40,"tag":309,"props":1854,"children":1855},{"style":540},[1856],{"type":46,"value":170},{"type":40,"tag":309,"props":1858,"children":1859},{"style":587},[1860],{"type":46,"value":1861},"find",{"type":40,"tag":309,"props":1863,"children":1864},{"style":546},[1865],{"type":46,"value":595},{"type":40,"tag":309,"props":1867,"children":1869},{"style":1868},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1870],{"type":46,"value":1871},"c",{"type":40,"tag":309,"props":1873,"children":1874},{"style":1825},[1875],{"type":46,"value":1876}," =>",{"type":40,"tag":309,"props":1878,"children":1879},{"style":546},[1880],{"type":46,"value":1881}," c",{"type":40,"tag":309,"props":1883,"children":1884},{"style":540},[1885],{"type":46,"value":170},{"type":40,"tag":309,"props":1887,"children":1888},{"style":546},[1889],{"type":46,"value":1890},"id ",{"type":40,"tag":309,"props":1892,"children":1893},{"style":540},[1894],{"type":46,"value":1895},"===",{"type":40,"tag":309,"props":1897,"children":1898},{"style":540},[1899],{"type":46,"value":564},{"type":40,"tag":309,"props":1901,"children":1902},{"style":331},[1903],{"type":46,"value":1904},"metaMaskSDK",{"type":40,"tag":309,"props":1906,"children":1907},{"style":540},[1908],{"type":46,"value":645},{"type":40,"tag":309,"props":1910,"children":1911},{"style":546},[1912],{"type":46,"value":828},{"type":40,"tag":309,"props":1914,"children":1915},{"class":311,"line":422},[1916,1921,1926],{"type":40,"tag":309,"props":1917,"children":1918},{"style":534},[1919],{"type":46,"value":1920},"if",{"type":40,"tag":309,"props":1922,"children":1923},{"style":546},[1924],{"type":46,"value":1925}," (connector) ",{"type":40,"tag":309,"props":1927,"children":1928},{"style":540},[1929],{"type":46,"value":600},{"type":40,"tag":309,"props":1931,"children":1932},{"class":311,"line":431},[1933,1938,1943,1948,1953,1958,1962,1967],{"type":40,"tag":309,"props":1934,"children":1935},{"style":1825},[1936],{"type":46,"value":1937},"  const",{"type":40,"tag":309,"props":1939,"children":1940},{"style":546},[1941],{"type":46,"value":1942}," instance",{"type":40,"tag":309,"props":1944,"children":1945},{"style":540},[1946],{"type":46,"value":1947}," =",{"type":40,"tag":309,"props":1949,"children":1950},{"style":534},[1951],{"type":46,"value":1952}," await",{"type":40,"tag":309,"props":1954,"children":1955},{"style":546},[1956],{"type":46,"value":1957}," connector",{"type":40,"tag":309,"props":1959,"children":1960},{"style":540},[1961],{"type":46,"value":170},{"type":40,"tag":309,"props":1963,"children":1964},{"style":587},[1965],{"type":46,"value":1966},"getInstance",{"type":40,"tag":309,"props":1968,"children":1969},{"style":606},[1970],{"type":46,"value":1971},"()\n",{"type":40,"tag":309,"props":1973,"children":1974},{"class":311,"line":448},[1975],{"type":40,"tag":309,"props":1976,"children":1977},{"style":316},[1978],{"type":46,"value":1979},"  \u002F\u002F instance.accounts, instance.getChainId(), instance.switchChain(), etc.\n",{"type":40,"tag":309,"props":1981,"children":1982},{"class":311,"line":775},[1983],{"type":40,"tag":309,"props":1984,"children":1985},{"style":540},[1986],{"type":46,"value":1987},"}\n",{"type":40,"tag":286,"props":1989,"children":1991},{"id":1990},"step-6-remove-deprecated-patterns",[1992],{"type":46,"value":1993},"Step 6: Remove Deprecated Patterns",{"type":40,"tag":130,"props":1995,"children":1996},{},[1997],{"type":46,"value":1998},"The new connector handles event listeners internally. If you had code that manually managed MetaMask SDK event listeners, you can remove it:",{"type":40,"tag":298,"props":2000,"children":2002},{"className":522,"code":2001,"language":524,"meta":303,"style":303},"\u002F\u002F REMOVE any manual SDK event management like:\n\u002F\u002F sdk.on('accountsChanged', ...)\n\u002F\u002F sdk.on('chainChanged', ...)\n\u002F\u002F provider.removeListener(...)\n\n\u002F\u002F Event handlers are now passed to createEVMClient internally.\n\u002F\u002F Wagmi hooks (useAccount, useChainId, etc.) handle state automatically.\n",[2003],{"type":40,"tag":66,"props":2004,"children":2005},{"__ignoreMap":303},[2006,2014,2022,2030,2038,2045,2053],{"type":40,"tag":309,"props":2007,"children":2008},{"class":311,"line":312},[2009],{"type":40,"tag":309,"props":2010,"children":2011},{"style":316},[2012],{"type":46,"value":2013},"\u002F\u002F REMOVE any manual SDK event management like:\n",{"type":40,"tag":309,"props":2015,"children":2016},{"class":311,"line":24},[2017],{"type":40,"tag":309,"props":2018,"children":2019},{"style":316},[2020],{"type":46,"value":2021},"\u002F\u002F sdk.on('accountsChanged', ...)\n",{"type":40,"tag":309,"props":2023,"children":2024},{"class":311,"line":342},[2025],{"type":40,"tag":309,"props":2026,"children":2027},{"style":316},[2028],{"type":46,"value":2029},"\u002F\u002F sdk.on('chainChanged', ...)\n",{"type":40,"tag":309,"props":2031,"children":2032},{"class":311,"line":360},[2033],{"type":40,"tag":309,"props":2034,"children":2035},{"style":316},[2036],{"type":46,"value":2037},"\u002F\u002F provider.removeListener(...)\n",{"type":40,"tag":309,"props":2039,"children":2040},{"class":311,"line":370},[2041],{"type":40,"tag":309,"props":2042,"children":2043},{"emptyLinePlaceholder":364},[2044],{"type":46,"value":367},{"type":40,"tag":309,"props":2046,"children":2047},{"class":311,"line":379},[2048],{"type":40,"tag":309,"props":2049,"children":2050},{"style":316},[2051],{"type":46,"value":2052},"\u002F\u002F Event handlers are now passed to createEVMClient internally.\n",{"type":40,"tag":309,"props":2054,"children":2055},{"class":311,"line":397},[2056],{"type":40,"tag":309,"props":2057,"children":2058},{"style":316},[2059],{"type":46,"value":2060},"\u002F\u002F Wagmi hooks (useAccount, useChainId, etc.) handle state automatically.\n",{"type":40,"tag":286,"props":2062,"children":2064},{"id":2063},"step-7-additional-wagmi-api-renames-same-major-version",[2065],{"type":46,"value":2066},"Step 7: Additional Wagmi API Renames (same major version)",{"type":40,"tag":130,"props":2068,"children":2069},{},[2070],{"type":46,"value":2071},"This wagmi release also includes several API renames. Deprecated aliases are provided but you should migrate:",{"type":40,"tag":1129,"props":2073,"children":2074},{},[2075,2096],{"type":40,"tag":1133,"props":2076,"children":2077},{},[2078],{"type":40,"tag":1137,"props":2079,"children":2080},{},[2081,2086,2091],{"type":40,"tag":1141,"props":2082,"children":2083},{},[2084],{"type":46,"value":2085},"Old API",{"type":40,"tag":1141,"props":2087,"children":2088},{},[2089],{"type":46,"value":2090},"New API",{"type":40,"tag":1141,"props":2092,"children":2093},{},[2094],{"type":46,"value":2095},"Package",{"type":40,"tag":1169,"props":2097,"children":2098},{},[2099,2128,2157,2186,2216,2245,2274,2305,2336,2366],{"type":40,"tag":1137,"props":2100,"children":2101},{},[2102,2111,2120],{"type":40,"tag":1176,"props":2103,"children":2104},{},[2105],{"type":40,"tag":66,"props":2106,"children":2108},{"className":2107},[],[2109],{"type":46,"value":2110},"useAccount()",{"type":40,"tag":1176,"props":2112,"children":2113},{},[2114],{"type":40,"tag":66,"props":2115,"children":2117},{"className":2116},[],[2118],{"type":46,"value":2119},"useConnection()",{"type":40,"tag":1176,"props":2121,"children":2122},{},[2123],{"type":40,"tag":66,"props":2124,"children":2126},{"className":2125},[],[2127],{"type":46,"value":13},{"type":40,"tag":1137,"props":2129,"children":2130},{},[2131,2140,2149],{"type":40,"tag":1176,"props":2132,"children":2133},{},[2134],{"type":40,"tag":66,"props":2135,"children":2137},{"className":2136},[],[2138],{"type":46,"value":2139},"useAccountEffect()",{"type":40,"tag":1176,"props":2141,"children":2142},{},[2143],{"type":40,"tag":66,"props":2144,"children":2146},{"className":2145},[],[2147],{"type":46,"value":2148},"useConnectionEffect()",{"type":40,"tag":1176,"props":2150,"children":2151},{},[2152],{"type":40,"tag":66,"props":2153,"children":2155},{"className":2154},[],[2156],{"type":46,"value":13},{"type":40,"tag":1137,"props":2158,"children":2159},{},[2160,2169,2178],{"type":40,"tag":1176,"props":2161,"children":2162},{},[2163],{"type":40,"tag":66,"props":2164,"children":2166},{"className":2165},[],[2167],{"type":46,"value":2168},"useSwitchAccount()",{"type":40,"tag":1176,"props":2170,"children":2171},{},[2172],{"type":40,"tag":66,"props":2173,"children":2175},{"className":2174},[],[2176],{"type":46,"value":2177},"useSwitchConnection()",{"type":40,"tag":1176,"props":2179,"children":2180},{},[2181],{"type":40,"tag":66,"props":2182,"children":2184},{"className":2183},[],[2185],{"type":46,"value":13},{"type":40,"tag":1137,"props":2187,"children":2188},{},[2189,2198,2207],{"type":40,"tag":1176,"props":2190,"children":2191},{},[2192],{"type":40,"tag":66,"props":2193,"children":2195},{"className":2194},[],[2196],{"type":46,"value":2197},"getAccount()",{"type":40,"tag":1176,"props":2199,"children":2200},{},[2201],{"type":40,"tag":66,"props":2202,"children":2204},{"className":2203},[],[2205],{"type":46,"value":2206},"getConnection()",{"type":40,"tag":1176,"props":2208,"children":2209},{},[2210],{"type":40,"tag":66,"props":2211,"children":2213},{"className":2212},[],[2214],{"type":46,"value":2215},"@wagmi\u002Fcore",{"type":40,"tag":1137,"props":2217,"children":2218},{},[2219,2228,2237],{"type":40,"tag":1176,"props":2220,"children":2221},{},[2222],{"type":40,"tag":66,"props":2223,"children":2225},{"className":2224},[],[2226],{"type":46,"value":2227},"switchAccount()",{"type":40,"tag":1176,"props":2229,"children":2230},{},[2231],{"type":40,"tag":66,"props":2232,"children":2234},{"className":2233},[],[2235],{"type":46,"value":2236},"switchConnection()",{"type":40,"tag":1176,"props":2238,"children":2239},{},[2240],{"type":40,"tag":66,"props":2241,"children":2243},{"className":2242},[],[2244],{"type":46,"value":2215},{"type":40,"tag":1137,"props":2246,"children":2247},{},[2248,2257,2266],{"type":40,"tag":1176,"props":2249,"children":2250},{},[2251],{"type":40,"tag":66,"props":2252,"children":2254},{"className":2253},[],[2255],{"type":46,"value":2256},"watchAccount()",{"type":40,"tag":1176,"props":2258,"children":2259},{},[2260],{"type":40,"tag":66,"props":2261,"children":2263},{"className":2262},[],[2264],{"type":46,"value":2265},"watchConnection()",{"type":40,"tag":1176,"props":2267,"children":2268},{},[2269],{"type":40,"tag":66,"props":2270,"children":2272},{"className":2271},[],[2273],{"type":46,"value":2215},{"type":40,"tag":1137,"props":2275,"children":2276},{},[2277,2286,2295],{"type":40,"tag":1176,"props":2278,"children":2279},{},[2280],{"type":40,"tag":66,"props":2281,"children":2283},{"className":2282},[],[2284],{"type":46,"value":2285},"WagmiConfig",{"type":40,"tag":1176,"props":2287,"children":2288},{},[2289],{"type":40,"tag":66,"props":2290,"children":2292},{"className":2291},[],[2293],{"type":46,"value":2294},"WagmiProvider",{"type":40,"tag":1176,"props":2296,"children":2297},{},[2298,2303],{"type":40,"tag":66,"props":2299,"children":2301},{"className":2300},[],[2302],{"type":46,"value":13},{"type":46,"value":2304}," (alias removed)",{"type":40,"tag":1137,"props":2306,"children":2307},{},[2308,2317,2326],{"type":40,"tag":1176,"props":2309,"children":2310},{},[2311],{"type":40,"tag":66,"props":2312,"children":2314},{"className":2313},[],[2315],{"type":46,"value":2316},"useToken()",{"type":40,"tag":1176,"props":2318,"children":2319},{},[2320],{"type":40,"tag":66,"props":2321,"children":2323},{"className":2322},[],[2324],{"type":46,"value":2325},"useReadContracts()",{"type":40,"tag":1176,"props":2327,"children":2328},{},[2329,2334],{"type":40,"tag":66,"props":2330,"children":2332},{"className":2331},[],[2333],{"type":46,"value":13},{"type":46,"value":2335}," (hook removed)",{"type":40,"tag":1137,"props":2337,"children":2338},{},[2339,2348,2357],{"type":40,"tag":1176,"props":2340,"children":2341},{},[2342],{"type":40,"tag":66,"props":2343,"children":2345},{"className":2344},[],[2346],{"type":46,"value":2347},"useFeeData()",{"type":40,"tag":1176,"props":2349,"children":2350},{},[2351],{"type":40,"tag":66,"props":2352,"children":2354},{"className":2353},[],[2355],{"type":46,"value":2356},"useEstimateFeesPerGas()",{"type":40,"tag":1176,"props":2358,"children":2359},{},[2360,2365],{"type":40,"tag":66,"props":2361,"children":2363},{"className":2362},[],[2364],{"type":46,"value":13},{"type":46,"value":2304},{"type":40,"tag":1137,"props":2367,"children":2368},{},[2369,2378,2385],{"type":40,"tag":1176,"props":2370,"children":2371},{},[2372],{"type":40,"tag":66,"props":2373,"children":2375},{"className":2374},[],[2376],{"type":46,"value":2377},"normalizeChainId()",{"type":40,"tag":1176,"props":2379,"children":2380},{},[2381],{"type":40,"tag":1316,"props":2382,"children":2383},{},[2384],{"type":46,"value":1320},{"type":40,"tag":1176,"props":2386,"children":2387},{},[2388,2393],{"type":40,"tag":66,"props":2389,"children":2391},{"className":2390},[],[2392],{"type":46,"value":13},{"type":46,"value":2394}," (export removed)",{"type":40,"tag":286,"props":2396,"children":2398},{"id":2397},"step-8-verify-the-migration",[2399],{"type":46,"value":2400},"Step 8: Verify the Migration",{"type":40,"tag":130,"props":2402,"children":2403},{},[2404],{"type":46,"value":2405},"After making changes, verify:",{"type":40,"tag":2407,"props":2408,"children":2409},"ol",{},[2410,2436,2540,2550,2560,2570],{"type":40,"tag":60,"props":2411,"children":2412},{},[2413,2418,2420,2426,2428,2434],{"type":40,"tag":136,"props":2414,"children":2415},{},[2416],{"type":46,"value":2417},"Build succeeds",{"type":46,"value":2419}," — ",{"type":40,"tag":66,"props":2421,"children":2423},{"className":2422},[],[2424],{"type":46,"value":2425},"npm run build",{"type":46,"value":2427}," or ",{"type":40,"tag":66,"props":2429,"children":2431},{"className":2430},[],[2432],{"type":46,"value":2433},"tsc --noEmit",{"type":46,"value":2435}," should pass",{"type":40,"tag":60,"props":2437,"children":2438},{},[2439,2451,2453],{"type":40,"tag":136,"props":2440,"children":2441},{},[2442,2444,2449],{"type":46,"value":2443},"No ",{"type":40,"tag":66,"props":2445,"children":2447},{"className":2446},[],[2448],{"type":46,"value":79},{"type":46,"value":2450}," imports remain",{"type":46,"value":2452}," — search your codebase:\n",{"type":40,"tag":298,"props":2454,"children":2456},{"className":300,"code":2455,"language":302,"meta":303,"style":303},"grep -r \"@metamask\u002Fsdk\" --include=\"*.ts\" --include=\"*.tsx\" --include=\"*.js\"\n",[2457],{"type":40,"tag":66,"props":2458,"children":2459},{"__ignoreMap":303},[2460],{"type":40,"tag":309,"props":2461,"children":2462},{"class":311,"line":312},[2463,2468,2473,2478,2482,2487,2492,2496,2501,2505,2509,2513,2518,2522,2526,2530,2535],{"type":40,"tag":309,"props":2464,"children":2465},{"style":325},[2466],{"type":46,"value":2467},"grep",{"type":40,"tag":309,"props":2469,"children":2470},{"style":331},[2471],{"type":46,"value":2472}," -r",{"type":40,"tag":309,"props":2474,"children":2475},{"style":540},[2476],{"type":46,"value":2477}," \"",{"type":40,"tag":309,"props":2479,"children":2480},{"style":331},[2481],{"type":46,"value":79},{"type":40,"tag":309,"props":2483,"children":2484},{"style":540},[2485],{"type":46,"value":2486},"\"",{"type":40,"tag":309,"props":2488,"children":2489},{"style":331},[2490],{"type":46,"value":2491}," --include=",{"type":40,"tag":309,"props":2493,"children":2494},{"style":540},[2495],{"type":46,"value":2486},{"type":40,"tag":309,"props":2497,"children":2498},{"style":331},[2499],{"type":46,"value":2500},"*.ts",{"type":40,"tag":309,"props":2502,"children":2503},{"style":540},[2504],{"type":46,"value":2486},{"type":40,"tag":309,"props":2506,"children":2507},{"style":331},[2508],{"type":46,"value":2491},{"type":40,"tag":309,"props":2510,"children":2511},{"style":540},[2512],{"type":46,"value":2486},{"type":40,"tag":309,"props":2514,"children":2515},{"style":331},[2516],{"type":46,"value":2517},"*.tsx",{"type":40,"tag":309,"props":2519,"children":2520},{"style":540},[2521],{"type":46,"value":2486},{"type":40,"tag":309,"props":2523,"children":2524},{"style":331},[2525],{"type":46,"value":2491},{"type":40,"tag":309,"props":2527,"children":2528},{"style":540},[2529],{"type":46,"value":2486},{"type":40,"tag":309,"props":2531,"children":2532},{"style":331},[2533],{"type":46,"value":2534},"*.js",{"type":40,"tag":309,"props":2536,"children":2537},{"style":540},[2538],{"type":46,"value":2539},"\"\n",{"type":40,"tag":60,"props":2541,"children":2542},{},[2543,2548],{"type":40,"tag":136,"props":2544,"children":2545},{},[2546],{"type":46,"value":2547},"Wallet connection works",{"type":46,"value":2549}," — test connecting via MetaMask browser extension",{"type":40,"tag":60,"props":2551,"children":2552},{},[2553,2558],{"type":40,"tag":136,"props":2554,"children":2555},{},[2556],{"type":46,"value":2557},"Mobile deep-link works",{"type":46,"value":2559}," (if applicable) — test QR code \u002F deep-link flow",{"type":40,"tag":60,"props":2561,"children":2562},{},[2563,2568],{"type":40,"tag":136,"props":2564,"children":2565},{},[2566],{"type":46,"value":2567},"Chain switching works",{"type":46,"value":2569}," — test switching between configured chains",{"type":40,"tag":60,"props":2571,"children":2572},{},[2573,2578],{"type":40,"tag":136,"props":2574,"children":2575},{},[2576],{"type":46,"value":2577},"Signing works",{"type":46,"value":2579}," — test message signing and transaction signing",{"type":40,"tag":49,"props":2581,"children":2583},{"id":2582},"complete-beforeafter-example",[2584],{"type":46,"value":2585},"Complete Before\u002FAfter Example",{"type":40,"tag":286,"props":2587,"children":2589},{"id":2588},"before-wagmiconnectors-7x-metamasksdk",[2590,2592,2597],{"type":46,"value":2591},"Before (",{"type":40,"tag":66,"props":2593,"children":2595},{"className":2594},[],[2596],{"type":46,"value":71},{"type":46,"value":2598}," \u003C= 7.x + @metamask\u002Fsdk):",{"type":40,"tag":298,"props":2600,"children":2602},{"className":522,"code":2601,"language":524,"meta":303,"style":303},"import { createConfig, http } from 'wagmi'\nimport { mainnet, sepolia, optimism } from 'wagmi\u002Fchains'\nimport { metaMask } from 'wagmi\u002Fconnectors'\n\nexport const config = createConfig({\n  chains: [mainnet, sepolia, optimism],\n  connectors: [\n    metaMask({\n      dappMetadata: {\n        name: 'My Dapp',\n        url: window.location.origin,\n      },\n      useDeeplink: true,\n    }),\n  ],\n  transports: {\n    [mainnet.id]: http(),\n    [sepolia.id]: http(),\n    [optimism.id]: http(),\n  },\n})\n",[2603],{"type":40,"tag":66,"props":2604,"children":2605},{"__ignoreMap":303},[2606,2651,2706,2741,2748,2782,2820,2837,2853,2869,2897,2936,2944,2964,2980,2992,3009,3054,3095,3136,3144],{"type":40,"tag":309,"props":2607,"children":2608},{"class":311,"line":312},[2609,2613,2617,2622,2626,2631,2635,2639,2643,2647],{"type":40,"tag":309,"props":2610,"children":2611},{"style":534},[2612],{"type":46,"value":537},{"type":40,"tag":309,"props":2614,"children":2615},{"style":540},[2616],{"type":46,"value":543},{"type":40,"tag":309,"props":2618,"children":2619},{"style":546},[2620],{"type":46,"value":2621}," createConfig",{"type":40,"tag":309,"props":2623,"children":2624},{"style":540},[2625],{"type":46,"value":1004},{"type":40,"tag":309,"props":2627,"children":2628},{"style":546},[2629],{"type":46,"value":2630}," http",{"type":40,"tag":309,"props":2632,"children":2633},{"style":540},[2634],{"type":46,"value":554},{"type":40,"tag":309,"props":2636,"children":2637},{"style":534},[2638],{"type":46,"value":559},{"type":40,"tag":309,"props":2640,"children":2641},{"style":540},[2642],{"type":46,"value":564},{"type":40,"tag":309,"props":2644,"children":2645},{"style":331},[2646],{"type":46,"value":13},{"type":40,"tag":309,"props":2648,"children":2649},{"style":540},[2650],{"type":46,"value":574},{"type":40,"tag":309,"props":2652,"children":2653},{"class":311,"line":24},[2654,2658,2662,2667,2671,2676,2680,2685,2689,2693,2697,2702],{"type":40,"tag":309,"props":2655,"children":2656},{"style":534},[2657],{"type":46,"value":537},{"type":40,"tag":309,"props":2659,"children":2660},{"style":540},[2661],{"type":46,"value":543},{"type":40,"tag":309,"props":2663,"children":2664},{"style":546},[2665],{"type":46,"value":2666}," mainnet",{"type":40,"tag":309,"props":2668,"children":2669},{"style":540},[2670],{"type":46,"value":1004},{"type":40,"tag":309,"props":2672,"children":2673},{"style":546},[2674],{"type":46,"value":2675}," sepolia",{"type":40,"tag":309,"props":2677,"children":2678},{"style":540},[2679],{"type":46,"value":1004},{"type":40,"tag":309,"props":2681,"children":2682},{"style":546},[2683],{"type":46,"value":2684}," optimism",{"type":40,"tag":309,"props":2686,"children":2687},{"style":540},[2688],{"type":46,"value":554},{"type":40,"tag":309,"props":2690,"children":2691},{"style":534},[2692],{"type":46,"value":559},{"type":40,"tag":309,"props":2694,"children":2695},{"style":540},[2696],{"type":46,"value":564},{"type":40,"tag":309,"props":2698,"children":2699},{"style":331},[2700],{"type":46,"value":2701},"wagmi\u002Fchains",{"type":40,"tag":309,"props":2703,"children":2704},{"style":540},[2705],{"type":46,"value":574},{"type":40,"tag":309,"props":2707,"children":2708},{"class":311,"line":342},[2709,2713,2717,2721,2725,2729,2733,2737],{"type":40,"tag":309,"props":2710,"children":2711},{"style":534},[2712],{"type":46,"value":537},{"type":40,"tag":309,"props":2714,"children":2715},{"style":540},[2716],{"type":46,"value":543},{"type":40,"tag":309,"props":2718,"children":2719},{"style":546},[2720],{"type":46,"value":549},{"type":40,"tag":309,"props":2722,"children":2723},{"style":540},[2724],{"type":46,"value":554},{"type":40,"tag":309,"props":2726,"children":2727},{"style":534},[2728],{"type":46,"value":559},{"type":40,"tag":309,"props":2730,"children":2731},{"style":540},[2732],{"type":46,"value":564},{"type":40,"tag":309,"props":2734,"children":2735},{"style":331},[2736],{"type":46,"value":569},{"type":40,"tag":309,"props":2738,"children":2739},{"style":540},[2740],{"type":46,"value":574},{"type":40,"tag":309,"props":2742,"children":2743},{"class":311,"line":360},[2744],{"type":40,"tag":309,"props":2745,"children":2746},{"emptyLinePlaceholder":364},[2747],{"type":46,"value":367},{"type":40,"tag":309,"props":2749,"children":2750},{"class":311,"line":370},[2751,2756,2761,2766,2770,2774,2778],{"type":40,"tag":309,"props":2752,"children":2753},{"style":534},[2754],{"type":46,"value":2755},"export",{"type":40,"tag":309,"props":2757,"children":2758},{"style":1825},[2759],{"type":46,"value":2760}," const",{"type":40,"tag":309,"props":2762,"children":2763},{"style":546},[2764],{"type":46,"value":2765}," config ",{"type":40,"tag":309,"props":2767,"children":2768},{"style":540},[2769],{"type":46,"value":1838},{"type":40,"tag":309,"props":2771,"children":2772},{"style":587},[2773],{"type":46,"value":2621},{"type":40,"tag":309,"props":2775,"children":2776},{"style":546},[2777],{"type":46,"value":595},{"type":40,"tag":309,"props":2779,"children":2780},{"style":540},[2781],{"type":46,"value":600},{"type":40,"tag":309,"props":2783,"children":2784},{"class":311,"line":379},[2785,2790,2794,2799,2803,2807,2811,2816],{"type":40,"tag":309,"props":2786,"children":2787},{"style":606},[2788],{"type":46,"value":2789},"  chains",{"type":40,"tag":309,"props":2791,"children":2792},{"style":540},[2793],{"type":46,"value":614},{"type":40,"tag":309,"props":2795,"children":2796},{"style":546},[2797],{"type":46,"value":2798}," [mainnet",{"type":40,"tag":309,"props":2800,"children":2801},{"style":540},[2802],{"type":46,"value":1004},{"type":40,"tag":309,"props":2804,"children":2805},{"style":546},[2806],{"type":46,"value":2675},{"type":40,"tag":309,"props":2808,"children":2809},{"style":540},[2810],{"type":46,"value":1004},{"type":40,"tag":309,"props":2812,"children":2813},{"style":546},[2814],{"type":46,"value":2815}," optimism]",{"type":40,"tag":309,"props":2817,"children":2818},{"style":540},[2819],{"type":46,"value":650},{"type":40,"tag":309,"props":2821,"children":2822},{"class":311,"line":397},[2823,2828,2832],{"type":40,"tag":309,"props":2824,"children":2825},{"style":606},[2826],{"type":46,"value":2827},"  connectors",{"type":40,"tag":309,"props":2829,"children":2830},{"style":540},[2831],{"type":46,"value":614},{"type":40,"tag":309,"props":2833,"children":2834},{"style":546},[2835],{"type":46,"value":2836}," [\n",{"type":40,"tag":309,"props":2838,"children":2839},{"class":311,"line":414},[2840,2845,2849],{"type":40,"tag":309,"props":2841,"children":2842},{"style":587},[2843],{"type":46,"value":2844},"    metaMask",{"type":40,"tag":309,"props":2846,"children":2847},{"style":546},[2848],{"type":46,"value":595},{"type":40,"tag":309,"props":2850,"children":2851},{"style":540},[2852],{"type":46,"value":600},{"type":40,"tag":309,"props":2854,"children":2855},{"class":311,"line":422},[2856,2861,2865],{"type":40,"tag":309,"props":2857,"children":2858},{"style":606},[2859],{"type":46,"value":2860},"      dappMetadata",{"type":40,"tag":309,"props":2862,"children":2863},{"style":540},[2864],{"type":46,"value":614},{"type":40,"tag":309,"props":2866,"children":2867},{"style":540},[2868],{"type":46,"value":619},{"type":40,"tag":309,"props":2870,"children":2871},{"class":311,"line":431},[2872,2877,2881,2885,2889,2893],{"type":40,"tag":309,"props":2873,"children":2874},{"style":606},[2875],{"type":46,"value":2876},"        name",{"type":40,"tag":309,"props":2878,"children":2879},{"style":540},[2880],{"type":46,"value":614},{"type":40,"tag":309,"props":2882,"children":2883},{"style":540},[2884],{"type":46,"value":564},{"type":40,"tag":309,"props":2886,"children":2887},{"style":331},[2888],{"type":46,"value":640},{"type":40,"tag":309,"props":2890,"children":2891},{"style":540},[2892],{"type":46,"value":645},{"type":40,"tag":309,"props":2894,"children":2895},{"style":540},[2896],{"type":46,"value":650},{"type":40,"tag":309,"props":2898,"children":2899},{"class":311,"line":448},[2900,2905,2909,2914,2918,2923,2927,2932],{"type":40,"tag":309,"props":2901,"children":2902},{"style":606},[2903],{"type":46,"value":2904},"        url",{"type":40,"tag":309,"props":2906,"children":2907},{"style":540},[2908],{"type":46,"value":614},{"type":40,"tag":309,"props":2910,"children":2911},{"style":546},[2912],{"type":46,"value":2913}," window",{"type":40,"tag":309,"props":2915,"children":2916},{"style":540},[2917],{"type":46,"value":170},{"type":40,"tag":309,"props":2919,"children":2920},{"style":546},[2921],{"type":46,"value":2922},"location",{"type":40,"tag":309,"props":2924,"children":2925},{"style":540},[2926],{"type":46,"value":170},{"type":40,"tag":309,"props":2928,"children":2929},{"style":546},[2930],{"type":46,"value":2931},"origin",{"type":40,"tag":309,"props":2933,"children":2934},{"style":540},[2935],{"type":46,"value":650},{"type":40,"tag":309,"props":2937,"children":2938},{"class":311,"line":775},[2939],{"type":40,"tag":309,"props":2940,"children":2941},{"style":540},[2942],{"type":46,"value":2943},"      },\n",{"type":40,"tag":309,"props":2945,"children":2946},{"class":311,"line":796},[2947,2952,2956,2960],{"type":40,"tag":309,"props":2948,"children":2949},{"style":606},[2950],{"type":46,"value":2951},"      useDeeplink",{"type":40,"tag":309,"props":2953,"children":2954},{"style":540},[2955],{"type":46,"value":614},{"type":40,"tag":309,"props":2957,"children":2958},{"style":702},[2959],{"type":46,"value":705},{"type":40,"tag":309,"props":2961,"children":2962},{"style":540},[2963],{"type":46,"value":650},{"type":40,"tag":309,"props":2965,"children":2966},{"class":311,"line":817},[2967,2972,2976],{"type":40,"tag":309,"props":2968,"children":2969},{"style":540},[2970],{"type":46,"value":2971},"    }",{"type":40,"tag":309,"props":2973,"children":2974},{"style":546},[2975],{"type":46,"value":89},{"type":40,"tag":309,"props":2977,"children":2978},{"style":540},[2979],{"type":46,"value":650},{"type":40,"tag":309,"props":2981,"children":2982},{"class":311,"line":1112},[2983,2988],{"type":40,"tag":309,"props":2984,"children":2985},{"style":546},[2986],{"type":46,"value":2987},"  ]",{"type":40,"tag":309,"props":2989,"children":2990},{"style":540},[2991],{"type":46,"value":650},{"type":40,"tag":309,"props":2993,"children":2995},{"class":311,"line":2994},16,[2996,3001,3005],{"type":40,"tag":309,"props":2997,"children":2998},{"style":606},[2999],{"type":46,"value":3000},"  transports",{"type":40,"tag":309,"props":3002,"children":3003},{"style":540},[3004],{"type":46,"value":614},{"type":40,"tag":309,"props":3006,"children":3007},{"style":540},[3008],{"type":46,"value":619},{"type":40,"tag":309,"props":3010,"children":3012},{"class":311,"line":3011},17,[3013,3018,3023,3027,3032,3037,3041,3045,3050],{"type":40,"tag":309,"props":3014,"children":3015},{"style":606},[3016],{"type":46,"value":3017},"    [",{"type":40,"tag":309,"props":3019,"children":3020},{"style":546},[3021],{"type":46,"value":3022},"mainnet",{"type":40,"tag":309,"props":3024,"children":3025},{"style":540},[3026],{"type":46,"value":170},{"type":40,"tag":309,"props":3028,"children":3029},{"style":546},[3030],{"type":46,"value":3031},"id",{"type":40,"tag":309,"props":3033,"children":3034},{"style":606},[3035],{"type":46,"value":3036},"]",{"type":40,"tag":309,"props":3038,"children":3039},{"style":540},[3040],{"type":46,"value":614},{"type":40,"tag":309,"props":3042,"children":3043},{"style":587},[3044],{"type":46,"value":2630},{"type":40,"tag":309,"props":3046,"children":3047},{"style":546},[3048],{"type":46,"value":3049},"()",{"type":40,"tag":309,"props":3051,"children":3052},{"style":540},[3053],{"type":46,"value":650},{"type":40,"tag":309,"props":3055,"children":3057},{"class":311,"line":3056},18,[3058,3062,3067,3071,3075,3079,3083,3087,3091],{"type":40,"tag":309,"props":3059,"children":3060},{"style":606},[3061],{"type":46,"value":3017},{"type":40,"tag":309,"props":3063,"children":3064},{"style":546},[3065],{"type":46,"value":3066},"sepolia",{"type":40,"tag":309,"props":3068,"children":3069},{"style":540},[3070],{"type":46,"value":170},{"type":40,"tag":309,"props":3072,"children":3073},{"style":546},[3074],{"type":46,"value":3031},{"type":40,"tag":309,"props":3076,"children":3077},{"style":606},[3078],{"type":46,"value":3036},{"type":40,"tag":309,"props":3080,"children":3081},{"style":540},[3082],{"type":46,"value":614},{"type":40,"tag":309,"props":3084,"children":3085},{"style":587},[3086],{"type":46,"value":2630},{"type":40,"tag":309,"props":3088,"children":3089},{"style":546},[3090],{"type":46,"value":3049},{"type":40,"tag":309,"props":3092,"children":3093},{"style":540},[3094],{"type":46,"value":650},{"type":40,"tag":309,"props":3096,"children":3098},{"class":311,"line":3097},19,[3099,3103,3108,3112,3116,3120,3124,3128,3132],{"type":40,"tag":309,"props":3100,"children":3101},{"style":606},[3102],{"type":46,"value":3017},{"type":40,"tag":309,"props":3104,"children":3105},{"style":546},[3106],{"type":46,"value":3107},"optimism",{"type":40,"tag":309,"props":3109,"children":3110},{"style":540},[3111],{"type":46,"value":170},{"type":40,"tag":309,"props":3113,"children":3114},{"style":546},[3115],{"type":46,"value":3031},{"type":40,"tag":309,"props":3117,"children":3118},{"style":606},[3119],{"type":46,"value":3036},{"type":40,"tag":309,"props":3121,"children":3122},{"style":540},[3123],{"type":46,"value":614},{"type":40,"tag":309,"props":3125,"children":3126},{"style":587},[3127],{"type":46,"value":2630},{"type":40,"tag":309,"props":3129,"children":3130},{"style":546},[3131],{"type":46,"value":3049},{"type":40,"tag":309,"props":3133,"children":3134},{"style":540},[3135],{"type":46,"value":650},{"type":40,"tag":309,"props":3137,"children":3139},{"class":311,"line":3138},20,[3140],{"type":40,"tag":309,"props":3141,"children":3142},{"style":540},[3143],{"type":46,"value":687},{"type":40,"tag":309,"props":3145,"children":3147},{"class":311,"line":3146},21,[3148,3152],{"type":40,"tag":309,"props":3149,"children":3150},{"style":540},[3151],{"type":46,"value":823},{"type":40,"tag":309,"props":3153,"children":3154},{"style":546},[3155],{"type":46,"value":828},{"type":40,"tag":286,"props":3157,"children":3159},{"id":3158},"after-wagmi-36-wagmiconnectors-8-metamaskconnect-evm",[3160,3162,3167],{"type":46,"value":3161},"After (wagmi >= 3.6 \u002F ",{"type":40,"tag":66,"props":3163,"children":3165},{"className":3164},[],[3166],{"type":46,"value":71},{"type":46,"value":3168}," >= 8 + @metamask\u002Fconnect-evm):",{"type":40,"tag":298,"props":3170,"children":3172},{"className":522,"code":3171,"language":524,"meta":303,"style":303},"import { createConfig, http } from 'wagmi'\nimport { mainnet, sepolia, optimism } from 'wagmi\u002Fchains'\nimport { metaMask } from 'wagmi\u002Fconnectors'\n\nexport const config = createConfig({\n  chains: [mainnet, sepolia, optimism],\n  connectors: [\n    metaMask({\n      dapp: {\n        name: 'My Dapp',\n        url: window.location.origin,\n      },\n      mobile: {\n        useDeeplink: true,\n      },\n    }),\n  ],\n  transports: {\n    [mainnet.id]: http(),\n    [sepolia.id]: http(),\n    [optimism.id]: http(),\n  },\n})\n",[3173],{"type":40,"tag":66,"props":3174,"children":3175},{"__ignoreMap":303},[3176,3219,3270,3305,3312,3343,3378,3393,3408,3424,3451,3486,3493,3509,3529,3536,3551,3562,3577,3616,3655,3694,3702],{"type":40,"tag":309,"props":3177,"children":3178},{"class":311,"line":312},[3179,3183,3187,3191,3195,3199,3203,3207,3211,3215],{"type":40,"tag":309,"props":3180,"children":3181},{"style":534},[3182],{"type":46,"value":537},{"type":40,"tag":309,"props":3184,"children":3185},{"style":540},[3186],{"type":46,"value":543},{"type":40,"tag":309,"props":3188,"children":3189},{"style":546},[3190],{"type":46,"value":2621},{"type":40,"tag":309,"props":3192,"children":3193},{"style":540},[3194],{"type":46,"value":1004},{"type":40,"tag":309,"props":3196,"children":3197},{"style":546},[3198],{"type":46,"value":2630},{"type":40,"tag":309,"props":3200,"children":3201},{"style":540},[3202],{"type":46,"value":554},{"type":40,"tag":309,"props":3204,"children":3205},{"style":534},[3206],{"type":46,"value":559},{"type":40,"tag":309,"props":3208,"children":3209},{"style":540},[3210],{"type":46,"value":564},{"type":40,"tag":309,"props":3212,"children":3213},{"style":331},[3214],{"type":46,"value":13},{"type":40,"tag":309,"props":3216,"children":3217},{"style":540},[3218],{"type":46,"value":574},{"type":40,"tag":309,"props":3220,"children":3221},{"class":311,"line":24},[3222,3226,3230,3234,3238,3242,3246,3250,3254,3258,3262,3266],{"type":40,"tag":309,"props":3223,"children":3224},{"style":534},[3225],{"type":46,"value":537},{"type":40,"tag":309,"props":3227,"children":3228},{"style":540},[3229],{"type":46,"value":543},{"type":40,"tag":309,"props":3231,"children":3232},{"style":546},[3233],{"type":46,"value":2666},{"type":40,"tag":309,"props":3235,"children":3236},{"style":540},[3237],{"type":46,"value":1004},{"type":40,"tag":309,"props":3239,"children":3240},{"style":546},[3241],{"type":46,"value":2675},{"type":40,"tag":309,"props":3243,"children":3244},{"style":540},[3245],{"type":46,"value":1004},{"type":40,"tag":309,"props":3247,"children":3248},{"style":546},[3249],{"type":46,"value":2684},{"type":40,"tag":309,"props":3251,"children":3252},{"style":540},[3253],{"type":46,"value":554},{"type":40,"tag":309,"props":3255,"children":3256},{"style":534},[3257],{"type":46,"value":559},{"type":40,"tag":309,"props":3259,"children":3260},{"style":540},[3261],{"type":46,"value":564},{"type":40,"tag":309,"props":3263,"children":3264},{"style":331},[3265],{"type":46,"value":2701},{"type":40,"tag":309,"props":3267,"children":3268},{"style":540},[3269],{"type":46,"value":574},{"type":40,"tag":309,"props":3271,"children":3272},{"class":311,"line":342},[3273,3277,3281,3285,3289,3293,3297,3301],{"type":40,"tag":309,"props":3274,"children":3275},{"style":534},[3276],{"type":46,"value":537},{"type":40,"tag":309,"props":3278,"children":3279},{"style":540},[3280],{"type":46,"value":543},{"type":40,"tag":309,"props":3282,"children":3283},{"style":546},[3284],{"type":46,"value":549},{"type":40,"tag":309,"props":3286,"children":3287},{"style":540},[3288],{"type":46,"value":554},{"type":40,"tag":309,"props":3290,"children":3291},{"style":534},[3292],{"type":46,"value":559},{"type":40,"tag":309,"props":3294,"children":3295},{"style":540},[3296],{"type":46,"value":564},{"type":40,"tag":309,"props":3298,"children":3299},{"style":331},[3300],{"type":46,"value":569},{"type":40,"tag":309,"props":3302,"children":3303},{"style":540},[3304],{"type":46,"value":574},{"type":40,"tag":309,"props":3306,"children":3307},{"class":311,"line":360},[3308],{"type":40,"tag":309,"props":3309,"children":3310},{"emptyLinePlaceholder":364},[3311],{"type":46,"value":367},{"type":40,"tag":309,"props":3313,"children":3314},{"class":311,"line":370},[3315,3319,3323,3327,3331,3335,3339],{"type":40,"tag":309,"props":3316,"children":3317},{"style":534},[3318],{"type":46,"value":2755},{"type":40,"tag":309,"props":3320,"children":3321},{"style":1825},[3322],{"type":46,"value":2760},{"type":40,"tag":309,"props":3324,"children":3325},{"style":546},[3326],{"type":46,"value":2765},{"type":40,"tag":309,"props":3328,"children":3329},{"style":540},[3330],{"type":46,"value":1838},{"type":40,"tag":309,"props":3332,"children":3333},{"style":587},[3334],{"type":46,"value":2621},{"type":40,"tag":309,"props":3336,"children":3337},{"style":546},[3338],{"type":46,"value":595},{"type":40,"tag":309,"props":3340,"children":3341},{"style":540},[3342],{"type":46,"value":600},{"type":40,"tag":309,"props":3344,"children":3345},{"class":311,"line":379},[3346,3350,3354,3358,3362,3366,3370,3374],{"type":40,"tag":309,"props":3347,"children":3348},{"style":606},[3349],{"type":46,"value":2789},{"type":40,"tag":309,"props":3351,"children":3352},{"style":540},[3353],{"type":46,"value":614},{"type":40,"tag":309,"props":3355,"children":3356},{"style":546},[3357],{"type":46,"value":2798},{"type":40,"tag":309,"props":3359,"children":3360},{"style":540},[3361],{"type":46,"value":1004},{"type":40,"tag":309,"props":3363,"children":3364},{"style":546},[3365],{"type":46,"value":2675},{"type":40,"tag":309,"props":3367,"children":3368},{"style":540},[3369],{"type":46,"value":1004},{"type":40,"tag":309,"props":3371,"children":3372},{"style":546},[3373],{"type":46,"value":2815},{"type":40,"tag":309,"props":3375,"children":3376},{"style":540},[3377],{"type":46,"value":650},{"type":40,"tag":309,"props":3379,"children":3380},{"class":311,"line":397},[3381,3385,3389],{"type":40,"tag":309,"props":3382,"children":3383},{"style":606},[3384],{"type":46,"value":2827},{"type":40,"tag":309,"props":3386,"children":3387},{"style":540},[3388],{"type":46,"value":614},{"type":40,"tag":309,"props":3390,"children":3391},{"style":546},[3392],{"type":46,"value":2836},{"type":40,"tag":309,"props":3394,"children":3395},{"class":311,"line":414},[3396,3400,3404],{"type":40,"tag":309,"props":3397,"children":3398},{"style":587},[3399],{"type":46,"value":2844},{"type":40,"tag":309,"props":3401,"children":3402},{"style":546},[3403],{"type":46,"value":595},{"type":40,"tag":309,"props":3405,"children":3406},{"style":540},[3407],{"type":46,"value":600},{"type":40,"tag":309,"props":3409,"children":3410},{"class":311,"line":422},[3411,3416,3420],{"type":40,"tag":309,"props":3412,"children":3413},{"style":606},[3414],{"type":46,"value":3415},"      dapp",{"type":40,"tag":309,"props":3417,"children":3418},{"style":540},[3419],{"type":46,"value":614},{"type":40,"tag":309,"props":3421,"children":3422},{"style":540},[3423],{"type":46,"value":619},{"type":40,"tag":309,"props":3425,"children":3426},{"class":311,"line":431},[3427,3431,3435,3439,3443,3447],{"type":40,"tag":309,"props":3428,"children":3429},{"style":606},[3430],{"type":46,"value":2876},{"type":40,"tag":309,"props":3432,"children":3433},{"style":540},[3434],{"type":46,"value":614},{"type":40,"tag":309,"props":3436,"children":3437},{"style":540},[3438],{"type":46,"value":564},{"type":40,"tag":309,"props":3440,"children":3441},{"style":331},[3442],{"type":46,"value":640},{"type":40,"tag":309,"props":3444,"children":3445},{"style":540},[3446],{"type":46,"value":645},{"type":40,"tag":309,"props":3448,"children":3449},{"style":540},[3450],{"type":46,"value":650},{"type":40,"tag":309,"props":3452,"children":3453},{"class":311,"line":448},[3454,3458,3462,3466,3470,3474,3478,3482],{"type":40,"tag":309,"props":3455,"children":3456},{"style":606},[3457],{"type":46,"value":2904},{"type":40,"tag":309,"props":3459,"children":3460},{"style":540},[3461],{"type":46,"value":614},{"type":40,"tag":309,"props":3463,"children":3464},{"style":546},[3465],{"type":46,"value":2913},{"type":40,"tag":309,"props":3467,"children":3468},{"style":540},[3469],{"type":46,"value":170},{"type":40,"tag":309,"props":3471,"children":3472},{"style":546},[3473],{"type":46,"value":2922},{"type":40,"tag":309,"props":3475,"children":3476},{"style":540},[3477],{"type":46,"value":170},{"type":40,"tag":309,"props":3479,"children":3480},{"style":546},[3481],{"type":46,"value":2931},{"type":40,"tag":309,"props":3483,"children":3484},{"style":540},[3485],{"type":46,"value":650},{"type":40,"tag":309,"props":3487,"children":3488},{"class":311,"line":775},[3489],{"type":40,"tag":309,"props":3490,"children":3491},{"style":540},[3492],{"type":46,"value":2943},{"type":40,"tag":309,"props":3494,"children":3495},{"class":311,"line":796},[3496,3501,3505],{"type":40,"tag":309,"props":3497,"children":3498},{"style":606},[3499],{"type":46,"value":3500},"      mobile",{"type":40,"tag":309,"props":3502,"children":3503},{"style":540},[3504],{"type":46,"value":614},{"type":40,"tag":309,"props":3506,"children":3507},{"style":540},[3508],{"type":46,"value":619},{"type":40,"tag":309,"props":3510,"children":3511},{"class":311,"line":817},[3512,3517,3521,3525],{"type":40,"tag":309,"props":3513,"children":3514},{"style":606},[3515],{"type":46,"value":3516},"        useDeeplink",{"type":40,"tag":309,"props":3518,"children":3519},{"style":540},[3520],{"type":46,"value":614},{"type":40,"tag":309,"props":3522,"children":3523},{"style":702},[3524],{"type":46,"value":705},{"type":40,"tag":309,"props":3526,"children":3527},{"style":540},[3528],{"type":46,"value":650},{"type":40,"tag":309,"props":3530,"children":3531},{"class":311,"line":1112},[3532],{"type":40,"tag":309,"props":3533,"children":3534},{"style":540},[3535],{"type":46,"value":2943},{"type":40,"tag":309,"props":3537,"children":3538},{"class":311,"line":2994},[3539,3543,3547],{"type":40,"tag":309,"props":3540,"children":3541},{"style":540},[3542],{"type":46,"value":2971},{"type":40,"tag":309,"props":3544,"children":3545},{"style":546},[3546],{"type":46,"value":89},{"type":40,"tag":309,"props":3548,"children":3549},{"style":540},[3550],{"type":46,"value":650},{"type":40,"tag":309,"props":3552,"children":3553},{"class":311,"line":3011},[3554,3558],{"type":40,"tag":309,"props":3555,"children":3556},{"style":546},[3557],{"type":46,"value":2987},{"type":40,"tag":309,"props":3559,"children":3560},{"style":540},[3561],{"type":46,"value":650},{"type":40,"tag":309,"props":3563,"children":3564},{"class":311,"line":3056},[3565,3569,3573],{"type":40,"tag":309,"props":3566,"children":3567},{"style":606},[3568],{"type":46,"value":3000},{"type":40,"tag":309,"props":3570,"children":3571},{"style":540},[3572],{"type":46,"value":614},{"type":40,"tag":309,"props":3574,"children":3575},{"style":540},[3576],{"type":46,"value":619},{"type":40,"tag":309,"props":3578,"children":3579},{"class":311,"line":3097},[3580,3584,3588,3592,3596,3600,3604,3608,3612],{"type":40,"tag":309,"props":3581,"children":3582},{"style":606},[3583],{"type":46,"value":3017},{"type":40,"tag":309,"props":3585,"children":3586},{"style":546},[3587],{"type":46,"value":3022},{"type":40,"tag":309,"props":3589,"children":3590},{"style":540},[3591],{"type":46,"value":170},{"type":40,"tag":309,"props":3593,"children":3594},{"style":546},[3595],{"type":46,"value":3031},{"type":40,"tag":309,"props":3597,"children":3598},{"style":606},[3599],{"type":46,"value":3036},{"type":40,"tag":309,"props":3601,"children":3602},{"style":540},[3603],{"type":46,"value":614},{"type":40,"tag":309,"props":3605,"children":3606},{"style":587},[3607],{"type":46,"value":2630},{"type":40,"tag":309,"props":3609,"children":3610},{"style":546},[3611],{"type":46,"value":3049},{"type":40,"tag":309,"props":3613,"children":3614},{"style":540},[3615],{"type":46,"value":650},{"type":40,"tag":309,"props":3617,"children":3618},{"class":311,"line":3138},[3619,3623,3627,3631,3635,3639,3643,3647,3651],{"type":40,"tag":309,"props":3620,"children":3621},{"style":606},[3622],{"type":46,"value":3017},{"type":40,"tag":309,"props":3624,"children":3625},{"style":546},[3626],{"type":46,"value":3066},{"type":40,"tag":309,"props":3628,"children":3629},{"style":540},[3630],{"type":46,"value":170},{"type":40,"tag":309,"props":3632,"children":3633},{"style":546},[3634],{"type":46,"value":3031},{"type":40,"tag":309,"props":3636,"children":3637},{"style":606},[3638],{"type":46,"value":3036},{"type":40,"tag":309,"props":3640,"children":3641},{"style":540},[3642],{"type":46,"value":614},{"type":40,"tag":309,"props":3644,"children":3645},{"style":587},[3646],{"type":46,"value":2630},{"type":40,"tag":309,"props":3648,"children":3649},{"style":546},[3650],{"type":46,"value":3049},{"type":40,"tag":309,"props":3652,"children":3653},{"style":540},[3654],{"type":46,"value":650},{"type":40,"tag":309,"props":3656,"children":3657},{"class":311,"line":3146},[3658,3662,3666,3670,3674,3678,3682,3686,3690],{"type":40,"tag":309,"props":3659,"children":3660},{"style":606},[3661],{"type":46,"value":3017},{"type":40,"tag":309,"props":3663,"children":3664},{"style":546},[3665],{"type":46,"value":3107},{"type":40,"tag":309,"props":3667,"children":3668},{"style":540},[3669],{"type":46,"value":170},{"type":40,"tag":309,"props":3671,"children":3672},{"style":546},[3673],{"type":46,"value":3031},{"type":40,"tag":309,"props":3675,"children":3676},{"style":606},[3677],{"type":46,"value":3036},{"type":40,"tag":309,"props":3679,"children":3680},{"style":540},[3681],{"type":46,"value":614},{"type":40,"tag":309,"props":3683,"children":3684},{"style":587},[3685],{"type":46,"value":2630},{"type":40,"tag":309,"props":3687,"children":3688},{"style":546},[3689],{"type":46,"value":3049},{"type":40,"tag":309,"props":3691,"children":3692},{"style":540},[3693],{"type":46,"value":650},{"type":40,"tag":309,"props":3695,"children":3697},{"class":311,"line":3696},22,[3698],{"type":40,"tag":309,"props":3699,"children":3700},{"style":540},[3701],{"type":46,"value":687},{"type":40,"tag":309,"props":3703,"children":3705},{"class":311,"line":3704},23,[3706,3710],{"type":40,"tag":309,"props":3707,"children":3708},{"style":540},[3709],{"type":46,"value":823},{"type":40,"tag":309,"props":3711,"children":3712},{"style":546},[3713],{"type":46,"value":828},{"type":40,"tag":49,"props":3715,"children":3717},{"id":3716},"react-native-specific-migration",[3718],{"type":46,"value":3719},"React Native Specific Migration",{"type":40,"tag":130,"props":3721,"children":3722},{},[3723,3725,3730],{"type":46,"value":3724},"If you are using wagmi with React Native, the ",{"type":40,"tag":66,"props":3726,"children":3728},{"className":3727},[],[3729],{"type":46,"value":1280},{"type":46,"value":3731}," callback has moved:",{"type":40,"tag":298,"props":3733,"children":3735},{"className":522,"code":3734,"language":524,"meta":303,"style":303},"\u002F\u002F Before:\nmetaMask({\n  dappMetadata: { name: 'My RN App' },\n  preferredOpenLink: (link, target) => Linking.openURL(link),\n  useDeeplink: true,\n})\n\n\u002F\u002F After:\nmetaMask({\n  dapp: { name: 'My RN App' },\n  mobile: {\n    preferredOpenLink: (link, target) => Linking.openURL(link),\n    useDeeplink: true,\n  },\n})\n",[3736],{"type":40,"tag":66,"props":3737,"children":3738},{"__ignoreMap":303},[3739,3747,3762,3802,3864,3883,3894,3901,3909,3924,3963,3978,4033,4052,4059],{"type":40,"tag":309,"props":3740,"children":3741},{"class":311,"line":312},[3742],{"type":40,"tag":309,"props":3743,"children":3744},{"style":316},[3745],{"type":46,"value":3746},"\u002F\u002F Before:\n",{"type":40,"tag":309,"props":3748,"children":3749},{"class":311,"line":24},[3750,3754,3758],{"type":40,"tag":309,"props":3751,"children":3752},{"style":587},[3753],{"type":46,"value":590},{"type":40,"tag":309,"props":3755,"children":3756},{"style":546},[3757],{"type":46,"value":595},{"type":40,"tag":309,"props":3759,"children":3760},{"style":540},[3761],{"type":46,"value":600},{"type":40,"tag":309,"props":3763,"children":3764},{"class":311,"line":342},[3765,3769,3773,3777,3781,3785,3789,3794,3798],{"type":40,"tag":309,"props":3766,"children":3767},{"style":606},[3768],{"type":46,"value":609},{"type":40,"tag":309,"props":3770,"children":3771},{"style":540},[3772],{"type":46,"value":614},{"type":40,"tag":309,"props":3774,"children":3775},{"style":540},[3776],{"type":46,"value":543},{"type":40,"tag":309,"props":3778,"children":3779},{"style":606},[3780],{"type":46,"value":1521},{"type":40,"tag":309,"props":3782,"children":3783},{"style":540},[3784],{"type":46,"value":614},{"type":40,"tag":309,"props":3786,"children":3787},{"style":540},[3788],{"type":46,"value":564},{"type":40,"tag":309,"props":3790,"children":3791},{"style":331},[3792],{"type":46,"value":3793},"My RN App",{"type":40,"tag":309,"props":3795,"children":3796},{"style":540},[3797],{"type":46,"value":645},{"type":40,"tag":309,"props":3799,"children":3800},{"style":540},[3801],{"type":46,"value":744},{"type":40,"tag":309,"props":3803,"children":3804},{"class":311,"line":360},[3805,3810,3814,3819,3824,3828,3833,3837,3841,3846,3850,3855,3860],{"type":40,"tag":309,"props":3806,"children":3807},{"style":587},[3808],{"type":46,"value":3809},"  preferredOpenLink",{"type":40,"tag":309,"props":3811,"children":3812},{"style":540},[3813],{"type":46,"value":614},{"type":40,"tag":309,"props":3815,"children":3816},{"style":540},[3817],{"type":46,"value":3818}," (",{"type":40,"tag":309,"props":3820,"children":3821},{"style":1868},[3822],{"type":46,"value":3823},"link",{"type":40,"tag":309,"props":3825,"children":3826},{"style":540},[3827],{"type":46,"value":1004},{"type":40,"tag":309,"props":3829,"children":3830},{"style":1868},[3831],{"type":46,"value":3832}," target",{"type":40,"tag":309,"props":3834,"children":3835},{"style":540},[3836],{"type":46,"value":89},{"type":40,"tag":309,"props":3838,"children":3839},{"style":1825},[3840],{"type":46,"value":1876},{"type":40,"tag":309,"props":3842,"children":3843},{"style":546},[3844],{"type":46,"value":3845}," Linking",{"type":40,"tag":309,"props":3847,"children":3848},{"style":540},[3849],{"type":46,"value":170},{"type":40,"tag":309,"props":3851,"children":3852},{"style":587},[3853],{"type":46,"value":3854},"openURL",{"type":40,"tag":309,"props":3856,"children":3857},{"style":546},[3858],{"type":46,"value":3859},"(link)",{"type":40,"tag":309,"props":3861,"children":3862},{"style":540},[3863],{"type":46,"value":650},{"type":40,"tag":309,"props":3865,"children":3866},{"class":311,"line":370},[3867,3871,3875,3879],{"type":40,"tag":309,"props":3868,"children":3869},{"style":606},[3870],{"type":46,"value":695},{"type":40,"tag":309,"props":3872,"children":3873},{"style":540},[3874],{"type":46,"value":614},{"type":40,"tag":309,"props":3876,"children":3877},{"style":702},[3878],{"type":46,"value":705},{"type":40,"tag":309,"props":3880,"children":3881},{"style":540},[3882],{"type":46,"value":650},{"type":40,"tag":309,"props":3884,"children":3885},{"class":311,"line":379},[3886,3890],{"type":40,"tag":309,"props":3887,"children":3888},{"style":540},[3889],{"type":46,"value":823},{"type":40,"tag":309,"props":3891,"children":3892},{"style":546},[3893],{"type":46,"value":828},{"type":40,"tag":309,"props":3895,"children":3896},{"class":311,"line":397},[3897],{"type":40,"tag":309,"props":3898,"children":3899},{"emptyLinePlaceholder":364},[3900],{"type":46,"value":367},{"type":40,"tag":309,"props":3902,"children":3903},{"class":311,"line":414},[3904],{"type":40,"tag":309,"props":3905,"children":3906},{"style":316},[3907],{"type":46,"value":3908},"\u002F\u002F After:\n",{"type":40,"tag":309,"props":3910,"children":3911},{"class":311,"line":422},[3912,3916,3920],{"type":40,"tag":309,"props":3913,"children":3914},{"style":587},[3915],{"type":46,"value":590},{"type":40,"tag":309,"props":3917,"children":3918},{"style":546},[3919],{"type":46,"value":595},{"type":40,"tag":309,"props":3921,"children":3922},{"style":540},[3923],{"type":46,"value":600},{"type":40,"tag":309,"props":3925,"children":3926},{"class":311,"line":431},[3927,3931,3935,3939,3943,3947,3951,3955,3959],{"type":40,"tag":309,"props":3928,"children":3929},{"style":606},[3930],{"type":46,"value":912},{"type":40,"tag":309,"props":3932,"children":3933},{"style":540},[3934],{"type":46,"value":614},{"type":40,"tag":309,"props":3936,"children":3937},{"style":540},[3938],{"type":46,"value":543},{"type":40,"tag":309,"props":3940,"children":3941},{"style":606},[3942],{"type":46,"value":1521},{"type":40,"tag":309,"props":3944,"children":3945},{"style":540},[3946],{"type":46,"value":614},{"type":40,"tag":309,"props":3948,"children":3949},{"style":540},[3950],{"type":46,"value":564},{"type":40,"tag":309,"props":3952,"children":3953},{"style":331},[3954],{"type":46,"value":3793},{"type":40,"tag":309,"props":3956,"children":3957},{"style":540},[3958],{"type":46,"value":645},{"type":40,"tag":309,"props":3960,"children":3961},{"style":540},[3962],{"type":46,"value":744},{"type":40,"tag":309,"props":3964,"children":3965},{"class":311,"line":448},[3966,3970,3974],{"type":40,"tag":309,"props":3967,"children":3968},{"style":606},[3969],{"type":46,"value":1052},{"type":40,"tag":309,"props":3971,"children":3972},{"style":540},[3973],{"type":46,"value":614},{"type":40,"tag":309,"props":3975,"children":3976},{"style":540},[3977],{"type":46,"value":619},{"type":40,"tag":309,"props":3979,"children":3980},{"class":311,"line":775},[3981,3985,3989,3993,3997,4001,4005,4009,4013,4017,4021,4025,4029],{"type":40,"tag":309,"props":3982,"children":3983},{"style":587},[3984],{"type":46,"value":1088},{"type":40,"tag":309,"props":3986,"children":3987},{"style":540},[3988],{"type":46,"value":614},{"type":40,"tag":309,"props":3990,"children":3991},{"style":540},[3992],{"type":46,"value":3818},{"type":40,"tag":309,"props":3994,"children":3995},{"style":1868},[3996],{"type":46,"value":3823},{"type":40,"tag":309,"props":3998,"children":3999},{"style":540},[4000],{"type":46,"value":1004},{"type":40,"tag":309,"props":4002,"children":4003},{"style":1868},[4004],{"type":46,"value":3832},{"type":40,"tag":309,"props":4006,"children":4007},{"style":540},[4008],{"type":46,"value":89},{"type":40,"tag":309,"props":4010,"children":4011},{"style":1825},[4012],{"type":46,"value":1876},{"type":40,"tag":309,"props":4014,"children":4015},{"style":546},[4016],{"type":46,"value":3845},{"type":40,"tag":309,"props":4018,"children":4019},{"style":540},[4020],{"type":46,"value":170},{"type":40,"tag":309,"props":4022,"children":4023},{"style":587},[4024],{"type":46,"value":3854},{"type":40,"tag":309,"props":4026,"children":4027},{"style":546},[4028],{"type":46,"value":3859},{"type":40,"tag":309,"props":4030,"children":4031},{"style":540},[4032],{"type":46,"value":650},{"type":40,"tag":309,"props":4034,"children":4035},{"class":311,"line":796},[4036,4040,4044,4048],{"type":40,"tag":309,"props":4037,"children":4038},{"style":606},[4039],{"type":46,"value":1068},{"type":40,"tag":309,"props":4041,"children":4042},{"style":540},[4043],{"type":46,"value":614},{"type":40,"tag":309,"props":4045,"children":4046},{"style":702},[4047],{"type":46,"value":705},{"type":40,"tag":309,"props":4049,"children":4050},{"style":540},[4051],{"type":46,"value":650},{"type":40,"tag":309,"props":4053,"children":4054},{"class":311,"line":817},[4055],{"type":40,"tag":309,"props":4056,"children":4057},{"style":540},[4058],{"type":46,"value":687},{"type":40,"tag":309,"props":4060,"children":4061},{"class":311,"line":1112},[4062,4066],{"type":40,"tag":309,"props":4063,"children":4064},{"style":540},[4065],{"type":46,"value":823},{"type":40,"tag":309,"props":4067,"children":4068},{"style":546},[4069],{"type":46,"value":828},{"type":40,"tag":49,"props":4071,"children":4073},{"id":4072},"important-notes",[4074],{"type":46,"value":4075},"Important Notes",{"type":40,"tag":56,"props":4077,"children":4078},{},[4079,4109,4130,4151,4168,4193,4211],{"type":40,"tag":60,"props":4080,"children":4081},{},[4082,4087,4089,4094,4096,4101,4103,4108],{"type":40,"tag":66,"props":4083,"children":4085},{"className":4084},[],[4086],{"type":46,"value":87},{"type":46,"value":4088}," is an ",{"type":40,"tag":136,"props":4090,"children":4091},{},[4092],{"type":46,"value":4093},"optional peer dependency",{"type":46,"value":4095}," of ",{"type":40,"tag":66,"props":4097,"children":4099},{"className":4098},[],[4100],{"type":46,"value":71},{"type":46,"value":4102}," — you only need it if you use the ",{"type":40,"tag":66,"props":4104,"children":4106},{"className":4105},[],[4107],{"type":46,"value":1469},{"type":46,"value":1957},{"type":40,"tag":60,"props":4110,"children":4111},{},[4112,4114,4120,4122,4128],{"type":46,"value":4113},"The connector ID remains ",{"type":40,"tag":66,"props":4115,"children":4117},{"className":4116},[],[4118],{"type":46,"value":4119},"'metaMaskSDK'",{"type":46,"value":4121}," and the name remains ",{"type":40,"tag":66,"props":4123,"children":4125},{"className":4124},[],[4126],{"type":46,"value":4127},"'MetaMask'",{"type":46,"value":4129}," — no changes to connector identity",{"type":40,"tag":60,"props":4131,"children":4132},{},[4133,4135,4141,4143,4149],{"type":46,"value":4134},"The connector's ",{"type":40,"tag":66,"props":4136,"children":4138},{"className":4137},[],[4139],{"type":46,"value":4140},"rdns",{"type":46,"value":4142}," is ",{"type":40,"tag":66,"props":4144,"children":4146},{"className":4145},[],[4147],{"type":46,"value":4148},"['io.metamask', 'io.metamask.mobile']",{"type":46,"value":4150}," — unchanged",{"type":40,"tag":60,"props":4152,"children":4153},{},[4154,4155,4161,4163],{"type":46,"value":1432},{"type":40,"tag":66,"props":4156,"children":4158},{"className":4157},[],[4159],{"type":46,"value":4160},"supportedNetworks",{"type":46,"value":4162}," map is now auto-built from wagmi's configured chains and their default RPC URLs — you no longer need to pass ",{"type":40,"tag":66,"props":4164,"children":4166},{"className":4165},[],[4167],{"type":46,"value":1383},{"type":40,"tag":60,"props":4169,"children":4170},{},[4171,4172,4177,4179,4184,4186,4191],{"type":46,"value":1432},{"type":40,"tag":66,"props":4173,"children":4175},{"className":4174},[],[4176],{"type":46,"value":231},{"type":46,"value":4178}," parameter still works (it's mapped to ",{"type":40,"tag":66,"props":4180,"children":4182},{"className":4181},[],[4183],{"type":46,"value":239},{"type":46,"value":4185}," internally) but is deprecated — migrate to ",{"type":40,"tag":66,"props":4187,"children":4189},{"className":4188},[],[4190],{"type":46,"value":239},{"type":46,"value":4192}," for forward compatibility",{"type":40,"tag":60,"props":4194,"children":4195},{},[4196,4197,4202,4204,4209],{"type":46,"value":1432},{"type":40,"tag":66,"props":4198,"children":4200},{"className":4199},[],[4201],{"type":46,"value":1233},{"type":46,"value":4203}," parameter still works (mapped to ",{"type":40,"tag":66,"props":4205,"children":4207},{"className":4206},[],[4208],{"type":46,"value":1224},{"type":46,"value":4210},") but is deprecated",{"type":40,"tag":60,"props":4212,"children":4213},{},[4214,4216,4221,4223,4229,4231,4237],{"type":46,"value":4215},"If no ",{"type":40,"tag":66,"props":4217,"children":4219},{"className":4218},[],[4220],{"type":46,"value":239},{"type":46,"value":4222}," config is provided, the connector defaults to ",{"type":40,"tag":66,"props":4224,"children":4226},{"className":4225},[],[4227],{"type":46,"value":4228},"{ name: window.location.hostname, url: window.location.href }",{"type":46,"value":4230}," in browsers, or ",{"type":40,"tag":66,"props":4232,"children":4234},{"className":4233},[],[4235],{"type":46,"value":4236},"{ name: 'wagmi' }",{"type":46,"value":4238}," in Node.js\u002FSSR",{"type":40,"tag":4240,"props":4241,"children":4242},"style",{},[4243],{"type":46,"value":4244},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":4246,"total":3056},[4247,4260,4267,4279,4293,4310,4324],{"slug":4248,"name":4248,"fn":4249,"description":4250,"org":4251,"tags":4252,"stars":24,"repoUrl":25,"updatedAt":4259},"migrate-from-sdk","migrate MetaMask SDK to connect-evm and connect-solana","Migrate from @metamask\u002Fsdk to @metamask\u002Fconnect-evm, @metamask\u002Fconnect-multichain, and @metamask\u002Fconnect-solana with step-by-step package, API, and configuration changes",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4253,4254,4255,4258],{"name":22,"slug":23,"type":14},{"name":19,"slug":20,"type":14},{"name":4256,"slug":4257,"type":14},"SDK","sdk",{"name":16,"slug":17,"type":14},"2026-07-13T06:11:46.427441",{"slug":4,"name":4,"fn":5,"description":6,"org":4261,"tags":4262,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4263,4264,4265,4266],{"name":22,"slug":23,"type":14},{"name":19,"slug":20,"type":14},{"name":13,"slug":13,"type":14},{"name":16,"slug":17,"type":14},{"slug":4268,"name":4268,"fn":4269,"description":4270,"org":4271,"tags":4272,"stars":24,"repoUrl":25,"updatedAt":4278},"send-evm-transaction","send EVM transactions with MetaMask","Send ETH and contract transactions with MetaMask using eth_sendTransaction via the EIP-1193 provider, gas estimation, receipt polling, and the connectWith shortcut",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4273,4276,4277],{"name":4274,"slug":4275,"type":14},"API Development","api-development",{"name":22,"slug":23,"type":14},{"name":16,"slug":17,"type":14},"2026-07-13T06:11:56.866623",{"slug":4280,"name":4280,"fn":4281,"description":4282,"org":4283,"tags":4284,"stars":24,"repoUrl":25,"updatedAt":4292},"send-solana-transaction","send Solana transactions via MetaMask","Build and send a Solana transaction using MetaMask Connect. Covers both the React wallet-adapter approach (sendTransaction) and the vanilla browser approach (signAndSendTransaction wallet-standard feature).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4285,4288,4291],{"name":4286,"slug":4287,"type":14},"Payments","payments",{"name":4289,"slug":4290,"type":14},"Solana","solana",{"name":16,"slug":17,"type":14},"2026-07-13T06:12:03.942378",{"slug":4294,"name":4294,"fn":4295,"description":4296,"org":4297,"tags":4298,"stars":24,"repoUrl":25,"updatedAt":4309},"setup-evm-browser-app","scaffold EVM browser applications with MetaMask","Scaffold a vanilla JS\u002FTS browser app with MetaMask EVM integration using createEVMClient, EIP-1193 provider event listeners, RPC methods, and chain switching with chainConfiguration fallback",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4299,4300,4303,4306,4308],{"name":22,"slug":23,"type":14},{"name":4301,"slug":4302,"type":14},"Frontend","frontend",{"name":4304,"slug":4305,"type":14},"JavaScript","javascript",{"name":4307,"slug":524,"type":14},"TypeScript",{"name":16,"slug":17,"type":14},"2026-07-13T06:12:01.334051",{"slug":4311,"name":4311,"fn":4312,"description":4313,"org":4314,"tags":4315,"stars":24,"repoUrl":25,"updatedAt":4323},"setup-evm-react-app","scaffold React apps with MetaMask integration","Scaffold a React app with MetaMask EVM integration using createEVMClient, useState\u002FuseEffect\u002FuseRef patterns, provider.request calls, chain switching, and error handling",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4316,4317,4318,4319,4322],{"name":4274,"slug":4275,"type":14},{"name":22,"slug":23,"type":14},{"name":4301,"slug":4302,"type":14},{"name":4320,"slug":4321,"type":14},"React","react",{"name":16,"slug":17,"type":14},"2026-07-13T06:11:52.764143",{"slug":4325,"name":4325,"fn":4326,"description":4327,"org":4328,"tags":4329,"stars":24,"repoUrl":25,"updatedAt":4337},"setup-evm-react-native-app","scaffold React Native apps with MetaMask","Scaffold a React Native app with MetaMask EVM integration including required polyfills, metro.config.js shims, import order constraints, mobile deeplinks, and a full component example",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4330,4331,4333,4336],{"name":22,"slug":23,"type":14},{"name":4332,"slug":1266,"type":14},"Mobile",{"name":4334,"slug":4335,"type":14},"React Native","react-native",{"name":16,"slug":17,"type":14},"2026-07-13T06:12:11.764689",{"items":4339,"total":4464},[4340,4358,4370,4382,4391,4401,4414,4430,4437,4444,4450,4456],{"slug":4341,"name":4341,"fn":4342,"description":4343,"org":4344,"tags":4345,"stars":4355,"repoUrl":4356,"updatedAt":4357},"smart-accounts-kit","build dApps with MetaMask Smart Accounts","Build dApps with MetaMask Smart Accounts Kit — ERC-4337 smart accounts, delegations, and Advanced Permissions (ERC-7715)",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4346,4347,4350,4351,4354],{"name":4274,"slug":4275,"type":14},{"name":4348,"slug":4349,"type":14},"Auth","auth",{"name":22,"slug":23,"type":14},{"name":4352,"slug":4353,"type":14},"Permissions","permissions",{"name":16,"slug":17,"type":14},54,"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fsmart-accounts-kit","2026-07-13T06:11:32.8327",{"slug":4359,"name":4359,"fn":4360,"description":4361,"org":4362,"tags":4363,"stars":4355,"repoUrl":4356,"updatedAt":4369},"x402-payments","build x402 payment flows","Build x402 payment flows using MetaMask Smart Accounts Kit, machine to machine payments over HTTP with ERC-7710 delegations and ERC-7715 Advanced Permissions",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4364,4365,4366,4367],{"name":4274,"slug":4275,"type":14},{"name":4286,"slug":4287,"type":14},{"name":16,"slug":17,"type":14},{"name":4368,"slug":4368,"type":14},"x402","2026-07-13T06:11:30.877136",{"slug":4371,"name":4371,"fn":4372,"description":4373,"org":4374,"tags":4375,"stars":422,"repoUrl":4380,"updatedAt":4381},"discovery","discover and use services","Use the discovery tools to find and use services through a service matcher. Do not rely on prior knowledge of services, providers, or APIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4376,4377],{"name":4274,"slug":4275,"type":14},{"name":4378,"slug":4379,"type":14},"Search","search","https:\u002F\u002Fgithub.com\u002FMetaMask\u002Focap-kernel","2026-07-13T06:12:37.024095",{"slug":8,"name":8,"fn":4383,"description":4384,"org":4385,"tags":4386,"stars":422,"repoUrl":4380,"updatedAt":4390},"interact with MetaMask wallet capabilities","Use the MetaMask tools to request and interact with wallet capabilities from the MetaMask capability vendor.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4387,4388,4389],{"name":4274,"slug":4275,"type":14},{"name":22,"slug":23,"type":14},{"name":16,"slug":17,"type":14},"2026-07-13T06:12:33.955806",{"slug":4392,"name":4392,"fn":4393,"description":4394,"org":4395,"tags":4396,"stars":422,"repoUrl":4380,"updatedAt":4400},"wallet","manage wallet balances and transactions","Use the wallet tools for all balance, send, and sign operations. Supports both ETH and ERC-20 tokens. The away wallet operates autonomously after setup — the home device does not need to be online.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4397,4398,4399],{"name":22,"slug":23,"type":14},{"name":4286,"slug":4287,"type":14},{"name":16,"slug":17,"type":14},"2026-07-13T06:12:35.380244",{"slug":4402,"name":4402,"fn":4403,"description":4404,"org":4405,"tags":4406,"stars":397,"repoUrl":4412,"updatedAt":4413},"metamask-connect","integrate MetaMask into dApps","Build dApps that integrate MetaMask via the MetaMask Connect SDK — EVM (@metamask\u002Fconnect-evm), Solana (@metamask\u002Fconnect-solana), and multichain (@metamask\u002Fconnect-multichain), plus the wagmi metaMask() connector. Covers client setup across browser\u002FReact\u002FReact Native, connecting, signing messages, sending transactions, multichain invokeMethod across CAIP-2 scopes, migrating from @metamask\u002Fsdk, and troubleshooting connection\u002Fpolyfill issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4407,4408,4409,4410,4411],{"name":4274,"slug":4275,"type":14},{"name":22,"slug":23,"type":14},{"name":4289,"slug":4290,"type":14},{"name":13,"slug":13,"type":14},{"name":16,"slug":17,"type":14},"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fconnect-monorepo","2026-07-13T06:11:34.445665",{"slug":4415,"name":4415,"fn":4416,"description":4417,"org":4418,"tags":4419,"stars":370,"repoUrl":4428,"updatedAt":4429},"metamask-agent-wallet","manage blockchain wallets and transactions","Use when the user asks anything about blockchain wallets, transactions, signing, token transfers, supported chains, wallet balances, perpetual futures trading, prediction markets, token swaps, cross-chain bridges, market data, token discovery, decoding EVM calldata, DeFi earn\u002Fyield vaults, or authentication via the MetaMask Agentic CLI; also when an HTTP request returns 402 Payment Required (x402) or the agent needs to pay for a paywalled API, endpoint, file, or resource over HTTP. Single entry point for all mm CLI operations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4420,4423,4426,4427],{"name":4421,"slug":4422,"type":14},"Blockchain","blockchain",{"name":4424,"slug":4425,"type":14},"DeFi","defi",{"name":22,"slug":23,"type":14},{"name":16,"slug":17,"type":14},"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fagent-skills","2026-08-01T05:45:07.976522",{"slug":4248,"name":4248,"fn":4249,"description":4250,"org":4431,"tags":4432,"stars":24,"repoUrl":25,"updatedAt":4259},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4433,4434,4435,4436],{"name":22,"slug":23,"type":14},{"name":19,"slug":20,"type":14},{"name":4256,"slug":4257,"type":14},{"name":16,"slug":17,"type":14},{"slug":4,"name":4,"fn":5,"description":6,"org":4438,"tags":4439,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4440,4441,4442,4443],{"name":22,"slug":23,"type":14},{"name":19,"slug":20,"type":14},{"name":13,"slug":13,"type":14},{"name":16,"slug":17,"type":14},{"slug":4268,"name":4268,"fn":4269,"description":4270,"org":4445,"tags":4446,"stars":24,"repoUrl":25,"updatedAt":4278},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4447,4448,4449],{"name":4274,"slug":4275,"type":14},{"name":22,"slug":23,"type":14},{"name":16,"slug":17,"type":14},{"slug":4280,"name":4280,"fn":4281,"description":4282,"org":4451,"tags":4452,"stars":24,"repoUrl":25,"updatedAt":4292},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4453,4454,4455],{"name":4286,"slug":4287,"type":14},{"name":4289,"slug":4290,"type":14},{"name":16,"slug":17,"type":14},{"slug":4294,"name":4294,"fn":4295,"description":4296,"org":4457,"tags":4458,"stars":24,"repoUrl":25,"updatedAt":4309},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[4459,4460,4461,4462,4463],{"name":22,"slug":23,"type":14},{"name":4301,"slug":4302,"type":14},{"name":4304,"slug":4305,"type":14},{"name":4307,"slug":524,"type":14},{"name":16,"slug":17,"type":14},26]