[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-metamask-setup-solana-react-native-app":3,"mdc--fxqh0-key":35,"related-org-metamask-setup-solana-react-native-app":8962,"related-repo-metamask-setup-solana-react-native-app":9122},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":25,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"setup-solana-react-native-app","build Solana apps with React Native","Set up a React Native app with @metamask\u002Fconnect-solana using polyfills and multichain invokeMethod for Solana operations. Use when building Solana support in React Native where wallet-adapter is not available.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"metamask","MetaMask","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmetamask.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"React Native","react-native","tag",{"name":17,"slug":18,"type":15},"Mobile","mobile",{"name":20,"slug":21,"type":15},"Web3","web3",{"name":23,"slug":24,"type":15},"Solana","solana",2,"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fmetamask-connect-cursor-plugin","2026-07-13T06:12:13.174347",null,[],{"repoUrl":26,"stars":25,"forks":25,"topics":31,"description":32},[],"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\u002Fsetup-solana-react-native-app","---\nname: setup-solana-react-native-app\ndescription: Set up a React Native app with @metamask\u002Fconnect-solana using polyfills and multichain invokeMethod for Solana operations. Use when building Solana support in React Native where wallet-adapter is not available.\n---\n# Setup Solana React Native App with MetaMask\n\n## When to use\n\nUse this skill when:\n- Integrating MetaMask with Solana in a React Native application\n- Setting up the required polyfills and metro shims for `@metamask\u002Fconnect-solana`\n- Building Solana sign and send flows in React Native using `invokeMethod`\n- You need Solana support in React Native where `@solana\u002Fwallet-adapter-react` is **not** available\n\n## Workflow\n\n### Step 1: Install dependencies\n\n```bash\nnpm install @metamask\u002Fconnect-solana @metamask\u002Fconnect-multichain @solana\u002Fweb3.js react-native-get-random-values buffer readable-stream @react-native-async-storage\u002Fasync-storage\n```\n\n`@metamask\u002Fconnect-multichain` is a regular dependency of `@metamask\u002Fconnect-solana` and is installed transitively — but this skill imports `createMultichainClient` directly (to configure `mobile.preferredOpenLink`, which `createSolanaClient` does not forward), so declare it explicitly to keep strict package managers (pnpm) happy. The SDK warns at runtime if duplicate or mismatched copies are resolved.\n\n### Step 2: Create the polyfills file\n\nCreate `polyfills.ts` at the root of your project.\n\n```typescript\n\u002F\u002F polyfills.ts\nimport { Buffer } from 'buffer';\n\n\u002F\u002F Buffer — connect-multichain self-polyfills this, but set early as a safety\n\u002F\u002F net for peer deps (e.g. @solana\u002Fweb3.js) that may load first.\nglobal.Buffer = Buffer;\n\n\u002F\u002F window object — required for correct platform detection and deeplink behaviour.\nconst eventListeners = new Map\u003Cstring, Set\u003CEventListener>>();\nif (typeof global.window === 'undefined') {\n  (global as any).window = {\n    location: {\n      hostname: 'my-rn-app',\n      href: 'https:\u002F\u002Fmy-rn-app.local',\n    },\n    navigator: { product: 'ReactNative' },\n    addEventListener: (event: string, listener: EventListener) => {\n      if (!eventListeners.has(event)) eventListeners.set(event, new Set());\n      eventListeners.get(event)?.add(listener);\n    },\n    removeEventListener: (event: string, listener: EventListener) => {\n      eventListeners.get(event)?.delete(listener);\n    },\n    dispatchEvent: (_event: Event) => true,\n  };\n}\n\n\u002F\u002F NOTE: Event and CustomEvent are NOT needed for standalone connect-solana —\n\u002F\u002F the SDK uses eventemitter3 internally. Add them only if using wagmi.\n```\n\n### Step 3: Import polyfills FIRST in the entry file\n\n`react-native-get-random-values` must be the **very first import** in the entry file — it cannot be inside `polyfills.ts` because Metro may have already touched crypto by the time that file runs.\n\n```typescript\n\u002F\u002F index.js or App.tsx — import order is critical\nimport 'react-native-get-random-values'; \u002F\u002F MUST be first (needed for RN \u003C 0.72; safe to include on 0.72+)\nimport '.\u002Fpolyfills';\n\nimport { AppRegistry } from 'react-native';\nimport App from '.\u002FApp';\nimport { name as appName } from '.\u002Fapp.json';\n\nAppRegistry.registerComponent(appName, () => App);\n```\n\n### Step 4: Configure metro shims\n\nAdd `extraNodeModules` to `metro.config.js` so the bundler can resolve Node.js built-in modules:\n\n```javascript\nconst { getDefaultConfig, mergeConfig } = require('@react-native\u002Fmetro-config');\nconst path = require('path');\n\n\u002F\u002F src\u002Fempty-module.js: `module.exports = {};`\n\u002F\u002F Only `stream` needs a real shim — the other Node built-ins are referenced\n\u002F\u002F by transitive deps but never called at runtime in React Native.\nconst emptyModule = path.resolve(__dirname, 'src', 'empty-module.js');\n\nconst config = {\n  resolver: {\n    extraNodeModules: {\n      stream: require.resolve('readable-stream'),\n      crypto: emptyModule,\n      http: emptyModule,\n      https: emptyModule,\n      net: emptyModule,\n      tls: emptyModule,\n      zlib: emptyModule,\n      os: emptyModule,\n      dns: emptyModule,\n      assert: emptyModule,\n      url: emptyModule,\n      path: emptyModule,\n      fs: emptyModule,\n    },\n  },\n};\n\nmodule.exports = mergeConfig(getDefaultConfig(__dirname), config);\n```\n\n### Step 5: Create the Solana client\n\n`createSolanaClient` does not forward `mobile` options to the underlying multichain core. In React Native, you must call `createMultichainClient` first with `mobile.preferredOpenLink` so the singleton core is configured for deeplinks, then call `createSolanaClient` which reuses that same core.\n\n```typescript\nimport { createMultichainClient } from '@metamask\u002Fconnect-multichain';\nimport { createSolanaClient } from '@metamask\u002Fconnect-solana';\nimport { Linking } from 'react-native';\n\n\u002F\u002F Initialize the multichain singleton with mobile deeplink handling\nawait createMultichainClient({\n  dapp: {\n    name: 'My Solana RN App',\n    url: 'https:\u002F\u002Fmyapp.com',\n  },\n  api: {\n    supportedNetworks: {},\n  },\n  mobile: {\n    preferredOpenLink: (deeplink: string) => Linking.openURL(deeplink),\n  },\n});\n\n\u002F\u002F Create the Solana client — reuses the multichain singleton above\nconst solanaClient = await createSolanaClient({\n  dapp: {\n    name: 'My Solana RN App',\n    url: 'https:\u002F\u002Fmyapp.com',\n  },\n  api: {\n    supportedNetworks: {\n      mainnet: 'https:\u002F\u002Fapi.mainnet-beta.solana.com',\n    },\n  },\n});\n```\n\n### Step 6: Use multichain invokeMethod for Solana operations\n\n**There is no `@solana\u002Fwallet-adapter-react` in React Native.** Instead, use the `core` multichain client and `invokeMethod` to call Solana RPC methods on specific CAIP scopes.\n\n#### Connect\n\n```typescript\nawait solanaClient.core.connect(\n  ['solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp'],\n  [],\n);\n```\n\nListen for `wallet_sessionChanged` to get accounts after connection:\n\n```typescript\nsolanaClient.core.on('wallet_sessionChanged', (session) => {\n  \u002F\u002F Scopes live under session.sessionScopes; accounts are CAIP-10 strings\n  \u002F\u002F ('solana:\u003CgenesisHash>:\u003Caddress>') — take the last segment for the address\n  const caipAccounts =\n    session?.sessionScopes?.['solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp']?.accounts ?? [];\n  const solanaAccounts = caipAccounts.map((a) => a.split(':')[2]);\n  console.log('Solana accounts:', solanaAccounts);\n});\n```\n\n#### Sign a message\n\n```typescript\nconst message = new TextEncoder().encode('Hello from React Native!');\nconst messageBase64 = Buffer.from(message).toString('base64');\n\n\u002F\u002F Method names have no `solana_` prefix; the account is passed as account: { address }\nconst result = await solanaClient.core.invokeMethod({\n  scope: 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp',\n  request: {\n    method: 'signMessage',\n    params: {\n      account: { address: solanaAccounts[0] },\n      message: messageBase64,\n    },\n  },\n});\n\n\u002F\u002F result: { signature: \u003Cbase58 string>, signedMessage: \u003Cbase64>, signatureType: 'ed25519' }\nconsole.log('Signature:', result.signature);\n```\n\n#### Sign and send a transaction\n\n```typescript\nimport {\n  Connection,\n  Transaction,\n  SystemProgram,\n  PublicKey,\n  LAMPORTS_PER_SOL,\n} from '@solana\u002Fweb3.js';\n\nconst connection = new Connection('https:\u002F\u002Fapi.mainnet-beta.solana.com');\nconst { blockhash } = await connection.getLatestBlockhash();\nconst senderPubkey = new PublicKey(solanaAccounts[0]);\n\nconst tx = new Transaction().add(\n  SystemProgram.transfer({\n    fromPubkey: senderPubkey,\n    toPubkey: new PublicKey('11111111111111111111111111111112'),\n    lamports: 0.001 * LAMPORTS_PER_SOL,\n  }),\n);\ntx.recentBlockhash = blockhash;\ntx.feePayer = senderPubkey;\n\nconst serializedTx = tx.serialize({ requireAllSignatures: false });\nconst txBase64 = Buffer.from(serializedTx).toString('base64');\n\nconst SOLANA_MAINNET = 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp';\nconst sendResult = await solanaClient.core.invokeMethod({\n  scope: SOLANA_MAINNET,\n  request: {\n    method: 'signAndSendTransaction',\n    params: {\n      account: { address: solanaAccounts[0] },\n      transaction: txBase64,\n      scope: SOLANA_MAINNET,\n    },\n  },\n});\n\n\u002F\u002F sendResult: { signature: \u003Cbase58 transaction signature> }\nconsole.log('Transaction signature:', sendResult.signature);\n```\n\n#### Disconnect\n\n```typescript\nawait solanaClient.disconnect();\n```\n\n### Step 7: Full React Native component\n\n```tsx\nimport React, { useState, useEffect } from 'react';\nimport { View, Text, Button, Alert, Linking } from 'react-native';\nimport { createMultichainClient } from '@metamask\u002Fconnect-multichain';\nimport { createSolanaClient, SolanaClient } from '@metamask\u002Fconnect-solana';\nimport {\n  Connection,\n  Transaction,\n  SystemProgram,\n  PublicKey,\n  LAMPORTS_PER_SOL,\n} from '@solana\u002Fweb3.js';\n\nconst MAINNET_SCOPE = 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp';\nconst RPC_URL = 'https:\u002F\u002Fapi.mainnet-beta.solana.com';\n\nexport default function SolanaScreen() {\n  const [client, setClient] = useState\u003CSolanaClient | null>(null);\n  const [accounts, setAccounts] = useState\u003Cstring[]>([]);\n\n  useEffect(() => {\n    (async () => {\n      await createMultichainClient({\n        dapp: { name: 'My RN App', url: 'https:\u002F\u002Fmyapp.com' },\n        api: { supportedNetworks: {} },\n        mobile: { preferredOpenLink: (dl) => Linking.openURL(dl) },\n      });\n      const c = await createSolanaClient({\n        dapp: { name: 'My RN App', url: 'https:\u002F\u002Fmyapp.com' },\n        api: { supportedNetworks: { mainnet: RPC_URL } },\n      });\n      setClient(c);\n      c.core.on('wallet_sessionChanged', (session) => {\n        const caipAccounts = session?.sessionScopes?.[MAINNET_SCOPE]?.accounts ?? [];\n        setAccounts(caipAccounts.map((a) => a.split(':')[2]));\n      });\n    })();\n  }, []);\n\n  const handleConnect = async () => {\n    if (!client) return;\n    try {\n      await client.core.connect([MAINNET_SCOPE], []);\n    } catch (err: any) {\n      Alert.alert('Connection failed', err.message);\n    }\n  };\n\n  const handleSignMessage = async () => {\n    if (!client || accounts.length === 0) return;\n    try {\n      const message = Buffer.from('Hello from React Native!').toString('base64');\n      const result = await client.core.invokeMethod({\n        scope: MAINNET_SCOPE,\n        request: { method: 'signMessage', params: { account: { address: accounts[0] }, message } },\n      });\n      Alert.alert('Signed', JSON.stringify(result.signature).slice(0, 40) + '...');\n    } catch (err: any) {\n      Alert.alert('Sign failed', err.message);\n    }\n  };\n\n  const handleSendTransaction = async () => {\n    if (!client || accounts.length === 0) return;\n    try {\n      const connection = new Connection(RPC_URL);\n      const { blockhash } = await connection.getLatestBlockhash();\n      const sender = new PublicKey(accounts[0]);\n\n      const tx = new Transaction().add(\n        SystemProgram.transfer({\n          fromPubkey: sender,\n          toPubkey: new PublicKey('11111111111111111111111111111112'),\n          lamports: 0.001 * LAMPORTS_PER_SOL,\n        }),\n      );\n      tx.recentBlockhash = blockhash;\n      tx.feePayer = sender;\n\n      const txBase64 = Buffer.from(\n        tx.serialize({ requireAllSignatures: false }),\n      ).toString('base64');\n\n      const result = await client.core.invokeMethod({\n        scope: MAINNET_SCOPE,\n        request: {\n          method: 'signAndSendTransaction',\n          params: { account: { address: accounts[0] }, transaction: txBase64, scope: MAINNET_SCOPE },\n        },\n      });\n      Alert.alert('Sent', result.signature);\n    } catch (err: any) {\n      Alert.alert('Transaction failed', err.message);\n    }\n  };\n\n  const handleDisconnect = async () => {\n    if (!client) return;\n    await client.disconnect();\n    setAccounts([]);\n  };\n\n  if (accounts.length === 0) {\n    return (\n      \u003CView style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>\n        \u003CButton title=\"Connect MetaMask (Solana)\" onPress={handleConnect} \u002F>\n      \u003C\u002FView>\n    );\n  }\n\n  return (\n    \u003CView style={{ flex: 1, justifyContent: 'center', alignItems: 'center', gap: 12 }}>\n      \u003CText>Address: {accounts[0]}\u003C\u002FText>\n      \u003CButton title=\"Sign Message\" onPress={handleSignMessage} \u002F>\n      \u003CButton title=\"Send 0.001 SOL\" onPress={handleSendTransaction} \u002F>\n      \u003CButton title=\"Disconnect\" onPress={handleDisconnect} \u002F>\n    \u003C\u002FView>\n  );\n}\n```\n\n## Important Notes\n\n- **No wallet-adapter in React Native** — `@solana\u002Fwallet-adapter-react` does not support React Native. Use `solanaClient.core.invokeMethod` with CAIP-scoped Solana RPC methods instead.\n- **Polyfill import order is critical** — `react-native-get-random-values` must be the very first import in the entry file, not inside `polyfills.ts`. `Buffer` is self-polyfilled by `@metamask\u002Fconnect-multichain` but set it early in `polyfills.ts` as a safety net for peer deps. `Event`\u002F`CustomEvent` are NOT needed for standalone connect-solana (the SDK uses eventemitter3); only add them if using wagmi.\n- **Metro shims are required** — the SDK and its dependencies reference Node.js built-ins (`stream`, `crypto`, `http`, etc.) that Metro cannot resolve without explicit shims in `metro.config.js`.\n- **`mobile.preferredOpenLink` is required** — `createSolanaClient` does not forward `mobile` options. Call `createMultichainClient` first with `mobile: { preferredOpenLink: (dl) => Linking.openURL(dl) }` to configure the singleton core for deeplinks, then call `createSolanaClient` which reuses it.\n- **Solana networks** — mainnet, devnet, and testnet scopes are all modeled by the SDK; non-mainnet availability depends on the connected MetaMask build\u002Fversion, so handle connection errors rather than assuming a cluster is present.\n- **`skipAutoRegister` option** — pass `skipAutoRegister: true` to `createSolanaClient` to prevent automatic wallet-standard registration.\n- **`disconnect()` only revokes Solana scopes** — EVM sessions remain active if present.\n- **Call `createSolanaClient` once** — each call returns a *new* Solana client wrapper, but they share the singleton multichain core (whose options merge across calls). Create it once (e.g., in a `useEffect` or before app registration), don't recreate per render.\n",{"data":36,"body":37},{"name":4,"description":6},{"type":38,"children":39},"root",[40,49,56,62,116,122,129,193,235,241,254,1141,1147,1172,1422,1428,1449,2098,2104,2142,2735,2741,2773,2780,2873,2886,3223,3229,3683,3689,4686,4692,4726,4732,8685,8691,8956],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"setup-solana-react-native-app-with-metamask",[46],{"type":47,"value":48},"text","Setup Solana React Native App with MetaMask",{"type":41,"tag":50,"props":51,"children":53},"h2",{"id":52},"when-to-use",[54],{"type":47,"value":55},"When to use",{"type":41,"tag":57,"props":58,"children":59},"p",{},[60],{"type":47,"value":61},"Use this skill when:",{"type":41,"tag":63,"props":64,"children":65},"ul",{},[66,72,84,95],{"type":41,"tag":67,"props":68,"children":69},"li",{},[70],{"type":47,"value":71},"Integrating MetaMask with Solana in a React Native application",{"type":41,"tag":67,"props":73,"children":74},{},[75,77],{"type":47,"value":76},"Setting up the required polyfills and metro shims for ",{"type":41,"tag":78,"props":79,"children":81},"code",{"className":80},[],[82],{"type":47,"value":83},"@metamask\u002Fconnect-solana",{"type":41,"tag":67,"props":85,"children":86},{},[87,89],{"type":47,"value":88},"Building Solana sign and send flows in React Native using ",{"type":41,"tag":78,"props":90,"children":92},{"className":91},[],[93],{"type":47,"value":94},"invokeMethod",{"type":41,"tag":67,"props":96,"children":97},{},[98,100,106,108,114],{"type":47,"value":99},"You need Solana support in React Native where ",{"type":41,"tag":78,"props":101,"children":103},{"className":102},[],[104],{"type":47,"value":105},"@solana\u002Fwallet-adapter-react",{"type":47,"value":107}," is ",{"type":41,"tag":109,"props":110,"children":111},"strong",{},[112],{"type":47,"value":113},"not",{"type":47,"value":115}," available",{"type":41,"tag":50,"props":117,"children":119},{"id":118},"workflow",[120],{"type":47,"value":121},"Workflow",{"type":41,"tag":123,"props":124,"children":126},"h3",{"id":125},"step-1-install-dependencies",[127],{"type":47,"value":128},"Step 1: Install dependencies",{"type":41,"tag":130,"props":131,"children":136},"pre",{"className":132,"code":133,"language":134,"meta":135,"style":135},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @metamask\u002Fconnect-solana @metamask\u002Fconnect-multichain @solana\u002Fweb3.js react-native-get-random-values buffer readable-stream @react-native-async-storage\u002Fasync-storage\n","bash","",[137],{"type":41,"tag":78,"props":138,"children":139},{"__ignoreMap":135},[140],{"type":41,"tag":141,"props":142,"children":145},"span",{"class":143,"line":144},"line",1,[146,152,158,163,168,173,178,183,188],{"type":41,"tag":141,"props":147,"children":149},{"style":148},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[150],{"type":47,"value":151},"npm",{"type":41,"tag":141,"props":153,"children":155},{"style":154},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[156],{"type":47,"value":157}," install",{"type":41,"tag":141,"props":159,"children":160},{"style":154},[161],{"type":47,"value":162}," @metamask\u002Fconnect-solana",{"type":41,"tag":141,"props":164,"children":165},{"style":154},[166],{"type":47,"value":167}," @metamask\u002Fconnect-multichain",{"type":41,"tag":141,"props":169,"children":170},{"style":154},[171],{"type":47,"value":172}," @solana\u002Fweb3.js",{"type":41,"tag":141,"props":174,"children":175},{"style":154},[176],{"type":47,"value":177}," react-native-get-random-values",{"type":41,"tag":141,"props":179,"children":180},{"style":154},[181],{"type":47,"value":182}," buffer",{"type":41,"tag":141,"props":184,"children":185},{"style":154},[186],{"type":47,"value":187}," readable-stream",{"type":41,"tag":141,"props":189,"children":190},{"style":154},[191],{"type":47,"value":192}," @react-native-async-storage\u002Fasync-storage\n",{"type":41,"tag":57,"props":194,"children":195},{},[196,202,204,209,211,217,219,225,227,233],{"type":41,"tag":78,"props":197,"children":199},{"className":198},[],[200],{"type":47,"value":201},"@metamask\u002Fconnect-multichain",{"type":47,"value":203}," is a regular dependency of ",{"type":41,"tag":78,"props":205,"children":207},{"className":206},[],[208],{"type":47,"value":83},{"type":47,"value":210}," and is installed transitively — but this skill imports ",{"type":41,"tag":78,"props":212,"children":214},{"className":213},[],[215],{"type":47,"value":216},"createMultichainClient",{"type":47,"value":218}," directly (to configure ",{"type":41,"tag":78,"props":220,"children":222},{"className":221},[],[223],{"type":47,"value":224},"mobile.preferredOpenLink",{"type":47,"value":226},", which ",{"type":41,"tag":78,"props":228,"children":230},{"className":229},[],[231],{"type":47,"value":232},"createSolanaClient",{"type":47,"value":234}," does not forward), so declare it explicitly to keep strict package managers (pnpm) happy. The SDK warns at runtime if duplicate or mismatched copies are resolved.",{"type":41,"tag":123,"props":236,"children":238},{"id":237},"step-2-create-the-polyfills-file",[239],{"type":47,"value":240},"Step 2: Create the polyfills file",{"type":41,"tag":57,"props":242,"children":243},{},[244,246,252],{"type":47,"value":245},"Create ",{"type":41,"tag":78,"props":247,"children":249},{"className":248},[],[250],{"type":47,"value":251},"polyfills.ts",{"type":47,"value":253}," at the root of your project.",{"type":41,"tag":130,"props":255,"children":259},{"className":256,"code":257,"language":258,"meta":135,"style":135},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F polyfills.ts\nimport { Buffer } from 'buffer';\n\n\u002F\u002F Buffer — connect-multichain self-polyfills this, but set early as a safety\n\u002F\u002F net for peer deps (e.g. @solana\u002Fweb3.js) that may load first.\nglobal.Buffer = Buffer;\n\n\u002F\u002F window object — required for correct platform detection and deeplink behaviour.\nconst eventListeners = new Map\u003Cstring, Set\u003CEventListener>>();\nif (typeof global.window === 'undefined') {\n  (global as any).window = {\n    location: {\n      hostname: 'my-rn-app',\n      href: 'https:\u002F\u002Fmy-rn-app.local',\n    },\n    navigator: { product: 'ReactNative' },\n    addEventListener: (event: string, listener: EventListener) => {\n      if (!eventListeners.has(event)) eventListeners.set(event, new Set());\n      eventListeners.get(event)?.add(listener);\n    },\n    removeEventListener: (event: string, listener: EventListener) => {\n      eventListeners.get(event)?.delete(listener);\n    },\n    dispatchEvent: (_event: Event) => true,\n  };\n}\n\n\u002F\u002F NOTE: Event and CustomEvent are NOT needed for standalone connect-solana —\n\u002F\u002F the SDK uses eventemitter3 internally. Add them only if using wagmi.\n","typescript",[260],{"type":41,"tag":78,"props":261,"children":262},{"__ignoreMap":135},[263,272,323,333,342,351,383,391,400,473,534,582,600,631,661,670,714,777,865,922,930,987,1040,1048,1097,1106,1115,1123,1132],{"type":41,"tag":141,"props":264,"children":265},{"class":143,"line":144},[266],{"type":41,"tag":141,"props":267,"children":269},{"style":268},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[270],{"type":47,"value":271},"\u002F\u002F polyfills.ts\n",{"type":41,"tag":141,"props":273,"children":274},{"class":143,"line":25},[275,281,287,293,298,303,308,313,318],{"type":41,"tag":141,"props":276,"children":278},{"style":277},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[279],{"type":47,"value":280},"import",{"type":41,"tag":141,"props":282,"children":284},{"style":283},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[285],{"type":47,"value":286}," {",{"type":41,"tag":141,"props":288,"children":290},{"style":289},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[291],{"type":47,"value":292}," Buffer",{"type":41,"tag":141,"props":294,"children":295},{"style":283},[296],{"type":47,"value":297}," }",{"type":41,"tag":141,"props":299,"children":300},{"style":277},[301],{"type":47,"value":302}," from",{"type":41,"tag":141,"props":304,"children":305},{"style":283},[306],{"type":47,"value":307}," '",{"type":41,"tag":141,"props":309,"children":310},{"style":154},[311],{"type":47,"value":312},"buffer",{"type":41,"tag":141,"props":314,"children":315},{"style":283},[316],{"type":47,"value":317},"'",{"type":41,"tag":141,"props":319,"children":320},{"style":283},[321],{"type":47,"value":322},";\n",{"type":41,"tag":141,"props":324,"children":326},{"class":143,"line":325},3,[327],{"type":41,"tag":141,"props":328,"children":330},{"emptyLinePlaceholder":329},true,[331],{"type":47,"value":332},"\n",{"type":41,"tag":141,"props":334,"children":336},{"class":143,"line":335},4,[337],{"type":41,"tag":141,"props":338,"children":339},{"style":268},[340],{"type":47,"value":341},"\u002F\u002F Buffer — connect-multichain self-polyfills this, but set early as a safety\n",{"type":41,"tag":141,"props":343,"children":345},{"class":143,"line":344},5,[346],{"type":41,"tag":141,"props":347,"children":348},{"style":268},[349],{"type":47,"value":350},"\u002F\u002F net for peer deps (e.g. @solana\u002Fweb3.js) that may load first.\n",{"type":41,"tag":141,"props":352,"children":354},{"class":143,"line":353},6,[355,360,365,370,375,379],{"type":41,"tag":141,"props":356,"children":357},{"style":289},[358],{"type":47,"value":359},"global",{"type":41,"tag":141,"props":361,"children":362},{"style":283},[363],{"type":47,"value":364},".",{"type":41,"tag":141,"props":366,"children":367},{"style":289},[368],{"type":47,"value":369},"Buffer ",{"type":41,"tag":141,"props":371,"children":372},{"style":283},[373],{"type":47,"value":374},"=",{"type":41,"tag":141,"props":376,"children":377},{"style":289},[378],{"type":47,"value":292},{"type":41,"tag":141,"props":380,"children":381},{"style":283},[382],{"type":47,"value":322},{"type":41,"tag":141,"props":384,"children":386},{"class":143,"line":385},7,[387],{"type":41,"tag":141,"props":388,"children":389},{"emptyLinePlaceholder":329},[390],{"type":47,"value":332},{"type":41,"tag":141,"props":392,"children":394},{"class":143,"line":393},8,[395],{"type":41,"tag":141,"props":396,"children":397},{"style":268},[398],{"type":47,"value":399},"\u002F\u002F window object — required for correct platform detection and deeplink behaviour.\n",{"type":41,"tag":141,"props":401,"children":403},{"class":143,"line":402},9,[404,410,415,419,424,430,435,440,445,450,454,459,464,469],{"type":41,"tag":141,"props":405,"children":407},{"style":406},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[408],{"type":47,"value":409},"const",{"type":41,"tag":141,"props":411,"children":412},{"style":289},[413],{"type":47,"value":414}," eventListeners ",{"type":41,"tag":141,"props":416,"children":417},{"style":283},[418],{"type":47,"value":374},{"type":41,"tag":141,"props":420,"children":421},{"style":283},[422],{"type":47,"value":423}," new",{"type":41,"tag":141,"props":425,"children":427},{"style":426},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[428],{"type":47,"value":429}," Map",{"type":41,"tag":141,"props":431,"children":432},{"style":283},[433],{"type":47,"value":434},"\u003C",{"type":41,"tag":141,"props":436,"children":437},{"style":148},[438],{"type":47,"value":439},"string",{"type":41,"tag":141,"props":441,"children":442},{"style":283},[443],{"type":47,"value":444},",",{"type":41,"tag":141,"props":446,"children":447},{"style":148},[448],{"type":47,"value":449}," Set",{"type":41,"tag":141,"props":451,"children":452},{"style":283},[453],{"type":47,"value":434},{"type":41,"tag":141,"props":455,"children":456},{"style":148},[457],{"type":47,"value":458},"EventListener",{"type":41,"tag":141,"props":460,"children":461},{"style":283},[462],{"type":47,"value":463},">>",{"type":41,"tag":141,"props":465,"children":466},{"style":289},[467],{"type":47,"value":468},"()",{"type":41,"tag":141,"props":470,"children":471},{"style":283},[472],{"type":47,"value":322},{"type":41,"tag":141,"props":474,"children":476},{"class":143,"line":475},10,[477,482,487,492,497,501,506,511,515,520,524,529],{"type":41,"tag":141,"props":478,"children":479},{"style":277},[480],{"type":47,"value":481},"if",{"type":41,"tag":141,"props":483,"children":484},{"style":289},[485],{"type":47,"value":486}," (",{"type":41,"tag":141,"props":488,"children":489},{"style":283},[490],{"type":47,"value":491},"typeof",{"type":41,"tag":141,"props":493,"children":494},{"style":289},[495],{"type":47,"value":496}," global",{"type":41,"tag":141,"props":498,"children":499},{"style":283},[500],{"type":47,"value":364},{"type":41,"tag":141,"props":502,"children":503},{"style":289},[504],{"type":47,"value":505},"window ",{"type":41,"tag":141,"props":507,"children":508},{"style":283},[509],{"type":47,"value":510},"===",{"type":41,"tag":141,"props":512,"children":513},{"style":283},[514],{"type":47,"value":307},{"type":41,"tag":141,"props":516,"children":517},{"style":154},[518],{"type":47,"value":519},"undefined",{"type":41,"tag":141,"props":521,"children":522},{"style":283},[523],{"type":47,"value":317},{"type":41,"tag":141,"props":525,"children":526},{"style":289},[527],{"type":47,"value":528},") ",{"type":41,"tag":141,"props":530,"children":531},{"style":283},[532],{"type":47,"value":533},"{\n",{"type":41,"tag":141,"props":535,"children":537},{"class":143,"line":536},11,[538,544,548,553,558,563,567,572,577],{"type":41,"tag":141,"props":539,"children":541},{"style":540},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[542],{"type":47,"value":543},"  (",{"type":41,"tag":141,"props":545,"children":546},{"style":289},[547],{"type":47,"value":359},{"type":41,"tag":141,"props":549,"children":550},{"style":277},[551],{"type":47,"value":552}," as",{"type":41,"tag":141,"props":554,"children":555},{"style":148},[556],{"type":47,"value":557}," any",{"type":41,"tag":141,"props":559,"children":560},{"style":540},[561],{"type":47,"value":562},")",{"type":41,"tag":141,"props":564,"children":565},{"style":283},[566],{"type":47,"value":364},{"type":41,"tag":141,"props":568,"children":569},{"style":289},[570],{"type":47,"value":571},"window",{"type":41,"tag":141,"props":573,"children":574},{"style":283},[575],{"type":47,"value":576}," =",{"type":41,"tag":141,"props":578,"children":579},{"style":283},[580],{"type":47,"value":581}," {\n",{"type":41,"tag":141,"props":583,"children":585},{"class":143,"line":584},12,[586,591,596],{"type":41,"tag":141,"props":587,"children":588},{"style":540},[589],{"type":47,"value":590},"    location",{"type":41,"tag":141,"props":592,"children":593},{"style":283},[594],{"type":47,"value":595},":",{"type":41,"tag":141,"props":597,"children":598},{"style":283},[599],{"type":47,"value":581},{"type":41,"tag":141,"props":601,"children":603},{"class":143,"line":602},13,[604,609,613,617,622,626],{"type":41,"tag":141,"props":605,"children":606},{"style":540},[607],{"type":47,"value":608},"      hostname",{"type":41,"tag":141,"props":610,"children":611},{"style":283},[612],{"type":47,"value":595},{"type":41,"tag":141,"props":614,"children":615},{"style":283},[616],{"type":47,"value":307},{"type":41,"tag":141,"props":618,"children":619},{"style":154},[620],{"type":47,"value":621},"my-rn-app",{"type":41,"tag":141,"props":623,"children":624},{"style":283},[625],{"type":47,"value":317},{"type":41,"tag":141,"props":627,"children":628},{"style":283},[629],{"type":47,"value":630},",\n",{"type":41,"tag":141,"props":632,"children":634},{"class":143,"line":633},14,[635,640,644,648,653,657],{"type":41,"tag":141,"props":636,"children":637},{"style":540},[638],{"type":47,"value":639},"      href",{"type":41,"tag":141,"props":641,"children":642},{"style":283},[643],{"type":47,"value":595},{"type":41,"tag":141,"props":645,"children":646},{"style":283},[647],{"type":47,"value":307},{"type":41,"tag":141,"props":649,"children":650},{"style":154},[651],{"type":47,"value":652},"https:\u002F\u002Fmy-rn-app.local",{"type":41,"tag":141,"props":654,"children":655},{"style":283},[656],{"type":47,"value":317},{"type":41,"tag":141,"props":658,"children":659},{"style":283},[660],{"type":47,"value":630},{"type":41,"tag":141,"props":662,"children":664},{"class":143,"line":663},15,[665],{"type":41,"tag":141,"props":666,"children":667},{"style":283},[668],{"type":47,"value":669},"    },\n",{"type":41,"tag":141,"props":671,"children":673},{"class":143,"line":672},16,[674,679,683,687,692,696,700,705,709],{"type":41,"tag":141,"props":675,"children":676},{"style":540},[677],{"type":47,"value":678},"    navigator",{"type":41,"tag":141,"props":680,"children":681},{"style":283},[682],{"type":47,"value":595},{"type":41,"tag":141,"props":684,"children":685},{"style":283},[686],{"type":47,"value":286},{"type":41,"tag":141,"props":688,"children":689},{"style":540},[690],{"type":47,"value":691}," product",{"type":41,"tag":141,"props":693,"children":694},{"style":283},[695],{"type":47,"value":595},{"type":41,"tag":141,"props":697,"children":698},{"style":283},[699],{"type":47,"value":307},{"type":41,"tag":141,"props":701,"children":702},{"style":154},[703],{"type":47,"value":704},"ReactNative",{"type":41,"tag":141,"props":706,"children":707},{"style":283},[708],{"type":47,"value":317},{"type":41,"tag":141,"props":710,"children":711},{"style":283},[712],{"type":47,"value":713}," },\n",{"type":41,"tag":141,"props":715,"children":717},{"class":143,"line":716},17,[718,723,727,731,737,741,746,750,755,759,764,768,773],{"type":41,"tag":141,"props":719,"children":720},{"style":426},[721],{"type":47,"value":722},"    addEventListener",{"type":41,"tag":141,"props":724,"children":725},{"style":283},[726],{"type":47,"value":595},{"type":41,"tag":141,"props":728,"children":729},{"style":283},[730],{"type":47,"value":486},{"type":41,"tag":141,"props":732,"children":734},{"style":733},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[735],{"type":47,"value":736},"event",{"type":41,"tag":141,"props":738,"children":739},{"style":283},[740],{"type":47,"value":595},{"type":41,"tag":141,"props":742,"children":743},{"style":148},[744],{"type":47,"value":745}," string",{"type":41,"tag":141,"props":747,"children":748},{"style":283},[749],{"type":47,"value":444},{"type":41,"tag":141,"props":751,"children":752},{"style":733},[753],{"type":47,"value":754}," listener",{"type":41,"tag":141,"props":756,"children":757},{"style":283},[758],{"type":47,"value":595},{"type":41,"tag":141,"props":760,"children":761},{"style":148},[762],{"type":47,"value":763}," EventListener",{"type":41,"tag":141,"props":765,"children":766},{"style":283},[767],{"type":47,"value":562},{"type":41,"tag":141,"props":769,"children":770},{"style":406},[771],{"type":47,"value":772}," =>",{"type":41,"tag":141,"props":774,"children":775},{"style":283},[776],{"type":47,"value":581},{"type":41,"tag":141,"props":778,"children":780},{"class":143,"line":779},18,[781,786,790,795,800,804,809,814,818,823,827,831,836,840,844,848,852,856,861],{"type":41,"tag":141,"props":782,"children":783},{"style":277},[784],{"type":47,"value":785},"      if",{"type":41,"tag":141,"props":787,"children":788},{"style":540},[789],{"type":47,"value":486},{"type":41,"tag":141,"props":791,"children":792},{"style":283},[793],{"type":47,"value":794},"!",{"type":41,"tag":141,"props":796,"children":797},{"style":289},[798],{"type":47,"value":799},"eventListeners",{"type":41,"tag":141,"props":801,"children":802},{"style":283},[803],{"type":47,"value":364},{"type":41,"tag":141,"props":805,"children":806},{"style":426},[807],{"type":47,"value":808},"has",{"type":41,"tag":141,"props":810,"children":811},{"style":540},[812],{"type":47,"value":813},"(",{"type":41,"tag":141,"props":815,"children":816},{"style":289},[817],{"type":47,"value":736},{"type":41,"tag":141,"props":819,"children":820},{"style":540},[821],{"type":47,"value":822},")) ",{"type":41,"tag":141,"props":824,"children":825},{"style":289},[826],{"type":47,"value":799},{"type":41,"tag":141,"props":828,"children":829},{"style":283},[830],{"type":47,"value":364},{"type":41,"tag":141,"props":832,"children":833},{"style":426},[834],{"type":47,"value":835},"set",{"type":41,"tag":141,"props":837,"children":838},{"style":540},[839],{"type":47,"value":813},{"type":41,"tag":141,"props":841,"children":842},{"style":289},[843],{"type":47,"value":736},{"type":41,"tag":141,"props":845,"children":846},{"style":283},[847],{"type":47,"value":444},{"type":41,"tag":141,"props":849,"children":850},{"style":283},[851],{"type":47,"value":423},{"type":41,"tag":141,"props":853,"children":854},{"style":426},[855],{"type":47,"value":449},{"type":41,"tag":141,"props":857,"children":858},{"style":540},[859],{"type":47,"value":860},"())",{"type":41,"tag":141,"props":862,"children":863},{"style":283},[864],{"type":47,"value":322},{"type":41,"tag":141,"props":866,"children":868},{"class":143,"line":867},19,[869,874,878,883,887,891,895,900,905,909,914,918],{"type":41,"tag":141,"props":870,"children":871},{"style":289},[872],{"type":47,"value":873},"      eventListeners",{"type":41,"tag":141,"props":875,"children":876},{"style":283},[877],{"type":47,"value":364},{"type":41,"tag":141,"props":879,"children":880},{"style":426},[881],{"type":47,"value":882},"get",{"type":41,"tag":141,"props":884,"children":885},{"style":540},[886],{"type":47,"value":813},{"type":41,"tag":141,"props":888,"children":889},{"style":289},[890],{"type":47,"value":736},{"type":41,"tag":141,"props":892,"children":893},{"style":540},[894],{"type":47,"value":562},{"type":41,"tag":141,"props":896,"children":897},{"style":283},[898],{"type":47,"value":899},"?.",{"type":41,"tag":141,"props":901,"children":902},{"style":426},[903],{"type":47,"value":904},"add",{"type":41,"tag":141,"props":906,"children":907},{"style":540},[908],{"type":47,"value":813},{"type":41,"tag":141,"props":910,"children":911},{"style":289},[912],{"type":47,"value":913},"listener",{"type":41,"tag":141,"props":915,"children":916},{"style":540},[917],{"type":47,"value":562},{"type":41,"tag":141,"props":919,"children":920},{"style":283},[921],{"type":47,"value":322},{"type":41,"tag":141,"props":923,"children":925},{"class":143,"line":924},20,[926],{"type":41,"tag":141,"props":927,"children":928},{"style":283},[929],{"type":47,"value":669},{"type":41,"tag":141,"props":931,"children":933},{"class":143,"line":932},21,[934,939,943,947,951,955,959,963,967,971,975,979,983],{"type":41,"tag":141,"props":935,"children":936},{"style":426},[937],{"type":47,"value":938},"    removeEventListener",{"type":41,"tag":141,"props":940,"children":941},{"style":283},[942],{"type":47,"value":595},{"type":41,"tag":141,"props":944,"children":945},{"style":283},[946],{"type":47,"value":486},{"type":41,"tag":141,"props":948,"children":949},{"style":733},[950],{"type":47,"value":736},{"type":41,"tag":141,"props":952,"children":953},{"style":283},[954],{"type":47,"value":595},{"type":41,"tag":141,"props":956,"children":957},{"style":148},[958],{"type":47,"value":745},{"type":41,"tag":141,"props":960,"children":961},{"style":283},[962],{"type":47,"value":444},{"type":41,"tag":141,"props":964,"children":965},{"style":733},[966],{"type":47,"value":754},{"type":41,"tag":141,"props":968,"children":969},{"style":283},[970],{"type":47,"value":595},{"type":41,"tag":141,"props":972,"children":973},{"style":148},[974],{"type":47,"value":763},{"type":41,"tag":141,"props":976,"children":977},{"style":283},[978],{"type":47,"value":562},{"type":41,"tag":141,"props":980,"children":981},{"style":406},[982],{"type":47,"value":772},{"type":41,"tag":141,"props":984,"children":985},{"style":283},[986],{"type":47,"value":581},{"type":41,"tag":141,"props":988,"children":990},{"class":143,"line":989},22,[991,995,999,1003,1007,1011,1015,1019,1024,1028,1032,1036],{"type":41,"tag":141,"props":992,"children":993},{"style":289},[994],{"type":47,"value":873},{"type":41,"tag":141,"props":996,"children":997},{"style":283},[998],{"type":47,"value":364},{"type":41,"tag":141,"props":1000,"children":1001},{"style":426},[1002],{"type":47,"value":882},{"type":41,"tag":141,"props":1004,"children":1005},{"style":540},[1006],{"type":47,"value":813},{"type":41,"tag":141,"props":1008,"children":1009},{"style":289},[1010],{"type":47,"value":736},{"type":41,"tag":141,"props":1012,"children":1013},{"style":540},[1014],{"type":47,"value":562},{"type":41,"tag":141,"props":1016,"children":1017},{"style":283},[1018],{"type":47,"value":899},{"type":41,"tag":141,"props":1020,"children":1021},{"style":426},[1022],{"type":47,"value":1023},"delete",{"type":41,"tag":141,"props":1025,"children":1026},{"style":540},[1027],{"type":47,"value":813},{"type":41,"tag":141,"props":1029,"children":1030},{"style":289},[1031],{"type":47,"value":913},{"type":41,"tag":141,"props":1033,"children":1034},{"style":540},[1035],{"type":47,"value":562},{"type":41,"tag":141,"props":1037,"children":1038},{"style":283},[1039],{"type":47,"value":322},{"type":41,"tag":141,"props":1041,"children":1043},{"class":143,"line":1042},23,[1044],{"type":41,"tag":141,"props":1045,"children":1046},{"style":283},[1047],{"type":47,"value":669},{"type":41,"tag":141,"props":1049,"children":1051},{"class":143,"line":1050},24,[1052,1057,1061,1065,1070,1074,1079,1083,1087,1093],{"type":41,"tag":141,"props":1053,"children":1054},{"style":426},[1055],{"type":47,"value":1056},"    dispatchEvent",{"type":41,"tag":141,"props":1058,"children":1059},{"style":283},[1060],{"type":47,"value":595},{"type":41,"tag":141,"props":1062,"children":1063},{"style":283},[1064],{"type":47,"value":486},{"type":41,"tag":141,"props":1066,"children":1067},{"style":733},[1068],{"type":47,"value":1069},"_event",{"type":41,"tag":141,"props":1071,"children":1072},{"style":283},[1073],{"type":47,"value":595},{"type":41,"tag":141,"props":1075,"children":1076},{"style":148},[1077],{"type":47,"value":1078}," Event",{"type":41,"tag":141,"props":1080,"children":1081},{"style":283},[1082],{"type":47,"value":562},{"type":41,"tag":141,"props":1084,"children":1085},{"style":406},[1086],{"type":47,"value":772},{"type":41,"tag":141,"props":1088,"children":1090},{"style":1089},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1091],{"type":47,"value":1092}," true",{"type":41,"tag":141,"props":1094,"children":1095},{"style":283},[1096],{"type":47,"value":630},{"type":41,"tag":141,"props":1098,"children":1100},{"class":143,"line":1099},25,[1101],{"type":41,"tag":141,"props":1102,"children":1103},{"style":283},[1104],{"type":47,"value":1105},"  };\n",{"type":41,"tag":141,"props":1107,"children":1109},{"class":143,"line":1108},26,[1110],{"type":41,"tag":141,"props":1111,"children":1112},{"style":283},[1113],{"type":47,"value":1114},"}\n",{"type":41,"tag":141,"props":1116,"children":1118},{"class":143,"line":1117},27,[1119],{"type":41,"tag":141,"props":1120,"children":1121},{"emptyLinePlaceholder":329},[1122],{"type":47,"value":332},{"type":41,"tag":141,"props":1124,"children":1126},{"class":143,"line":1125},28,[1127],{"type":41,"tag":141,"props":1128,"children":1129},{"style":268},[1130],{"type":47,"value":1131},"\u002F\u002F NOTE: Event and CustomEvent are NOT needed for standalone connect-solana —\n",{"type":41,"tag":141,"props":1133,"children":1135},{"class":143,"line":1134},29,[1136],{"type":41,"tag":141,"props":1137,"children":1138},{"style":268},[1139],{"type":47,"value":1140},"\u002F\u002F the SDK uses eventemitter3 internally. Add them only if using wagmi.\n",{"type":41,"tag":123,"props":1142,"children":1144},{"id":1143},"step-3-import-polyfills-first-in-the-entry-file",[1145],{"type":47,"value":1146},"Step 3: Import polyfills FIRST in the entry file",{"type":41,"tag":57,"props":1148,"children":1149},{},[1150,1156,1158,1163,1165,1170],{"type":41,"tag":78,"props":1151,"children":1153},{"className":1152},[],[1154],{"type":47,"value":1155},"react-native-get-random-values",{"type":47,"value":1157}," must be the ",{"type":41,"tag":109,"props":1159,"children":1160},{},[1161],{"type":47,"value":1162},"very first import",{"type":47,"value":1164}," in the entry file — it cannot be inside ",{"type":41,"tag":78,"props":1166,"children":1168},{"className":1167},[],[1169],{"type":47,"value":251},{"type":47,"value":1171}," because Metro may have already touched crypto by the time that file runs.",{"type":41,"tag":130,"props":1173,"children":1175},{"className":256,"code":1174,"language":258,"meta":135,"style":135},"\u002F\u002F index.js or App.tsx — import order is critical\nimport 'react-native-get-random-values'; \u002F\u002F MUST be first (needed for RN \u003C 0.72; safe to include on 0.72+)\nimport '.\u002Fpolyfills';\n\nimport { AppRegistry } from 'react-native';\nimport App from '.\u002FApp';\nimport { name as appName } from '.\u002Fapp.json';\n\nAppRegistry.registerComponent(appName, () => App);\n",[1176],{"type":41,"tag":78,"props":1177,"children":1178},{"__ignoreMap":135},[1179,1187,1216,1240,1247,1287,1321,1371,1378],{"type":41,"tag":141,"props":1180,"children":1181},{"class":143,"line":144},[1182],{"type":41,"tag":141,"props":1183,"children":1184},{"style":268},[1185],{"type":47,"value":1186},"\u002F\u002F index.js or App.tsx — import order is critical\n",{"type":41,"tag":141,"props":1188,"children":1189},{"class":143,"line":25},[1190,1194,1198,1202,1206,1211],{"type":41,"tag":141,"props":1191,"children":1192},{"style":277},[1193],{"type":47,"value":280},{"type":41,"tag":141,"props":1195,"children":1196},{"style":283},[1197],{"type":47,"value":307},{"type":41,"tag":141,"props":1199,"children":1200},{"style":154},[1201],{"type":47,"value":1155},{"type":41,"tag":141,"props":1203,"children":1204},{"style":283},[1205],{"type":47,"value":317},{"type":41,"tag":141,"props":1207,"children":1208},{"style":283},[1209],{"type":47,"value":1210},";",{"type":41,"tag":141,"props":1212,"children":1213},{"style":268},[1214],{"type":47,"value":1215}," \u002F\u002F MUST be first (needed for RN \u003C 0.72; safe to include on 0.72+)\n",{"type":41,"tag":141,"props":1217,"children":1218},{"class":143,"line":325},[1219,1223,1227,1232,1236],{"type":41,"tag":141,"props":1220,"children":1221},{"style":277},[1222],{"type":47,"value":280},{"type":41,"tag":141,"props":1224,"children":1225},{"style":283},[1226],{"type":47,"value":307},{"type":41,"tag":141,"props":1228,"children":1229},{"style":154},[1230],{"type":47,"value":1231},".\u002Fpolyfills",{"type":41,"tag":141,"props":1233,"children":1234},{"style":283},[1235],{"type":47,"value":317},{"type":41,"tag":141,"props":1237,"children":1238},{"style":283},[1239],{"type":47,"value":322},{"type":41,"tag":141,"props":1241,"children":1242},{"class":143,"line":335},[1243],{"type":41,"tag":141,"props":1244,"children":1245},{"emptyLinePlaceholder":329},[1246],{"type":47,"value":332},{"type":41,"tag":141,"props":1248,"children":1249},{"class":143,"line":344},[1250,1254,1258,1263,1267,1271,1275,1279,1283],{"type":41,"tag":141,"props":1251,"children":1252},{"style":277},[1253],{"type":47,"value":280},{"type":41,"tag":141,"props":1255,"children":1256},{"style":283},[1257],{"type":47,"value":286},{"type":41,"tag":141,"props":1259,"children":1260},{"style":289},[1261],{"type":47,"value":1262}," AppRegistry",{"type":41,"tag":141,"props":1264,"children":1265},{"style":283},[1266],{"type":47,"value":297},{"type":41,"tag":141,"props":1268,"children":1269},{"style":277},[1270],{"type":47,"value":302},{"type":41,"tag":141,"props":1272,"children":1273},{"style":283},[1274],{"type":47,"value":307},{"type":41,"tag":141,"props":1276,"children":1277},{"style":154},[1278],{"type":47,"value":14},{"type":41,"tag":141,"props":1280,"children":1281},{"style":283},[1282],{"type":47,"value":317},{"type":41,"tag":141,"props":1284,"children":1285},{"style":283},[1286],{"type":47,"value":322},{"type":41,"tag":141,"props":1288,"children":1289},{"class":143,"line":353},[1290,1294,1299,1304,1308,1313,1317],{"type":41,"tag":141,"props":1291,"children":1292},{"style":277},[1293],{"type":47,"value":280},{"type":41,"tag":141,"props":1295,"children":1296},{"style":289},[1297],{"type":47,"value":1298}," App ",{"type":41,"tag":141,"props":1300,"children":1301},{"style":277},[1302],{"type":47,"value":1303},"from",{"type":41,"tag":141,"props":1305,"children":1306},{"style":283},[1307],{"type":47,"value":307},{"type":41,"tag":141,"props":1309,"children":1310},{"style":154},[1311],{"type":47,"value":1312},".\u002FApp",{"type":41,"tag":141,"props":1314,"children":1315},{"style":283},[1316],{"type":47,"value":317},{"type":41,"tag":141,"props":1318,"children":1319},{"style":283},[1320],{"type":47,"value":322},{"type":41,"tag":141,"props":1322,"children":1323},{"class":143,"line":385},[1324,1328,1332,1337,1341,1346,1350,1354,1358,1363,1367],{"type":41,"tag":141,"props":1325,"children":1326},{"style":277},[1327],{"type":47,"value":280},{"type":41,"tag":141,"props":1329,"children":1330},{"style":283},[1331],{"type":47,"value":286},{"type":41,"tag":141,"props":1333,"children":1334},{"style":289},[1335],{"type":47,"value":1336}," name",{"type":41,"tag":141,"props":1338,"children":1339},{"style":277},[1340],{"type":47,"value":552},{"type":41,"tag":141,"props":1342,"children":1343},{"style":289},[1344],{"type":47,"value":1345}," appName",{"type":41,"tag":141,"props":1347,"children":1348},{"style":283},[1349],{"type":47,"value":297},{"type":41,"tag":141,"props":1351,"children":1352},{"style":277},[1353],{"type":47,"value":302},{"type":41,"tag":141,"props":1355,"children":1356},{"style":283},[1357],{"type":47,"value":307},{"type":41,"tag":141,"props":1359,"children":1360},{"style":154},[1361],{"type":47,"value":1362},".\u002Fapp.json",{"type":41,"tag":141,"props":1364,"children":1365},{"style":283},[1366],{"type":47,"value":317},{"type":41,"tag":141,"props":1368,"children":1369},{"style":283},[1370],{"type":47,"value":322},{"type":41,"tag":141,"props":1372,"children":1373},{"class":143,"line":393},[1374],{"type":41,"tag":141,"props":1375,"children":1376},{"emptyLinePlaceholder":329},[1377],{"type":47,"value":332},{"type":41,"tag":141,"props":1379,"children":1380},{"class":143,"line":402},[1381,1386,1390,1395,1400,1404,1409,1413,1418],{"type":41,"tag":141,"props":1382,"children":1383},{"style":289},[1384],{"type":47,"value":1385},"AppRegistry",{"type":41,"tag":141,"props":1387,"children":1388},{"style":283},[1389],{"type":47,"value":364},{"type":41,"tag":141,"props":1391,"children":1392},{"style":426},[1393],{"type":47,"value":1394},"registerComponent",{"type":41,"tag":141,"props":1396,"children":1397},{"style":289},[1398],{"type":47,"value":1399},"(appName",{"type":41,"tag":141,"props":1401,"children":1402},{"style":283},[1403],{"type":47,"value":444},{"type":41,"tag":141,"props":1405,"children":1406},{"style":283},[1407],{"type":47,"value":1408}," ()",{"type":41,"tag":141,"props":1410,"children":1411},{"style":406},[1412],{"type":47,"value":772},{"type":41,"tag":141,"props":1414,"children":1415},{"style":289},[1416],{"type":47,"value":1417}," App)",{"type":41,"tag":141,"props":1419,"children":1420},{"style":283},[1421],{"type":47,"value":322},{"type":41,"tag":123,"props":1423,"children":1425},{"id":1424},"step-4-configure-metro-shims",[1426],{"type":47,"value":1427},"Step 4: Configure metro shims",{"type":41,"tag":57,"props":1429,"children":1430},{},[1431,1433,1439,1441,1447],{"type":47,"value":1432},"Add ",{"type":41,"tag":78,"props":1434,"children":1436},{"className":1435},[],[1437],{"type":47,"value":1438},"extraNodeModules",{"type":47,"value":1440}," to ",{"type":41,"tag":78,"props":1442,"children":1444},{"className":1443},[],[1445],{"type":47,"value":1446},"metro.config.js",{"type":47,"value":1448}," so the bundler can resolve Node.js built-in modules:",{"type":41,"tag":130,"props":1450,"children":1454},{"className":1451,"code":1452,"language":1453,"meta":135,"style":135},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const { getDefaultConfig, mergeConfig } = require('@react-native\u002Fmetro-config');\nconst path = require('path');\n\n\u002F\u002F src\u002Fempty-module.js: `module.exports = {};`\n\u002F\u002F Only `stream` needs a real shim — the other Node built-ins are referenced\n\u002F\u002F by transitive deps but never called at runtime in React Native.\nconst emptyModule = path.resolve(__dirname, 'src', 'empty-module.js');\n\nconst config = {\n  resolver: {\n    extraNodeModules: {\n      stream: require.resolve('readable-stream'),\n      crypto: emptyModule,\n      http: emptyModule,\n      https: emptyModule,\n      net: emptyModule,\n      tls: emptyModule,\n      zlib: emptyModule,\n      os: emptyModule,\n      dns: emptyModule,\n      assert: emptyModule,\n      url: emptyModule,\n      path: emptyModule,\n      fs: emptyModule,\n    },\n  },\n};\n\nmodule.exports = mergeConfig(getDefaultConfig(__dirname), config);\n","javascript",[1455],{"type":41,"tag":78,"props":1456,"children":1457},{"__ignoreMap":135},[1458,1522,1567,1574,1582,1590,1598,1675,1682,1702,1718,1734,1783,1804,1824,1844,1864,1884,1904,1924,1944,1964,1984,2004,2024,2031,2039,2047,2054],{"type":41,"tag":141,"props":1459,"children":1460},{"class":143,"line":144},[1461,1465,1469,1474,1478,1483,1488,1492,1497,1501,1505,1510,1514,1518],{"type":41,"tag":141,"props":1462,"children":1463},{"style":406},[1464],{"type":47,"value":409},{"type":41,"tag":141,"props":1466,"children":1467},{"style":283},[1468],{"type":47,"value":286},{"type":41,"tag":141,"props":1470,"children":1471},{"style":289},[1472],{"type":47,"value":1473}," getDefaultConfig",{"type":41,"tag":141,"props":1475,"children":1476},{"style":283},[1477],{"type":47,"value":444},{"type":41,"tag":141,"props":1479,"children":1480},{"style":289},[1481],{"type":47,"value":1482}," mergeConfig ",{"type":41,"tag":141,"props":1484,"children":1485},{"style":283},[1486],{"type":47,"value":1487},"}",{"type":41,"tag":141,"props":1489,"children":1490},{"style":283},[1491],{"type":47,"value":576},{"type":41,"tag":141,"props":1493,"children":1494},{"style":426},[1495],{"type":47,"value":1496}," require",{"type":41,"tag":141,"props":1498,"children":1499},{"style":289},[1500],{"type":47,"value":813},{"type":41,"tag":141,"props":1502,"children":1503},{"style":283},[1504],{"type":47,"value":317},{"type":41,"tag":141,"props":1506,"children":1507},{"style":154},[1508],{"type":47,"value":1509},"@react-native\u002Fmetro-config",{"type":41,"tag":141,"props":1511,"children":1512},{"style":283},[1513],{"type":47,"value":317},{"type":41,"tag":141,"props":1515,"children":1516},{"style":289},[1517],{"type":47,"value":562},{"type":41,"tag":141,"props":1519,"children":1520},{"style":283},[1521],{"type":47,"value":322},{"type":41,"tag":141,"props":1523,"children":1524},{"class":143,"line":25},[1525,1529,1534,1538,1542,1546,1550,1555,1559,1563],{"type":41,"tag":141,"props":1526,"children":1527},{"style":406},[1528],{"type":47,"value":409},{"type":41,"tag":141,"props":1530,"children":1531},{"style":289},[1532],{"type":47,"value":1533}," path ",{"type":41,"tag":141,"props":1535,"children":1536},{"style":283},[1537],{"type":47,"value":374},{"type":41,"tag":141,"props":1539,"children":1540},{"style":426},[1541],{"type":47,"value":1496},{"type":41,"tag":141,"props":1543,"children":1544},{"style":289},[1545],{"type":47,"value":813},{"type":41,"tag":141,"props":1547,"children":1548},{"style":283},[1549],{"type":47,"value":317},{"type":41,"tag":141,"props":1551,"children":1552},{"style":154},[1553],{"type":47,"value":1554},"path",{"type":41,"tag":141,"props":1556,"children":1557},{"style":283},[1558],{"type":47,"value":317},{"type":41,"tag":141,"props":1560,"children":1561},{"style":289},[1562],{"type":47,"value":562},{"type":41,"tag":141,"props":1564,"children":1565},{"style":283},[1566],{"type":47,"value":322},{"type":41,"tag":141,"props":1568,"children":1569},{"class":143,"line":325},[1570],{"type":41,"tag":141,"props":1571,"children":1572},{"emptyLinePlaceholder":329},[1573],{"type":47,"value":332},{"type":41,"tag":141,"props":1575,"children":1576},{"class":143,"line":335},[1577],{"type":41,"tag":141,"props":1578,"children":1579},{"style":268},[1580],{"type":47,"value":1581},"\u002F\u002F src\u002Fempty-module.js: `module.exports = {};`\n",{"type":41,"tag":141,"props":1583,"children":1584},{"class":143,"line":344},[1585],{"type":41,"tag":141,"props":1586,"children":1587},{"style":268},[1588],{"type":47,"value":1589},"\u002F\u002F Only `stream` needs a real shim — the other Node built-ins are referenced\n",{"type":41,"tag":141,"props":1591,"children":1592},{"class":143,"line":353},[1593],{"type":41,"tag":141,"props":1594,"children":1595},{"style":268},[1596],{"type":47,"value":1597},"\u002F\u002F by transitive deps but never called at runtime in React Native.\n",{"type":41,"tag":141,"props":1599,"children":1600},{"class":143,"line":385},[1601,1605,1610,1614,1619,1623,1628,1633,1637,1641,1646,1650,1654,1658,1663,1667,1671],{"type":41,"tag":141,"props":1602,"children":1603},{"style":406},[1604],{"type":47,"value":409},{"type":41,"tag":141,"props":1606,"children":1607},{"style":289},[1608],{"type":47,"value":1609}," emptyModule ",{"type":41,"tag":141,"props":1611,"children":1612},{"style":283},[1613],{"type":47,"value":374},{"type":41,"tag":141,"props":1615,"children":1616},{"style":289},[1617],{"type":47,"value":1618}," path",{"type":41,"tag":141,"props":1620,"children":1621},{"style":283},[1622],{"type":47,"value":364},{"type":41,"tag":141,"props":1624,"children":1625},{"style":426},[1626],{"type":47,"value":1627},"resolve",{"type":41,"tag":141,"props":1629,"children":1630},{"style":289},[1631],{"type":47,"value":1632},"(__dirname",{"type":41,"tag":141,"props":1634,"children":1635},{"style":283},[1636],{"type":47,"value":444},{"type":41,"tag":141,"props":1638,"children":1639},{"style":283},[1640],{"type":47,"value":307},{"type":41,"tag":141,"props":1642,"children":1643},{"style":154},[1644],{"type":47,"value":1645},"src",{"type":41,"tag":141,"props":1647,"children":1648},{"style":283},[1649],{"type":47,"value":317},{"type":41,"tag":141,"props":1651,"children":1652},{"style":283},[1653],{"type":47,"value":444},{"type":41,"tag":141,"props":1655,"children":1656},{"style":283},[1657],{"type":47,"value":307},{"type":41,"tag":141,"props":1659,"children":1660},{"style":154},[1661],{"type":47,"value":1662},"empty-module.js",{"type":41,"tag":141,"props":1664,"children":1665},{"style":283},[1666],{"type":47,"value":317},{"type":41,"tag":141,"props":1668,"children":1669},{"style":289},[1670],{"type":47,"value":562},{"type":41,"tag":141,"props":1672,"children":1673},{"style":283},[1674],{"type":47,"value":322},{"type":41,"tag":141,"props":1676,"children":1677},{"class":143,"line":393},[1678],{"type":41,"tag":141,"props":1679,"children":1680},{"emptyLinePlaceholder":329},[1681],{"type":47,"value":332},{"type":41,"tag":141,"props":1683,"children":1684},{"class":143,"line":402},[1685,1689,1694,1698],{"type":41,"tag":141,"props":1686,"children":1687},{"style":406},[1688],{"type":47,"value":409},{"type":41,"tag":141,"props":1690,"children":1691},{"style":289},[1692],{"type":47,"value":1693}," config ",{"type":41,"tag":141,"props":1695,"children":1696},{"style":283},[1697],{"type":47,"value":374},{"type":41,"tag":141,"props":1699,"children":1700},{"style":283},[1701],{"type":47,"value":581},{"type":41,"tag":141,"props":1703,"children":1704},{"class":143,"line":475},[1705,1710,1714],{"type":41,"tag":141,"props":1706,"children":1707},{"style":540},[1708],{"type":47,"value":1709},"  resolver",{"type":41,"tag":141,"props":1711,"children":1712},{"style":283},[1713],{"type":47,"value":595},{"type":41,"tag":141,"props":1715,"children":1716},{"style":283},[1717],{"type":47,"value":581},{"type":41,"tag":141,"props":1719,"children":1720},{"class":143,"line":536},[1721,1726,1730],{"type":41,"tag":141,"props":1722,"children":1723},{"style":540},[1724],{"type":47,"value":1725},"    extraNodeModules",{"type":41,"tag":141,"props":1727,"children":1728},{"style":283},[1729],{"type":47,"value":595},{"type":41,"tag":141,"props":1731,"children":1732},{"style":283},[1733],{"type":47,"value":581},{"type":41,"tag":141,"props":1735,"children":1736},{"class":143,"line":584},[1737,1742,1746,1750,1754,1758,1762,1766,1771,1775,1779],{"type":41,"tag":141,"props":1738,"children":1739},{"style":540},[1740],{"type":47,"value":1741},"      stream",{"type":41,"tag":141,"props":1743,"children":1744},{"style":283},[1745],{"type":47,"value":595},{"type":41,"tag":141,"props":1747,"children":1748},{"style":289},[1749],{"type":47,"value":1496},{"type":41,"tag":141,"props":1751,"children":1752},{"style":283},[1753],{"type":47,"value":364},{"type":41,"tag":141,"props":1755,"children":1756},{"style":426},[1757],{"type":47,"value":1627},{"type":41,"tag":141,"props":1759,"children":1760},{"style":289},[1761],{"type":47,"value":813},{"type":41,"tag":141,"props":1763,"children":1764},{"style":283},[1765],{"type":47,"value":317},{"type":41,"tag":141,"props":1767,"children":1768},{"style":154},[1769],{"type":47,"value":1770},"readable-stream",{"type":41,"tag":141,"props":1772,"children":1773},{"style":283},[1774],{"type":47,"value":317},{"type":41,"tag":141,"props":1776,"children":1777},{"style":289},[1778],{"type":47,"value":562},{"type":41,"tag":141,"props":1780,"children":1781},{"style":283},[1782],{"type":47,"value":630},{"type":41,"tag":141,"props":1784,"children":1785},{"class":143,"line":602},[1786,1791,1795,1800],{"type":41,"tag":141,"props":1787,"children":1788},{"style":540},[1789],{"type":47,"value":1790},"      crypto",{"type":41,"tag":141,"props":1792,"children":1793},{"style":283},[1794],{"type":47,"value":595},{"type":41,"tag":141,"props":1796,"children":1797},{"style":289},[1798],{"type":47,"value":1799}," emptyModule",{"type":41,"tag":141,"props":1801,"children":1802},{"style":283},[1803],{"type":47,"value":630},{"type":41,"tag":141,"props":1805,"children":1806},{"class":143,"line":633},[1807,1812,1816,1820],{"type":41,"tag":141,"props":1808,"children":1809},{"style":540},[1810],{"type":47,"value":1811},"      http",{"type":41,"tag":141,"props":1813,"children":1814},{"style":283},[1815],{"type":47,"value":595},{"type":41,"tag":141,"props":1817,"children":1818},{"style":289},[1819],{"type":47,"value":1799},{"type":41,"tag":141,"props":1821,"children":1822},{"style":283},[1823],{"type":47,"value":630},{"type":41,"tag":141,"props":1825,"children":1826},{"class":143,"line":663},[1827,1832,1836,1840],{"type":41,"tag":141,"props":1828,"children":1829},{"style":540},[1830],{"type":47,"value":1831},"      https",{"type":41,"tag":141,"props":1833,"children":1834},{"style":283},[1835],{"type":47,"value":595},{"type":41,"tag":141,"props":1837,"children":1838},{"style":289},[1839],{"type":47,"value":1799},{"type":41,"tag":141,"props":1841,"children":1842},{"style":283},[1843],{"type":47,"value":630},{"type":41,"tag":141,"props":1845,"children":1846},{"class":143,"line":672},[1847,1852,1856,1860],{"type":41,"tag":141,"props":1848,"children":1849},{"style":540},[1850],{"type":47,"value":1851},"      net",{"type":41,"tag":141,"props":1853,"children":1854},{"style":283},[1855],{"type":47,"value":595},{"type":41,"tag":141,"props":1857,"children":1858},{"style":289},[1859],{"type":47,"value":1799},{"type":41,"tag":141,"props":1861,"children":1862},{"style":283},[1863],{"type":47,"value":630},{"type":41,"tag":141,"props":1865,"children":1866},{"class":143,"line":716},[1867,1872,1876,1880],{"type":41,"tag":141,"props":1868,"children":1869},{"style":540},[1870],{"type":47,"value":1871},"      tls",{"type":41,"tag":141,"props":1873,"children":1874},{"style":283},[1875],{"type":47,"value":595},{"type":41,"tag":141,"props":1877,"children":1878},{"style":289},[1879],{"type":47,"value":1799},{"type":41,"tag":141,"props":1881,"children":1882},{"style":283},[1883],{"type":47,"value":630},{"type":41,"tag":141,"props":1885,"children":1886},{"class":143,"line":779},[1887,1892,1896,1900],{"type":41,"tag":141,"props":1888,"children":1889},{"style":540},[1890],{"type":47,"value":1891},"      zlib",{"type":41,"tag":141,"props":1893,"children":1894},{"style":283},[1895],{"type":47,"value":595},{"type":41,"tag":141,"props":1897,"children":1898},{"style":289},[1899],{"type":47,"value":1799},{"type":41,"tag":141,"props":1901,"children":1902},{"style":283},[1903],{"type":47,"value":630},{"type":41,"tag":141,"props":1905,"children":1906},{"class":143,"line":867},[1907,1912,1916,1920],{"type":41,"tag":141,"props":1908,"children":1909},{"style":540},[1910],{"type":47,"value":1911},"      os",{"type":41,"tag":141,"props":1913,"children":1914},{"style":283},[1915],{"type":47,"value":595},{"type":41,"tag":141,"props":1917,"children":1918},{"style":289},[1919],{"type":47,"value":1799},{"type":41,"tag":141,"props":1921,"children":1922},{"style":283},[1923],{"type":47,"value":630},{"type":41,"tag":141,"props":1925,"children":1926},{"class":143,"line":924},[1927,1932,1936,1940],{"type":41,"tag":141,"props":1928,"children":1929},{"style":540},[1930],{"type":47,"value":1931},"      dns",{"type":41,"tag":141,"props":1933,"children":1934},{"style":283},[1935],{"type":47,"value":595},{"type":41,"tag":141,"props":1937,"children":1938},{"style":289},[1939],{"type":47,"value":1799},{"type":41,"tag":141,"props":1941,"children":1942},{"style":283},[1943],{"type":47,"value":630},{"type":41,"tag":141,"props":1945,"children":1946},{"class":143,"line":932},[1947,1952,1956,1960],{"type":41,"tag":141,"props":1948,"children":1949},{"style":540},[1950],{"type":47,"value":1951},"      assert",{"type":41,"tag":141,"props":1953,"children":1954},{"style":283},[1955],{"type":47,"value":595},{"type":41,"tag":141,"props":1957,"children":1958},{"style":289},[1959],{"type":47,"value":1799},{"type":41,"tag":141,"props":1961,"children":1962},{"style":283},[1963],{"type":47,"value":630},{"type":41,"tag":141,"props":1965,"children":1966},{"class":143,"line":989},[1967,1972,1976,1980],{"type":41,"tag":141,"props":1968,"children":1969},{"style":540},[1970],{"type":47,"value":1971},"      url",{"type":41,"tag":141,"props":1973,"children":1974},{"style":283},[1975],{"type":47,"value":595},{"type":41,"tag":141,"props":1977,"children":1978},{"style":289},[1979],{"type":47,"value":1799},{"type":41,"tag":141,"props":1981,"children":1982},{"style":283},[1983],{"type":47,"value":630},{"type":41,"tag":141,"props":1985,"children":1986},{"class":143,"line":1042},[1987,1992,1996,2000],{"type":41,"tag":141,"props":1988,"children":1989},{"style":540},[1990],{"type":47,"value":1991},"      path",{"type":41,"tag":141,"props":1993,"children":1994},{"style":283},[1995],{"type":47,"value":595},{"type":41,"tag":141,"props":1997,"children":1998},{"style":289},[1999],{"type":47,"value":1799},{"type":41,"tag":141,"props":2001,"children":2002},{"style":283},[2003],{"type":47,"value":630},{"type":41,"tag":141,"props":2005,"children":2006},{"class":143,"line":1050},[2007,2012,2016,2020],{"type":41,"tag":141,"props":2008,"children":2009},{"style":540},[2010],{"type":47,"value":2011},"      fs",{"type":41,"tag":141,"props":2013,"children":2014},{"style":283},[2015],{"type":47,"value":595},{"type":41,"tag":141,"props":2017,"children":2018},{"style":289},[2019],{"type":47,"value":1799},{"type":41,"tag":141,"props":2021,"children":2022},{"style":283},[2023],{"type":47,"value":630},{"type":41,"tag":141,"props":2025,"children":2026},{"class":143,"line":1099},[2027],{"type":41,"tag":141,"props":2028,"children":2029},{"style":283},[2030],{"type":47,"value":669},{"type":41,"tag":141,"props":2032,"children":2033},{"class":143,"line":1108},[2034],{"type":41,"tag":141,"props":2035,"children":2036},{"style":283},[2037],{"type":47,"value":2038},"  },\n",{"type":41,"tag":141,"props":2040,"children":2041},{"class":143,"line":1117},[2042],{"type":41,"tag":141,"props":2043,"children":2044},{"style":283},[2045],{"type":47,"value":2046},"};\n",{"type":41,"tag":141,"props":2048,"children":2049},{"class":143,"line":1125},[2050],{"type":41,"tag":141,"props":2051,"children":2052},{"emptyLinePlaceholder":329},[2053],{"type":47,"value":332},{"type":41,"tag":141,"props":2055,"children":2056},{"class":143,"line":1134},[2057,2062,2066,2071,2075,2080,2085,2089,2094],{"type":41,"tag":141,"props":2058,"children":2059},{"style":283},[2060],{"type":47,"value":2061},"module.exports",{"type":41,"tag":141,"props":2063,"children":2064},{"style":283},[2065],{"type":47,"value":576},{"type":41,"tag":141,"props":2067,"children":2068},{"style":426},[2069],{"type":47,"value":2070}," mergeConfig",{"type":41,"tag":141,"props":2072,"children":2073},{"style":289},[2074],{"type":47,"value":813},{"type":41,"tag":141,"props":2076,"children":2077},{"style":426},[2078],{"type":47,"value":2079},"getDefaultConfig",{"type":41,"tag":141,"props":2081,"children":2082},{"style":289},[2083],{"type":47,"value":2084},"(__dirname)",{"type":41,"tag":141,"props":2086,"children":2087},{"style":283},[2088],{"type":47,"value":444},{"type":41,"tag":141,"props":2090,"children":2091},{"style":289},[2092],{"type":47,"value":2093}," config)",{"type":41,"tag":141,"props":2095,"children":2096},{"style":283},[2097],{"type":47,"value":322},{"type":41,"tag":123,"props":2099,"children":2101},{"id":2100},"step-5-create-the-solana-client",[2102],{"type":47,"value":2103},"Step 5: Create the Solana client",{"type":41,"tag":57,"props":2105,"children":2106},{},[2107,2112,2114,2119,2121,2126,2128,2133,2135,2140],{"type":41,"tag":78,"props":2108,"children":2110},{"className":2109},[],[2111],{"type":47,"value":232},{"type":47,"value":2113}," does not forward ",{"type":41,"tag":78,"props":2115,"children":2117},{"className":2116},[],[2118],{"type":47,"value":18},{"type":47,"value":2120}," options to the underlying multichain core. In React Native, you must call ",{"type":41,"tag":78,"props":2122,"children":2124},{"className":2123},[],[2125],{"type":47,"value":216},{"type":47,"value":2127}," first with ",{"type":41,"tag":78,"props":2129,"children":2131},{"className":2130},[],[2132],{"type":47,"value":224},{"type":47,"value":2134}," so the singleton core is configured for deeplinks, then call ",{"type":41,"tag":78,"props":2136,"children":2138},{"className":2137},[],[2139],{"type":47,"value":232},{"type":47,"value":2141}," which reuses that same core.",{"type":41,"tag":130,"props":2143,"children":2145},{"className":256,"code":2144,"language":258,"meta":135,"style":135},"import { createMultichainClient } from '@metamask\u002Fconnect-multichain';\nimport { createSolanaClient } from '@metamask\u002Fconnect-solana';\nimport { Linking } from 'react-native';\n\n\u002F\u002F Initialize the multichain singleton with mobile deeplink handling\nawait createMultichainClient({\n  dapp: {\n    name: 'My Solana RN App',\n    url: 'https:\u002F\u002Fmyapp.com',\n  },\n  api: {\n    supportedNetworks: {},\n  },\n  mobile: {\n    preferredOpenLink: (deeplink: string) => Linking.openURL(deeplink),\n  },\n});\n\n\u002F\u002F Create the Solana client — reuses the multichain singleton above\nconst solanaClient = await createSolanaClient({\n  dapp: {\n    name: 'My Solana RN App',\n    url: 'https:\u002F\u002Fmyapp.com',\n  },\n  api: {\n    supportedNetworks: {\n      mainnet: 'https:\u002F\u002Fapi.mainnet-beta.solana.com',\n    },\n  },\n});\n",[2146],{"type":41,"tag":78,"props":2147,"children":2148},{"__ignoreMap":135},[2149,2189,2229,2269,2276,2284,2304,2320,2349,2378,2385,2401,2418,2425,2441,2500,2507,2522,2529,2537,2570,2585,2612,2639,2646,2661,2676,2705,2712,2719],{"type":41,"tag":141,"props":2150,"children":2151},{"class":143,"line":144},[2152,2156,2160,2165,2169,2173,2177,2181,2185],{"type":41,"tag":141,"props":2153,"children":2154},{"style":277},[2155],{"type":47,"value":280},{"type":41,"tag":141,"props":2157,"children":2158},{"style":283},[2159],{"type":47,"value":286},{"type":41,"tag":141,"props":2161,"children":2162},{"style":289},[2163],{"type":47,"value":2164}," createMultichainClient",{"type":41,"tag":141,"props":2166,"children":2167},{"style":283},[2168],{"type":47,"value":297},{"type":41,"tag":141,"props":2170,"children":2171},{"style":277},[2172],{"type":47,"value":302},{"type":41,"tag":141,"props":2174,"children":2175},{"style":283},[2176],{"type":47,"value":307},{"type":41,"tag":141,"props":2178,"children":2179},{"style":154},[2180],{"type":47,"value":201},{"type":41,"tag":141,"props":2182,"children":2183},{"style":283},[2184],{"type":47,"value":317},{"type":41,"tag":141,"props":2186,"children":2187},{"style":283},[2188],{"type":47,"value":322},{"type":41,"tag":141,"props":2190,"children":2191},{"class":143,"line":25},[2192,2196,2200,2205,2209,2213,2217,2221,2225],{"type":41,"tag":141,"props":2193,"children":2194},{"style":277},[2195],{"type":47,"value":280},{"type":41,"tag":141,"props":2197,"children":2198},{"style":283},[2199],{"type":47,"value":286},{"type":41,"tag":141,"props":2201,"children":2202},{"style":289},[2203],{"type":47,"value":2204}," createSolanaClient",{"type":41,"tag":141,"props":2206,"children":2207},{"style":283},[2208],{"type":47,"value":297},{"type":41,"tag":141,"props":2210,"children":2211},{"style":277},[2212],{"type":47,"value":302},{"type":41,"tag":141,"props":2214,"children":2215},{"style":283},[2216],{"type":47,"value":307},{"type":41,"tag":141,"props":2218,"children":2219},{"style":154},[2220],{"type":47,"value":83},{"type":41,"tag":141,"props":2222,"children":2223},{"style":283},[2224],{"type":47,"value":317},{"type":41,"tag":141,"props":2226,"children":2227},{"style":283},[2228],{"type":47,"value":322},{"type":41,"tag":141,"props":2230,"children":2231},{"class":143,"line":325},[2232,2236,2240,2245,2249,2253,2257,2261,2265],{"type":41,"tag":141,"props":2233,"children":2234},{"style":277},[2235],{"type":47,"value":280},{"type":41,"tag":141,"props":2237,"children":2238},{"style":283},[2239],{"type":47,"value":286},{"type":41,"tag":141,"props":2241,"children":2242},{"style":289},[2243],{"type":47,"value":2244}," Linking",{"type":41,"tag":141,"props":2246,"children":2247},{"style":283},[2248],{"type":47,"value":297},{"type":41,"tag":141,"props":2250,"children":2251},{"style":277},[2252],{"type":47,"value":302},{"type":41,"tag":141,"props":2254,"children":2255},{"style":283},[2256],{"type":47,"value":307},{"type":41,"tag":141,"props":2258,"children":2259},{"style":154},[2260],{"type":47,"value":14},{"type":41,"tag":141,"props":2262,"children":2263},{"style":283},[2264],{"type":47,"value":317},{"type":41,"tag":141,"props":2266,"children":2267},{"style":283},[2268],{"type":47,"value":322},{"type":41,"tag":141,"props":2270,"children":2271},{"class":143,"line":335},[2272],{"type":41,"tag":141,"props":2273,"children":2274},{"emptyLinePlaceholder":329},[2275],{"type":47,"value":332},{"type":41,"tag":141,"props":2277,"children":2278},{"class":143,"line":344},[2279],{"type":41,"tag":141,"props":2280,"children":2281},{"style":268},[2282],{"type":47,"value":2283},"\u002F\u002F Initialize the multichain singleton with mobile deeplink handling\n",{"type":41,"tag":141,"props":2285,"children":2286},{"class":143,"line":353},[2287,2292,2296,2300],{"type":41,"tag":141,"props":2288,"children":2289},{"style":277},[2290],{"type":47,"value":2291},"await",{"type":41,"tag":141,"props":2293,"children":2294},{"style":426},[2295],{"type":47,"value":2164},{"type":41,"tag":141,"props":2297,"children":2298},{"style":289},[2299],{"type":47,"value":813},{"type":41,"tag":141,"props":2301,"children":2302},{"style":283},[2303],{"type":47,"value":533},{"type":41,"tag":141,"props":2305,"children":2306},{"class":143,"line":385},[2307,2312,2316],{"type":41,"tag":141,"props":2308,"children":2309},{"style":540},[2310],{"type":47,"value":2311},"  dapp",{"type":41,"tag":141,"props":2313,"children":2314},{"style":283},[2315],{"type":47,"value":595},{"type":41,"tag":141,"props":2317,"children":2318},{"style":283},[2319],{"type":47,"value":581},{"type":41,"tag":141,"props":2321,"children":2322},{"class":143,"line":393},[2323,2328,2332,2336,2341,2345],{"type":41,"tag":141,"props":2324,"children":2325},{"style":540},[2326],{"type":47,"value":2327},"    name",{"type":41,"tag":141,"props":2329,"children":2330},{"style":283},[2331],{"type":47,"value":595},{"type":41,"tag":141,"props":2333,"children":2334},{"style":283},[2335],{"type":47,"value":307},{"type":41,"tag":141,"props":2337,"children":2338},{"style":154},[2339],{"type":47,"value":2340},"My Solana RN App",{"type":41,"tag":141,"props":2342,"children":2343},{"style":283},[2344],{"type":47,"value":317},{"type":41,"tag":141,"props":2346,"children":2347},{"style":283},[2348],{"type":47,"value":630},{"type":41,"tag":141,"props":2350,"children":2351},{"class":143,"line":402},[2352,2357,2361,2365,2370,2374],{"type":41,"tag":141,"props":2353,"children":2354},{"style":540},[2355],{"type":47,"value":2356},"    url",{"type":41,"tag":141,"props":2358,"children":2359},{"style":283},[2360],{"type":47,"value":595},{"type":41,"tag":141,"props":2362,"children":2363},{"style":283},[2364],{"type":47,"value":307},{"type":41,"tag":141,"props":2366,"children":2367},{"style":154},[2368],{"type":47,"value":2369},"https:\u002F\u002Fmyapp.com",{"type":41,"tag":141,"props":2371,"children":2372},{"style":283},[2373],{"type":47,"value":317},{"type":41,"tag":141,"props":2375,"children":2376},{"style":283},[2377],{"type":47,"value":630},{"type":41,"tag":141,"props":2379,"children":2380},{"class":143,"line":475},[2381],{"type":41,"tag":141,"props":2382,"children":2383},{"style":283},[2384],{"type":47,"value":2038},{"type":41,"tag":141,"props":2386,"children":2387},{"class":143,"line":536},[2388,2393,2397],{"type":41,"tag":141,"props":2389,"children":2390},{"style":540},[2391],{"type":47,"value":2392},"  api",{"type":41,"tag":141,"props":2394,"children":2395},{"style":283},[2396],{"type":47,"value":595},{"type":41,"tag":141,"props":2398,"children":2399},{"style":283},[2400],{"type":47,"value":581},{"type":41,"tag":141,"props":2402,"children":2403},{"class":143,"line":584},[2404,2409,2413],{"type":41,"tag":141,"props":2405,"children":2406},{"style":540},[2407],{"type":47,"value":2408},"    supportedNetworks",{"type":41,"tag":141,"props":2410,"children":2411},{"style":283},[2412],{"type":47,"value":595},{"type":41,"tag":141,"props":2414,"children":2415},{"style":283},[2416],{"type":47,"value":2417}," {},\n",{"type":41,"tag":141,"props":2419,"children":2420},{"class":143,"line":602},[2421],{"type":41,"tag":141,"props":2422,"children":2423},{"style":283},[2424],{"type":47,"value":2038},{"type":41,"tag":141,"props":2426,"children":2427},{"class":143,"line":633},[2428,2433,2437],{"type":41,"tag":141,"props":2429,"children":2430},{"style":540},[2431],{"type":47,"value":2432},"  mobile",{"type":41,"tag":141,"props":2434,"children":2435},{"style":283},[2436],{"type":47,"value":595},{"type":41,"tag":141,"props":2438,"children":2439},{"style":283},[2440],{"type":47,"value":581},{"type":41,"tag":141,"props":2442,"children":2443},{"class":143,"line":663},[2444,2449,2453,2457,2462,2466,2470,2474,2478,2482,2486,2491,2496],{"type":41,"tag":141,"props":2445,"children":2446},{"style":426},[2447],{"type":47,"value":2448},"    preferredOpenLink",{"type":41,"tag":141,"props":2450,"children":2451},{"style":283},[2452],{"type":47,"value":595},{"type":41,"tag":141,"props":2454,"children":2455},{"style":283},[2456],{"type":47,"value":486},{"type":41,"tag":141,"props":2458,"children":2459},{"style":733},[2460],{"type":47,"value":2461},"deeplink",{"type":41,"tag":141,"props":2463,"children":2464},{"style":283},[2465],{"type":47,"value":595},{"type":41,"tag":141,"props":2467,"children":2468},{"style":148},[2469],{"type":47,"value":745},{"type":41,"tag":141,"props":2471,"children":2472},{"style":283},[2473],{"type":47,"value":562},{"type":41,"tag":141,"props":2475,"children":2476},{"style":406},[2477],{"type":47,"value":772},{"type":41,"tag":141,"props":2479,"children":2480},{"style":289},[2481],{"type":47,"value":2244},{"type":41,"tag":141,"props":2483,"children":2484},{"style":283},[2485],{"type":47,"value":364},{"type":41,"tag":141,"props":2487,"children":2488},{"style":426},[2489],{"type":47,"value":2490},"openURL",{"type":41,"tag":141,"props":2492,"children":2493},{"style":289},[2494],{"type":47,"value":2495},"(deeplink)",{"type":41,"tag":141,"props":2497,"children":2498},{"style":283},[2499],{"type":47,"value":630},{"type":41,"tag":141,"props":2501,"children":2502},{"class":143,"line":672},[2503],{"type":41,"tag":141,"props":2504,"children":2505},{"style":283},[2506],{"type":47,"value":2038},{"type":41,"tag":141,"props":2508,"children":2509},{"class":143,"line":716},[2510,2514,2518],{"type":41,"tag":141,"props":2511,"children":2512},{"style":283},[2513],{"type":47,"value":1487},{"type":41,"tag":141,"props":2515,"children":2516},{"style":289},[2517],{"type":47,"value":562},{"type":41,"tag":141,"props":2519,"children":2520},{"style":283},[2521],{"type":47,"value":322},{"type":41,"tag":141,"props":2523,"children":2524},{"class":143,"line":779},[2525],{"type":41,"tag":141,"props":2526,"children":2527},{"emptyLinePlaceholder":329},[2528],{"type":47,"value":332},{"type":41,"tag":141,"props":2530,"children":2531},{"class":143,"line":867},[2532],{"type":41,"tag":141,"props":2533,"children":2534},{"style":268},[2535],{"type":47,"value":2536},"\u002F\u002F Create the Solana client — reuses the multichain singleton above\n",{"type":41,"tag":141,"props":2538,"children":2539},{"class":143,"line":924},[2540,2544,2549,2553,2558,2562,2566],{"type":41,"tag":141,"props":2541,"children":2542},{"style":406},[2543],{"type":47,"value":409},{"type":41,"tag":141,"props":2545,"children":2546},{"style":289},[2547],{"type":47,"value":2548}," solanaClient ",{"type":41,"tag":141,"props":2550,"children":2551},{"style":283},[2552],{"type":47,"value":374},{"type":41,"tag":141,"props":2554,"children":2555},{"style":277},[2556],{"type":47,"value":2557}," await",{"type":41,"tag":141,"props":2559,"children":2560},{"style":426},[2561],{"type":47,"value":2204},{"type":41,"tag":141,"props":2563,"children":2564},{"style":289},[2565],{"type":47,"value":813},{"type":41,"tag":141,"props":2567,"children":2568},{"style":283},[2569],{"type":47,"value":533},{"type":41,"tag":141,"props":2571,"children":2572},{"class":143,"line":932},[2573,2577,2581],{"type":41,"tag":141,"props":2574,"children":2575},{"style":540},[2576],{"type":47,"value":2311},{"type":41,"tag":141,"props":2578,"children":2579},{"style":283},[2580],{"type":47,"value":595},{"type":41,"tag":141,"props":2582,"children":2583},{"style":283},[2584],{"type":47,"value":581},{"type":41,"tag":141,"props":2586,"children":2587},{"class":143,"line":989},[2588,2592,2596,2600,2604,2608],{"type":41,"tag":141,"props":2589,"children":2590},{"style":540},[2591],{"type":47,"value":2327},{"type":41,"tag":141,"props":2593,"children":2594},{"style":283},[2595],{"type":47,"value":595},{"type":41,"tag":141,"props":2597,"children":2598},{"style":283},[2599],{"type":47,"value":307},{"type":41,"tag":141,"props":2601,"children":2602},{"style":154},[2603],{"type":47,"value":2340},{"type":41,"tag":141,"props":2605,"children":2606},{"style":283},[2607],{"type":47,"value":317},{"type":41,"tag":141,"props":2609,"children":2610},{"style":283},[2611],{"type":47,"value":630},{"type":41,"tag":141,"props":2613,"children":2614},{"class":143,"line":1042},[2615,2619,2623,2627,2631,2635],{"type":41,"tag":141,"props":2616,"children":2617},{"style":540},[2618],{"type":47,"value":2356},{"type":41,"tag":141,"props":2620,"children":2621},{"style":283},[2622],{"type":47,"value":595},{"type":41,"tag":141,"props":2624,"children":2625},{"style":283},[2626],{"type":47,"value":307},{"type":41,"tag":141,"props":2628,"children":2629},{"style":154},[2630],{"type":47,"value":2369},{"type":41,"tag":141,"props":2632,"children":2633},{"style":283},[2634],{"type":47,"value":317},{"type":41,"tag":141,"props":2636,"children":2637},{"style":283},[2638],{"type":47,"value":630},{"type":41,"tag":141,"props":2640,"children":2641},{"class":143,"line":1050},[2642],{"type":41,"tag":141,"props":2643,"children":2644},{"style":283},[2645],{"type":47,"value":2038},{"type":41,"tag":141,"props":2647,"children":2648},{"class":143,"line":1099},[2649,2653,2657],{"type":41,"tag":141,"props":2650,"children":2651},{"style":540},[2652],{"type":47,"value":2392},{"type":41,"tag":141,"props":2654,"children":2655},{"style":283},[2656],{"type":47,"value":595},{"type":41,"tag":141,"props":2658,"children":2659},{"style":283},[2660],{"type":47,"value":581},{"type":41,"tag":141,"props":2662,"children":2663},{"class":143,"line":1108},[2664,2668,2672],{"type":41,"tag":141,"props":2665,"children":2666},{"style":540},[2667],{"type":47,"value":2408},{"type":41,"tag":141,"props":2669,"children":2670},{"style":283},[2671],{"type":47,"value":595},{"type":41,"tag":141,"props":2673,"children":2674},{"style":283},[2675],{"type":47,"value":581},{"type":41,"tag":141,"props":2677,"children":2678},{"class":143,"line":1117},[2679,2684,2688,2692,2697,2701],{"type":41,"tag":141,"props":2680,"children":2681},{"style":540},[2682],{"type":47,"value":2683},"      mainnet",{"type":41,"tag":141,"props":2685,"children":2686},{"style":283},[2687],{"type":47,"value":595},{"type":41,"tag":141,"props":2689,"children":2690},{"style":283},[2691],{"type":47,"value":307},{"type":41,"tag":141,"props":2693,"children":2694},{"style":154},[2695],{"type":47,"value":2696},"https:\u002F\u002Fapi.mainnet-beta.solana.com",{"type":41,"tag":141,"props":2698,"children":2699},{"style":283},[2700],{"type":47,"value":317},{"type":41,"tag":141,"props":2702,"children":2703},{"style":283},[2704],{"type":47,"value":630},{"type":41,"tag":141,"props":2706,"children":2707},{"class":143,"line":1125},[2708],{"type":41,"tag":141,"props":2709,"children":2710},{"style":283},[2711],{"type":47,"value":669},{"type":41,"tag":141,"props":2713,"children":2714},{"class":143,"line":1134},[2715],{"type":41,"tag":141,"props":2716,"children":2717},{"style":283},[2718],{"type":47,"value":2038},{"type":41,"tag":141,"props":2720,"children":2722},{"class":143,"line":2721},30,[2723,2727,2731],{"type":41,"tag":141,"props":2724,"children":2725},{"style":283},[2726],{"type":47,"value":1487},{"type":41,"tag":141,"props":2728,"children":2729},{"style":289},[2730],{"type":47,"value":562},{"type":41,"tag":141,"props":2732,"children":2733},{"style":283},[2734],{"type":47,"value":322},{"type":41,"tag":123,"props":2736,"children":2738},{"id":2737},"step-6-use-multichain-invokemethod-for-solana-operations",[2739],{"type":47,"value":2740},"Step 6: Use multichain invokeMethod for Solana operations",{"type":41,"tag":57,"props":2742,"children":2743},{},[2744,2756,2758,2764,2766,2771],{"type":41,"tag":109,"props":2745,"children":2746},{},[2747,2749,2754],{"type":47,"value":2748},"There is no ",{"type":41,"tag":78,"props":2750,"children":2752},{"className":2751},[],[2753],{"type":47,"value":105},{"type":47,"value":2755}," in React Native.",{"type":47,"value":2757}," Instead, use the ",{"type":41,"tag":78,"props":2759,"children":2761},{"className":2760},[],[2762],{"type":47,"value":2763},"core",{"type":47,"value":2765}," multichain client and ",{"type":41,"tag":78,"props":2767,"children":2769},{"className":2768},[],[2770],{"type":47,"value":94},{"type":47,"value":2772}," to call Solana RPC methods on specific CAIP scopes.",{"type":41,"tag":2774,"props":2775,"children":2777},"h4",{"id":2776},"connect",[2778],{"type":47,"value":2779},"Connect",{"type":41,"tag":130,"props":2781,"children":2783},{"className":256,"code":2782,"language":258,"meta":135,"style":135},"await solanaClient.core.connect(\n  ['solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp'],\n  [],\n);\n",[2784],{"type":41,"tag":78,"props":2785,"children":2786},{"__ignoreMap":135},[2787,2820,2850,2862],{"type":41,"tag":141,"props":2788,"children":2789},{"class":143,"line":144},[2790,2794,2799,2803,2807,2811,2815],{"type":41,"tag":141,"props":2791,"children":2792},{"style":277},[2793],{"type":47,"value":2291},{"type":41,"tag":141,"props":2795,"children":2796},{"style":289},[2797],{"type":47,"value":2798}," solanaClient",{"type":41,"tag":141,"props":2800,"children":2801},{"style":283},[2802],{"type":47,"value":364},{"type":41,"tag":141,"props":2804,"children":2805},{"style":289},[2806],{"type":47,"value":2763},{"type":41,"tag":141,"props":2808,"children":2809},{"style":283},[2810],{"type":47,"value":364},{"type":41,"tag":141,"props":2812,"children":2813},{"style":426},[2814],{"type":47,"value":2776},{"type":41,"tag":141,"props":2816,"children":2817},{"style":289},[2818],{"type":47,"value":2819},"(\n",{"type":41,"tag":141,"props":2821,"children":2822},{"class":143,"line":25},[2823,2828,2832,2837,2841,2846],{"type":41,"tag":141,"props":2824,"children":2825},{"style":289},[2826],{"type":47,"value":2827},"  [",{"type":41,"tag":141,"props":2829,"children":2830},{"style":283},[2831],{"type":47,"value":317},{"type":41,"tag":141,"props":2833,"children":2834},{"style":154},[2835],{"type":47,"value":2836},"solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",{"type":41,"tag":141,"props":2838,"children":2839},{"style":283},[2840],{"type":47,"value":317},{"type":41,"tag":141,"props":2842,"children":2843},{"style":289},[2844],{"type":47,"value":2845},"]",{"type":41,"tag":141,"props":2847,"children":2848},{"style":283},[2849],{"type":47,"value":630},{"type":41,"tag":141,"props":2851,"children":2852},{"class":143,"line":325},[2853,2858],{"type":41,"tag":141,"props":2854,"children":2855},{"style":289},[2856],{"type":47,"value":2857},"  []",{"type":41,"tag":141,"props":2859,"children":2860},{"style":283},[2861],{"type":47,"value":630},{"type":41,"tag":141,"props":2863,"children":2864},{"class":143,"line":335},[2865,2869],{"type":41,"tag":141,"props":2866,"children":2867},{"style":289},[2868],{"type":47,"value":562},{"type":41,"tag":141,"props":2870,"children":2871},{"style":283},[2872],{"type":47,"value":322},{"type":41,"tag":57,"props":2874,"children":2875},{},[2876,2878,2884],{"type":47,"value":2877},"Listen for ",{"type":41,"tag":78,"props":2879,"children":2881},{"className":2880},[],[2882],{"type":47,"value":2883},"wallet_sessionChanged",{"type":47,"value":2885}," to get accounts after connection:",{"type":41,"tag":130,"props":2887,"children":2889},{"className":256,"code":2888,"language":258,"meta":135,"style":135},"solanaClient.core.on('wallet_sessionChanged', (session) => {\n  \u002F\u002F Scopes live under session.sessionScopes; accounts are CAIP-10 strings\n  \u002F\u002F ('solana:\u003CgenesisHash>:\u003Caddress>') — take the last segment for the address\n  const caipAccounts =\n    session?.sessionScopes?.['solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp']?.accounts ?? [];\n  const solanaAccounts = caipAccounts.map((a) => a.split(':')[2]);\n  console.log('Solana accounts:', solanaAccounts);\n});\n",[2890],{"type":41,"tag":78,"props":2891,"children":2892},{"__ignoreMap":135},[2893,2959,2967,2975,2993,3058,3158,3208],{"type":41,"tag":141,"props":2894,"children":2895},{"class":143,"line":144},[2896,2901,2905,2909,2913,2918,2922,2926,2930,2934,2938,2942,2947,2951,2955],{"type":41,"tag":141,"props":2897,"children":2898},{"style":289},[2899],{"type":47,"value":2900},"solanaClient",{"type":41,"tag":141,"props":2902,"children":2903},{"style":283},[2904],{"type":47,"value":364},{"type":41,"tag":141,"props":2906,"children":2907},{"style":289},[2908],{"type":47,"value":2763},{"type":41,"tag":141,"props":2910,"children":2911},{"style":283},[2912],{"type":47,"value":364},{"type":41,"tag":141,"props":2914,"children":2915},{"style":426},[2916],{"type":47,"value":2917},"on",{"type":41,"tag":141,"props":2919,"children":2920},{"style":289},[2921],{"type":47,"value":813},{"type":41,"tag":141,"props":2923,"children":2924},{"style":283},[2925],{"type":47,"value":317},{"type":41,"tag":141,"props":2927,"children":2928},{"style":154},[2929],{"type":47,"value":2883},{"type":41,"tag":141,"props":2931,"children":2932},{"style":283},[2933],{"type":47,"value":317},{"type":41,"tag":141,"props":2935,"children":2936},{"style":283},[2937],{"type":47,"value":444},{"type":41,"tag":141,"props":2939,"children":2940},{"style":283},[2941],{"type":47,"value":486},{"type":41,"tag":141,"props":2943,"children":2944},{"style":733},[2945],{"type":47,"value":2946},"session",{"type":41,"tag":141,"props":2948,"children":2949},{"style":283},[2950],{"type":47,"value":562},{"type":41,"tag":141,"props":2952,"children":2953},{"style":406},[2954],{"type":47,"value":772},{"type":41,"tag":141,"props":2956,"children":2957},{"style":283},[2958],{"type":47,"value":581},{"type":41,"tag":141,"props":2960,"children":2961},{"class":143,"line":25},[2962],{"type":41,"tag":141,"props":2963,"children":2964},{"style":268},[2965],{"type":47,"value":2966},"  \u002F\u002F Scopes live under session.sessionScopes; accounts are CAIP-10 strings\n",{"type":41,"tag":141,"props":2968,"children":2969},{"class":143,"line":325},[2970],{"type":41,"tag":141,"props":2971,"children":2972},{"style":268},[2973],{"type":47,"value":2974},"  \u002F\u002F ('solana:\u003CgenesisHash>:\u003Caddress>') — take the last segment for the address\n",{"type":41,"tag":141,"props":2976,"children":2977},{"class":143,"line":335},[2978,2983,2988],{"type":41,"tag":141,"props":2979,"children":2980},{"style":406},[2981],{"type":47,"value":2982},"  const",{"type":41,"tag":141,"props":2984,"children":2985},{"style":289},[2986],{"type":47,"value":2987}," caipAccounts",{"type":41,"tag":141,"props":2989,"children":2990},{"style":283},[2991],{"type":47,"value":2992}," =\n",{"type":41,"tag":141,"props":2994,"children":2995},{"class":143,"line":344},[2996,3001,3005,3010,3014,3019,3023,3027,3031,3035,3039,3044,3049,3054],{"type":41,"tag":141,"props":2997,"children":2998},{"style":289},[2999],{"type":47,"value":3000},"    session",{"type":41,"tag":141,"props":3002,"children":3003},{"style":283},[3004],{"type":47,"value":899},{"type":41,"tag":141,"props":3006,"children":3007},{"style":289},[3008],{"type":47,"value":3009},"sessionScopes",{"type":41,"tag":141,"props":3011,"children":3012},{"style":283},[3013],{"type":47,"value":899},{"type":41,"tag":141,"props":3015,"children":3016},{"style":540},[3017],{"type":47,"value":3018},"[",{"type":41,"tag":141,"props":3020,"children":3021},{"style":283},[3022],{"type":47,"value":317},{"type":41,"tag":141,"props":3024,"children":3025},{"style":154},[3026],{"type":47,"value":2836},{"type":41,"tag":141,"props":3028,"children":3029},{"style":283},[3030],{"type":47,"value":317},{"type":41,"tag":141,"props":3032,"children":3033},{"style":540},[3034],{"type":47,"value":2845},{"type":41,"tag":141,"props":3036,"children":3037},{"style":283},[3038],{"type":47,"value":899},{"type":41,"tag":141,"props":3040,"children":3041},{"style":289},[3042],{"type":47,"value":3043},"accounts",{"type":41,"tag":141,"props":3045,"children":3046},{"style":283},[3047],{"type":47,"value":3048}," ??",{"type":41,"tag":141,"props":3050,"children":3051},{"style":540},[3052],{"type":47,"value":3053}," []",{"type":41,"tag":141,"props":3055,"children":3056},{"style":283},[3057],{"type":47,"value":322},{"type":41,"tag":141,"props":3059,"children":3060},{"class":143,"line":353},[3061,3065,3070,3074,3078,3082,3087,3091,3095,3100,3104,3108,3113,3117,3122,3126,3130,3134,3138,3143,3149,3154],{"type":41,"tag":141,"props":3062,"children":3063},{"style":406},[3064],{"type":47,"value":2982},{"type":41,"tag":141,"props":3066,"children":3067},{"style":289},[3068],{"type":47,"value":3069}," solanaAccounts",{"type":41,"tag":141,"props":3071,"children":3072},{"style":283},[3073],{"type":47,"value":576},{"type":41,"tag":141,"props":3075,"children":3076},{"style":289},[3077],{"type":47,"value":2987},{"type":41,"tag":141,"props":3079,"children":3080},{"style":283},[3081],{"type":47,"value":364},{"type":41,"tag":141,"props":3083,"children":3084},{"style":426},[3085],{"type":47,"value":3086},"map",{"type":41,"tag":141,"props":3088,"children":3089},{"style":540},[3090],{"type":47,"value":813},{"type":41,"tag":141,"props":3092,"children":3093},{"style":283},[3094],{"type":47,"value":813},{"type":41,"tag":141,"props":3096,"children":3097},{"style":733},[3098],{"type":47,"value":3099},"a",{"type":41,"tag":141,"props":3101,"children":3102},{"style":283},[3103],{"type":47,"value":562},{"type":41,"tag":141,"props":3105,"children":3106},{"style":406},[3107],{"type":47,"value":772},{"type":41,"tag":141,"props":3109,"children":3110},{"style":289},[3111],{"type":47,"value":3112}," a",{"type":41,"tag":141,"props":3114,"children":3115},{"style":283},[3116],{"type":47,"value":364},{"type":41,"tag":141,"props":3118,"children":3119},{"style":426},[3120],{"type":47,"value":3121},"split",{"type":41,"tag":141,"props":3123,"children":3124},{"style":540},[3125],{"type":47,"value":813},{"type":41,"tag":141,"props":3127,"children":3128},{"style":283},[3129],{"type":47,"value":317},{"type":41,"tag":141,"props":3131,"children":3132},{"style":154},[3133],{"type":47,"value":595},{"type":41,"tag":141,"props":3135,"children":3136},{"style":283},[3137],{"type":47,"value":317},{"type":41,"tag":141,"props":3139,"children":3140},{"style":540},[3141],{"type":47,"value":3142},")[",{"type":41,"tag":141,"props":3144,"children":3146},{"style":3145},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[3147],{"type":47,"value":3148},"2",{"type":41,"tag":141,"props":3150,"children":3151},{"style":540},[3152],{"type":47,"value":3153},"])",{"type":41,"tag":141,"props":3155,"children":3156},{"style":283},[3157],{"type":47,"value":322},{"type":41,"tag":141,"props":3159,"children":3160},{"class":143,"line":385},[3161,3166,3170,3175,3179,3183,3188,3192,3196,3200,3204],{"type":41,"tag":141,"props":3162,"children":3163},{"style":289},[3164],{"type":47,"value":3165},"  console",{"type":41,"tag":141,"props":3167,"children":3168},{"style":283},[3169],{"type":47,"value":364},{"type":41,"tag":141,"props":3171,"children":3172},{"style":426},[3173],{"type":47,"value":3174},"log",{"type":41,"tag":141,"props":3176,"children":3177},{"style":540},[3178],{"type":47,"value":813},{"type":41,"tag":141,"props":3180,"children":3181},{"style":283},[3182],{"type":47,"value":317},{"type":41,"tag":141,"props":3184,"children":3185},{"style":154},[3186],{"type":47,"value":3187},"Solana accounts:",{"type":41,"tag":141,"props":3189,"children":3190},{"style":283},[3191],{"type":47,"value":317},{"type":41,"tag":141,"props":3193,"children":3194},{"style":283},[3195],{"type":47,"value":444},{"type":41,"tag":141,"props":3197,"children":3198},{"style":289},[3199],{"type":47,"value":3069},{"type":41,"tag":141,"props":3201,"children":3202},{"style":540},[3203],{"type":47,"value":562},{"type":41,"tag":141,"props":3205,"children":3206},{"style":283},[3207],{"type":47,"value":322},{"type":41,"tag":141,"props":3209,"children":3210},{"class":143,"line":393},[3211,3215,3219],{"type":41,"tag":141,"props":3212,"children":3213},{"style":283},[3214],{"type":47,"value":1487},{"type":41,"tag":141,"props":3216,"children":3217},{"style":289},[3218],{"type":47,"value":562},{"type":41,"tag":141,"props":3220,"children":3221},{"style":283},[3222],{"type":47,"value":322},{"type":41,"tag":2774,"props":3224,"children":3226},{"id":3225},"sign-a-message",[3227],{"type":47,"value":3228},"Sign a message",{"type":41,"tag":130,"props":3230,"children":3232},{"className":256,"code":3231,"language":258,"meta":135,"style":135},"const message = new TextEncoder().encode('Hello from React Native!');\nconst messageBase64 = Buffer.from(message).toString('base64');\n\n\u002F\u002F Method names have no `solana_` prefix; the account is passed as account: { address }\nconst result = await solanaClient.core.invokeMethod({\n  scope: 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp',\n  request: {\n    method: 'signMessage',\n    params: {\n      account: { address: solanaAccounts[0] },\n      message: messageBase64,\n    },\n  },\n});\n\n\u002F\u002F result: { signature: \u003Cbase58 string>, signedMessage: \u003Cbase64>, signatureType: 'ed25519' }\nconsole.log('Signature:', result.signature);\n",[3233],{"type":41,"tag":78,"props":3234,"children":3235},{"__ignoreMap":135},[3236,3299,3366,3373,3381,3429,3457,3473,3502,3518,3563,3584,3591,3598,3613,3620,3628],{"type":41,"tag":141,"props":3237,"children":3238},{"class":143,"line":144},[3239,3243,3248,3252,3256,3261,3265,3269,3274,3278,3282,3287,3291,3295],{"type":41,"tag":141,"props":3240,"children":3241},{"style":406},[3242],{"type":47,"value":409},{"type":41,"tag":141,"props":3244,"children":3245},{"style":289},[3246],{"type":47,"value":3247}," message ",{"type":41,"tag":141,"props":3249,"children":3250},{"style":283},[3251],{"type":47,"value":374},{"type":41,"tag":141,"props":3253,"children":3254},{"style":283},[3255],{"type":47,"value":423},{"type":41,"tag":141,"props":3257,"children":3258},{"style":426},[3259],{"type":47,"value":3260}," TextEncoder",{"type":41,"tag":141,"props":3262,"children":3263},{"style":289},[3264],{"type":47,"value":468},{"type":41,"tag":141,"props":3266,"children":3267},{"style":283},[3268],{"type":47,"value":364},{"type":41,"tag":141,"props":3270,"children":3271},{"style":426},[3272],{"type":47,"value":3273},"encode",{"type":41,"tag":141,"props":3275,"children":3276},{"style":289},[3277],{"type":47,"value":813},{"type":41,"tag":141,"props":3279,"children":3280},{"style":283},[3281],{"type":47,"value":317},{"type":41,"tag":141,"props":3283,"children":3284},{"style":154},[3285],{"type":47,"value":3286},"Hello from React Native!",{"type":41,"tag":141,"props":3288,"children":3289},{"style":283},[3290],{"type":47,"value":317},{"type":41,"tag":141,"props":3292,"children":3293},{"style":289},[3294],{"type":47,"value":562},{"type":41,"tag":141,"props":3296,"children":3297},{"style":283},[3298],{"type":47,"value":322},{"type":41,"tag":141,"props":3300,"children":3301},{"class":143,"line":25},[3302,3306,3311,3315,3319,3323,3327,3332,3336,3341,3345,3349,3354,3358,3362],{"type":41,"tag":141,"props":3303,"children":3304},{"style":406},[3305],{"type":47,"value":409},{"type":41,"tag":141,"props":3307,"children":3308},{"style":289},[3309],{"type":47,"value":3310}," messageBase64 ",{"type":41,"tag":141,"props":3312,"children":3313},{"style":283},[3314],{"type":47,"value":374},{"type":41,"tag":141,"props":3316,"children":3317},{"style":289},[3318],{"type":47,"value":292},{"type":41,"tag":141,"props":3320,"children":3321},{"style":283},[3322],{"type":47,"value":364},{"type":41,"tag":141,"props":3324,"children":3325},{"style":426},[3326],{"type":47,"value":1303},{"type":41,"tag":141,"props":3328,"children":3329},{"style":289},[3330],{"type":47,"value":3331},"(message)",{"type":41,"tag":141,"props":3333,"children":3334},{"style":283},[3335],{"type":47,"value":364},{"type":41,"tag":141,"props":3337,"children":3338},{"style":426},[3339],{"type":47,"value":3340},"toString",{"type":41,"tag":141,"props":3342,"children":3343},{"style":289},[3344],{"type":47,"value":813},{"type":41,"tag":141,"props":3346,"children":3347},{"style":283},[3348],{"type":47,"value":317},{"type":41,"tag":141,"props":3350,"children":3351},{"style":154},[3352],{"type":47,"value":3353},"base64",{"type":41,"tag":141,"props":3355,"children":3356},{"style":283},[3357],{"type":47,"value":317},{"type":41,"tag":141,"props":3359,"children":3360},{"style":289},[3361],{"type":47,"value":562},{"type":41,"tag":141,"props":3363,"children":3364},{"style":283},[3365],{"type":47,"value":322},{"type":41,"tag":141,"props":3367,"children":3368},{"class":143,"line":325},[3369],{"type":41,"tag":141,"props":3370,"children":3371},{"emptyLinePlaceholder":329},[3372],{"type":47,"value":332},{"type":41,"tag":141,"props":3374,"children":3375},{"class":143,"line":335},[3376],{"type":41,"tag":141,"props":3377,"children":3378},{"style":268},[3379],{"type":47,"value":3380},"\u002F\u002F Method names have no `solana_` prefix; the account is passed as account: { address }\n",{"type":41,"tag":141,"props":3382,"children":3383},{"class":143,"line":344},[3384,3388,3393,3397,3401,3405,3409,3413,3417,3421,3425],{"type":41,"tag":141,"props":3385,"children":3386},{"style":406},[3387],{"type":47,"value":409},{"type":41,"tag":141,"props":3389,"children":3390},{"style":289},[3391],{"type":47,"value":3392}," result ",{"type":41,"tag":141,"props":3394,"children":3395},{"style":283},[3396],{"type":47,"value":374},{"type":41,"tag":141,"props":3398,"children":3399},{"style":277},[3400],{"type":47,"value":2557},{"type":41,"tag":141,"props":3402,"children":3403},{"style":289},[3404],{"type":47,"value":2798},{"type":41,"tag":141,"props":3406,"children":3407},{"style":283},[3408],{"type":47,"value":364},{"type":41,"tag":141,"props":3410,"children":3411},{"style":289},[3412],{"type":47,"value":2763},{"type":41,"tag":141,"props":3414,"children":3415},{"style":283},[3416],{"type":47,"value":364},{"type":41,"tag":141,"props":3418,"children":3419},{"style":426},[3420],{"type":47,"value":94},{"type":41,"tag":141,"props":3422,"children":3423},{"style":289},[3424],{"type":47,"value":813},{"type":41,"tag":141,"props":3426,"children":3427},{"style":283},[3428],{"type":47,"value":533},{"type":41,"tag":141,"props":3430,"children":3431},{"class":143,"line":353},[3432,3437,3441,3445,3449,3453],{"type":41,"tag":141,"props":3433,"children":3434},{"style":540},[3435],{"type":47,"value":3436},"  scope",{"type":41,"tag":141,"props":3438,"children":3439},{"style":283},[3440],{"type":47,"value":595},{"type":41,"tag":141,"props":3442,"children":3443},{"style":283},[3444],{"type":47,"value":307},{"type":41,"tag":141,"props":3446,"children":3447},{"style":154},[3448],{"type":47,"value":2836},{"type":41,"tag":141,"props":3450,"children":3451},{"style":283},[3452],{"type":47,"value":317},{"type":41,"tag":141,"props":3454,"children":3455},{"style":283},[3456],{"type":47,"value":630},{"type":41,"tag":141,"props":3458,"children":3459},{"class":143,"line":385},[3460,3465,3469],{"type":41,"tag":141,"props":3461,"children":3462},{"style":540},[3463],{"type":47,"value":3464},"  request",{"type":41,"tag":141,"props":3466,"children":3467},{"style":283},[3468],{"type":47,"value":595},{"type":41,"tag":141,"props":3470,"children":3471},{"style":283},[3472],{"type":47,"value":581},{"type":41,"tag":141,"props":3474,"children":3475},{"class":143,"line":393},[3476,3481,3485,3489,3494,3498],{"type":41,"tag":141,"props":3477,"children":3478},{"style":540},[3479],{"type":47,"value":3480},"    method",{"type":41,"tag":141,"props":3482,"children":3483},{"style":283},[3484],{"type":47,"value":595},{"type":41,"tag":141,"props":3486,"children":3487},{"style":283},[3488],{"type":47,"value":307},{"type":41,"tag":141,"props":3490,"children":3491},{"style":154},[3492],{"type":47,"value":3493},"signMessage",{"type":41,"tag":141,"props":3495,"children":3496},{"style":283},[3497],{"type":47,"value":317},{"type":41,"tag":141,"props":3499,"children":3500},{"style":283},[3501],{"type":47,"value":630},{"type":41,"tag":141,"props":3503,"children":3504},{"class":143,"line":402},[3505,3510,3514],{"type":41,"tag":141,"props":3506,"children":3507},{"style":540},[3508],{"type":47,"value":3509},"    params",{"type":41,"tag":141,"props":3511,"children":3512},{"style":283},[3513],{"type":47,"value":595},{"type":41,"tag":141,"props":3515,"children":3516},{"style":283},[3517],{"type":47,"value":581},{"type":41,"tag":141,"props":3519,"children":3520},{"class":143,"line":475},[3521,3526,3530,3534,3539,3543,3548,3553,3558],{"type":41,"tag":141,"props":3522,"children":3523},{"style":540},[3524],{"type":47,"value":3525},"      account",{"type":41,"tag":141,"props":3527,"children":3528},{"style":283},[3529],{"type":47,"value":595},{"type":41,"tag":141,"props":3531,"children":3532},{"style":283},[3533],{"type":47,"value":286},{"type":41,"tag":141,"props":3535,"children":3536},{"style":540},[3537],{"type":47,"value":3538}," address",{"type":41,"tag":141,"props":3540,"children":3541},{"style":283},[3542],{"type":47,"value":595},{"type":41,"tag":141,"props":3544,"children":3545},{"style":289},[3546],{"type":47,"value":3547}," solanaAccounts[",{"type":41,"tag":141,"props":3549,"children":3550},{"style":3145},[3551],{"type":47,"value":3552},"0",{"type":41,"tag":141,"props":3554,"children":3555},{"style":289},[3556],{"type":47,"value":3557},"] ",{"type":41,"tag":141,"props":3559,"children":3560},{"style":283},[3561],{"type":47,"value":3562},"},\n",{"type":41,"tag":141,"props":3564,"children":3565},{"class":143,"line":536},[3566,3571,3575,3580],{"type":41,"tag":141,"props":3567,"children":3568},{"style":540},[3569],{"type":47,"value":3570},"      message",{"type":41,"tag":141,"props":3572,"children":3573},{"style":283},[3574],{"type":47,"value":595},{"type":41,"tag":141,"props":3576,"children":3577},{"style":289},[3578],{"type":47,"value":3579}," messageBase64",{"type":41,"tag":141,"props":3581,"children":3582},{"style":283},[3583],{"type":47,"value":630},{"type":41,"tag":141,"props":3585,"children":3586},{"class":143,"line":584},[3587],{"type":41,"tag":141,"props":3588,"children":3589},{"style":283},[3590],{"type":47,"value":669},{"type":41,"tag":141,"props":3592,"children":3593},{"class":143,"line":602},[3594],{"type":41,"tag":141,"props":3595,"children":3596},{"style":283},[3597],{"type":47,"value":2038},{"type":41,"tag":141,"props":3599,"children":3600},{"class":143,"line":633},[3601,3605,3609],{"type":41,"tag":141,"props":3602,"children":3603},{"style":283},[3604],{"type":47,"value":1487},{"type":41,"tag":141,"props":3606,"children":3607},{"style":289},[3608],{"type":47,"value":562},{"type":41,"tag":141,"props":3610,"children":3611},{"style":283},[3612],{"type":47,"value":322},{"type":41,"tag":141,"props":3614,"children":3615},{"class":143,"line":663},[3616],{"type":41,"tag":141,"props":3617,"children":3618},{"emptyLinePlaceholder":329},[3619],{"type":47,"value":332},{"type":41,"tag":141,"props":3621,"children":3622},{"class":143,"line":672},[3623],{"type":41,"tag":141,"props":3624,"children":3625},{"style":268},[3626],{"type":47,"value":3627},"\u002F\u002F result: { signature: \u003Cbase58 string>, signedMessage: \u003Cbase64>, signatureType: 'ed25519' }\n",{"type":41,"tag":141,"props":3629,"children":3630},{"class":143,"line":716},[3631,3636,3640,3644,3648,3652,3657,3661,3665,3670,3674,3679],{"type":41,"tag":141,"props":3632,"children":3633},{"style":289},[3634],{"type":47,"value":3635},"console",{"type":41,"tag":141,"props":3637,"children":3638},{"style":283},[3639],{"type":47,"value":364},{"type":41,"tag":141,"props":3641,"children":3642},{"style":426},[3643],{"type":47,"value":3174},{"type":41,"tag":141,"props":3645,"children":3646},{"style":289},[3647],{"type":47,"value":813},{"type":41,"tag":141,"props":3649,"children":3650},{"style":283},[3651],{"type":47,"value":317},{"type":41,"tag":141,"props":3653,"children":3654},{"style":154},[3655],{"type":47,"value":3656},"Signature:",{"type":41,"tag":141,"props":3658,"children":3659},{"style":283},[3660],{"type":47,"value":317},{"type":41,"tag":141,"props":3662,"children":3663},{"style":283},[3664],{"type":47,"value":444},{"type":41,"tag":141,"props":3666,"children":3667},{"style":289},[3668],{"type":47,"value":3669}," result",{"type":41,"tag":141,"props":3671,"children":3672},{"style":283},[3673],{"type":47,"value":364},{"type":41,"tag":141,"props":3675,"children":3676},{"style":289},[3677],{"type":47,"value":3678},"signature)",{"type":41,"tag":141,"props":3680,"children":3681},{"style":283},[3682],{"type":47,"value":322},{"type":41,"tag":2774,"props":3684,"children":3686},{"id":3685},"sign-and-send-a-transaction",[3687],{"type":47,"value":3688},"Sign and send a transaction",{"type":41,"tag":130,"props":3690,"children":3692},{"className":256,"code":3691,"language":258,"meta":135,"style":135},"import {\n  Connection,\n  Transaction,\n  SystemProgram,\n  PublicKey,\n  LAMPORTS_PER_SOL,\n} from '@solana\u002Fweb3.js';\n\nconst connection = new Connection('https:\u002F\u002Fapi.mainnet-beta.solana.com');\nconst { blockhash } = await connection.getLatestBlockhash();\nconst senderPubkey = new PublicKey(solanaAccounts[0]);\n\nconst tx = new Transaction().add(\n  SystemProgram.transfer({\n    fromPubkey: senderPubkey,\n    toPubkey: new PublicKey('11111111111111111111111111111112'),\n    lamports: 0.001 * LAMPORTS_PER_SOL,\n  }),\n);\ntx.recentBlockhash = blockhash;\ntx.feePayer = senderPubkey;\n\nconst serializedTx = tx.serialize({ requireAllSignatures: false });\nconst txBase64 = Buffer.from(serializedTx).toString('base64');\n\nconst SOLANA_MAINNET = 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp';\nconst sendResult = await solanaClient.core.invokeMethod({\n  scope: SOLANA_MAINNET,\n  request: {\n    method: 'signAndSendTransaction',\n    params: {\n      account: { address: solanaAccounts[0] },\n      transaction: txBase64,\n      scope: SOLANA_MAINNET,\n    },\n  },\n});\n\n\u002F\u002F sendResult: { signature: \u003Cbase58 transaction signature> }\nconsole.log('Transaction signature:', sendResult.signature);\n",[3693],{"type":41,"tag":78,"props":3694,"children":3695},{"__ignoreMap":135},[3696,3707,3719,3731,3743,3755,3767,3795,3802,3851,3901,3943,3950,3991,4015,4036,4081,4112,4128,4139,4169,4197,4204,4269,4334,4341,4373,4421,4441,4456,4484,4500,4540,4562,4583,4591,4599,4615,4623,4632],{"type":41,"tag":141,"props":3697,"children":3698},{"class":143,"line":144},[3699,3703],{"type":41,"tag":141,"props":3700,"children":3701},{"style":277},[3702],{"type":47,"value":280},{"type":41,"tag":141,"props":3704,"children":3705},{"style":283},[3706],{"type":47,"value":581},{"type":41,"tag":141,"props":3708,"children":3709},{"class":143,"line":25},[3710,3715],{"type":41,"tag":141,"props":3711,"children":3712},{"style":289},[3713],{"type":47,"value":3714},"  Connection",{"type":41,"tag":141,"props":3716,"children":3717},{"style":283},[3718],{"type":47,"value":630},{"type":41,"tag":141,"props":3720,"children":3721},{"class":143,"line":325},[3722,3727],{"type":41,"tag":141,"props":3723,"children":3724},{"style":289},[3725],{"type":47,"value":3726},"  Transaction",{"type":41,"tag":141,"props":3728,"children":3729},{"style":283},[3730],{"type":47,"value":630},{"type":41,"tag":141,"props":3732,"children":3733},{"class":143,"line":335},[3734,3739],{"type":41,"tag":141,"props":3735,"children":3736},{"style":289},[3737],{"type":47,"value":3738},"  SystemProgram",{"type":41,"tag":141,"props":3740,"children":3741},{"style":283},[3742],{"type":47,"value":630},{"type":41,"tag":141,"props":3744,"children":3745},{"class":143,"line":344},[3746,3751],{"type":41,"tag":141,"props":3747,"children":3748},{"style":289},[3749],{"type":47,"value":3750},"  PublicKey",{"type":41,"tag":141,"props":3752,"children":3753},{"style":283},[3754],{"type":47,"value":630},{"type":41,"tag":141,"props":3756,"children":3757},{"class":143,"line":353},[3758,3763],{"type":41,"tag":141,"props":3759,"children":3760},{"style":289},[3761],{"type":47,"value":3762},"  LAMPORTS_PER_SOL",{"type":41,"tag":141,"props":3764,"children":3765},{"style":283},[3766],{"type":47,"value":630},{"type":41,"tag":141,"props":3768,"children":3769},{"class":143,"line":385},[3770,3774,3778,3782,3787,3791],{"type":41,"tag":141,"props":3771,"children":3772},{"style":283},[3773],{"type":47,"value":1487},{"type":41,"tag":141,"props":3775,"children":3776},{"style":277},[3777],{"type":47,"value":302},{"type":41,"tag":141,"props":3779,"children":3780},{"style":283},[3781],{"type":47,"value":307},{"type":41,"tag":141,"props":3783,"children":3784},{"style":154},[3785],{"type":47,"value":3786},"@solana\u002Fweb3.js",{"type":41,"tag":141,"props":3788,"children":3789},{"style":283},[3790],{"type":47,"value":317},{"type":41,"tag":141,"props":3792,"children":3793},{"style":283},[3794],{"type":47,"value":322},{"type":41,"tag":141,"props":3796,"children":3797},{"class":143,"line":393},[3798],{"type":41,"tag":141,"props":3799,"children":3800},{"emptyLinePlaceholder":329},[3801],{"type":47,"value":332},{"type":41,"tag":141,"props":3803,"children":3804},{"class":143,"line":402},[3805,3809,3814,3818,3822,3827,3831,3835,3839,3843,3847],{"type":41,"tag":141,"props":3806,"children":3807},{"style":406},[3808],{"type":47,"value":409},{"type":41,"tag":141,"props":3810,"children":3811},{"style":289},[3812],{"type":47,"value":3813}," connection ",{"type":41,"tag":141,"props":3815,"children":3816},{"style":283},[3817],{"type":47,"value":374},{"type":41,"tag":141,"props":3819,"children":3820},{"style":283},[3821],{"type":47,"value":423},{"type":41,"tag":141,"props":3823,"children":3824},{"style":426},[3825],{"type":47,"value":3826}," Connection",{"type":41,"tag":141,"props":3828,"children":3829},{"style":289},[3830],{"type":47,"value":813},{"type":41,"tag":141,"props":3832,"children":3833},{"style":283},[3834],{"type":47,"value":317},{"type":41,"tag":141,"props":3836,"children":3837},{"style":154},[3838],{"type":47,"value":2696},{"type":41,"tag":141,"props":3840,"children":3841},{"style":283},[3842],{"type":47,"value":317},{"type":41,"tag":141,"props":3844,"children":3845},{"style":289},[3846],{"type":47,"value":562},{"type":41,"tag":141,"props":3848,"children":3849},{"style":283},[3850],{"type":47,"value":322},{"type":41,"tag":141,"props":3852,"children":3853},{"class":143,"line":475},[3854,3858,3862,3867,3871,3875,3879,3884,3888,3893,3897],{"type":41,"tag":141,"props":3855,"children":3856},{"style":406},[3857],{"type":47,"value":409},{"type":41,"tag":141,"props":3859,"children":3860},{"style":283},[3861],{"type":47,"value":286},{"type":41,"tag":141,"props":3863,"children":3864},{"style":289},[3865],{"type":47,"value":3866}," blockhash ",{"type":41,"tag":141,"props":3868,"children":3869},{"style":283},[3870],{"type":47,"value":1487},{"type":41,"tag":141,"props":3872,"children":3873},{"style":283},[3874],{"type":47,"value":576},{"type":41,"tag":141,"props":3876,"children":3877},{"style":277},[3878],{"type":47,"value":2557},{"type":41,"tag":141,"props":3880,"children":3881},{"style":289},[3882],{"type":47,"value":3883}," connection",{"type":41,"tag":141,"props":3885,"children":3886},{"style":283},[3887],{"type":47,"value":364},{"type":41,"tag":141,"props":3889,"children":3890},{"style":426},[3891],{"type":47,"value":3892},"getLatestBlockhash",{"type":41,"tag":141,"props":3894,"children":3895},{"style":289},[3896],{"type":47,"value":468},{"type":41,"tag":141,"props":3898,"children":3899},{"style":283},[3900],{"type":47,"value":322},{"type":41,"tag":141,"props":3902,"children":3903},{"class":143,"line":536},[3904,3908,3913,3917,3921,3926,3931,3935,3939],{"type":41,"tag":141,"props":3905,"children":3906},{"style":406},[3907],{"type":47,"value":409},{"type":41,"tag":141,"props":3909,"children":3910},{"style":289},[3911],{"type":47,"value":3912}," senderPubkey ",{"type":41,"tag":141,"props":3914,"children":3915},{"style":283},[3916],{"type":47,"value":374},{"type":41,"tag":141,"props":3918,"children":3919},{"style":283},[3920],{"type":47,"value":423},{"type":41,"tag":141,"props":3922,"children":3923},{"style":426},[3924],{"type":47,"value":3925}," PublicKey",{"type":41,"tag":141,"props":3927,"children":3928},{"style":289},[3929],{"type":47,"value":3930},"(solanaAccounts[",{"type":41,"tag":141,"props":3932,"children":3933},{"style":3145},[3934],{"type":47,"value":3552},{"type":41,"tag":141,"props":3936,"children":3937},{"style":289},[3938],{"type":47,"value":3153},{"type":41,"tag":141,"props":3940,"children":3941},{"style":283},[3942],{"type":47,"value":322},{"type":41,"tag":141,"props":3944,"children":3945},{"class":143,"line":584},[3946],{"type":41,"tag":141,"props":3947,"children":3948},{"emptyLinePlaceholder":329},[3949],{"type":47,"value":332},{"type":41,"tag":141,"props":3951,"children":3952},{"class":143,"line":602},[3953,3957,3962,3966,3970,3975,3979,3983,3987],{"type":41,"tag":141,"props":3954,"children":3955},{"style":406},[3956],{"type":47,"value":409},{"type":41,"tag":141,"props":3958,"children":3959},{"style":289},[3960],{"type":47,"value":3961}," tx ",{"type":41,"tag":141,"props":3963,"children":3964},{"style":283},[3965],{"type":47,"value":374},{"type":41,"tag":141,"props":3967,"children":3968},{"style":283},[3969],{"type":47,"value":423},{"type":41,"tag":141,"props":3971,"children":3972},{"style":426},[3973],{"type":47,"value":3974}," Transaction",{"type":41,"tag":141,"props":3976,"children":3977},{"style":289},[3978],{"type":47,"value":468},{"type":41,"tag":141,"props":3980,"children":3981},{"style":283},[3982],{"type":47,"value":364},{"type":41,"tag":141,"props":3984,"children":3985},{"style":426},[3986],{"type":47,"value":904},{"type":41,"tag":141,"props":3988,"children":3989},{"style":289},[3990],{"type":47,"value":2819},{"type":41,"tag":141,"props":3992,"children":3993},{"class":143,"line":633},[3994,3998,4002,4007,4011],{"type":41,"tag":141,"props":3995,"children":3996},{"style":289},[3997],{"type":47,"value":3738},{"type":41,"tag":141,"props":3999,"children":4000},{"style":283},[4001],{"type":47,"value":364},{"type":41,"tag":141,"props":4003,"children":4004},{"style":426},[4005],{"type":47,"value":4006},"transfer",{"type":41,"tag":141,"props":4008,"children":4009},{"style":289},[4010],{"type":47,"value":813},{"type":41,"tag":141,"props":4012,"children":4013},{"style":283},[4014],{"type":47,"value":533},{"type":41,"tag":141,"props":4016,"children":4017},{"class":143,"line":663},[4018,4023,4027,4032],{"type":41,"tag":141,"props":4019,"children":4020},{"style":540},[4021],{"type":47,"value":4022},"    fromPubkey",{"type":41,"tag":141,"props":4024,"children":4025},{"style":283},[4026],{"type":47,"value":595},{"type":41,"tag":141,"props":4028,"children":4029},{"style":289},[4030],{"type":47,"value":4031}," senderPubkey",{"type":41,"tag":141,"props":4033,"children":4034},{"style":283},[4035],{"type":47,"value":630},{"type":41,"tag":141,"props":4037,"children":4038},{"class":143,"line":672},[4039,4044,4048,4052,4056,4060,4064,4069,4073,4077],{"type":41,"tag":141,"props":4040,"children":4041},{"style":540},[4042],{"type":47,"value":4043},"    toPubkey",{"type":41,"tag":141,"props":4045,"children":4046},{"style":283},[4047],{"type":47,"value":595},{"type":41,"tag":141,"props":4049,"children":4050},{"style":283},[4051],{"type":47,"value":423},{"type":41,"tag":141,"props":4053,"children":4054},{"style":426},[4055],{"type":47,"value":3925},{"type":41,"tag":141,"props":4057,"children":4058},{"style":289},[4059],{"type":47,"value":813},{"type":41,"tag":141,"props":4061,"children":4062},{"style":283},[4063],{"type":47,"value":317},{"type":41,"tag":141,"props":4065,"children":4066},{"style":154},[4067],{"type":47,"value":4068},"11111111111111111111111111111112",{"type":41,"tag":141,"props":4070,"children":4071},{"style":283},[4072],{"type":47,"value":317},{"type":41,"tag":141,"props":4074,"children":4075},{"style":289},[4076],{"type":47,"value":562},{"type":41,"tag":141,"props":4078,"children":4079},{"style":283},[4080],{"type":47,"value":630},{"type":41,"tag":141,"props":4082,"children":4083},{"class":143,"line":716},[4084,4089,4093,4098,4103,4108],{"type":41,"tag":141,"props":4085,"children":4086},{"style":540},[4087],{"type":47,"value":4088},"    lamports",{"type":41,"tag":141,"props":4090,"children":4091},{"style":283},[4092],{"type":47,"value":595},{"type":41,"tag":141,"props":4094,"children":4095},{"style":3145},[4096],{"type":47,"value":4097}," 0.001",{"type":41,"tag":141,"props":4099,"children":4100},{"style":283},[4101],{"type":47,"value":4102}," *",{"type":41,"tag":141,"props":4104,"children":4105},{"style":289},[4106],{"type":47,"value":4107}," LAMPORTS_PER_SOL",{"type":41,"tag":141,"props":4109,"children":4110},{"style":283},[4111],{"type":47,"value":630},{"type":41,"tag":141,"props":4113,"children":4114},{"class":143,"line":779},[4115,4120,4124],{"type":41,"tag":141,"props":4116,"children":4117},{"style":283},[4118],{"type":47,"value":4119},"  }",{"type":41,"tag":141,"props":4121,"children":4122},{"style":289},[4123],{"type":47,"value":562},{"type":41,"tag":141,"props":4125,"children":4126},{"style":283},[4127],{"type":47,"value":630},{"type":41,"tag":141,"props":4129,"children":4130},{"class":143,"line":867},[4131,4135],{"type":41,"tag":141,"props":4132,"children":4133},{"style":289},[4134],{"type":47,"value":562},{"type":41,"tag":141,"props":4136,"children":4137},{"style":283},[4138],{"type":47,"value":322},{"type":41,"tag":141,"props":4140,"children":4141},{"class":143,"line":924},[4142,4147,4151,4156,4160,4165],{"type":41,"tag":141,"props":4143,"children":4144},{"style":289},[4145],{"type":47,"value":4146},"tx",{"type":41,"tag":141,"props":4148,"children":4149},{"style":283},[4150],{"type":47,"value":364},{"type":41,"tag":141,"props":4152,"children":4153},{"style":289},[4154],{"type":47,"value":4155},"recentBlockhash ",{"type":41,"tag":141,"props":4157,"children":4158},{"style":283},[4159],{"type":47,"value":374},{"type":41,"tag":141,"props":4161,"children":4162},{"style":289},[4163],{"type":47,"value":4164}," blockhash",{"type":41,"tag":141,"props":4166,"children":4167},{"style":283},[4168],{"type":47,"value":322},{"type":41,"tag":141,"props":4170,"children":4171},{"class":143,"line":932},[4172,4176,4180,4185,4189,4193],{"type":41,"tag":141,"props":4173,"children":4174},{"style":289},[4175],{"type":47,"value":4146},{"type":41,"tag":141,"props":4177,"children":4178},{"style":283},[4179],{"type":47,"value":364},{"type":41,"tag":141,"props":4181,"children":4182},{"style":289},[4183],{"type":47,"value":4184},"feePayer ",{"type":41,"tag":141,"props":4186,"children":4187},{"style":283},[4188],{"type":47,"value":374},{"type":41,"tag":141,"props":4190,"children":4191},{"style":289},[4192],{"type":47,"value":4031},{"type":41,"tag":141,"props":4194,"children":4195},{"style":283},[4196],{"type":47,"value":322},{"type":41,"tag":141,"props":4198,"children":4199},{"class":143,"line":989},[4200],{"type":41,"tag":141,"props":4201,"children":4202},{"emptyLinePlaceholder":329},[4203],{"type":47,"value":332},{"type":41,"tag":141,"props":4205,"children":4206},{"class":143,"line":1042},[4207,4211,4216,4220,4225,4229,4234,4238,4243,4248,4252,4257,4261,4265],{"type":41,"tag":141,"props":4208,"children":4209},{"style":406},[4210],{"type":47,"value":409},{"type":41,"tag":141,"props":4212,"children":4213},{"style":289},[4214],{"type":47,"value":4215}," serializedTx ",{"type":41,"tag":141,"props":4217,"children":4218},{"style":283},[4219],{"type":47,"value":374},{"type":41,"tag":141,"props":4221,"children":4222},{"style":289},[4223],{"type":47,"value":4224}," tx",{"type":41,"tag":141,"props":4226,"children":4227},{"style":283},[4228],{"type":47,"value":364},{"type":41,"tag":141,"props":4230,"children":4231},{"style":426},[4232],{"type":47,"value":4233},"serialize",{"type":41,"tag":141,"props":4235,"children":4236},{"style":289},[4237],{"type":47,"value":813},{"type":41,"tag":141,"props":4239,"children":4240},{"style":283},[4241],{"type":47,"value":4242},"{",{"type":41,"tag":141,"props":4244,"children":4245},{"style":540},[4246],{"type":47,"value":4247}," requireAllSignatures",{"type":41,"tag":141,"props":4249,"children":4250},{"style":283},[4251],{"type":47,"value":595},{"type":41,"tag":141,"props":4253,"children":4254},{"style":1089},[4255],{"type":47,"value":4256}," false",{"type":41,"tag":141,"props":4258,"children":4259},{"style":283},[4260],{"type":47,"value":297},{"type":41,"tag":141,"props":4262,"children":4263},{"style":289},[4264],{"type":47,"value":562},{"type":41,"tag":141,"props":4266,"children":4267},{"style":283},[4268],{"type":47,"value":322},{"type":41,"tag":141,"props":4270,"children":4271},{"class":143,"line":1050},[4272,4276,4281,4285,4289,4293,4297,4302,4306,4310,4314,4318,4322,4326,4330],{"type":41,"tag":141,"props":4273,"children":4274},{"style":406},[4275],{"type":47,"value":409},{"type":41,"tag":141,"props":4277,"children":4278},{"style":289},[4279],{"type":47,"value":4280}," txBase64 ",{"type":41,"tag":141,"props":4282,"children":4283},{"style":283},[4284],{"type":47,"value":374},{"type":41,"tag":141,"props":4286,"children":4287},{"style":289},[4288],{"type":47,"value":292},{"type":41,"tag":141,"props":4290,"children":4291},{"style":283},[4292],{"type":47,"value":364},{"type":41,"tag":141,"props":4294,"children":4295},{"style":426},[4296],{"type":47,"value":1303},{"type":41,"tag":141,"props":4298,"children":4299},{"style":289},[4300],{"type":47,"value":4301},"(serializedTx)",{"type":41,"tag":141,"props":4303,"children":4304},{"style":283},[4305],{"type":47,"value":364},{"type":41,"tag":141,"props":4307,"children":4308},{"style":426},[4309],{"type":47,"value":3340},{"type":41,"tag":141,"props":4311,"children":4312},{"style":289},[4313],{"type":47,"value":813},{"type":41,"tag":141,"props":4315,"children":4316},{"style":283},[4317],{"type":47,"value":317},{"type":41,"tag":141,"props":4319,"children":4320},{"style":154},[4321],{"type":47,"value":3353},{"type":41,"tag":141,"props":4323,"children":4324},{"style":283},[4325],{"type":47,"value":317},{"type":41,"tag":141,"props":4327,"children":4328},{"style":289},[4329],{"type":47,"value":562},{"type":41,"tag":141,"props":4331,"children":4332},{"style":283},[4333],{"type":47,"value":322},{"type":41,"tag":141,"props":4335,"children":4336},{"class":143,"line":1099},[4337],{"type":41,"tag":141,"props":4338,"children":4339},{"emptyLinePlaceholder":329},[4340],{"type":47,"value":332},{"type":41,"tag":141,"props":4342,"children":4343},{"class":143,"line":1108},[4344,4348,4353,4357,4361,4365,4369],{"type":41,"tag":141,"props":4345,"children":4346},{"style":406},[4347],{"type":47,"value":409},{"type":41,"tag":141,"props":4349,"children":4350},{"style":289},[4351],{"type":47,"value":4352}," SOLANA_MAINNET ",{"type":41,"tag":141,"props":4354,"children":4355},{"style":283},[4356],{"type":47,"value":374},{"type":41,"tag":141,"props":4358,"children":4359},{"style":283},[4360],{"type":47,"value":307},{"type":41,"tag":141,"props":4362,"children":4363},{"style":154},[4364],{"type":47,"value":2836},{"type":41,"tag":141,"props":4366,"children":4367},{"style":283},[4368],{"type":47,"value":317},{"type":41,"tag":141,"props":4370,"children":4371},{"style":283},[4372],{"type":47,"value":322},{"type":41,"tag":141,"props":4374,"children":4375},{"class":143,"line":1117},[4376,4380,4385,4389,4393,4397,4401,4405,4409,4413,4417],{"type":41,"tag":141,"props":4377,"children":4378},{"style":406},[4379],{"type":47,"value":409},{"type":41,"tag":141,"props":4381,"children":4382},{"style":289},[4383],{"type":47,"value":4384}," sendResult ",{"type":41,"tag":141,"props":4386,"children":4387},{"style":283},[4388],{"type":47,"value":374},{"type":41,"tag":141,"props":4390,"children":4391},{"style":277},[4392],{"type":47,"value":2557},{"type":41,"tag":141,"props":4394,"children":4395},{"style":289},[4396],{"type":47,"value":2798},{"type":41,"tag":141,"props":4398,"children":4399},{"style":283},[4400],{"type":47,"value":364},{"type":41,"tag":141,"props":4402,"children":4403},{"style":289},[4404],{"type":47,"value":2763},{"type":41,"tag":141,"props":4406,"children":4407},{"style":283},[4408],{"type":47,"value":364},{"type":41,"tag":141,"props":4410,"children":4411},{"style":426},[4412],{"type":47,"value":94},{"type":41,"tag":141,"props":4414,"children":4415},{"style":289},[4416],{"type":47,"value":813},{"type":41,"tag":141,"props":4418,"children":4419},{"style":283},[4420],{"type":47,"value":533},{"type":41,"tag":141,"props":4422,"children":4423},{"class":143,"line":1125},[4424,4428,4432,4437],{"type":41,"tag":141,"props":4425,"children":4426},{"style":540},[4427],{"type":47,"value":3436},{"type":41,"tag":141,"props":4429,"children":4430},{"style":283},[4431],{"type":47,"value":595},{"type":41,"tag":141,"props":4433,"children":4434},{"style":289},[4435],{"type":47,"value":4436}," SOLANA_MAINNET",{"type":41,"tag":141,"props":4438,"children":4439},{"style":283},[4440],{"type":47,"value":630},{"type":41,"tag":141,"props":4442,"children":4443},{"class":143,"line":1134},[4444,4448,4452],{"type":41,"tag":141,"props":4445,"children":4446},{"style":540},[4447],{"type":47,"value":3464},{"type":41,"tag":141,"props":4449,"children":4450},{"style":283},[4451],{"type":47,"value":595},{"type":41,"tag":141,"props":4453,"children":4454},{"style":283},[4455],{"type":47,"value":581},{"type":41,"tag":141,"props":4457,"children":4458},{"class":143,"line":2721},[4459,4463,4467,4471,4476,4480],{"type":41,"tag":141,"props":4460,"children":4461},{"style":540},[4462],{"type":47,"value":3480},{"type":41,"tag":141,"props":4464,"children":4465},{"style":283},[4466],{"type":47,"value":595},{"type":41,"tag":141,"props":4468,"children":4469},{"style":283},[4470],{"type":47,"value":307},{"type":41,"tag":141,"props":4472,"children":4473},{"style":154},[4474],{"type":47,"value":4475},"signAndSendTransaction",{"type":41,"tag":141,"props":4477,"children":4478},{"style":283},[4479],{"type":47,"value":317},{"type":41,"tag":141,"props":4481,"children":4482},{"style":283},[4483],{"type":47,"value":630},{"type":41,"tag":141,"props":4485,"children":4487},{"class":143,"line":4486},31,[4488,4492,4496],{"type":41,"tag":141,"props":4489,"children":4490},{"style":540},[4491],{"type":47,"value":3509},{"type":41,"tag":141,"props":4493,"children":4494},{"style":283},[4495],{"type":47,"value":595},{"type":41,"tag":141,"props":4497,"children":4498},{"style":283},[4499],{"type":47,"value":581},{"type":41,"tag":141,"props":4501,"children":4503},{"class":143,"line":4502},32,[4504,4508,4512,4516,4520,4524,4528,4532,4536],{"type":41,"tag":141,"props":4505,"children":4506},{"style":540},[4507],{"type":47,"value":3525},{"type":41,"tag":141,"props":4509,"children":4510},{"style":283},[4511],{"type":47,"value":595},{"type":41,"tag":141,"props":4513,"children":4514},{"style":283},[4515],{"type":47,"value":286},{"type":41,"tag":141,"props":4517,"children":4518},{"style":540},[4519],{"type":47,"value":3538},{"type":41,"tag":141,"props":4521,"children":4522},{"style":283},[4523],{"type":47,"value":595},{"type":41,"tag":141,"props":4525,"children":4526},{"style":289},[4527],{"type":47,"value":3547},{"type":41,"tag":141,"props":4529,"children":4530},{"style":3145},[4531],{"type":47,"value":3552},{"type":41,"tag":141,"props":4533,"children":4534},{"style":289},[4535],{"type":47,"value":3557},{"type":41,"tag":141,"props":4537,"children":4538},{"style":283},[4539],{"type":47,"value":3562},{"type":41,"tag":141,"props":4541,"children":4543},{"class":143,"line":4542},33,[4544,4549,4553,4558],{"type":41,"tag":141,"props":4545,"children":4546},{"style":540},[4547],{"type":47,"value":4548},"      transaction",{"type":41,"tag":141,"props":4550,"children":4551},{"style":283},[4552],{"type":47,"value":595},{"type":41,"tag":141,"props":4554,"children":4555},{"style":289},[4556],{"type":47,"value":4557}," txBase64",{"type":41,"tag":141,"props":4559,"children":4560},{"style":283},[4561],{"type":47,"value":630},{"type":41,"tag":141,"props":4563,"children":4565},{"class":143,"line":4564},34,[4566,4571,4575,4579],{"type":41,"tag":141,"props":4567,"children":4568},{"style":540},[4569],{"type":47,"value":4570},"      scope",{"type":41,"tag":141,"props":4572,"children":4573},{"style":283},[4574],{"type":47,"value":595},{"type":41,"tag":141,"props":4576,"children":4577},{"style":289},[4578],{"type":47,"value":4436},{"type":41,"tag":141,"props":4580,"children":4581},{"style":283},[4582],{"type":47,"value":630},{"type":41,"tag":141,"props":4584,"children":4586},{"class":143,"line":4585},35,[4587],{"type":41,"tag":141,"props":4588,"children":4589},{"style":283},[4590],{"type":47,"value":669},{"type":41,"tag":141,"props":4592,"children":4594},{"class":143,"line":4593},36,[4595],{"type":41,"tag":141,"props":4596,"children":4597},{"style":283},[4598],{"type":47,"value":2038},{"type":41,"tag":141,"props":4600,"children":4602},{"class":143,"line":4601},37,[4603,4607,4611],{"type":41,"tag":141,"props":4604,"children":4605},{"style":283},[4606],{"type":47,"value":1487},{"type":41,"tag":141,"props":4608,"children":4609},{"style":289},[4610],{"type":47,"value":562},{"type":41,"tag":141,"props":4612,"children":4613},{"style":283},[4614],{"type":47,"value":322},{"type":41,"tag":141,"props":4616,"children":4618},{"class":143,"line":4617},38,[4619],{"type":41,"tag":141,"props":4620,"children":4621},{"emptyLinePlaceholder":329},[4622],{"type":47,"value":332},{"type":41,"tag":141,"props":4624,"children":4626},{"class":143,"line":4625},39,[4627],{"type":41,"tag":141,"props":4628,"children":4629},{"style":268},[4630],{"type":47,"value":4631},"\u002F\u002F sendResult: { signature: \u003Cbase58 transaction signature> }\n",{"type":41,"tag":141,"props":4633,"children":4635},{"class":143,"line":4634},40,[4636,4640,4644,4648,4652,4656,4661,4665,4669,4674,4678,4682],{"type":41,"tag":141,"props":4637,"children":4638},{"style":289},[4639],{"type":47,"value":3635},{"type":41,"tag":141,"props":4641,"children":4642},{"style":283},[4643],{"type":47,"value":364},{"type":41,"tag":141,"props":4645,"children":4646},{"style":426},[4647],{"type":47,"value":3174},{"type":41,"tag":141,"props":4649,"children":4650},{"style":289},[4651],{"type":47,"value":813},{"type":41,"tag":141,"props":4653,"children":4654},{"style":283},[4655],{"type":47,"value":317},{"type":41,"tag":141,"props":4657,"children":4658},{"style":154},[4659],{"type":47,"value":4660},"Transaction signature:",{"type":41,"tag":141,"props":4662,"children":4663},{"style":283},[4664],{"type":47,"value":317},{"type":41,"tag":141,"props":4666,"children":4667},{"style":283},[4668],{"type":47,"value":444},{"type":41,"tag":141,"props":4670,"children":4671},{"style":289},[4672],{"type":47,"value":4673}," sendResult",{"type":41,"tag":141,"props":4675,"children":4676},{"style":283},[4677],{"type":47,"value":364},{"type":41,"tag":141,"props":4679,"children":4680},{"style":289},[4681],{"type":47,"value":3678},{"type":41,"tag":141,"props":4683,"children":4684},{"style":283},[4685],{"type":47,"value":322},{"type":41,"tag":2774,"props":4687,"children":4689},{"id":4688},"disconnect",[4690],{"type":47,"value":4691},"Disconnect",{"type":41,"tag":130,"props":4693,"children":4695},{"className":256,"code":4694,"language":258,"meta":135,"style":135},"await solanaClient.disconnect();\n",[4696],{"type":41,"tag":78,"props":4697,"children":4698},{"__ignoreMap":135},[4699],{"type":41,"tag":141,"props":4700,"children":4701},{"class":143,"line":144},[4702,4706,4710,4714,4718,4722],{"type":41,"tag":141,"props":4703,"children":4704},{"style":277},[4705],{"type":47,"value":2291},{"type":41,"tag":141,"props":4707,"children":4708},{"style":289},[4709],{"type":47,"value":2798},{"type":41,"tag":141,"props":4711,"children":4712},{"style":283},[4713],{"type":47,"value":364},{"type":41,"tag":141,"props":4715,"children":4716},{"style":426},[4717],{"type":47,"value":4688},{"type":41,"tag":141,"props":4719,"children":4720},{"style":289},[4721],{"type":47,"value":468},{"type":41,"tag":141,"props":4723,"children":4724},{"style":283},[4725],{"type":47,"value":322},{"type":41,"tag":123,"props":4727,"children":4729},{"id":4728},"step-7-full-react-native-component",[4730],{"type":47,"value":4731},"Step 7: Full React Native component",{"type":41,"tag":130,"props":4733,"children":4737},{"className":4734,"code":4735,"language":4736,"meta":135,"style":135},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import React, { useState, useEffect } from 'react';\nimport { View, Text, Button, Alert, Linking } from 'react-native';\nimport { createMultichainClient } from '@metamask\u002Fconnect-multichain';\nimport { createSolanaClient, SolanaClient } from '@metamask\u002Fconnect-solana';\nimport {\n  Connection,\n  Transaction,\n  SystemProgram,\n  PublicKey,\n  LAMPORTS_PER_SOL,\n} from '@solana\u002Fweb3.js';\n\nconst MAINNET_SCOPE = 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp';\nconst RPC_URL = 'https:\u002F\u002Fapi.mainnet-beta.solana.com';\n\nexport default function SolanaScreen() {\n  const [client, setClient] = useState\u003CSolanaClient | null>(null);\n  const [accounts, setAccounts] = useState\u003Cstring[]>([]);\n\n  useEffect(() => {\n    (async () => {\n      await createMultichainClient({\n        dapp: { name: 'My RN App', url: 'https:\u002F\u002Fmyapp.com' },\n        api: { supportedNetworks: {} },\n        mobile: { preferredOpenLink: (dl) => Linking.openURL(dl) },\n      });\n      const c = await createSolanaClient({\n        dapp: { name: 'My RN App', url: 'https:\u002F\u002Fmyapp.com' },\n        api: { supportedNetworks: { mainnet: RPC_URL } },\n      });\n      setClient(c);\n      c.core.on('wallet_sessionChanged', (session) => {\n        const caipAccounts = session?.sessionScopes?.[MAINNET_SCOPE]?.accounts ?? [];\n        setAccounts(caipAccounts.map((a) => a.split(':')[2]));\n      });\n    })();\n  }, []);\n\n  const handleConnect = async () => {\n    if (!client) return;\n    try {\n      await client.core.connect([MAINNET_SCOPE], []);\n    } catch (err: any) {\n      Alert.alert('Connection failed', err.message);\n    }\n  };\n\n  const handleSignMessage = async () => {\n    if (!client || accounts.length === 0) return;\n    try {\n      const message = Buffer.from('Hello from React Native!').toString('base64');\n      const result = await client.core.invokeMethod({\n        scope: MAINNET_SCOPE,\n        request: { method: 'signMessage', params: { account: { address: accounts[0] }, message } },\n      });\n      Alert.alert('Signed', JSON.stringify(result.signature).slice(0, 40) + '...');\n    } catch (err: any) {\n      Alert.alert('Sign failed', err.message);\n    }\n  };\n\n  const handleSendTransaction = async () => {\n    if (!client || accounts.length === 0) return;\n    try {\n      const connection = new Connection(RPC_URL);\n      const { blockhash } = await connection.getLatestBlockhash();\n      const sender = new PublicKey(accounts[0]);\n\n      const tx = new Transaction().add(\n        SystemProgram.transfer({\n          fromPubkey: sender,\n          toPubkey: new PublicKey('11111111111111111111111111111112'),\n          lamports: 0.001 * LAMPORTS_PER_SOL,\n        }),\n      );\n      tx.recentBlockhash = blockhash;\n      tx.feePayer = sender;\n\n      const txBase64 = Buffer.from(\n        tx.serialize({ requireAllSignatures: false }),\n      ).toString('base64');\n\n      const result = await client.core.invokeMethod({\n        scope: MAINNET_SCOPE,\n        request: {\n          method: 'signAndSendTransaction',\n          params: { account: { address: accounts[0] }, transaction: txBase64, scope: MAINNET_SCOPE },\n        },\n      });\n      Alert.alert('Sent', result.signature);\n    } catch (err: any) {\n      Alert.alert('Transaction failed', err.message);\n    }\n  };\n\n  const handleDisconnect = async () => {\n    if (!client) return;\n    await client.disconnect();\n    setAccounts([]);\n  };\n\n  if (accounts.length === 0) {\n    return (\n      \u003CView style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>\n        \u003CButton title=\"Connect MetaMask (Solana)\" onPress={handleConnect} \u002F>\n      \u003C\u002FView>\n    );\n  }\n\n  return (\n    \u003CView style={{ flex: 1, justifyContent: 'center', alignItems: 'center', gap: 12 }}>\n      \u003CText>Address: {accounts[0]}\u003C\u002FText>\n      \u003CButton title=\"Sign Message\" onPress={handleSignMessage} \u002F>\n      \u003CButton title=\"Send 0.001 SOL\" onPress={handleSendTransaction} \u002F>\n      \u003CButton title=\"Disconnect\" onPress={handleDisconnect} \u002F>\n    \u003C\u002FView>\n  );\n}\n","tsx",[4738],{"type":41,"tag":78,"props":4739,"children":4740},{"__ignoreMap":135},[4741,4800,4875,4914,4962,4973,4984,4995,5006,5017,5028,5055,5062,5094,5126,5133,5164,5243,5305,5312,5336,5361,5381,5447,5481,5551,5567,5600,5663,5712,5727,5752,5816,5882,5972,5987,6004,6021,6028,6061,6094,6107,6161,6199,6260,6269,6277,6285,6318,6379,6391,6472,6520,6542,6651,6667,6796,6832,6889,6897,6905,6913,6946,7002,7014,7055,7103,7152,7160,7200,7225,7246,7291,7320,7337,7350,7380,7409,7417,7449,7498,7538,7546,7594,7614,7630,7659,7750,7759,7775,7832,7868,7925,7933,7941,7949,7982,8014,8043,8060,8068,8076,8117,8131,8225,8282,8300,8313,8322,8330,8343,8446,8498,8548,8598,8647,8664,8677],{"type":41,"tag":141,"props":4742,"children":4743},{"class":143,"line":144},[4744,4748,4753,4757,4761,4766,4770,4775,4779,4783,4787,4792,4796],{"type":41,"tag":141,"props":4745,"children":4746},{"style":277},[4747],{"type":47,"value":280},{"type":41,"tag":141,"props":4749,"children":4750},{"style":289},[4751],{"type":47,"value":4752}," React",{"type":41,"tag":141,"props":4754,"children":4755},{"style":283},[4756],{"type":47,"value":444},{"type":41,"tag":141,"props":4758,"children":4759},{"style":283},[4760],{"type":47,"value":286},{"type":41,"tag":141,"props":4762,"children":4763},{"style":289},[4764],{"type":47,"value":4765}," useState",{"type":41,"tag":141,"props":4767,"children":4768},{"style":283},[4769],{"type":47,"value":444},{"type":41,"tag":141,"props":4771,"children":4772},{"style":289},[4773],{"type":47,"value":4774}," useEffect",{"type":41,"tag":141,"props":4776,"children":4777},{"style":283},[4778],{"type":47,"value":297},{"type":41,"tag":141,"props":4780,"children":4781},{"style":277},[4782],{"type":47,"value":302},{"type":41,"tag":141,"props":4784,"children":4785},{"style":283},[4786],{"type":47,"value":307},{"type":41,"tag":141,"props":4788,"children":4789},{"style":154},[4790],{"type":47,"value":4791},"react",{"type":41,"tag":141,"props":4793,"children":4794},{"style":283},[4795],{"type":47,"value":317},{"type":41,"tag":141,"props":4797,"children":4798},{"style":283},[4799],{"type":47,"value":322},{"type":41,"tag":141,"props":4801,"children":4802},{"class":143,"line":25},[4803,4807,4811,4816,4820,4825,4829,4834,4838,4843,4847,4851,4855,4859,4863,4867,4871],{"type":41,"tag":141,"props":4804,"children":4805},{"style":277},[4806],{"type":47,"value":280},{"type":41,"tag":141,"props":4808,"children":4809},{"style":283},[4810],{"type":47,"value":286},{"type":41,"tag":141,"props":4812,"children":4813},{"style":289},[4814],{"type":47,"value":4815}," View",{"type":41,"tag":141,"props":4817,"children":4818},{"style":283},[4819],{"type":47,"value":444},{"type":41,"tag":141,"props":4821,"children":4822},{"style":289},[4823],{"type":47,"value":4824}," Text",{"type":41,"tag":141,"props":4826,"children":4827},{"style":283},[4828],{"type":47,"value":444},{"type":41,"tag":141,"props":4830,"children":4831},{"style":289},[4832],{"type":47,"value":4833}," Button",{"type":41,"tag":141,"props":4835,"children":4836},{"style":283},[4837],{"type":47,"value":444},{"type":41,"tag":141,"props":4839,"children":4840},{"style":289},[4841],{"type":47,"value":4842}," Alert",{"type":41,"tag":141,"props":4844,"children":4845},{"style":283},[4846],{"type":47,"value":444},{"type":41,"tag":141,"props":4848,"children":4849},{"style":289},[4850],{"type":47,"value":2244},{"type":41,"tag":141,"props":4852,"children":4853},{"style":283},[4854],{"type":47,"value":297},{"type":41,"tag":141,"props":4856,"children":4857},{"style":277},[4858],{"type":47,"value":302},{"type":41,"tag":141,"props":4860,"children":4861},{"style":283},[4862],{"type":47,"value":307},{"type":41,"tag":141,"props":4864,"children":4865},{"style":154},[4866],{"type":47,"value":14},{"type":41,"tag":141,"props":4868,"children":4869},{"style":283},[4870],{"type":47,"value":317},{"type":41,"tag":141,"props":4872,"children":4873},{"style":283},[4874],{"type":47,"value":322},{"type":41,"tag":141,"props":4876,"children":4877},{"class":143,"line":325},[4878,4882,4886,4890,4894,4898,4902,4906,4910],{"type":41,"tag":141,"props":4879,"children":4880},{"style":277},[4881],{"type":47,"value":280},{"type":41,"tag":141,"props":4883,"children":4884},{"style":283},[4885],{"type":47,"value":286},{"type":41,"tag":141,"props":4887,"children":4888},{"style":289},[4889],{"type":47,"value":2164},{"type":41,"tag":141,"props":4891,"children":4892},{"style":283},[4893],{"type":47,"value":297},{"type":41,"tag":141,"props":4895,"children":4896},{"style":277},[4897],{"type":47,"value":302},{"type":41,"tag":141,"props":4899,"children":4900},{"style":283},[4901],{"type":47,"value":307},{"type":41,"tag":141,"props":4903,"children":4904},{"style":154},[4905],{"type":47,"value":201},{"type":41,"tag":141,"props":4907,"children":4908},{"style":283},[4909],{"type":47,"value":317},{"type":41,"tag":141,"props":4911,"children":4912},{"style":283},[4913],{"type":47,"value":322},{"type":41,"tag":141,"props":4915,"children":4916},{"class":143,"line":335},[4917,4921,4925,4929,4933,4938,4942,4946,4950,4954,4958],{"type":41,"tag":141,"props":4918,"children":4919},{"style":277},[4920],{"type":47,"value":280},{"type":41,"tag":141,"props":4922,"children":4923},{"style":283},[4924],{"type":47,"value":286},{"type":41,"tag":141,"props":4926,"children":4927},{"style":289},[4928],{"type":47,"value":2204},{"type":41,"tag":141,"props":4930,"children":4931},{"style":283},[4932],{"type":47,"value":444},{"type":41,"tag":141,"props":4934,"children":4935},{"style":289},[4936],{"type":47,"value":4937}," SolanaClient",{"type":41,"tag":141,"props":4939,"children":4940},{"style":283},[4941],{"type":47,"value":297},{"type":41,"tag":141,"props":4943,"children":4944},{"style":277},[4945],{"type":47,"value":302},{"type":41,"tag":141,"props":4947,"children":4948},{"style":283},[4949],{"type":47,"value":307},{"type":41,"tag":141,"props":4951,"children":4952},{"style":154},[4953],{"type":47,"value":83},{"type":41,"tag":141,"props":4955,"children":4956},{"style":283},[4957],{"type":47,"value":317},{"type":41,"tag":141,"props":4959,"children":4960},{"style":283},[4961],{"type":47,"value":322},{"type":41,"tag":141,"props":4963,"children":4964},{"class":143,"line":344},[4965,4969],{"type":41,"tag":141,"props":4966,"children":4967},{"style":277},[4968],{"type":47,"value":280},{"type":41,"tag":141,"props":4970,"children":4971},{"style":283},[4972],{"type":47,"value":581},{"type":41,"tag":141,"props":4974,"children":4975},{"class":143,"line":353},[4976,4980],{"type":41,"tag":141,"props":4977,"children":4978},{"style":289},[4979],{"type":47,"value":3714},{"type":41,"tag":141,"props":4981,"children":4982},{"style":283},[4983],{"type":47,"value":630},{"type":41,"tag":141,"props":4985,"children":4986},{"class":143,"line":385},[4987,4991],{"type":41,"tag":141,"props":4988,"children":4989},{"style":289},[4990],{"type":47,"value":3726},{"type":41,"tag":141,"props":4992,"children":4993},{"style":283},[4994],{"type":47,"value":630},{"type":41,"tag":141,"props":4996,"children":4997},{"class":143,"line":393},[4998,5002],{"type":41,"tag":141,"props":4999,"children":5000},{"style":289},[5001],{"type":47,"value":3738},{"type":41,"tag":141,"props":5003,"children":5004},{"style":283},[5005],{"type":47,"value":630},{"type":41,"tag":141,"props":5007,"children":5008},{"class":143,"line":402},[5009,5013],{"type":41,"tag":141,"props":5010,"children":5011},{"style":289},[5012],{"type":47,"value":3750},{"type":41,"tag":141,"props":5014,"children":5015},{"style":283},[5016],{"type":47,"value":630},{"type":41,"tag":141,"props":5018,"children":5019},{"class":143,"line":475},[5020,5024],{"type":41,"tag":141,"props":5021,"children":5022},{"style":289},[5023],{"type":47,"value":3762},{"type":41,"tag":141,"props":5025,"children":5026},{"style":283},[5027],{"type":47,"value":630},{"type":41,"tag":141,"props":5029,"children":5030},{"class":143,"line":536},[5031,5035,5039,5043,5047,5051],{"type":41,"tag":141,"props":5032,"children":5033},{"style":283},[5034],{"type":47,"value":1487},{"type":41,"tag":141,"props":5036,"children":5037},{"style":277},[5038],{"type":47,"value":302},{"type":41,"tag":141,"props":5040,"children":5041},{"style":283},[5042],{"type":47,"value":307},{"type":41,"tag":141,"props":5044,"children":5045},{"style":154},[5046],{"type":47,"value":3786},{"type":41,"tag":141,"props":5048,"children":5049},{"style":283},[5050],{"type":47,"value":317},{"type":41,"tag":141,"props":5052,"children":5053},{"style":283},[5054],{"type":47,"value":322},{"type":41,"tag":141,"props":5056,"children":5057},{"class":143,"line":584},[5058],{"type":41,"tag":141,"props":5059,"children":5060},{"emptyLinePlaceholder":329},[5061],{"type":47,"value":332},{"type":41,"tag":141,"props":5063,"children":5064},{"class":143,"line":602},[5065,5069,5074,5078,5082,5086,5090],{"type":41,"tag":141,"props":5066,"children":5067},{"style":406},[5068],{"type":47,"value":409},{"type":41,"tag":141,"props":5070,"children":5071},{"style":289},[5072],{"type":47,"value":5073}," MAINNET_SCOPE ",{"type":41,"tag":141,"props":5075,"children":5076},{"style":283},[5077],{"type":47,"value":374},{"type":41,"tag":141,"props":5079,"children":5080},{"style":283},[5081],{"type":47,"value":307},{"type":41,"tag":141,"props":5083,"children":5084},{"style":154},[5085],{"type":47,"value":2836},{"type":41,"tag":141,"props":5087,"children":5088},{"style":283},[5089],{"type":47,"value":317},{"type":41,"tag":141,"props":5091,"children":5092},{"style":283},[5093],{"type":47,"value":322},{"type":41,"tag":141,"props":5095,"children":5096},{"class":143,"line":633},[5097,5101,5106,5110,5114,5118,5122],{"type":41,"tag":141,"props":5098,"children":5099},{"style":406},[5100],{"type":47,"value":409},{"type":41,"tag":141,"props":5102,"children":5103},{"style":289},[5104],{"type":47,"value":5105}," RPC_URL ",{"type":41,"tag":141,"props":5107,"children":5108},{"style":283},[5109],{"type":47,"value":374},{"type":41,"tag":141,"props":5111,"children":5112},{"style":283},[5113],{"type":47,"value":307},{"type":41,"tag":141,"props":5115,"children":5116},{"style":154},[5117],{"type":47,"value":2696},{"type":41,"tag":141,"props":5119,"children":5120},{"style":283},[5121],{"type":47,"value":317},{"type":41,"tag":141,"props":5123,"children":5124},{"style":283},[5125],{"type":47,"value":322},{"type":41,"tag":141,"props":5127,"children":5128},{"class":143,"line":663},[5129],{"type":41,"tag":141,"props":5130,"children":5131},{"emptyLinePlaceholder":329},[5132],{"type":47,"value":332},{"type":41,"tag":141,"props":5134,"children":5135},{"class":143,"line":672},[5136,5141,5146,5151,5156,5160],{"type":41,"tag":141,"props":5137,"children":5138},{"style":277},[5139],{"type":47,"value":5140},"export",{"type":41,"tag":141,"props":5142,"children":5143},{"style":277},[5144],{"type":47,"value":5145}," default",{"type":41,"tag":141,"props":5147,"children":5148},{"style":406},[5149],{"type":47,"value":5150}," function",{"type":41,"tag":141,"props":5152,"children":5153},{"style":426},[5154],{"type":47,"value":5155}," SolanaScreen",{"type":41,"tag":141,"props":5157,"children":5158},{"style":283},[5159],{"type":47,"value":468},{"type":41,"tag":141,"props":5161,"children":5162},{"style":283},[5163],{"type":47,"value":581},{"type":41,"tag":141,"props":5165,"children":5166},{"class":143,"line":716},[5167,5171,5176,5181,5185,5190,5194,5198,5202,5206,5211,5216,5221,5226,5230,5235,5239],{"type":41,"tag":141,"props":5168,"children":5169},{"style":406},[5170],{"type":47,"value":2982},{"type":41,"tag":141,"props":5172,"children":5173},{"style":283},[5174],{"type":47,"value":5175}," [",{"type":41,"tag":141,"props":5177,"children":5178},{"style":289},[5179],{"type":47,"value":5180},"client",{"type":41,"tag":141,"props":5182,"children":5183},{"style":283},[5184],{"type":47,"value":444},{"type":41,"tag":141,"props":5186,"children":5187},{"style":289},[5188],{"type":47,"value":5189}," setClient",{"type":41,"tag":141,"props":5191,"children":5192},{"style":283},[5193],{"type":47,"value":2845},{"type":41,"tag":141,"props":5195,"children":5196},{"style":283},[5197],{"type":47,"value":576},{"type":41,"tag":141,"props":5199,"children":5200},{"style":426},[5201],{"type":47,"value":4765},{"type":41,"tag":141,"props":5203,"children":5204},{"style":283},[5205],{"type":47,"value":434},{"type":41,"tag":141,"props":5207,"children":5208},{"style":148},[5209],{"type":47,"value":5210},"SolanaClient",{"type":41,"tag":141,"props":5212,"children":5213},{"style":283},[5214],{"type":47,"value":5215}," |",{"type":41,"tag":141,"props":5217,"children":5218},{"style":148},[5219],{"type":47,"value":5220}," null",{"type":41,"tag":141,"props":5222,"children":5223},{"style":283},[5224],{"type":47,"value":5225},">",{"type":41,"tag":141,"props":5227,"children":5228},{"style":540},[5229],{"type":47,"value":813},{"type":41,"tag":141,"props":5231,"children":5232},{"style":283},[5233],{"type":47,"value":5234},"null",{"type":41,"tag":141,"props":5236,"children":5237},{"style":540},[5238],{"type":47,"value":562},{"type":41,"tag":141,"props":5240,"children":5241},{"style":283},[5242],{"type":47,"value":322},{"type":41,"tag":141,"props":5244,"children":5245},{"class":143,"line":779},[5246,5250,5254,5258,5262,5267,5271,5275,5279,5283,5287,5292,5296,5301],{"type":41,"tag":141,"props":5247,"children":5248},{"style":406},[5249],{"type":47,"value":2982},{"type":41,"tag":141,"props":5251,"children":5252},{"style":283},[5253],{"type":47,"value":5175},{"type":41,"tag":141,"props":5255,"children":5256},{"style":289},[5257],{"type":47,"value":3043},{"type":41,"tag":141,"props":5259,"children":5260},{"style":283},[5261],{"type":47,"value":444},{"type":41,"tag":141,"props":5263,"children":5264},{"style":289},[5265],{"type":47,"value":5266}," setAccounts",{"type":41,"tag":141,"props":5268,"children":5269},{"style":283},[5270],{"type":47,"value":2845},{"type":41,"tag":141,"props":5272,"children":5273},{"style":283},[5274],{"type":47,"value":576},{"type":41,"tag":141,"props":5276,"children":5277},{"style":426},[5278],{"type":47,"value":4765},{"type":41,"tag":141,"props":5280,"children":5281},{"style":283},[5282],{"type":47,"value":434},{"type":41,"tag":141,"props":5284,"children":5285},{"style":148},[5286],{"type":47,"value":439},{"type":41,"tag":141,"props":5288,"children":5289},{"style":540},[5290],{"type":47,"value":5291},"[]",{"type":41,"tag":141,"props":5293,"children":5294},{"style":283},[5295],{"type":47,"value":5225},{"type":41,"tag":141,"props":5297,"children":5298},{"style":540},[5299],{"type":47,"value":5300},"([])",{"type":41,"tag":141,"props":5302,"children":5303},{"style":283},[5304],{"type":47,"value":322},{"type":41,"tag":141,"props":5306,"children":5307},{"class":143,"line":867},[5308],{"type":41,"tag":141,"props":5309,"children":5310},{"emptyLinePlaceholder":329},[5311],{"type":47,"value":332},{"type":41,"tag":141,"props":5313,"children":5314},{"class":143,"line":924},[5315,5320,5324,5328,5332],{"type":41,"tag":141,"props":5316,"children":5317},{"style":426},[5318],{"type":47,"value":5319},"  useEffect",{"type":41,"tag":141,"props":5321,"children":5322},{"style":540},[5323],{"type":47,"value":813},{"type":41,"tag":141,"props":5325,"children":5326},{"style":283},[5327],{"type":47,"value":468},{"type":41,"tag":141,"props":5329,"children":5330},{"style":406},[5331],{"type":47,"value":772},{"type":41,"tag":141,"props":5333,"children":5334},{"style":283},[5335],{"type":47,"value":581},{"type":41,"tag":141,"props":5337,"children":5338},{"class":143,"line":932},[5339,5344,5349,5353,5357],{"type":41,"tag":141,"props":5340,"children":5341},{"style":540},[5342],{"type":47,"value":5343},"    (",{"type":41,"tag":141,"props":5345,"children":5346},{"style":406},[5347],{"type":47,"value":5348},"async",{"type":41,"tag":141,"props":5350,"children":5351},{"style":283},[5352],{"type":47,"value":1408},{"type":41,"tag":141,"props":5354,"children":5355},{"style":406},[5356],{"type":47,"value":772},{"type":41,"tag":141,"props":5358,"children":5359},{"style":283},[5360],{"type":47,"value":581},{"type":41,"tag":141,"props":5362,"children":5363},{"class":143,"line":989},[5364,5369,5373,5377],{"type":41,"tag":141,"props":5365,"children":5366},{"style":277},[5367],{"type":47,"value":5368},"      await",{"type":41,"tag":141,"props":5370,"children":5371},{"style":426},[5372],{"type":47,"value":2164},{"type":41,"tag":141,"props":5374,"children":5375},{"style":540},[5376],{"type":47,"value":813},{"type":41,"tag":141,"props":5378,"children":5379},{"style":283},[5380],{"type":47,"value":533},{"type":41,"tag":141,"props":5382,"children":5383},{"class":143,"line":1042},[5384,5389,5393,5397,5401,5405,5409,5414,5418,5422,5427,5431,5435,5439,5443],{"type":41,"tag":141,"props":5385,"children":5386},{"style":540},[5387],{"type":47,"value":5388},"        dapp",{"type":41,"tag":141,"props":5390,"children":5391},{"style":283},[5392],{"type":47,"value":595},{"type":41,"tag":141,"props":5394,"children":5395},{"style":283},[5396],{"type":47,"value":286},{"type":41,"tag":141,"props":5398,"children":5399},{"style":540},[5400],{"type":47,"value":1336},{"type":41,"tag":141,"props":5402,"children":5403},{"style":283},[5404],{"type":47,"value":595},{"type":41,"tag":141,"props":5406,"children":5407},{"style":283},[5408],{"type":47,"value":307},{"type":41,"tag":141,"props":5410,"children":5411},{"style":154},[5412],{"type":47,"value":5413},"My RN App",{"type":41,"tag":141,"props":5415,"children":5416},{"style":283},[5417],{"type":47,"value":317},{"type":41,"tag":141,"props":5419,"children":5420},{"style":283},[5421],{"type":47,"value":444},{"type":41,"tag":141,"props":5423,"children":5424},{"style":540},[5425],{"type":47,"value":5426}," url",{"type":41,"tag":141,"props":5428,"children":5429},{"style":283},[5430],{"type":47,"value":595},{"type":41,"tag":141,"props":5432,"children":5433},{"style":283},[5434],{"type":47,"value":307},{"type":41,"tag":141,"props":5436,"children":5437},{"style":154},[5438],{"type":47,"value":2369},{"type":41,"tag":141,"props":5440,"children":5441},{"style":283},[5442],{"type":47,"value":317},{"type":41,"tag":141,"props":5444,"children":5445},{"style":283},[5446],{"type":47,"value":713},{"type":41,"tag":141,"props":5448,"children":5449},{"class":143,"line":1050},[5450,5455,5459,5463,5468,5472,5477],{"type":41,"tag":141,"props":5451,"children":5452},{"style":540},[5453],{"type":47,"value":5454},"        api",{"type":41,"tag":141,"props":5456,"children":5457},{"style":283},[5458],{"type":47,"value":595},{"type":41,"tag":141,"props":5460,"children":5461},{"style":283},[5462],{"type":47,"value":286},{"type":41,"tag":141,"props":5464,"children":5465},{"style":540},[5466],{"type":47,"value":5467}," supportedNetworks",{"type":41,"tag":141,"props":5469,"children":5470},{"style":283},[5471],{"type":47,"value":595},{"type":41,"tag":141,"props":5473,"children":5474},{"style":283},[5475],{"type":47,"value":5476}," {}",{"type":41,"tag":141,"props":5478,"children":5479},{"style":283},[5480],{"type":47,"value":713},{"type":41,"tag":141,"props":5482,"children":5483},{"class":143,"line":1099},[5484,5489,5493,5497,5502,5506,5510,5515,5519,5523,5527,5531,5535,5539,5543,5547],{"type":41,"tag":141,"props":5485,"children":5486},{"style":540},[5487],{"type":47,"value":5488},"        mobile",{"type":41,"tag":141,"props":5490,"children":5491},{"style":283},[5492],{"type":47,"value":595},{"type":41,"tag":141,"props":5494,"children":5495},{"style":283},[5496],{"type":47,"value":286},{"type":41,"tag":141,"props":5498,"children":5499},{"style":426},[5500],{"type":47,"value":5501}," preferredOpenLink",{"type":41,"tag":141,"props":5503,"children":5504},{"style":283},[5505],{"type":47,"value":595},{"type":41,"tag":141,"props":5507,"children":5508},{"style":283},[5509],{"type":47,"value":486},{"type":41,"tag":141,"props":5511,"children":5512},{"style":733},[5513],{"type":47,"value":5514},"dl",{"type":41,"tag":141,"props":5516,"children":5517},{"style":283},[5518],{"type":47,"value":562},{"type":41,"tag":141,"props":5520,"children":5521},{"style":406},[5522],{"type":47,"value":772},{"type":41,"tag":141,"props":5524,"children":5525},{"style":289},[5526],{"type":47,"value":2244},{"type":41,"tag":141,"props":5528,"children":5529},{"style":283},[5530],{"type":47,"value":364},{"type":41,"tag":141,"props":5532,"children":5533},{"style":426},[5534],{"type":47,"value":2490},{"type":41,"tag":141,"props":5536,"children":5537},{"style":540},[5538],{"type":47,"value":813},{"type":41,"tag":141,"props":5540,"children":5541},{"style":289},[5542],{"type":47,"value":5514},{"type":41,"tag":141,"props":5544,"children":5545},{"style":540},[5546],{"type":47,"value":528},{"type":41,"tag":141,"props":5548,"children":5549},{"style":283},[5550],{"type":47,"value":3562},{"type":41,"tag":141,"props":5552,"children":5553},{"class":143,"line":1108},[5554,5559,5563],{"type":41,"tag":141,"props":5555,"children":5556},{"style":283},[5557],{"type":47,"value":5558},"      }",{"type":41,"tag":141,"props":5560,"children":5561},{"style":540},[5562],{"type":47,"value":562},{"type":41,"tag":141,"props":5564,"children":5565},{"style":283},[5566],{"type":47,"value":322},{"type":41,"tag":141,"props":5568,"children":5569},{"class":143,"line":1117},[5570,5575,5580,5584,5588,5592,5596],{"type":41,"tag":141,"props":5571,"children":5572},{"style":406},[5573],{"type":47,"value":5574},"      const",{"type":41,"tag":141,"props":5576,"children":5577},{"style":289},[5578],{"type":47,"value":5579}," c",{"type":41,"tag":141,"props":5581,"children":5582},{"style":283},[5583],{"type":47,"value":576},{"type":41,"tag":141,"props":5585,"children":5586},{"style":277},[5587],{"type":47,"value":2557},{"type":41,"tag":141,"props":5589,"children":5590},{"style":426},[5591],{"type":47,"value":2204},{"type":41,"tag":141,"props":5593,"children":5594},{"style":540},[5595],{"type":47,"value":813},{"type":41,"tag":141,"props":5597,"children":5598},{"style":283},[5599],{"type":47,"value":533},{"type":41,"tag":141,"props":5601,"children":5602},{"class":143,"line":1125},[5603,5607,5611,5615,5619,5623,5627,5631,5635,5639,5643,5647,5651,5655,5659],{"type":41,"tag":141,"props":5604,"children":5605},{"style":540},[5606],{"type":47,"value":5388},{"type":41,"tag":141,"props":5608,"children":5609},{"style":283},[5610],{"type":47,"value":595},{"type":41,"tag":141,"props":5612,"children":5613},{"style":283},[5614],{"type":47,"value":286},{"type":41,"tag":141,"props":5616,"children":5617},{"style":540},[5618],{"type":47,"value":1336},{"type":41,"tag":141,"props":5620,"children":5621},{"style":283},[5622],{"type":47,"value":595},{"type":41,"tag":141,"props":5624,"children":5625},{"style":283},[5626],{"type":47,"value":307},{"type":41,"tag":141,"props":5628,"children":5629},{"style":154},[5630],{"type":47,"value":5413},{"type":41,"tag":141,"props":5632,"children":5633},{"style":283},[5634],{"type":47,"value":317},{"type":41,"tag":141,"props":5636,"children":5637},{"style":283},[5638],{"type":47,"value":444},{"type":41,"tag":141,"props":5640,"children":5641},{"style":540},[5642],{"type":47,"value":5426},{"type":41,"tag":141,"props":5644,"children":5645},{"style":283},[5646],{"type":47,"value":595},{"type":41,"tag":141,"props":5648,"children":5649},{"style":283},[5650],{"type":47,"value":307},{"type":41,"tag":141,"props":5652,"children":5653},{"style":154},[5654],{"type":47,"value":2369},{"type":41,"tag":141,"props":5656,"children":5657},{"style":283},[5658],{"type":47,"value":317},{"type":41,"tag":141,"props":5660,"children":5661},{"style":283},[5662],{"type":47,"value":713},{"type":41,"tag":141,"props":5664,"children":5665},{"class":143,"line":1134},[5666,5670,5674,5678,5682,5686,5690,5695,5699,5704,5708],{"type":41,"tag":141,"props":5667,"children":5668},{"style":540},[5669],{"type":47,"value":5454},{"type":41,"tag":141,"props":5671,"children":5672},{"style":283},[5673],{"type":47,"value":595},{"type":41,"tag":141,"props":5675,"children":5676},{"style":283},[5677],{"type":47,"value":286},{"type":41,"tag":141,"props":5679,"children":5680},{"style":540},[5681],{"type":47,"value":5467},{"type":41,"tag":141,"props":5683,"children":5684},{"style":283},[5685],{"type":47,"value":595},{"type":41,"tag":141,"props":5687,"children":5688},{"style":283},[5689],{"type":47,"value":286},{"type":41,"tag":141,"props":5691,"children":5692},{"style":540},[5693],{"type":47,"value":5694}," mainnet",{"type":41,"tag":141,"props":5696,"children":5697},{"style":283},[5698],{"type":47,"value":595},{"type":41,"tag":141,"props":5700,"children":5701},{"style":289},[5702],{"type":47,"value":5703}," RPC_URL",{"type":41,"tag":141,"props":5705,"children":5706},{"style":283},[5707],{"type":47,"value":297},{"type":41,"tag":141,"props":5709,"children":5710},{"style":283},[5711],{"type":47,"value":713},{"type":41,"tag":141,"props":5713,"children":5714},{"class":143,"line":2721},[5715,5719,5723],{"type":41,"tag":141,"props":5716,"children":5717},{"style":283},[5718],{"type":47,"value":5558},{"type":41,"tag":141,"props":5720,"children":5721},{"style":540},[5722],{"type":47,"value":562},{"type":41,"tag":141,"props":5724,"children":5725},{"style":283},[5726],{"type":47,"value":322},{"type":41,"tag":141,"props":5728,"children":5729},{"class":143,"line":4486},[5730,5735,5739,5744,5748],{"type":41,"tag":141,"props":5731,"children":5732},{"style":426},[5733],{"type":47,"value":5734},"      setClient",{"type":41,"tag":141,"props":5736,"children":5737},{"style":540},[5738],{"type":47,"value":813},{"type":41,"tag":141,"props":5740,"children":5741},{"style":289},[5742],{"type":47,"value":5743},"c",{"type":41,"tag":141,"props":5745,"children":5746},{"style":540},[5747],{"type":47,"value":562},{"type":41,"tag":141,"props":5749,"children":5750},{"style":283},[5751],{"type":47,"value":322},{"type":41,"tag":141,"props":5753,"children":5754},{"class":143,"line":4502},[5755,5760,5764,5768,5772,5776,5780,5784,5788,5792,5796,5800,5804,5808,5812],{"type":41,"tag":141,"props":5756,"children":5757},{"style":289},[5758],{"type":47,"value":5759},"      c",{"type":41,"tag":141,"props":5761,"children":5762},{"style":283},[5763],{"type":47,"value":364},{"type":41,"tag":141,"props":5765,"children":5766},{"style":289},[5767],{"type":47,"value":2763},{"type":41,"tag":141,"props":5769,"children":5770},{"style":283},[5771],{"type":47,"value":364},{"type":41,"tag":141,"props":5773,"children":5774},{"style":426},[5775],{"type":47,"value":2917},{"type":41,"tag":141,"props":5777,"children":5778},{"style":540},[5779],{"type":47,"value":813},{"type":41,"tag":141,"props":5781,"children":5782},{"style":283},[5783],{"type":47,"value":317},{"type":41,"tag":141,"props":5785,"children":5786},{"style":154},[5787],{"type":47,"value":2883},{"type":41,"tag":141,"props":5789,"children":5790},{"style":283},[5791],{"type":47,"value":317},{"type":41,"tag":141,"props":5793,"children":5794},{"style":283},[5795],{"type":47,"value":444},{"type":41,"tag":141,"props":5797,"children":5798},{"style":283},[5799],{"type":47,"value":486},{"type":41,"tag":141,"props":5801,"children":5802},{"style":733},[5803],{"type":47,"value":2946},{"type":41,"tag":141,"props":5805,"children":5806},{"style":283},[5807],{"type":47,"value":562},{"type":41,"tag":141,"props":5809,"children":5810},{"style":406},[5811],{"type":47,"value":772},{"type":41,"tag":141,"props":5813,"children":5814},{"style":283},[5815],{"type":47,"value":581},{"type":41,"tag":141,"props":5817,"children":5818},{"class":143,"line":4542},[5819,5824,5828,5832,5837,5841,5845,5849,5853,5858,5862,5866,5870,5874,5878],{"type":41,"tag":141,"props":5820,"children":5821},{"style":406},[5822],{"type":47,"value":5823},"        const",{"type":41,"tag":141,"props":5825,"children":5826},{"style":289},[5827],{"type":47,"value":2987},{"type":41,"tag":141,"props":5829,"children":5830},{"style":283},[5831],{"type":47,"value":576},{"type":41,"tag":141,"props":5833,"children":5834},{"style":289},[5835],{"type":47,"value":5836}," session",{"type":41,"tag":141,"props":5838,"children":5839},{"style":283},[5840],{"type":47,"value":899},{"type":41,"tag":141,"props":5842,"children":5843},{"style":289},[5844],{"type":47,"value":3009},{"type":41,"tag":141,"props":5846,"children":5847},{"style":283},[5848],{"type":47,"value":899},{"type":41,"tag":141,"props":5850,"children":5851},{"style":540},[5852],{"type":47,"value":3018},{"type":41,"tag":141,"props":5854,"children":5855},{"style":289},[5856],{"type":47,"value":5857},"MAINNET_SCOPE",{"type":41,"tag":141,"props":5859,"children":5860},{"style":540},[5861],{"type":47,"value":2845},{"type":41,"tag":141,"props":5863,"children":5864},{"style":283},[5865],{"type":47,"value":899},{"type":41,"tag":141,"props":5867,"children":5868},{"style":289},[5869],{"type":47,"value":3043},{"type":41,"tag":141,"props":5871,"children":5872},{"style":283},[5873],{"type":47,"value":3048},{"type":41,"tag":141,"props":5875,"children":5876},{"style":540},[5877],{"type":47,"value":3053},{"type":41,"tag":141,"props":5879,"children":5880},{"style":283},[5881],{"type":47,"value":322},{"type":41,"tag":141,"props":5883,"children":5884},{"class":143,"line":4564},[5885,5890,5894,5899,5903,5907,5911,5915,5919,5923,5927,5931,5935,5939,5943,5947,5951,5955,5959,5963,5968],{"type":41,"tag":141,"props":5886,"children":5887},{"style":426},[5888],{"type":47,"value":5889},"        setAccounts",{"type":41,"tag":141,"props":5891,"children":5892},{"style":540},[5893],{"type":47,"value":813},{"type":41,"tag":141,"props":5895,"children":5896},{"style":289},[5897],{"type":47,"value":5898},"caipAccounts",{"type":41,"tag":141,"props":5900,"children":5901},{"style":283},[5902],{"type":47,"value":364},{"type":41,"tag":141,"props":5904,"children":5905},{"style":426},[5906],{"type":47,"value":3086},{"type":41,"tag":141,"props":5908,"children":5909},{"style":540},[5910],{"type":47,"value":813},{"type":41,"tag":141,"props":5912,"children":5913},{"style":283},[5914],{"type":47,"value":813},{"type":41,"tag":141,"props":5916,"children":5917},{"style":733},[5918],{"type":47,"value":3099},{"type":41,"tag":141,"props":5920,"children":5921},{"style":283},[5922],{"type":47,"value":562},{"type":41,"tag":141,"props":5924,"children":5925},{"style":406},[5926],{"type":47,"value":772},{"type":41,"tag":141,"props":5928,"children":5929},{"style":289},[5930],{"type":47,"value":3112},{"type":41,"tag":141,"props":5932,"children":5933},{"style":283},[5934],{"type":47,"value":364},{"type":41,"tag":141,"props":5936,"children":5937},{"style":426},[5938],{"type":47,"value":3121},{"type":41,"tag":141,"props":5940,"children":5941},{"style":540},[5942],{"type":47,"value":813},{"type":41,"tag":141,"props":5944,"children":5945},{"style":283},[5946],{"type":47,"value":317},{"type":41,"tag":141,"props":5948,"children":5949},{"style":154},[5950],{"type":47,"value":595},{"type":41,"tag":141,"props":5952,"children":5953},{"style":283},[5954],{"type":47,"value":317},{"type":41,"tag":141,"props":5956,"children":5957},{"style":540},[5958],{"type":47,"value":3142},{"type":41,"tag":141,"props":5960,"children":5961},{"style":3145},[5962],{"type":47,"value":3148},{"type":41,"tag":141,"props":5964,"children":5965},{"style":540},[5966],{"type":47,"value":5967},"]))",{"type":41,"tag":141,"props":5969,"children":5970},{"style":283},[5971],{"type":47,"value":322},{"type":41,"tag":141,"props":5973,"children":5974},{"class":143,"line":4585},[5975,5979,5983],{"type":41,"tag":141,"props":5976,"children":5977},{"style":283},[5978],{"type":47,"value":5558},{"type":41,"tag":141,"props":5980,"children":5981},{"style":540},[5982],{"type":47,"value":562},{"type":41,"tag":141,"props":5984,"children":5985},{"style":283},[5986],{"type":47,"value":322},{"type":41,"tag":141,"props":5988,"children":5989},{"class":143,"line":4593},[5990,5995,6000],{"type":41,"tag":141,"props":5991,"children":5992},{"style":283},[5993],{"type":47,"value":5994},"    }",{"type":41,"tag":141,"props":5996,"children":5997},{"style":540},[5998],{"type":47,"value":5999},")()",{"type":41,"tag":141,"props":6001,"children":6002},{"style":283},[6003],{"type":47,"value":322},{"type":41,"tag":141,"props":6005,"children":6006},{"class":143,"line":4601},[6007,6012,6017],{"type":41,"tag":141,"props":6008,"children":6009},{"style":283},[6010],{"type":47,"value":6011},"  },",{"type":41,"tag":141,"props":6013,"children":6014},{"style":540},[6015],{"type":47,"value":6016}," [])",{"type":41,"tag":141,"props":6018,"children":6019},{"style":283},[6020],{"type":47,"value":322},{"type":41,"tag":141,"props":6022,"children":6023},{"class":143,"line":4617},[6024],{"type":41,"tag":141,"props":6025,"children":6026},{"emptyLinePlaceholder":329},[6027],{"type":47,"value":332},{"type":41,"tag":141,"props":6029,"children":6030},{"class":143,"line":4625},[6031,6035,6040,6044,6049,6053,6057],{"type":41,"tag":141,"props":6032,"children":6033},{"style":406},[6034],{"type":47,"value":2982},{"type":41,"tag":141,"props":6036,"children":6037},{"style":289},[6038],{"type":47,"value":6039}," handleConnect",{"type":41,"tag":141,"props":6041,"children":6042},{"style":283},[6043],{"type":47,"value":576},{"type":41,"tag":141,"props":6045,"children":6046},{"style":406},[6047],{"type":47,"value":6048}," async",{"type":41,"tag":141,"props":6050,"children":6051},{"style":283},[6052],{"type":47,"value":1408},{"type":41,"tag":141,"props":6054,"children":6055},{"style":406},[6056],{"type":47,"value":772},{"type":41,"tag":141,"props":6058,"children":6059},{"style":283},[6060],{"type":47,"value":581},{"type":41,"tag":141,"props":6062,"children":6063},{"class":143,"line":4634},[6064,6069,6073,6077,6081,6085,6090],{"type":41,"tag":141,"props":6065,"children":6066},{"style":277},[6067],{"type":47,"value":6068},"    if",{"type":41,"tag":141,"props":6070,"children":6071},{"style":540},[6072],{"type":47,"value":486},{"type":41,"tag":141,"props":6074,"children":6075},{"style":283},[6076],{"type":47,"value":794},{"type":41,"tag":141,"props":6078,"children":6079},{"style":289},[6080],{"type":47,"value":5180},{"type":41,"tag":141,"props":6082,"children":6083},{"style":540},[6084],{"type":47,"value":528},{"type":41,"tag":141,"props":6086,"children":6087},{"style":277},[6088],{"type":47,"value":6089},"return",{"type":41,"tag":141,"props":6091,"children":6092},{"style":283},[6093],{"type":47,"value":322},{"type":41,"tag":141,"props":6095,"children":6097},{"class":143,"line":6096},41,[6098,6103],{"type":41,"tag":141,"props":6099,"children":6100},{"style":277},[6101],{"type":47,"value":6102},"    try",{"type":41,"tag":141,"props":6104,"children":6105},{"style":283},[6106],{"type":47,"value":581},{"type":41,"tag":141,"props":6108,"children":6110},{"class":143,"line":6109},42,[6111,6115,6120,6124,6128,6132,6136,6141,6145,6149,6153,6157],{"type":41,"tag":141,"props":6112,"children":6113},{"style":277},[6114],{"type":47,"value":5368},{"type":41,"tag":141,"props":6116,"children":6117},{"style":289},[6118],{"type":47,"value":6119}," client",{"type":41,"tag":141,"props":6121,"children":6122},{"style":283},[6123],{"type":47,"value":364},{"type":41,"tag":141,"props":6125,"children":6126},{"style":289},[6127],{"type":47,"value":2763},{"type":41,"tag":141,"props":6129,"children":6130},{"style":283},[6131],{"type":47,"value":364},{"type":41,"tag":141,"props":6133,"children":6134},{"style":426},[6135],{"type":47,"value":2776},{"type":41,"tag":141,"props":6137,"children":6138},{"style":540},[6139],{"type":47,"value":6140},"([",{"type":41,"tag":141,"props":6142,"children":6143},{"style":289},[6144],{"type":47,"value":5857},{"type":41,"tag":141,"props":6146,"children":6147},{"style":540},[6148],{"type":47,"value":2845},{"type":41,"tag":141,"props":6150,"children":6151},{"style":283},[6152],{"type":47,"value":444},{"type":41,"tag":141,"props":6154,"children":6155},{"style":540},[6156],{"type":47,"value":6016},{"type":41,"tag":141,"props":6158,"children":6159},{"style":283},[6160],{"type":47,"value":322},{"type":41,"tag":141,"props":6162,"children":6164},{"class":143,"line":6163},43,[6165,6169,6174,6178,6183,6187,6191,6195],{"type":41,"tag":141,"props":6166,"children":6167},{"style":283},[6168],{"type":47,"value":5994},{"type":41,"tag":141,"props":6170,"children":6171},{"style":277},[6172],{"type":47,"value":6173}," catch",{"type":41,"tag":141,"props":6175,"children":6176},{"style":283},[6177],{"type":47,"value":486},{"type":41,"tag":141,"props":6179,"children":6180},{"style":733},[6181],{"type":47,"value":6182},"err",{"type":41,"tag":141,"props":6184,"children":6185},{"style":283},[6186],{"type":47,"value":595},{"type":41,"tag":141,"props":6188,"children":6189},{"style":148},[6190],{"type":47,"value":557},{"type":41,"tag":141,"props":6192,"children":6193},{"style":283},[6194],{"type":47,"value":562},{"type":41,"tag":141,"props":6196,"children":6197},{"style":283},[6198],{"type":47,"value":581},{"type":41,"tag":141,"props":6200,"children":6202},{"class":143,"line":6201},44,[6203,6208,6212,6217,6221,6225,6230,6234,6238,6243,6247,6252,6256],{"type":41,"tag":141,"props":6204,"children":6205},{"style":289},[6206],{"type":47,"value":6207},"      Alert",{"type":41,"tag":141,"props":6209,"children":6210},{"style":283},[6211],{"type":47,"value":364},{"type":41,"tag":141,"props":6213,"children":6214},{"style":426},[6215],{"type":47,"value":6216},"alert",{"type":41,"tag":141,"props":6218,"children":6219},{"style":540},[6220],{"type":47,"value":813},{"type":41,"tag":141,"props":6222,"children":6223},{"style":283},[6224],{"type":47,"value":317},{"type":41,"tag":141,"props":6226,"children":6227},{"style":154},[6228],{"type":47,"value":6229},"Connection failed",{"type":41,"tag":141,"props":6231,"children":6232},{"style":283},[6233],{"type":47,"value":317},{"type":41,"tag":141,"props":6235,"children":6236},{"style":283},[6237],{"type":47,"value":444},{"type":41,"tag":141,"props":6239,"children":6240},{"style":289},[6241],{"type":47,"value":6242}," err",{"type":41,"tag":141,"props":6244,"children":6245},{"style":283},[6246],{"type":47,"value":364},{"type":41,"tag":141,"props":6248,"children":6249},{"style":289},[6250],{"type":47,"value":6251},"message",{"type":41,"tag":141,"props":6253,"children":6254},{"style":540},[6255],{"type":47,"value":562},{"type":41,"tag":141,"props":6257,"children":6258},{"style":283},[6259],{"type":47,"value":322},{"type":41,"tag":141,"props":6261,"children":6263},{"class":143,"line":6262},45,[6264],{"type":41,"tag":141,"props":6265,"children":6266},{"style":283},[6267],{"type":47,"value":6268},"    }\n",{"type":41,"tag":141,"props":6270,"children":6272},{"class":143,"line":6271},46,[6273],{"type":41,"tag":141,"props":6274,"children":6275},{"style":283},[6276],{"type":47,"value":1105},{"type":41,"tag":141,"props":6278,"children":6280},{"class":143,"line":6279},47,[6281],{"type":41,"tag":141,"props":6282,"children":6283},{"emptyLinePlaceholder":329},[6284],{"type":47,"value":332},{"type":41,"tag":141,"props":6286,"children":6288},{"class":143,"line":6287},48,[6289,6293,6298,6302,6306,6310,6314],{"type":41,"tag":141,"props":6290,"children":6291},{"style":406},[6292],{"type":47,"value":2982},{"type":41,"tag":141,"props":6294,"children":6295},{"style":289},[6296],{"type":47,"value":6297}," handleSignMessage",{"type":41,"tag":141,"props":6299,"children":6300},{"style":283},[6301],{"type":47,"value":576},{"type":41,"tag":141,"props":6303,"children":6304},{"style":406},[6305],{"type":47,"value":6048},{"type":41,"tag":141,"props":6307,"children":6308},{"style":283},[6309],{"type":47,"value":1408},{"type":41,"tag":141,"props":6311,"children":6312},{"style":406},[6313],{"type":47,"value":772},{"type":41,"tag":141,"props":6315,"children":6316},{"style":283},[6317],{"type":47,"value":581},{"type":41,"tag":141,"props":6319,"children":6321},{"class":143,"line":6320},49,[6322,6326,6330,6334,6338,6343,6348,6352,6357,6362,6367,6371,6375],{"type":41,"tag":141,"props":6323,"children":6324},{"style":277},[6325],{"type":47,"value":6068},{"type":41,"tag":141,"props":6327,"children":6328},{"style":540},[6329],{"type":47,"value":486},{"type":41,"tag":141,"props":6331,"children":6332},{"style":283},[6333],{"type":47,"value":794},{"type":41,"tag":141,"props":6335,"children":6336},{"style":289},[6337],{"type":47,"value":5180},{"type":41,"tag":141,"props":6339,"children":6340},{"style":283},[6341],{"type":47,"value":6342}," ||",{"type":41,"tag":141,"props":6344,"children":6345},{"style":289},[6346],{"type":47,"value":6347}," accounts",{"type":41,"tag":141,"props":6349,"children":6350},{"style":283},[6351],{"type":47,"value":364},{"type":41,"tag":141,"props":6353,"children":6354},{"style":289},[6355],{"type":47,"value":6356},"length",{"type":41,"tag":141,"props":6358,"children":6359},{"style":283},[6360],{"type":47,"value":6361}," ===",{"type":41,"tag":141,"props":6363,"children":6364},{"style":3145},[6365],{"type":47,"value":6366}," 0",{"type":41,"tag":141,"props":6368,"children":6369},{"style":540},[6370],{"type":47,"value":528},{"type":41,"tag":141,"props":6372,"children":6373},{"style":277},[6374],{"type":47,"value":6089},{"type":41,"tag":141,"props":6376,"children":6377},{"style":283},[6378],{"type":47,"value":322},{"type":41,"tag":141,"props":6380,"children":6382},{"class":143,"line":6381},50,[6383,6387],{"type":41,"tag":141,"props":6384,"children":6385},{"style":277},[6386],{"type":47,"value":6102},{"type":41,"tag":141,"props":6388,"children":6389},{"style":283},[6390],{"type":47,"value":581},{"type":41,"tag":141,"props":6392,"children":6394},{"class":143,"line":6393},51,[6395,6399,6404,6408,6412,6416,6420,6424,6428,6432,6436,6440,6444,6448,6452,6456,6460,6464,6468],{"type":41,"tag":141,"props":6396,"children":6397},{"style":406},[6398],{"type":47,"value":5574},{"type":41,"tag":141,"props":6400,"children":6401},{"style":289},[6402],{"type":47,"value":6403}," message",{"type":41,"tag":141,"props":6405,"children":6406},{"style":283},[6407],{"type":47,"value":576},{"type":41,"tag":141,"props":6409,"children":6410},{"style":289},[6411],{"type":47,"value":292},{"type":41,"tag":141,"props":6413,"children":6414},{"style":283},[6415],{"type":47,"value":364},{"type":41,"tag":141,"props":6417,"children":6418},{"style":426},[6419],{"type":47,"value":1303},{"type":41,"tag":141,"props":6421,"children":6422},{"style":540},[6423],{"type":47,"value":813},{"type":41,"tag":141,"props":6425,"children":6426},{"style":283},[6427],{"type":47,"value":317},{"type":41,"tag":141,"props":6429,"children":6430},{"style":154},[6431],{"type":47,"value":3286},{"type":41,"tag":141,"props":6433,"children":6434},{"style":283},[6435],{"type":47,"value":317},{"type":41,"tag":141,"props":6437,"children":6438},{"style":540},[6439],{"type":47,"value":562},{"type":41,"tag":141,"props":6441,"children":6442},{"style":283},[6443],{"type":47,"value":364},{"type":41,"tag":141,"props":6445,"children":6446},{"style":426},[6447],{"type":47,"value":3340},{"type":41,"tag":141,"props":6449,"children":6450},{"style":540},[6451],{"type":47,"value":813},{"type":41,"tag":141,"props":6453,"children":6454},{"style":283},[6455],{"type":47,"value":317},{"type":41,"tag":141,"props":6457,"children":6458},{"style":154},[6459],{"type":47,"value":3353},{"type":41,"tag":141,"props":6461,"children":6462},{"style":283},[6463],{"type":47,"value":317},{"type":41,"tag":141,"props":6465,"children":6466},{"style":540},[6467],{"type":47,"value":562},{"type":41,"tag":141,"props":6469,"children":6470},{"style":283},[6471],{"type":47,"value":322},{"type":41,"tag":141,"props":6473,"children":6475},{"class":143,"line":6474},52,[6476,6480,6484,6488,6492,6496,6500,6504,6508,6512,6516],{"type":41,"tag":141,"props":6477,"children":6478},{"style":406},[6479],{"type":47,"value":5574},{"type":41,"tag":141,"props":6481,"children":6482},{"style":289},[6483],{"type":47,"value":3669},{"type":41,"tag":141,"props":6485,"children":6486},{"style":283},[6487],{"type":47,"value":576},{"type":41,"tag":141,"props":6489,"children":6490},{"style":277},[6491],{"type":47,"value":2557},{"type":41,"tag":141,"props":6493,"children":6494},{"style":289},[6495],{"type":47,"value":6119},{"type":41,"tag":141,"props":6497,"children":6498},{"style":283},[6499],{"type":47,"value":364},{"type":41,"tag":141,"props":6501,"children":6502},{"style":289},[6503],{"type":47,"value":2763},{"type":41,"tag":141,"props":6505,"children":6506},{"style":283},[6507],{"type":47,"value":364},{"type":41,"tag":141,"props":6509,"children":6510},{"style":426},[6511],{"type":47,"value":94},{"type":41,"tag":141,"props":6513,"children":6514},{"style":540},[6515],{"type":47,"value":813},{"type":41,"tag":141,"props":6517,"children":6518},{"style":283},[6519],{"type":47,"value":533},{"type":41,"tag":141,"props":6521,"children":6523},{"class":143,"line":6522},53,[6524,6529,6533,6538],{"type":41,"tag":141,"props":6525,"children":6526},{"style":540},[6527],{"type":47,"value":6528},"        scope",{"type":41,"tag":141,"props":6530,"children":6531},{"style":283},[6532],{"type":47,"value":595},{"type":41,"tag":141,"props":6534,"children":6535},{"style":289},[6536],{"type":47,"value":6537}," MAINNET_SCOPE",{"type":41,"tag":141,"props":6539,"children":6540},{"style":283},[6541],{"type":47,"value":630},{"type":41,"tag":141,"props":6543,"children":6545},{"class":143,"line":6544},54,[6546,6551,6555,6559,6564,6568,6572,6576,6580,6584,6589,6593,6597,6602,6606,6610,6614,6618,6622,6626,6630,6634,6639,6643,6647],{"type":41,"tag":141,"props":6547,"children":6548},{"style":540},[6549],{"type":47,"value":6550},"        request",{"type":41,"tag":141,"props":6552,"children":6553},{"style":283},[6554],{"type":47,"value":595},{"type":41,"tag":141,"props":6556,"children":6557},{"style":283},[6558],{"type":47,"value":286},{"type":41,"tag":141,"props":6560,"children":6561},{"style":540},[6562],{"type":47,"value":6563}," method",{"type":41,"tag":141,"props":6565,"children":6566},{"style":283},[6567],{"type":47,"value":595},{"type":41,"tag":141,"props":6569,"children":6570},{"style":283},[6571],{"type":47,"value":307},{"type":41,"tag":141,"props":6573,"children":6574},{"style":154},[6575],{"type":47,"value":3493},{"type":41,"tag":141,"props":6577,"children":6578},{"style":283},[6579],{"type":47,"value":317},{"type":41,"tag":141,"props":6581,"children":6582},{"style":283},[6583],{"type":47,"value":444},{"type":41,"tag":141,"props":6585,"children":6586},{"style":540},[6587],{"type":47,"value":6588}," params",{"type":41,"tag":141,"props":6590,"children":6591},{"style":283},[6592],{"type":47,"value":595},{"type":41,"tag":141,"props":6594,"children":6595},{"style":283},[6596],{"type":47,"value":286},{"type":41,"tag":141,"props":6598,"children":6599},{"style":540},[6600],{"type":47,"value":6601}," account",{"type":41,"tag":141,"props":6603,"children":6604},{"style":283},[6605],{"type":47,"value":595},{"type":41,"tag":141,"props":6607,"children":6608},{"style":283},[6609],{"type":47,"value":286},{"type":41,"tag":141,"props":6611,"children":6612},{"style":540},[6613],{"type":47,"value":3538},{"type":41,"tag":141,"props":6615,"children":6616},{"style":283},[6617],{"type":47,"value":595},{"type":41,"tag":141,"props":6619,"children":6620},{"style":289},[6621],{"type":47,"value":6347},{"type":41,"tag":141,"props":6623,"children":6624},{"style":540},[6625],{"type":47,"value":3018},{"type":41,"tag":141,"props":6627,"children":6628},{"style":3145},[6629],{"type":47,"value":3552},{"type":41,"tag":141,"props":6631,"children":6632},{"style":540},[6633],{"type":47,"value":3557},{"type":41,"tag":141,"props":6635,"children":6636},{"style":283},[6637],{"type":47,"value":6638},"},",{"type":41,"tag":141,"props":6640,"children":6641},{"style":289},[6642],{"type":47,"value":6403},{"type":41,"tag":141,"props":6644,"children":6645},{"style":283},[6646],{"type":47,"value":297},{"type":41,"tag":141,"props":6648,"children":6649},{"style":283},[6650],{"type":47,"value":713},{"type":41,"tag":141,"props":6652,"children":6654},{"class":143,"line":6653},55,[6655,6659,6663],{"type":41,"tag":141,"props":6656,"children":6657},{"style":283},[6658],{"type":47,"value":5558},{"type":41,"tag":141,"props":6660,"children":6661},{"style":540},[6662],{"type":47,"value":562},{"type":41,"tag":141,"props":6664,"children":6665},{"style":283},[6666],{"type":47,"value":322},{"type":41,"tag":141,"props":6668,"children":6670},{"class":143,"line":6669},56,[6671,6675,6679,6683,6687,6691,6696,6700,6704,6709,6713,6718,6722,6727,6731,6736,6740,6744,6749,6753,6757,6761,6766,6770,6775,6779,6784,6788,6792],{"type":41,"tag":141,"props":6672,"children":6673},{"style":289},[6674],{"type":47,"value":6207},{"type":41,"tag":141,"props":6676,"children":6677},{"style":283},[6678],{"type":47,"value":364},{"type":41,"tag":141,"props":6680,"children":6681},{"style":426},[6682],{"type":47,"value":6216},{"type":41,"tag":141,"props":6684,"children":6685},{"style":540},[6686],{"type":47,"value":813},{"type":41,"tag":141,"props":6688,"children":6689},{"style":283},[6690],{"type":47,"value":317},{"type":41,"tag":141,"props":6692,"children":6693},{"style":154},[6694],{"type":47,"value":6695},"Signed",{"type":41,"tag":141,"props":6697,"children":6698},{"style":283},[6699],{"type":47,"value":317},{"type":41,"tag":141,"props":6701,"children":6702},{"style":283},[6703],{"type":47,"value":444},{"type":41,"tag":141,"props":6705,"children":6706},{"style":289},[6707],{"type":47,"value":6708}," JSON",{"type":41,"tag":141,"props":6710,"children":6711},{"style":283},[6712],{"type":47,"value":364},{"type":41,"tag":141,"props":6714,"children":6715},{"style":426},[6716],{"type":47,"value":6717},"stringify",{"type":41,"tag":141,"props":6719,"children":6720},{"style":540},[6721],{"type":47,"value":813},{"type":41,"tag":141,"props":6723,"children":6724},{"style":289},[6725],{"type":47,"value":6726},"result",{"type":41,"tag":141,"props":6728,"children":6729},{"style":283},[6730],{"type":47,"value":364},{"type":41,"tag":141,"props":6732,"children":6733},{"style":289},[6734],{"type":47,"value":6735},"signature",{"type":41,"tag":141,"props":6737,"children":6738},{"style":540},[6739],{"type":47,"value":562},{"type":41,"tag":141,"props":6741,"children":6742},{"style":283},[6743],{"type":47,"value":364},{"type":41,"tag":141,"props":6745,"children":6746},{"style":426},[6747],{"type":47,"value":6748},"slice",{"type":41,"tag":141,"props":6750,"children":6751},{"style":540},[6752],{"type":47,"value":813},{"type":41,"tag":141,"props":6754,"children":6755},{"style":3145},[6756],{"type":47,"value":3552},{"type":41,"tag":141,"props":6758,"children":6759},{"style":283},[6760],{"type":47,"value":444},{"type":41,"tag":141,"props":6762,"children":6763},{"style":3145},[6764],{"type":47,"value":6765}," 40",{"type":41,"tag":141,"props":6767,"children":6768},{"style":540},[6769],{"type":47,"value":528},{"type":41,"tag":141,"props":6771,"children":6772},{"style":283},[6773],{"type":47,"value":6774},"+",{"type":41,"tag":141,"props":6776,"children":6777},{"style":283},[6778],{"type":47,"value":307},{"type":41,"tag":141,"props":6780,"children":6781},{"style":154},[6782],{"type":47,"value":6783},"...",{"type":41,"tag":141,"props":6785,"children":6786},{"style":283},[6787],{"type":47,"value":317},{"type":41,"tag":141,"props":6789,"children":6790},{"style":540},[6791],{"type":47,"value":562},{"type":41,"tag":141,"props":6793,"children":6794},{"style":283},[6795],{"type":47,"value":322},{"type":41,"tag":141,"props":6797,"children":6799},{"class":143,"line":6798},57,[6800,6804,6808,6812,6816,6820,6824,6828],{"type":41,"tag":141,"props":6801,"children":6802},{"style":283},[6803],{"type":47,"value":5994},{"type":41,"tag":141,"props":6805,"children":6806},{"style":277},[6807],{"type":47,"value":6173},{"type":41,"tag":141,"props":6809,"children":6810},{"style":283},[6811],{"type":47,"value":486},{"type":41,"tag":141,"props":6813,"children":6814},{"style":733},[6815],{"type":47,"value":6182},{"type":41,"tag":141,"props":6817,"children":6818},{"style":283},[6819],{"type":47,"value":595},{"type":41,"tag":141,"props":6821,"children":6822},{"style":148},[6823],{"type":47,"value":557},{"type":41,"tag":141,"props":6825,"children":6826},{"style":283},[6827],{"type":47,"value":562},{"type":41,"tag":141,"props":6829,"children":6830},{"style":283},[6831],{"type":47,"value":581},{"type":41,"tag":141,"props":6833,"children":6835},{"class":143,"line":6834},58,[6836,6840,6844,6848,6852,6856,6861,6865,6869,6873,6877,6881,6885],{"type":41,"tag":141,"props":6837,"children":6838},{"style":289},[6839],{"type":47,"value":6207},{"type":41,"tag":141,"props":6841,"children":6842},{"style":283},[6843],{"type":47,"value":364},{"type":41,"tag":141,"props":6845,"children":6846},{"style":426},[6847],{"type":47,"value":6216},{"type":41,"tag":141,"props":6849,"children":6850},{"style":540},[6851],{"type":47,"value":813},{"type":41,"tag":141,"props":6853,"children":6854},{"style":283},[6855],{"type":47,"value":317},{"type":41,"tag":141,"props":6857,"children":6858},{"style":154},[6859],{"type":47,"value":6860},"Sign failed",{"type":41,"tag":141,"props":6862,"children":6863},{"style":283},[6864],{"type":47,"value":317},{"type":41,"tag":141,"props":6866,"children":6867},{"style":283},[6868],{"type":47,"value":444},{"type":41,"tag":141,"props":6870,"children":6871},{"style":289},[6872],{"type":47,"value":6242},{"type":41,"tag":141,"props":6874,"children":6875},{"style":283},[6876],{"type":47,"value":364},{"type":41,"tag":141,"props":6878,"children":6879},{"style":289},[6880],{"type":47,"value":6251},{"type":41,"tag":141,"props":6882,"children":6883},{"style":540},[6884],{"type":47,"value":562},{"type":41,"tag":141,"props":6886,"children":6887},{"style":283},[6888],{"type":47,"value":322},{"type":41,"tag":141,"props":6890,"children":6892},{"class":143,"line":6891},59,[6893],{"type":41,"tag":141,"props":6894,"children":6895},{"style":283},[6896],{"type":47,"value":6268},{"type":41,"tag":141,"props":6898,"children":6900},{"class":143,"line":6899},60,[6901],{"type":41,"tag":141,"props":6902,"children":6903},{"style":283},[6904],{"type":47,"value":1105},{"type":41,"tag":141,"props":6906,"children":6908},{"class":143,"line":6907},61,[6909],{"type":41,"tag":141,"props":6910,"children":6911},{"emptyLinePlaceholder":329},[6912],{"type":47,"value":332},{"type":41,"tag":141,"props":6914,"children":6916},{"class":143,"line":6915},62,[6917,6921,6926,6930,6934,6938,6942],{"type":41,"tag":141,"props":6918,"children":6919},{"style":406},[6920],{"type":47,"value":2982},{"type":41,"tag":141,"props":6922,"children":6923},{"style":289},[6924],{"type":47,"value":6925}," handleSendTransaction",{"type":41,"tag":141,"props":6927,"children":6928},{"style":283},[6929],{"type":47,"value":576},{"type":41,"tag":141,"props":6931,"children":6932},{"style":406},[6933],{"type":47,"value":6048},{"type":41,"tag":141,"props":6935,"children":6936},{"style":283},[6937],{"type":47,"value":1408},{"type":41,"tag":141,"props":6939,"children":6940},{"style":406},[6941],{"type":47,"value":772},{"type":41,"tag":141,"props":6943,"children":6944},{"style":283},[6945],{"type":47,"value":581},{"type":41,"tag":141,"props":6947,"children":6949},{"class":143,"line":6948},63,[6950,6954,6958,6962,6966,6970,6974,6978,6982,6986,6990,6994,6998],{"type":41,"tag":141,"props":6951,"children":6952},{"style":277},[6953],{"type":47,"value":6068},{"type":41,"tag":141,"props":6955,"children":6956},{"style":540},[6957],{"type":47,"value":486},{"type":41,"tag":141,"props":6959,"children":6960},{"style":283},[6961],{"type":47,"value":794},{"type":41,"tag":141,"props":6963,"children":6964},{"style":289},[6965],{"type":47,"value":5180},{"type":41,"tag":141,"props":6967,"children":6968},{"style":283},[6969],{"type":47,"value":6342},{"type":41,"tag":141,"props":6971,"children":6972},{"style":289},[6973],{"type":47,"value":6347},{"type":41,"tag":141,"props":6975,"children":6976},{"style":283},[6977],{"type":47,"value":364},{"type":41,"tag":141,"props":6979,"children":6980},{"style":289},[6981],{"type":47,"value":6356},{"type":41,"tag":141,"props":6983,"children":6984},{"style":283},[6985],{"type":47,"value":6361},{"type":41,"tag":141,"props":6987,"children":6988},{"style":3145},[6989],{"type":47,"value":6366},{"type":41,"tag":141,"props":6991,"children":6992},{"style":540},[6993],{"type":47,"value":528},{"type":41,"tag":141,"props":6995,"children":6996},{"style":277},[6997],{"type":47,"value":6089},{"type":41,"tag":141,"props":6999,"children":7000},{"style":283},[7001],{"type":47,"value":322},{"type":41,"tag":141,"props":7003,"children":7005},{"class":143,"line":7004},64,[7006,7010],{"type":41,"tag":141,"props":7007,"children":7008},{"style":277},[7009],{"type":47,"value":6102},{"type":41,"tag":141,"props":7011,"children":7012},{"style":283},[7013],{"type":47,"value":581},{"type":41,"tag":141,"props":7015,"children":7017},{"class":143,"line":7016},65,[7018,7022,7026,7030,7034,7038,7042,7047,7051],{"type":41,"tag":141,"props":7019,"children":7020},{"style":406},[7021],{"type":47,"value":5574},{"type":41,"tag":141,"props":7023,"children":7024},{"style":289},[7025],{"type":47,"value":3883},{"type":41,"tag":141,"props":7027,"children":7028},{"style":283},[7029],{"type":47,"value":576},{"type":41,"tag":141,"props":7031,"children":7032},{"style":283},[7033],{"type":47,"value":423},{"type":41,"tag":141,"props":7035,"children":7036},{"style":426},[7037],{"type":47,"value":3826},{"type":41,"tag":141,"props":7039,"children":7040},{"style":540},[7041],{"type":47,"value":813},{"type":41,"tag":141,"props":7043,"children":7044},{"style":289},[7045],{"type":47,"value":7046},"RPC_URL",{"type":41,"tag":141,"props":7048,"children":7049},{"style":540},[7050],{"type":47,"value":562},{"type":41,"tag":141,"props":7052,"children":7053},{"style":283},[7054],{"type":47,"value":322},{"type":41,"tag":141,"props":7056,"children":7058},{"class":143,"line":7057},66,[7059,7063,7067,7071,7075,7079,7083,7087,7091,7095,7099],{"type":41,"tag":141,"props":7060,"children":7061},{"style":406},[7062],{"type":47,"value":5574},{"type":41,"tag":141,"props":7064,"children":7065},{"style":283},[7066],{"type":47,"value":286},{"type":41,"tag":141,"props":7068,"children":7069},{"style":289},[7070],{"type":47,"value":4164},{"type":41,"tag":141,"props":7072,"children":7073},{"style":283},[7074],{"type":47,"value":297},{"type":41,"tag":141,"props":7076,"children":7077},{"style":283},[7078],{"type":47,"value":576},{"type":41,"tag":141,"props":7080,"children":7081},{"style":277},[7082],{"type":47,"value":2557},{"type":41,"tag":141,"props":7084,"children":7085},{"style":289},[7086],{"type":47,"value":3883},{"type":41,"tag":141,"props":7088,"children":7089},{"style":283},[7090],{"type":47,"value":364},{"type":41,"tag":141,"props":7092,"children":7093},{"style":426},[7094],{"type":47,"value":3892},{"type":41,"tag":141,"props":7096,"children":7097},{"style":540},[7098],{"type":47,"value":468},{"type":41,"tag":141,"props":7100,"children":7101},{"style":283},[7102],{"type":47,"value":322},{"type":41,"tag":141,"props":7104,"children":7106},{"class":143,"line":7105},67,[7107,7111,7116,7120,7124,7128,7132,7136,7140,7144,7148],{"type":41,"tag":141,"props":7108,"children":7109},{"style":406},[7110],{"type":47,"value":5574},{"type":41,"tag":141,"props":7112,"children":7113},{"style":289},[7114],{"type":47,"value":7115}," sender",{"type":41,"tag":141,"props":7117,"children":7118},{"style":283},[7119],{"type":47,"value":576},{"type":41,"tag":141,"props":7121,"children":7122},{"style":283},[7123],{"type":47,"value":423},{"type":41,"tag":141,"props":7125,"children":7126},{"style":426},[7127],{"type":47,"value":3925},{"type":41,"tag":141,"props":7129,"children":7130},{"style":540},[7131],{"type":47,"value":813},{"type":41,"tag":141,"props":7133,"children":7134},{"style":289},[7135],{"type":47,"value":3043},{"type":41,"tag":141,"props":7137,"children":7138},{"style":540},[7139],{"type":47,"value":3018},{"type":41,"tag":141,"props":7141,"children":7142},{"style":3145},[7143],{"type":47,"value":3552},{"type":41,"tag":141,"props":7145,"children":7146},{"style":540},[7147],{"type":47,"value":3153},{"type":41,"tag":141,"props":7149,"children":7150},{"style":283},[7151],{"type":47,"value":322},{"type":41,"tag":141,"props":7153,"children":7155},{"class":143,"line":7154},68,[7156],{"type":41,"tag":141,"props":7157,"children":7158},{"emptyLinePlaceholder":329},[7159],{"type":47,"value":332},{"type":41,"tag":141,"props":7161,"children":7163},{"class":143,"line":7162},69,[7164,7168,7172,7176,7180,7184,7188,7192,7196],{"type":41,"tag":141,"props":7165,"children":7166},{"style":406},[7167],{"type":47,"value":5574},{"type":41,"tag":141,"props":7169,"children":7170},{"style":289},[7171],{"type":47,"value":4224},{"type":41,"tag":141,"props":7173,"children":7174},{"style":283},[7175],{"type":47,"value":576},{"type":41,"tag":141,"props":7177,"children":7178},{"style":283},[7179],{"type":47,"value":423},{"type":41,"tag":141,"props":7181,"children":7182},{"style":426},[7183],{"type":47,"value":3974},{"type":41,"tag":141,"props":7185,"children":7186},{"style":540},[7187],{"type":47,"value":468},{"type":41,"tag":141,"props":7189,"children":7190},{"style":283},[7191],{"type":47,"value":364},{"type":41,"tag":141,"props":7193,"children":7194},{"style":426},[7195],{"type":47,"value":904},{"type":41,"tag":141,"props":7197,"children":7198},{"style":540},[7199],{"type":47,"value":2819},{"type":41,"tag":141,"props":7201,"children":7203},{"class":143,"line":7202},70,[7204,7209,7213,7217,7221],{"type":41,"tag":141,"props":7205,"children":7206},{"style":289},[7207],{"type":47,"value":7208},"        SystemProgram",{"type":41,"tag":141,"props":7210,"children":7211},{"style":283},[7212],{"type":47,"value":364},{"type":41,"tag":141,"props":7214,"children":7215},{"style":426},[7216],{"type":47,"value":4006},{"type":41,"tag":141,"props":7218,"children":7219},{"style":540},[7220],{"type":47,"value":813},{"type":41,"tag":141,"props":7222,"children":7223},{"style":283},[7224],{"type":47,"value":533},{"type":41,"tag":141,"props":7226,"children":7228},{"class":143,"line":7227},71,[7229,7234,7238,7242],{"type":41,"tag":141,"props":7230,"children":7231},{"style":540},[7232],{"type":47,"value":7233},"          fromPubkey",{"type":41,"tag":141,"props":7235,"children":7236},{"style":283},[7237],{"type":47,"value":595},{"type":41,"tag":141,"props":7239,"children":7240},{"style":289},[7241],{"type":47,"value":7115},{"type":41,"tag":141,"props":7243,"children":7244},{"style":283},[7245],{"type":47,"value":630},{"type":41,"tag":141,"props":7247,"children":7249},{"class":143,"line":7248},72,[7250,7255,7259,7263,7267,7271,7275,7279,7283,7287],{"type":41,"tag":141,"props":7251,"children":7252},{"style":540},[7253],{"type":47,"value":7254},"          toPubkey",{"type":41,"tag":141,"props":7256,"children":7257},{"style":283},[7258],{"type":47,"value":595},{"type":41,"tag":141,"props":7260,"children":7261},{"style":283},[7262],{"type":47,"value":423},{"type":41,"tag":141,"props":7264,"children":7265},{"style":426},[7266],{"type":47,"value":3925},{"type":41,"tag":141,"props":7268,"children":7269},{"style":540},[7270],{"type":47,"value":813},{"type":41,"tag":141,"props":7272,"children":7273},{"style":283},[7274],{"type":47,"value":317},{"type":41,"tag":141,"props":7276,"children":7277},{"style":154},[7278],{"type":47,"value":4068},{"type":41,"tag":141,"props":7280,"children":7281},{"style":283},[7282],{"type":47,"value":317},{"type":41,"tag":141,"props":7284,"children":7285},{"style":540},[7286],{"type":47,"value":562},{"type":41,"tag":141,"props":7288,"children":7289},{"style":283},[7290],{"type":47,"value":630},{"type":41,"tag":141,"props":7292,"children":7294},{"class":143,"line":7293},73,[7295,7300,7304,7308,7312,7316],{"type":41,"tag":141,"props":7296,"children":7297},{"style":540},[7298],{"type":47,"value":7299},"          lamports",{"type":41,"tag":141,"props":7301,"children":7302},{"style":283},[7303],{"type":47,"value":595},{"type":41,"tag":141,"props":7305,"children":7306},{"style":3145},[7307],{"type":47,"value":4097},{"type":41,"tag":141,"props":7309,"children":7310},{"style":283},[7311],{"type":47,"value":4102},{"type":41,"tag":141,"props":7313,"children":7314},{"style":289},[7315],{"type":47,"value":4107},{"type":41,"tag":141,"props":7317,"children":7318},{"style":283},[7319],{"type":47,"value":630},{"type":41,"tag":141,"props":7321,"children":7323},{"class":143,"line":7322},74,[7324,7329,7333],{"type":41,"tag":141,"props":7325,"children":7326},{"style":283},[7327],{"type":47,"value":7328},"        }",{"type":41,"tag":141,"props":7330,"children":7331},{"style":540},[7332],{"type":47,"value":562},{"type":41,"tag":141,"props":7334,"children":7335},{"style":283},[7336],{"type":47,"value":630},{"type":41,"tag":141,"props":7338,"children":7340},{"class":143,"line":7339},75,[7341,7346],{"type":41,"tag":141,"props":7342,"children":7343},{"style":540},[7344],{"type":47,"value":7345},"      )",{"type":41,"tag":141,"props":7347,"children":7348},{"style":283},[7349],{"type":47,"value":322},{"type":41,"tag":141,"props":7351,"children":7353},{"class":143,"line":7352},76,[7354,7359,7363,7368,7372,7376],{"type":41,"tag":141,"props":7355,"children":7356},{"style":289},[7357],{"type":47,"value":7358},"      tx",{"type":41,"tag":141,"props":7360,"children":7361},{"style":283},[7362],{"type":47,"value":364},{"type":41,"tag":141,"props":7364,"children":7365},{"style":289},[7366],{"type":47,"value":7367},"recentBlockhash",{"type":41,"tag":141,"props":7369,"children":7370},{"style":283},[7371],{"type":47,"value":576},{"type":41,"tag":141,"props":7373,"children":7374},{"style":289},[7375],{"type":47,"value":4164},{"type":41,"tag":141,"props":7377,"children":7378},{"style":283},[7379],{"type":47,"value":322},{"type":41,"tag":141,"props":7381,"children":7383},{"class":143,"line":7382},77,[7384,7388,7392,7397,7401,7405],{"type":41,"tag":141,"props":7385,"children":7386},{"style":289},[7387],{"type":47,"value":7358},{"type":41,"tag":141,"props":7389,"children":7390},{"style":283},[7391],{"type":47,"value":364},{"type":41,"tag":141,"props":7393,"children":7394},{"style":289},[7395],{"type":47,"value":7396},"feePayer",{"type":41,"tag":141,"props":7398,"children":7399},{"style":283},[7400],{"type":47,"value":576},{"type":41,"tag":141,"props":7402,"children":7403},{"style":289},[7404],{"type":47,"value":7115},{"type":41,"tag":141,"props":7406,"children":7407},{"style":283},[7408],{"type":47,"value":322},{"type":41,"tag":141,"props":7410,"children":7412},{"class":143,"line":7411},78,[7413],{"type":41,"tag":141,"props":7414,"children":7415},{"emptyLinePlaceholder":329},[7416],{"type":47,"value":332},{"type":41,"tag":141,"props":7418,"children":7420},{"class":143,"line":7419},79,[7421,7425,7429,7433,7437,7441,7445],{"type":41,"tag":141,"props":7422,"children":7423},{"style":406},[7424],{"type":47,"value":5574},{"type":41,"tag":141,"props":7426,"children":7427},{"style":289},[7428],{"type":47,"value":4557},{"type":41,"tag":141,"props":7430,"children":7431},{"style":283},[7432],{"type":47,"value":576},{"type":41,"tag":141,"props":7434,"children":7435},{"style":289},[7436],{"type":47,"value":292},{"type":41,"tag":141,"props":7438,"children":7439},{"style":283},[7440],{"type":47,"value":364},{"type":41,"tag":141,"props":7442,"children":7443},{"style":426},[7444],{"type":47,"value":1303},{"type":41,"tag":141,"props":7446,"children":7447},{"style":540},[7448],{"type":47,"value":2819},{"type":41,"tag":141,"props":7450,"children":7452},{"class":143,"line":7451},80,[7453,7458,7462,7466,7470,7474,7478,7482,7486,7490,7494],{"type":41,"tag":141,"props":7454,"children":7455},{"style":289},[7456],{"type":47,"value":7457},"        tx",{"type":41,"tag":141,"props":7459,"children":7460},{"style":283},[7461],{"type":47,"value":364},{"type":41,"tag":141,"props":7463,"children":7464},{"style":426},[7465],{"type":47,"value":4233},{"type":41,"tag":141,"props":7467,"children":7468},{"style":540},[7469],{"type":47,"value":813},{"type":41,"tag":141,"props":7471,"children":7472},{"style":283},[7473],{"type":47,"value":4242},{"type":41,"tag":141,"props":7475,"children":7476},{"style":540},[7477],{"type":47,"value":4247},{"type":41,"tag":141,"props":7479,"children":7480},{"style":283},[7481],{"type":47,"value":595},{"type":41,"tag":141,"props":7483,"children":7484},{"style":1089},[7485],{"type":47,"value":4256},{"type":41,"tag":141,"props":7487,"children":7488},{"style":283},[7489],{"type":47,"value":297},{"type":41,"tag":141,"props":7491,"children":7492},{"style":540},[7493],{"type":47,"value":562},{"type":41,"tag":141,"props":7495,"children":7496},{"style":283},[7497],{"type":47,"value":630},{"type":41,"tag":141,"props":7499,"children":7501},{"class":143,"line":7500},81,[7502,7506,7510,7514,7518,7522,7526,7530,7534],{"type":41,"tag":141,"props":7503,"children":7504},{"style":540},[7505],{"type":47,"value":7345},{"type":41,"tag":141,"props":7507,"children":7508},{"style":283},[7509],{"type":47,"value":364},{"type":41,"tag":141,"props":7511,"children":7512},{"style":426},[7513],{"type":47,"value":3340},{"type":41,"tag":141,"props":7515,"children":7516},{"style":540},[7517],{"type":47,"value":813},{"type":41,"tag":141,"props":7519,"children":7520},{"style":283},[7521],{"type":47,"value":317},{"type":41,"tag":141,"props":7523,"children":7524},{"style":154},[7525],{"type":47,"value":3353},{"type":41,"tag":141,"props":7527,"children":7528},{"style":283},[7529],{"type":47,"value":317},{"type":41,"tag":141,"props":7531,"children":7532},{"style":540},[7533],{"type":47,"value":562},{"type":41,"tag":141,"props":7535,"children":7536},{"style":283},[7537],{"type":47,"value":322},{"type":41,"tag":141,"props":7539,"children":7541},{"class":143,"line":7540},82,[7542],{"type":41,"tag":141,"props":7543,"children":7544},{"emptyLinePlaceholder":329},[7545],{"type":47,"value":332},{"type":41,"tag":141,"props":7547,"children":7549},{"class":143,"line":7548},83,[7550,7554,7558,7562,7566,7570,7574,7578,7582,7586,7590],{"type":41,"tag":141,"props":7551,"children":7552},{"style":406},[7553],{"type":47,"value":5574},{"type":41,"tag":141,"props":7555,"children":7556},{"style":289},[7557],{"type":47,"value":3669},{"type":41,"tag":141,"props":7559,"children":7560},{"style":283},[7561],{"type":47,"value":576},{"type":41,"tag":141,"props":7563,"children":7564},{"style":277},[7565],{"type":47,"value":2557},{"type":41,"tag":141,"props":7567,"children":7568},{"style":289},[7569],{"type":47,"value":6119},{"type":41,"tag":141,"props":7571,"children":7572},{"style":283},[7573],{"type":47,"value":364},{"type":41,"tag":141,"props":7575,"children":7576},{"style":289},[7577],{"type":47,"value":2763},{"type":41,"tag":141,"props":7579,"children":7580},{"style":283},[7581],{"type":47,"value":364},{"type":41,"tag":141,"props":7583,"children":7584},{"style":426},[7585],{"type":47,"value":94},{"type":41,"tag":141,"props":7587,"children":7588},{"style":540},[7589],{"type":47,"value":813},{"type":41,"tag":141,"props":7591,"children":7592},{"style":283},[7593],{"type":47,"value":533},{"type":41,"tag":141,"props":7595,"children":7597},{"class":143,"line":7596},84,[7598,7602,7606,7610],{"type":41,"tag":141,"props":7599,"children":7600},{"style":540},[7601],{"type":47,"value":6528},{"type":41,"tag":141,"props":7603,"children":7604},{"style":283},[7605],{"type":47,"value":595},{"type":41,"tag":141,"props":7607,"children":7608},{"style":289},[7609],{"type":47,"value":6537},{"type":41,"tag":141,"props":7611,"children":7612},{"style":283},[7613],{"type":47,"value":630},{"type":41,"tag":141,"props":7615,"children":7617},{"class":143,"line":7616},85,[7618,7622,7626],{"type":41,"tag":141,"props":7619,"children":7620},{"style":540},[7621],{"type":47,"value":6550},{"type":41,"tag":141,"props":7623,"children":7624},{"style":283},[7625],{"type":47,"value":595},{"type":41,"tag":141,"props":7627,"children":7628},{"style":283},[7629],{"type":47,"value":581},{"type":41,"tag":141,"props":7631,"children":7633},{"class":143,"line":7632},86,[7634,7639,7643,7647,7651,7655],{"type":41,"tag":141,"props":7635,"children":7636},{"style":540},[7637],{"type":47,"value":7638},"          method",{"type":41,"tag":141,"props":7640,"children":7641},{"style":283},[7642],{"type":47,"value":595},{"type":41,"tag":141,"props":7644,"children":7645},{"style":283},[7646],{"type":47,"value":307},{"type":41,"tag":141,"props":7648,"children":7649},{"style":154},[7650],{"type":47,"value":4475},{"type":41,"tag":141,"props":7652,"children":7653},{"style":283},[7654],{"type":47,"value":317},{"type":41,"tag":141,"props":7656,"children":7657},{"style":283},[7658],{"type":47,"value":630},{"type":41,"tag":141,"props":7660,"children":7662},{"class":143,"line":7661},87,[7663,7668,7672,7676,7680,7684,7688,7692,7696,7700,7704,7708,7712,7716,7721,7725,7729,7733,7738,7742,7746],{"type":41,"tag":141,"props":7664,"children":7665},{"style":540},[7666],{"type":47,"value":7667},"          params",{"type":41,"tag":141,"props":7669,"children":7670},{"style":283},[7671],{"type":47,"value":595},{"type":41,"tag":141,"props":7673,"children":7674},{"style":283},[7675],{"type":47,"value":286},{"type":41,"tag":141,"props":7677,"children":7678},{"style":540},[7679],{"type":47,"value":6601},{"type":41,"tag":141,"props":7681,"children":7682},{"style":283},[7683],{"type":47,"value":595},{"type":41,"tag":141,"props":7685,"children":7686},{"style":283},[7687],{"type":47,"value":286},{"type":41,"tag":141,"props":7689,"children":7690},{"style":540},[7691],{"type":47,"value":3538},{"type":41,"tag":141,"props":7693,"children":7694},{"style":283},[7695],{"type":47,"value":595},{"type":41,"tag":141,"props":7697,"children":7698},{"style":289},[7699],{"type":47,"value":6347},{"type":41,"tag":141,"props":7701,"children":7702},{"style":540},[7703],{"type":47,"value":3018},{"type":41,"tag":141,"props":7705,"children":7706},{"style":3145},[7707],{"type":47,"value":3552},{"type":41,"tag":141,"props":7709,"children":7710},{"style":540},[7711],{"type":47,"value":3557},{"type":41,"tag":141,"props":7713,"children":7714},{"style":283},[7715],{"type":47,"value":6638},{"type":41,"tag":141,"props":7717,"children":7718},{"style":540},[7719],{"type":47,"value":7720}," transaction",{"type":41,"tag":141,"props":7722,"children":7723},{"style":283},[7724],{"type":47,"value":595},{"type":41,"tag":141,"props":7726,"children":7727},{"style":289},[7728],{"type":47,"value":4557},{"type":41,"tag":141,"props":7730,"children":7731},{"style":283},[7732],{"type":47,"value":444},{"type":41,"tag":141,"props":7734,"children":7735},{"style":540},[7736],{"type":47,"value":7737}," scope",{"type":41,"tag":141,"props":7739,"children":7740},{"style":283},[7741],{"type":47,"value":595},{"type":41,"tag":141,"props":7743,"children":7744},{"style":289},[7745],{"type":47,"value":6537},{"type":41,"tag":141,"props":7747,"children":7748},{"style":283},[7749],{"type":47,"value":713},{"type":41,"tag":141,"props":7751,"children":7753},{"class":143,"line":7752},88,[7754],{"type":41,"tag":141,"props":7755,"children":7756},{"style":283},[7757],{"type":47,"value":7758},"        },\n",{"type":41,"tag":141,"props":7760,"children":7762},{"class":143,"line":7761},89,[7763,7767,7771],{"type":41,"tag":141,"props":7764,"children":7765},{"style":283},[7766],{"type":47,"value":5558},{"type":41,"tag":141,"props":7768,"children":7769},{"style":540},[7770],{"type":47,"value":562},{"type":41,"tag":141,"props":7772,"children":7773},{"style":283},[7774],{"type":47,"value":322},{"type":41,"tag":141,"props":7776,"children":7778},{"class":143,"line":7777},90,[7779,7783,7787,7791,7795,7799,7804,7808,7812,7816,7820,7824,7828],{"type":41,"tag":141,"props":7780,"children":7781},{"style":289},[7782],{"type":47,"value":6207},{"type":41,"tag":141,"props":7784,"children":7785},{"style":283},[7786],{"type":47,"value":364},{"type":41,"tag":141,"props":7788,"children":7789},{"style":426},[7790],{"type":47,"value":6216},{"type":41,"tag":141,"props":7792,"children":7793},{"style":540},[7794],{"type":47,"value":813},{"type":41,"tag":141,"props":7796,"children":7797},{"style":283},[7798],{"type":47,"value":317},{"type":41,"tag":141,"props":7800,"children":7801},{"style":154},[7802],{"type":47,"value":7803},"Sent",{"type":41,"tag":141,"props":7805,"children":7806},{"style":283},[7807],{"type":47,"value":317},{"type":41,"tag":141,"props":7809,"children":7810},{"style":283},[7811],{"type":47,"value":444},{"type":41,"tag":141,"props":7813,"children":7814},{"style":289},[7815],{"type":47,"value":3669},{"type":41,"tag":141,"props":7817,"children":7818},{"style":283},[7819],{"type":47,"value":364},{"type":41,"tag":141,"props":7821,"children":7822},{"style":289},[7823],{"type":47,"value":6735},{"type":41,"tag":141,"props":7825,"children":7826},{"style":540},[7827],{"type":47,"value":562},{"type":41,"tag":141,"props":7829,"children":7830},{"style":283},[7831],{"type":47,"value":322},{"type":41,"tag":141,"props":7833,"children":7835},{"class":143,"line":7834},91,[7836,7840,7844,7848,7852,7856,7860,7864],{"type":41,"tag":141,"props":7837,"children":7838},{"style":283},[7839],{"type":47,"value":5994},{"type":41,"tag":141,"props":7841,"children":7842},{"style":277},[7843],{"type":47,"value":6173},{"type":41,"tag":141,"props":7845,"children":7846},{"style":283},[7847],{"type":47,"value":486},{"type":41,"tag":141,"props":7849,"children":7850},{"style":733},[7851],{"type":47,"value":6182},{"type":41,"tag":141,"props":7853,"children":7854},{"style":283},[7855],{"type":47,"value":595},{"type":41,"tag":141,"props":7857,"children":7858},{"style":148},[7859],{"type":47,"value":557},{"type":41,"tag":141,"props":7861,"children":7862},{"style":283},[7863],{"type":47,"value":562},{"type":41,"tag":141,"props":7865,"children":7866},{"style":283},[7867],{"type":47,"value":581},{"type":41,"tag":141,"props":7869,"children":7871},{"class":143,"line":7870},92,[7872,7876,7880,7884,7888,7892,7897,7901,7905,7909,7913,7917,7921],{"type":41,"tag":141,"props":7873,"children":7874},{"style":289},[7875],{"type":47,"value":6207},{"type":41,"tag":141,"props":7877,"children":7878},{"style":283},[7879],{"type":47,"value":364},{"type":41,"tag":141,"props":7881,"children":7882},{"style":426},[7883],{"type":47,"value":6216},{"type":41,"tag":141,"props":7885,"children":7886},{"style":540},[7887],{"type":47,"value":813},{"type":41,"tag":141,"props":7889,"children":7890},{"style":283},[7891],{"type":47,"value":317},{"type":41,"tag":141,"props":7893,"children":7894},{"style":154},[7895],{"type":47,"value":7896},"Transaction failed",{"type":41,"tag":141,"props":7898,"children":7899},{"style":283},[7900],{"type":47,"value":317},{"type":41,"tag":141,"props":7902,"children":7903},{"style":283},[7904],{"type":47,"value":444},{"type":41,"tag":141,"props":7906,"children":7907},{"style":289},[7908],{"type":47,"value":6242},{"type":41,"tag":141,"props":7910,"children":7911},{"style":283},[7912],{"type":47,"value":364},{"type":41,"tag":141,"props":7914,"children":7915},{"style":289},[7916],{"type":47,"value":6251},{"type":41,"tag":141,"props":7918,"children":7919},{"style":540},[7920],{"type":47,"value":562},{"type":41,"tag":141,"props":7922,"children":7923},{"style":283},[7924],{"type":47,"value":322},{"type":41,"tag":141,"props":7926,"children":7928},{"class":143,"line":7927},93,[7929],{"type":41,"tag":141,"props":7930,"children":7931},{"style":283},[7932],{"type":47,"value":6268},{"type":41,"tag":141,"props":7934,"children":7936},{"class":143,"line":7935},94,[7937],{"type":41,"tag":141,"props":7938,"children":7939},{"style":283},[7940],{"type":47,"value":1105},{"type":41,"tag":141,"props":7942,"children":7944},{"class":143,"line":7943},95,[7945],{"type":41,"tag":141,"props":7946,"children":7947},{"emptyLinePlaceholder":329},[7948],{"type":47,"value":332},{"type":41,"tag":141,"props":7950,"children":7952},{"class":143,"line":7951},96,[7953,7957,7962,7966,7970,7974,7978],{"type":41,"tag":141,"props":7954,"children":7955},{"style":406},[7956],{"type":47,"value":2982},{"type":41,"tag":141,"props":7958,"children":7959},{"style":289},[7960],{"type":47,"value":7961}," handleDisconnect",{"type":41,"tag":141,"props":7963,"children":7964},{"style":283},[7965],{"type":47,"value":576},{"type":41,"tag":141,"props":7967,"children":7968},{"style":406},[7969],{"type":47,"value":6048},{"type":41,"tag":141,"props":7971,"children":7972},{"style":283},[7973],{"type":47,"value":1408},{"type":41,"tag":141,"props":7975,"children":7976},{"style":406},[7977],{"type":47,"value":772},{"type":41,"tag":141,"props":7979,"children":7980},{"style":283},[7981],{"type":47,"value":581},{"type":41,"tag":141,"props":7983,"children":7985},{"class":143,"line":7984},97,[7986,7990,7994,7998,8002,8006,8010],{"type":41,"tag":141,"props":7987,"children":7988},{"style":277},[7989],{"type":47,"value":6068},{"type":41,"tag":141,"props":7991,"children":7992},{"style":540},[7993],{"type":47,"value":486},{"type":41,"tag":141,"props":7995,"children":7996},{"style":283},[7997],{"type":47,"value":794},{"type":41,"tag":141,"props":7999,"children":8000},{"style":289},[8001],{"type":47,"value":5180},{"type":41,"tag":141,"props":8003,"children":8004},{"style":540},[8005],{"type":47,"value":528},{"type":41,"tag":141,"props":8007,"children":8008},{"style":277},[8009],{"type":47,"value":6089},{"type":41,"tag":141,"props":8011,"children":8012},{"style":283},[8013],{"type":47,"value":322},{"type":41,"tag":141,"props":8015,"children":8017},{"class":143,"line":8016},98,[8018,8023,8027,8031,8035,8039],{"type":41,"tag":141,"props":8019,"children":8020},{"style":277},[8021],{"type":47,"value":8022},"    await",{"type":41,"tag":141,"props":8024,"children":8025},{"style":289},[8026],{"type":47,"value":6119},{"type":41,"tag":141,"props":8028,"children":8029},{"style":283},[8030],{"type":47,"value":364},{"type":41,"tag":141,"props":8032,"children":8033},{"style":426},[8034],{"type":47,"value":4688},{"type":41,"tag":141,"props":8036,"children":8037},{"style":540},[8038],{"type":47,"value":468},{"type":41,"tag":141,"props":8040,"children":8041},{"style":283},[8042],{"type":47,"value":322},{"type":41,"tag":141,"props":8044,"children":8046},{"class":143,"line":8045},99,[8047,8052,8056],{"type":41,"tag":141,"props":8048,"children":8049},{"style":426},[8050],{"type":47,"value":8051},"    setAccounts",{"type":41,"tag":141,"props":8053,"children":8054},{"style":540},[8055],{"type":47,"value":5300},{"type":41,"tag":141,"props":8057,"children":8058},{"style":283},[8059],{"type":47,"value":322},{"type":41,"tag":141,"props":8061,"children":8063},{"class":143,"line":8062},100,[8064],{"type":41,"tag":141,"props":8065,"children":8066},{"style":283},[8067],{"type":47,"value":1105},{"type":41,"tag":141,"props":8069,"children":8071},{"class":143,"line":8070},101,[8072],{"type":41,"tag":141,"props":8073,"children":8074},{"emptyLinePlaceholder":329},[8075],{"type":47,"value":332},{"type":41,"tag":141,"props":8077,"children":8079},{"class":143,"line":8078},102,[8080,8085,8089,8093,8097,8101,8105,8109,8113],{"type":41,"tag":141,"props":8081,"children":8082},{"style":277},[8083],{"type":47,"value":8084},"  if",{"type":41,"tag":141,"props":8086,"children":8087},{"style":540},[8088],{"type":47,"value":486},{"type":41,"tag":141,"props":8090,"children":8091},{"style":289},[8092],{"type":47,"value":3043},{"type":41,"tag":141,"props":8094,"children":8095},{"style":283},[8096],{"type":47,"value":364},{"type":41,"tag":141,"props":8098,"children":8099},{"style":289},[8100],{"type":47,"value":6356},{"type":41,"tag":141,"props":8102,"children":8103},{"style":283},[8104],{"type":47,"value":6361},{"type":41,"tag":141,"props":8106,"children":8107},{"style":3145},[8108],{"type":47,"value":6366},{"type":41,"tag":141,"props":8110,"children":8111},{"style":540},[8112],{"type":47,"value":528},{"type":41,"tag":141,"props":8114,"children":8115},{"style":283},[8116],{"type":47,"value":533},{"type":41,"tag":141,"props":8118,"children":8120},{"class":143,"line":8119},103,[8121,8126],{"type":41,"tag":141,"props":8122,"children":8123},{"style":277},[8124],{"type":47,"value":8125},"    return",{"type":41,"tag":141,"props":8127,"children":8128},{"style":540},[8129],{"type":47,"value":8130}," (\n",{"type":41,"tag":141,"props":8132,"children":8134},{"class":143,"line":8133},104,[8135,8140,8145,8150,8155,8160,8164,8169,8173,8178,8182,8186,8191,8195,8199,8204,8208,8212,8216,8220],{"type":41,"tag":141,"props":8136,"children":8137},{"style":283},[8138],{"type":47,"value":8139},"      \u003C",{"type":41,"tag":141,"props":8141,"children":8142},{"style":148},[8143],{"type":47,"value":8144},"View",{"type":41,"tag":141,"props":8146,"children":8147},{"style":406},[8148],{"type":47,"value":8149}," style",{"type":41,"tag":141,"props":8151,"children":8152},{"style":283},[8153],{"type":47,"value":8154},"={{",{"type":41,"tag":141,"props":8156,"children":8157},{"style":540},[8158],{"type":47,"value":8159}," flex",{"type":41,"tag":141,"props":8161,"children":8162},{"style":283},[8163],{"type":47,"value":595},{"type":41,"tag":141,"props":8165,"children":8166},{"style":3145},[8167],{"type":47,"value":8168}," 1",{"type":41,"tag":141,"props":8170,"children":8171},{"style":283},[8172],{"type":47,"value":444},{"type":41,"tag":141,"props":8174,"children":8175},{"style":540},[8176],{"type":47,"value":8177}," justifyContent",{"type":41,"tag":141,"props":8179,"children":8180},{"style":283},[8181],{"type":47,"value":595},{"type":41,"tag":141,"props":8183,"children":8184},{"style":283},[8185],{"type":47,"value":307},{"type":41,"tag":141,"props":8187,"children":8188},{"style":154},[8189],{"type":47,"value":8190},"center",{"type":41,"tag":141,"props":8192,"children":8193},{"style":283},[8194],{"type":47,"value":317},{"type":41,"tag":141,"props":8196,"children":8197},{"style":283},[8198],{"type":47,"value":444},{"type":41,"tag":141,"props":8200,"children":8201},{"style":540},[8202],{"type":47,"value":8203}," alignItems",{"type":41,"tag":141,"props":8205,"children":8206},{"style":283},[8207],{"type":47,"value":595},{"type":41,"tag":141,"props":8209,"children":8210},{"style":283},[8211],{"type":47,"value":307},{"type":41,"tag":141,"props":8213,"children":8214},{"style":154},[8215],{"type":47,"value":8190},{"type":41,"tag":141,"props":8217,"children":8218},{"style":283},[8219],{"type":47,"value":317},{"type":41,"tag":141,"props":8221,"children":8222},{"style":283},[8223],{"type":47,"value":8224}," }}>\n",{"type":41,"tag":141,"props":8226,"children":8228},{"class":143,"line":8227},105,[8229,8234,8239,8244,8248,8253,8258,8262,8267,8272,8277],{"type":41,"tag":141,"props":8230,"children":8231},{"style":283},[8232],{"type":47,"value":8233},"        \u003C",{"type":41,"tag":141,"props":8235,"children":8236},{"style":148},[8237],{"type":47,"value":8238},"Button",{"type":41,"tag":141,"props":8240,"children":8241},{"style":406},[8242],{"type":47,"value":8243}," title",{"type":41,"tag":141,"props":8245,"children":8246},{"style":283},[8247],{"type":47,"value":374},{"type":41,"tag":141,"props":8249,"children":8250},{"style":283},[8251],{"type":47,"value":8252},"\"",{"type":41,"tag":141,"props":8254,"children":8255},{"style":154},[8256],{"type":47,"value":8257},"Connect MetaMask (Solana)",{"type":41,"tag":141,"props":8259,"children":8260},{"style":283},[8261],{"type":47,"value":8252},{"type":41,"tag":141,"props":8263,"children":8264},{"style":406},[8265],{"type":47,"value":8266}," onPress",{"type":41,"tag":141,"props":8268,"children":8269},{"style":283},[8270],{"type":47,"value":8271},"={",{"type":41,"tag":141,"props":8273,"children":8274},{"style":289},[8275],{"type":47,"value":8276},"handleConnect",{"type":41,"tag":141,"props":8278,"children":8279},{"style":283},[8280],{"type":47,"value":8281},"} \u002F>\n",{"type":41,"tag":141,"props":8283,"children":8285},{"class":143,"line":8284},106,[8286,8291,8295],{"type":41,"tag":141,"props":8287,"children":8288},{"style":283},[8289],{"type":47,"value":8290},"      \u003C\u002F",{"type":41,"tag":141,"props":8292,"children":8293},{"style":148},[8294],{"type":47,"value":8144},{"type":41,"tag":141,"props":8296,"children":8297},{"style":283},[8298],{"type":47,"value":8299},">\n",{"type":41,"tag":141,"props":8301,"children":8303},{"class":143,"line":8302},107,[8304,8309],{"type":41,"tag":141,"props":8305,"children":8306},{"style":540},[8307],{"type":47,"value":8308},"    )",{"type":41,"tag":141,"props":8310,"children":8311},{"style":283},[8312],{"type":47,"value":322},{"type":41,"tag":141,"props":8314,"children":8316},{"class":143,"line":8315},108,[8317],{"type":41,"tag":141,"props":8318,"children":8319},{"style":283},[8320],{"type":47,"value":8321},"  }\n",{"type":41,"tag":141,"props":8323,"children":8325},{"class":143,"line":8324},109,[8326],{"type":41,"tag":141,"props":8327,"children":8328},{"emptyLinePlaceholder":329},[8329],{"type":47,"value":332},{"type":41,"tag":141,"props":8331,"children":8333},{"class":143,"line":8332},110,[8334,8339],{"type":41,"tag":141,"props":8335,"children":8336},{"style":277},[8337],{"type":47,"value":8338},"  return",{"type":41,"tag":141,"props":8340,"children":8341},{"style":540},[8342],{"type":47,"value":8130},{"type":41,"tag":141,"props":8344,"children":8346},{"class":143,"line":8345},111,[8347,8352,8356,8360,8364,8368,8372,8376,8380,8384,8388,8392,8396,8400,8404,8408,8412,8416,8420,8424,8428,8433,8437,8442],{"type":41,"tag":141,"props":8348,"children":8349},{"style":283},[8350],{"type":47,"value":8351},"    \u003C",{"type":41,"tag":141,"props":8353,"children":8354},{"style":148},[8355],{"type":47,"value":8144},{"type":41,"tag":141,"props":8357,"children":8358},{"style":406},[8359],{"type":47,"value":8149},{"type":41,"tag":141,"props":8361,"children":8362},{"style":283},[8363],{"type":47,"value":8154},{"type":41,"tag":141,"props":8365,"children":8366},{"style":540},[8367],{"type":47,"value":8159},{"type":41,"tag":141,"props":8369,"children":8370},{"style":283},[8371],{"type":47,"value":595},{"type":41,"tag":141,"props":8373,"children":8374},{"style":3145},[8375],{"type":47,"value":8168},{"type":41,"tag":141,"props":8377,"children":8378},{"style":283},[8379],{"type":47,"value":444},{"type":41,"tag":141,"props":8381,"children":8382},{"style":540},[8383],{"type":47,"value":8177},{"type":41,"tag":141,"props":8385,"children":8386},{"style":283},[8387],{"type":47,"value":595},{"type":41,"tag":141,"props":8389,"children":8390},{"style":283},[8391],{"type":47,"value":307},{"type":41,"tag":141,"props":8393,"children":8394},{"style":154},[8395],{"type":47,"value":8190},{"type":41,"tag":141,"props":8397,"children":8398},{"style":283},[8399],{"type":47,"value":317},{"type":41,"tag":141,"props":8401,"children":8402},{"style":283},[8403],{"type":47,"value":444},{"type":41,"tag":141,"props":8405,"children":8406},{"style":540},[8407],{"type":47,"value":8203},{"type":41,"tag":141,"props":8409,"children":8410},{"style":283},[8411],{"type":47,"value":595},{"type":41,"tag":141,"props":8413,"children":8414},{"style":283},[8415],{"type":47,"value":307},{"type":41,"tag":141,"props":8417,"children":8418},{"style":154},[8419],{"type":47,"value":8190},{"type":41,"tag":141,"props":8421,"children":8422},{"style":283},[8423],{"type":47,"value":317},{"type":41,"tag":141,"props":8425,"children":8426},{"style":283},[8427],{"type":47,"value":444},{"type":41,"tag":141,"props":8429,"children":8430},{"style":540},[8431],{"type":47,"value":8432}," gap",{"type":41,"tag":141,"props":8434,"children":8435},{"style":283},[8436],{"type":47,"value":595},{"type":41,"tag":141,"props":8438,"children":8439},{"style":3145},[8440],{"type":47,"value":8441}," 12",{"type":41,"tag":141,"props":8443,"children":8444},{"style":283},[8445],{"type":47,"value":8224},{"type":41,"tag":141,"props":8447,"children":8449},{"class":143,"line":8448},112,[8450,8454,8459,8463,8468,8472,8477,8481,8485,8490,8494],{"type":41,"tag":141,"props":8451,"children":8452},{"style":283},[8453],{"type":47,"value":8139},{"type":41,"tag":141,"props":8455,"children":8456},{"style":148},[8457],{"type":47,"value":8458},"Text",{"type":41,"tag":141,"props":8460,"children":8461},{"style":283},[8462],{"type":47,"value":5225},{"type":41,"tag":141,"props":8464,"children":8465},{"style":289},[8466],{"type":47,"value":8467},"Address: ",{"type":41,"tag":141,"props":8469,"children":8470},{"style":283},[8471],{"type":47,"value":4242},{"type":41,"tag":141,"props":8473,"children":8474},{"style":289},[8475],{"type":47,"value":8476},"accounts[",{"type":41,"tag":141,"props":8478,"children":8479},{"style":3145},[8480],{"type":47,"value":3552},{"type":41,"tag":141,"props":8482,"children":8483},{"style":289},[8484],{"type":47,"value":2845},{"type":41,"tag":141,"props":8486,"children":8487},{"style":283},[8488],{"type":47,"value":8489},"}\u003C\u002F",{"type":41,"tag":141,"props":8491,"children":8492},{"style":148},[8493],{"type":47,"value":8458},{"type":41,"tag":141,"props":8495,"children":8496},{"style":283},[8497],{"type":47,"value":8299},{"type":41,"tag":141,"props":8499,"children":8501},{"class":143,"line":8500},113,[8502,8506,8510,8514,8518,8522,8527,8531,8535,8539,8544],{"type":41,"tag":141,"props":8503,"children":8504},{"style":283},[8505],{"type":47,"value":8139},{"type":41,"tag":141,"props":8507,"children":8508},{"style":148},[8509],{"type":47,"value":8238},{"type":41,"tag":141,"props":8511,"children":8512},{"style":406},[8513],{"type":47,"value":8243},{"type":41,"tag":141,"props":8515,"children":8516},{"style":283},[8517],{"type":47,"value":374},{"type":41,"tag":141,"props":8519,"children":8520},{"style":283},[8521],{"type":47,"value":8252},{"type":41,"tag":141,"props":8523,"children":8524},{"style":154},[8525],{"type":47,"value":8526},"Sign Message",{"type":41,"tag":141,"props":8528,"children":8529},{"style":283},[8530],{"type":47,"value":8252},{"type":41,"tag":141,"props":8532,"children":8533},{"style":406},[8534],{"type":47,"value":8266},{"type":41,"tag":141,"props":8536,"children":8537},{"style":283},[8538],{"type":47,"value":8271},{"type":41,"tag":141,"props":8540,"children":8541},{"style":289},[8542],{"type":47,"value":8543},"handleSignMessage",{"type":41,"tag":141,"props":8545,"children":8546},{"style":283},[8547],{"type":47,"value":8281},{"type":41,"tag":141,"props":8549,"children":8551},{"class":143,"line":8550},114,[8552,8556,8560,8564,8568,8572,8577,8581,8585,8589,8594],{"type":41,"tag":141,"props":8553,"children":8554},{"style":283},[8555],{"type":47,"value":8139},{"type":41,"tag":141,"props":8557,"children":8558},{"style":148},[8559],{"type":47,"value":8238},{"type":41,"tag":141,"props":8561,"children":8562},{"style":406},[8563],{"type":47,"value":8243},{"type":41,"tag":141,"props":8565,"children":8566},{"style":283},[8567],{"type":47,"value":374},{"type":41,"tag":141,"props":8569,"children":8570},{"style":283},[8571],{"type":47,"value":8252},{"type":41,"tag":141,"props":8573,"children":8574},{"style":154},[8575],{"type":47,"value":8576},"Send 0.001 SOL",{"type":41,"tag":141,"props":8578,"children":8579},{"style":283},[8580],{"type":47,"value":8252},{"type":41,"tag":141,"props":8582,"children":8583},{"style":406},[8584],{"type":47,"value":8266},{"type":41,"tag":141,"props":8586,"children":8587},{"style":283},[8588],{"type":47,"value":8271},{"type":41,"tag":141,"props":8590,"children":8591},{"style":289},[8592],{"type":47,"value":8593},"handleSendTransaction",{"type":41,"tag":141,"props":8595,"children":8596},{"style":283},[8597],{"type":47,"value":8281},{"type":41,"tag":141,"props":8599,"children":8601},{"class":143,"line":8600},115,[8602,8606,8610,8614,8618,8622,8626,8630,8634,8638,8643],{"type":41,"tag":141,"props":8603,"children":8604},{"style":283},[8605],{"type":47,"value":8139},{"type":41,"tag":141,"props":8607,"children":8608},{"style":148},[8609],{"type":47,"value":8238},{"type":41,"tag":141,"props":8611,"children":8612},{"style":406},[8613],{"type":47,"value":8243},{"type":41,"tag":141,"props":8615,"children":8616},{"style":283},[8617],{"type":47,"value":374},{"type":41,"tag":141,"props":8619,"children":8620},{"style":283},[8621],{"type":47,"value":8252},{"type":41,"tag":141,"props":8623,"children":8624},{"style":154},[8625],{"type":47,"value":4691},{"type":41,"tag":141,"props":8627,"children":8628},{"style":283},[8629],{"type":47,"value":8252},{"type":41,"tag":141,"props":8631,"children":8632},{"style":406},[8633],{"type":47,"value":8266},{"type":41,"tag":141,"props":8635,"children":8636},{"style":283},[8637],{"type":47,"value":8271},{"type":41,"tag":141,"props":8639,"children":8640},{"style":289},[8641],{"type":47,"value":8642},"handleDisconnect",{"type":41,"tag":141,"props":8644,"children":8645},{"style":283},[8646],{"type":47,"value":8281},{"type":41,"tag":141,"props":8648,"children":8650},{"class":143,"line":8649},116,[8651,8656,8660],{"type":41,"tag":141,"props":8652,"children":8653},{"style":283},[8654],{"type":47,"value":8655},"    \u003C\u002F",{"type":41,"tag":141,"props":8657,"children":8658},{"style":148},[8659],{"type":47,"value":8144},{"type":41,"tag":141,"props":8661,"children":8662},{"style":283},[8663],{"type":47,"value":8299},{"type":41,"tag":141,"props":8665,"children":8667},{"class":143,"line":8666},117,[8668,8673],{"type":41,"tag":141,"props":8669,"children":8670},{"style":540},[8671],{"type":47,"value":8672},"  )",{"type":41,"tag":141,"props":8674,"children":8675},{"style":283},[8676],{"type":47,"value":322},{"type":41,"tag":141,"props":8678,"children":8680},{"class":143,"line":8679},118,[8681],{"type":41,"tag":141,"props":8682,"children":8683},{"style":283},[8684],{"type":47,"value":1114},{"type":41,"tag":50,"props":8686,"children":8688},{"id":8687},"important-notes",[8689],{"type":47,"value":8690},"Important Notes",{"type":41,"tag":63,"props":8692,"children":8693},{},[8694,8719,8780,8819,8867,8877,8907,8923],{"type":41,"tag":67,"props":8695,"children":8696},{},[8697,8702,8704,8709,8711,8717],{"type":41,"tag":109,"props":8698,"children":8699},{},[8700],{"type":47,"value":8701},"No wallet-adapter in React Native",{"type":47,"value":8703}," — ",{"type":41,"tag":78,"props":8705,"children":8707},{"className":8706},[],[8708],{"type":47,"value":105},{"type":47,"value":8710}," does not support React Native. Use ",{"type":41,"tag":78,"props":8712,"children":8714},{"className":8713},[],[8715],{"type":47,"value":8716},"solanaClient.core.invokeMethod",{"type":47,"value":8718}," with CAIP-scoped Solana RPC methods instead.",{"type":41,"tag":67,"props":8720,"children":8721},{},[8722,8727,8728,8733,8735,8740,8742,8748,8750,8755,8757,8762,8764,8770,8772,8778],{"type":41,"tag":109,"props":8723,"children":8724},{},[8725],{"type":47,"value":8726},"Polyfill import order is critical",{"type":47,"value":8703},{"type":41,"tag":78,"props":8729,"children":8731},{"className":8730},[],[8732],{"type":47,"value":1155},{"type":47,"value":8734}," must be the very first import in the entry file, not inside ",{"type":41,"tag":78,"props":8736,"children":8738},{"className":8737},[],[8739],{"type":47,"value":251},{"type":47,"value":8741},". ",{"type":41,"tag":78,"props":8743,"children":8745},{"className":8744},[],[8746],{"type":47,"value":8747},"Buffer",{"type":47,"value":8749}," is self-polyfilled by ",{"type":41,"tag":78,"props":8751,"children":8753},{"className":8752},[],[8754],{"type":47,"value":201},{"type":47,"value":8756}," but set it early in ",{"type":41,"tag":78,"props":8758,"children":8760},{"className":8759},[],[8761],{"type":47,"value":251},{"type":47,"value":8763}," as a safety net for peer deps. ",{"type":41,"tag":78,"props":8765,"children":8767},{"className":8766},[],[8768],{"type":47,"value":8769},"Event",{"type":47,"value":8771},"\u002F",{"type":41,"tag":78,"props":8773,"children":8775},{"className":8774},[],[8776],{"type":47,"value":8777},"CustomEvent",{"type":47,"value":8779}," are NOT needed for standalone connect-solana (the SDK uses eventemitter3); only add them if using wagmi.",{"type":41,"tag":67,"props":8781,"children":8782},{},[8783,8788,8790,8796,8798,8804,8805,8811,8813,8818],{"type":41,"tag":109,"props":8784,"children":8785},{},[8786],{"type":47,"value":8787},"Metro shims are required",{"type":47,"value":8789}," — the SDK and its dependencies reference Node.js built-ins (",{"type":41,"tag":78,"props":8791,"children":8793},{"className":8792},[],[8794],{"type":47,"value":8795},"stream",{"type":47,"value":8797},", ",{"type":41,"tag":78,"props":8799,"children":8801},{"className":8800},[],[8802],{"type":47,"value":8803},"crypto",{"type":47,"value":8797},{"type":41,"tag":78,"props":8806,"children":8808},{"className":8807},[],[8809],{"type":47,"value":8810},"http",{"type":47,"value":8812},", etc.) that Metro cannot resolve without explicit shims in ",{"type":41,"tag":78,"props":8814,"children":8816},{"className":8815},[],[8817],{"type":47,"value":1446},{"type":47,"value":364},{"type":41,"tag":67,"props":8820,"children":8821},{},[8822,8832,8833,8838,8839,8844,8846,8851,8852,8858,8860,8865],{"type":41,"tag":109,"props":8823,"children":8824},{},[8825,8830],{"type":41,"tag":78,"props":8826,"children":8828},{"className":8827},[],[8829],{"type":47,"value":224},{"type":47,"value":8831}," is required",{"type":47,"value":8703},{"type":41,"tag":78,"props":8834,"children":8836},{"className":8835},[],[8837],{"type":47,"value":232},{"type":47,"value":2113},{"type":41,"tag":78,"props":8840,"children":8842},{"className":8841},[],[8843],{"type":47,"value":18},{"type":47,"value":8845}," options. Call ",{"type":41,"tag":78,"props":8847,"children":8849},{"className":8848},[],[8850],{"type":47,"value":216},{"type":47,"value":2127},{"type":41,"tag":78,"props":8853,"children":8855},{"className":8854},[],[8856],{"type":47,"value":8857},"mobile: { preferredOpenLink: (dl) => Linking.openURL(dl) }",{"type":47,"value":8859}," to configure the singleton core for deeplinks, then call ",{"type":41,"tag":78,"props":8861,"children":8863},{"className":8862},[],[8864],{"type":47,"value":232},{"type":47,"value":8866}," which reuses it.",{"type":41,"tag":67,"props":8868,"children":8869},{},[8870,8875],{"type":41,"tag":109,"props":8871,"children":8872},{},[8873],{"type":47,"value":8874},"Solana networks",{"type":47,"value":8876}," — mainnet, devnet, and testnet scopes are all modeled by the SDK; non-mainnet availability depends on the connected MetaMask build\u002Fversion, so handle connection errors rather than assuming a cluster is present.",{"type":41,"tag":67,"props":8878,"children":8879},{},[8880,8891,8893,8899,8900,8905],{"type":41,"tag":109,"props":8881,"children":8882},{},[8883,8889],{"type":41,"tag":78,"props":8884,"children":8886},{"className":8885},[],[8887],{"type":47,"value":8888},"skipAutoRegister",{"type":47,"value":8890}," option",{"type":47,"value":8892}," — pass ",{"type":41,"tag":78,"props":8894,"children":8896},{"className":8895},[],[8897],{"type":47,"value":8898},"skipAutoRegister: true",{"type":47,"value":1440},{"type":41,"tag":78,"props":8901,"children":8903},{"className":8902},[],[8904],{"type":47,"value":232},{"type":47,"value":8906}," to prevent automatic wallet-standard registration.",{"type":41,"tag":67,"props":8908,"children":8909},{},[8910,8921],{"type":41,"tag":109,"props":8911,"children":8912},{},[8913,8919],{"type":41,"tag":78,"props":8914,"children":8916},{"className":8915},[],[8917],{"type":47,"value":8918},"disconnect()",{"type":47,"value":8920}," only revokes Solana scopes",{"type":47,"value":8922}," — EVM sessions remain active if present.",{"type":41,"tag":67,"props":8924,"children":8925},{},[8926,8938,8940,8946,8948,8954],{"type":41,"tag":109,"props":8927,"children":8928},{},[8929,8931,8936],{"type":47,"value":8930},"Call ",{"type":41,"tag":78,"props":8932,"children":8934},{"className":8933},[],[8935],{"type":47,"value":232},{"type":47,"value":8937}," once",{"type":47,"value":8939}," — each call returns a ",{"type":41,"tag":8941,"props":8942,"children":8943},"em",{},[8944],{"type":47,"value":8945},"new",{"type":47,"value":8947}," Solana client wrapper, but they share the singleton multichain core (whose options merge across calls). Create it once (e.g., in a ",{"type":41,"tag":78,"props":8949,"children":8951},{"className":8950},[],[8952],{"type":47,"value":8953},"useEffect",{"type":47,"value":8955}," or before app registration), don't recreate per render.",{"type":41,"tag":8957,"props":8958,"children":8959},"style",{},[8960],{"type":47,"value":8961},"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":8963,"total":1108},[8964,8985,8999,9011,9020,9030,9044,9060,9075,9086,9096,9106],{"slug":8965,"name":8965,"fn":8966,"description":8967,"org":8968,"tags":8969,"stars":6544,"repoUrl":8983,"updatedAt":8984},"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},[8970,8973,8976,8979,8982],{"name":8971,"slug":8972,"type":15},"API Development","api-development",{"name":8974,"slug":8975,"type":15},"Auth","auth",{"name":8977,"slug":8978,"type":15},"Ethereum","ethereum",{"name":8980,"slug":8981,"type":15},"Permissions","permissions",{"name":20,"slug":21,"type":15},"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fsmart-accounts-kit","2026-07-13T06:11:32.8327",{"slug":8986,"name":8986,"fn":8987,"description":8988,"org":8989,"tags":8990,"stars":6544,"repoUrl":8983,"updatedAt":8998},"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},[8991,8992,8995,8996],{"name":8971,"slug":8972,"type":15},{"name":8993,"slug":8994,"type":15},"Payments","payments",{"name":20,"slug":21,"type":15},{"name":8997,"slug":8997,"type":15},"x402","2026-07-13T06:11:30.877136",{"slug":9000,"name":9000,"fn":9001,"description":9002,"org":9003,"tags":9004,"stars":402,"repoUrl":9009,"updatedAt":9010},"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},[9005,9006],{"name":8971,"slug":8972,"type":15},{"name":9007,"slug":9008,"type":15},"Search","search","https:\u002F\u002Fgithub.com\u002FMetaMask\u002Focap-kernel","2026-07-13T06:12:37.024095",{"slug":8,"name":8,"fn":9012,"description":9013,"org":9014,"tags":9015,"stars":402,"repoUrl":9009,"updatedAt":9019},"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},[9016,9017,9018],{"name":8971,"slug":8972,"type":15},{"name":8977,"slug":8978,"type":15},{"name":20,"slug":21,"type":15},"2026-07-13T06:12:33.955806",{"slug":9021,"name":9021,"fn":9022,"description":9023,"org":9024,"tags":9025,"stars":402,"repoUrl":9009,"updatedAt":9029},"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},[9026,9027,9028],{"name":8977,"slug":8978,"type":15},{"name":8993,"slug":8994,"type":15},{"name":20,"slug":21,"type":15},"2026-07-13T06:12:35.380244",{"slug":9031,"name":9031,"fn":9032,"description":9033,"org":9034,"tags":9035,"stars":385,"repoUrl":9042,"updatedAt":9043},"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},[9036,9037,9038,9039,9041],{"name":8971,"slug":8972,"type":15},{"name":8977,"slug":8978,"type":15},{"name":23,"slug":24,"type":15},{"name":9040,"slug":9040,"type":15},"wagmi",{"name":20,"slug":21,"type":15},"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fconnect-monorepo","2026-07-13T06:11:34.445665",{"slug":9045,"name":9045,"fn":9046,"description":9047,"org":9048,"tags":9049,"stars":344,"repoUrl":9058,"updatedAt":9059},"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},[9050,9053,9056,9057],{"name":9051,"slug":9052,"type":15},"Blockchain","blockchain",{"name":9054,"slug":9055,"type":15},"DeFi","defi",{"name":8977,"slug":8978,"type":15},{"name":20,"slug":21,"type":15},"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fagent-skills","2026-08-01T05:45:07.976522",{"slug":9061,"name":9061,"fn":9062,"description":9063,"org":9064,"tags":9065,"stars":25,"repoUrl":26,"updatedAt":9074},"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},[9066,9067,9070,9073],{"name":8977,"slug":8978,"type":15},{"name":9068,"slug":9069,"type":15},"Migration","migration",{"name":9071,"slug":9072,"type":15},"SDK","sdk",{"name":20,"slug":21,"type":15},"2026-07-13T06:11:46.427441",{"slug":9076,"name":9076,"fn":9077,"description":9078,"org":9079,"tags":9080,"stars":25,"repoUrl":26,"updatedAt":9085},"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},[9081,9082,9083,9084],{"name":8977,"slug":8978,"type":15},{"name":9068,"slug":9069,"type":15},{"name":9040,"slug":9040,"type":15},{"name":20,"slug":21,"type":15},"2026-07-13T06:12:23.110706",{"slug":9087,"name":9087,"fn":9088,"description":9089,"org":9090,"tags":9091,"stars":25,"repoUrl":26,"updatedAt":9095},"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},[9092,9093,9094],{"name":8971,"slug":8972,"type":15},{"name":8977,"slug":8978,"type":15},{"name":20,"slug":21,"type":15},"2026-07-13T06:11:56.866623",{"slug":9097,"name":9097,"fn":9098,"description":9099,"org":9100,"tags":9101,"stars":25,"repoUrl":26,"updatedAt":9105},"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},[9102,9103,9104],{"name":8993,"slug":8994,"type":15},{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},"2026-07-13T06:12:03.942378",{"slug":9107,"name":9107,"fn":9108,"description":9109,"org":9110,"tags":9111,"stars":25,"repoUrl":26,"updatedAt":9121},"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},[9112,9113,9116,9118,9120],{"name":8977,"slug":8978,"type":15},{"name":9114,"slug":9115,"type":15},"Frontend","frontend",{"name":9117,"slug":1453,"type":15},"JavaScript",{"name":9119,"slug":258,"type":15},"TypeScript",{"name":20,"slug":21,"type":15},"2026-07-13T06:12:01.334051",{"items":9123,"total":779},[9124,9131,9138,9144,9150,9158,9171],{"slug":9061,"name":9061,"fn":9062,"description":9063,"org":9125,"tags":9126,"stars":25,"repoUrl":26,"updatedAt":9074},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[9127,9128,9129,9130],{"name":8977,"slug":8978,"type":15},{"name":9068,"slug":9069,"type":15},{"name":9071,"slug":9072,"type":15},{"name":20,"slug":21,"type":15},{"slug":9076,"name":9076,"fn":9077,"description":9078,"org":9132,"tags":9133,"stars":25,"repoUrl":26,"updatedAt":9085},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[9134,9135,9136,9137],{"name":8977,"slug":8978,"type":15},{"name":9068,"slug":9069,"type":15},{"name":9040,"slug":9040,"type":15},{"name":20,"slug":21,"type":15},{"slug":9087,"name":9087,"fn":9088,"description":9089,"org":9139,"tags":9140,"stars":25,"repoUrl":26,"updatedAt":9095},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[9141,9142,9143],{"name":8971,"slug":8972,"type":15},{"name":8977,"slug":8978,"type":15},{"name":20,"slug":21,"type":15},{"slug":9097,"name":9097,"fn":9098,"description":9099,"org":9145,"tags":9146,"stars":25,"repoUrl":26,"updatedAt":9105},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[9147,9148,9149],{"name":8993,"slug":8994,"type":15},{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"slug":9107,"name":9107,"fn":9108,"description":9109,"org":9151,"tags":9152,"stars":25,"repoUrl":26,"updatedAt":9121},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[9153,9154,9155,9156,9157],{"name":8977,"slug":8978,"type":15},{"name":9114,"slug":9115,"type":15},{"name":9117,"slug":1453,"type":15},{"name":9119,"slug":258,"type":15},{"name":20,"slug":21,"type":15},{"slug":9159,"name":9159,"fn":9160,"description":9161,"org":9162,"tags":9163,"stars":25,"repoUrl":26,"updatedAt":9170},"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},[9164,9165,9166,9167,9169],{"name":8971,"slug":8972,"type":15},{"name":8977,"slug":8978,"type":15},{"name":9114,"slug":9115,"type":15},{"name":9168,"slug":4791,"type":15},"React",{"name":20,"slug":21,"type":15},"2026-07-13T06:11:52.764143",{"slug":9172,"name":9172,"fn":9173,"description":9174,"org":9175,"tags":9176,"stars":25,"repoUrl":26,"updatedAt":9181},"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},[9177,9178,9179,9180],{"name":8977,"slug":8978,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-07-13T06:12:11.764689"]