diff --git a/packages/polygon-agent-cli/package.json b/packages/polygon-agent-cli/package.json index cb87377..a8ecc9b 100644 --- a/packages/polygon-agent-cli/package.json +++ b/packages/polygon-agent-cli/package.json @@ -23,17 +23,17 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "@0xsequence/abi": "3.0.0-beta.16", - "@0xsequence/api": "3.0.0-beta.16", - "@0xsequence/builder": "3.0.0-beta.16", - "@0xsequence/dapp-client": "3.0.0-beta.16", + "@0xsequence/abi": "3.0.0-beta.17", + "@0xsequence/api": "3.0.0-beta.17", + "@0xsequence/builder": "3.0.0-beta.17", + "@0xsequence/dapp-client": "3.0.0-beta.17", "@0xsequence/dapp-client-cli": "0.1.5", "@0xsequence/indexer": "^2.3.40", "@0xsequence/network": "^2.3.40", - "@0xsequence/relayer": "3.0.0-beta.16", - "@0xsequence/wallet-core": "3.0.0-beta.16", - "@0xsequence/wallet-primitives": "3.0.0-beta.16", - "@0xsequence/wallet-wdk": "3.0.0-beta.16", + "@0xsequence/relayer": "3.0.0-beta.17", + "@0xsequence/wallet-core": "3.0.0-beta.17", + "@0xsequence/wallet-primitives": "3.0.0-beta.17", + "@0xsequence/wallet-wdk": "3.0.0-beta.17", "@0xtrails/api": "^0.10.4", "@x402/core": "^2.3.1", "@x402/evm": "^2.3.1", diff --git a/packages/polygon-agent-cli/skills/SKILL.md b/packages/polygon-agent-cli/skills/SKILL.md index 6992821..bc66550 100644 --- a/packages/polygon-agent-cli/skills/SKILL.md +++ b/packages/polygon-agent-cli/skills/SKILL.md @@ -46,16 +46,6 @@ export SEQUENCE_INDEXER_ACCESS_KEY=$SEQUENCE_PROJECT_ACCESS_KEY export TRAILS_API_KEY=$SEQUENCE_PROJECT_ACCESS_KEY ``` -### Optional - -| Variable | Default | -| ---------------------------------- | ----------------------------------------------------- | -| `SEQUENCE_ECOSYSTEM_CONNECTOR_URL` | `https://agentconnect.polygon.technology/` | -| `SEQUENCE_DAPP_ORIGIN` | Same as connector URL origin | -| `TRAILS_TOKEN_MAP_JSON` | Token-directory lookup | -| `POLYGON_AGENT_DEBUG_FETCH` | Off — logs HTTP to `~/.polygon-agent/fetch-debug.log` | -| `POLYGON_AGENT_DEBUG_FEE` | Off — dumps fee options to stderr | - ## Complete Setup Flow ```bash @@ -66,6 +56,10 @@ polygon-agent setup --name "MyAgent" # Phase 2: Create ecosystem wallet (auto-waits for browser approval) export SEQUENCE_PROJECT_ACCESS_KEY= polygon-agent wallet create --usdc-limit 100 --native-limit 5 +# → IMPORTANT: The command outputs an `approvalUrl`. You MUST send the COMPLETE, +# UNTRUNCATED URL to the user and wait for them to open it in a browser and approve. +# Do NOT proceed to the next step until the user confirms approval (or the CLI +# automatically detects the callback). The wallet address is only available after approval. # Phase 3: Fund wallet polygon-agent fund diff --git a/packages/polygon-agent-cli/src/lib/dapp-client.ts b/packages/polygon-agent-cli/src/lib/dapp-client.ts index d60bb51..86e13b9 100644 --- a/packages/polygon-agent-cli/src/lib/dapp-client.ts +++ b/packages/polygon-agent-cli/src/lib/dapp-client.ts @@ -290,110 +290,14 @@ export async function runDappClientTx({ return { walletAddress, dryRun: true }; } - const debugFee = ['1', 'true', 'yes'].includes( - String( - process.env.SEQ_ECO_DEBUG_FEE_OPTIONS || process.env.POLYGON_AGENT_DEBUG_FEE || '' - ).toLowerCase() - ); - + // Let the SDK handle fee selection — including counterfactual (undeployed) wallets. + // The SDK routes undeployed wallets through the guest executor and bundles deploy+execute. // eslint-disable-next-line @typescript-eslint/no-explicit-any - let feeOpt: any; - - if (preferNativeFee) { - try { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const feeOptions = await client.getFeeOptions(chainId, transactions as any); - if (debugFee) console.error(JSON.stringify({ debug: 'feeOptions', feeOptions }, null, 2)); - const nativeOpt = (feeOptions || []).find(isNativeFeeOption); - if (nativeOpt) feeOpt = nativeOpt; - } catch { - // Fall through to ERC20 fee path - } - } - - if (!feeOpt) { - try { - const feeTokens = await client.getFeeTokens(chainId); - if (debugFee) console.error(JSON.stringify({ debug: 'feeTokens', feeTokens }, null, 2)); - - const paymentAddress = feeTokens?.paymentAddress; - const tokens = Array.isArray(feeTokens?.tokens) ? feeTokens.tokens : []; - - const USDC_POLYGON = '0x3c499c542cef5e3811e1192ce70d8cc03d5c3359'; - // eslint-disable-next-line @typescript-eslint/no-explicit-any - let erc20Token: any = null; - if (tokens.length > 0) { - try { - const { SequenceIndexer } = await import('@0xsequence/indexer'); - const chainIndexerUrl = `https://polygon-indexer.sequence.app`; - const indexerKey = process.env.SEQUENCE_INDEXER_ACCESS_KEY || projectAccessKey; - const indexer = new SequenceIndexer(chainIndexerUrl, indexerKey); - const balRes = await indexer.getTokenBalances({ - accountAddress: walletAddress, - includeMetadata: false - }); - const heldAddresses = new Set( - (balRes?.balances || []).map((b: { contractAddress?: string }) => - b.contractAddress?.toLowerCase() - ) - ); - const heldFeeTokens = tokens.filter( - (t: { contractAddress?: string }) => - t?.contractAddress && heldAddresses.has(t.contractAddress.toLowerCase()) - ); - erc20Token = - heldFeeTokens.find( - (t: { contractAddress?: string }) => t.contractAddress?.toLowerCase() === USDC_POLYGON - ) || - heldFeeTokens.find((t: { symbol?: string }) => t?.symbol === 'USDC') || - heldFeeTokens[0] || - null; - } catch { - // Indexer unavailable — fall back to symbol matching - } - if (!erc20Token) { - erc20Token = - tokens.find( - (t: { contractAddress?: string }) => - t?.contractAddress?.toLowerCase() === USDC_POLYGON - ) || - tokens.find( - (t: { contractAddress?: string; symbol?: string }) => - t?.contractAddress && t?.symbol === 'USDC' - ) || - tokens.find((t: { contractAddress?: string }) => t?.contractAddress) || - null; - } - } - - if (paymentAddress && erc20Token) { - const decimals = typeof erc20Token.decimals === 'number' ? erc20Token.decimals : 6; - const feeValue = decimals >= 2 ? 10 ** (decimals - 2) : 1; - feeOpt = { - token: erc20Token, - to: paymentAddress, - value: String(feeValue), - gasLimit: 0 - }; - if (debugFee) console.error(JSON.stringify({ debug: 'selectedFee', feeOpt }, null, 2)); - } - } catch (e) { - if (debugFee) - console.error( - JSON.stringify({ debug: 'getFeeTokens failed', error: (e as Error)?.message }, null, 2) - ); - } - } - - if (!feeOpt) { - try { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const feeOptions = await client.getFeeOptions(chainId, transactions as any); - feeOpt = feeOptions?.[0]; - } catch (e) { - throw new Error(`Unable to determine fee option: ${(e as Error)?.message}`); - } + const feeOptions = await client.getFeeOptions(chainId, transactions as any); + if (!feeOptions || feeOptions.length === 0) { + throw new Error('No fee options available for this transaction.'); } + const feeOpt = (preferNativeFee && feeOptions.find(isNativeFeeOption)) || feeOptions[0]; // eslint-disable-next-line @typescript-eslint/no-explicit-any const txHash = await client.sendTransaction(chainId, transactions as any, feeOpt); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 703a599..1c5cc40 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -106,17 +106,17 @@ importers: packages/polygon-agent-cli: dependencies: '@0xsequence/abi': - specifier: 3.0.0-beta.16 - version: 3.0.0-beta.16 + specifier: 3.0.0-beta.17 + version: 3.0.0-beta.17 '@0xsequence/api': - specifier: 3.0.0-beta.16 - version: 3.0.0-beta.16 + specifier: 3.0.0-beta.17 + version: 3.0.0-beta.17 '@0xsequence/builder': - specifier: 3.0.0-beta.16 - version: 3.0.0-beta.16 + specifier: 3.0.0-beta.17 + version: 3.0.0-beta.17 '@0xsequence/dapp-client': - specifier: 3.0.0-beta.16 - version: 3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76) + specifier: 3.0.0-beta.17 + version: 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) '@0xsequence/dapp-client-cli': specifier: 0.1.5 version: 0.1.5(typescript@5.9.3)(zod@3.25.76) @@ -127,17 +127,17 @@ importers: specifier: ^2.3.40 version: 2.3.41(ethers@6.16.0) '@0xsequence/relayer': - specifier: 3.0.0-beta.16 - version: 3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76) + specifier: 3.0.0-beta.17 + version: 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) '@0xsequence/wallet-core': - specifier: 3.0.0-beta.16 - version: 3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76) + specifier: 3.0.0-beta.17 + version: 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) '@0xsequence/wallet-primitives': - specifier: 3.0.0-beta.16 - version: 3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76) + specifier: 3.0.0-beta.17 + version: 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) '@0xsequence/wallet-wdk': - specifier: 3.0.0-beta.16 - version: 3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76) + specifier: 3.0.0-beta.17 + version: 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) '@0xtrails/api': specifier: ^0.10.4 version: 0.10.4 @@ -178,14 +178,14 @@ packages: '@0xsequence/abi@2.3.41': resolution: {integrity: sha512-CMiuW/5HiNxB0jpVBEUZfVkwXgeiT9HbsUy/7FL/8XWv9rLM5mE9Y6fj4QAH/jaRnvGfG4iDcCbq05+PQ/q5Rw==} - '@0xsequence/abi@3.0.0-beta.16': - resolution: {integrity: sha512-EqPirhge2aXRHuvE7lBvW4W4SZFuuIIh65LS+9Z/B47+2xef/pTyuZc4/lLl2Kz0zNFxsqUeggZD0DT/5XZTSA==} + '@0xsequence/abi@3.0.0-beta.17': + resolution: {integrity: sha512-YoIBLe1CzhEX0fLAWgI8ccPKT9EptzGsCjXPlZWyEB6lRyxvM3qhtVoZfB5t2I4n7IIhgS6FN8KdjFBidnhOkw==} - '@0xsequence/api@3.0.0-beta.16': - resolution: {integrity: sha512-CWTUJlScxMsUYXByL4FjLxtFgpeKOkCOICArLauwAD+6Ft1/6CWVswnbwymdnMoL3QGakX57DqSFnjyu+gFyrQ==} + '@0xsequence/api@3.0.0-beta.17': + resolution: {integrity: sha512-vvw+fzSZNmRtA6MTYNDKrtNjGl3u0aaEJviLkJ3oUruecKUuIPJkLmgvA8kNQQq0XJT8D9SVO8UJQYSipSkJHA==} - '@0xsequence/builder@3.0.0-beta.16': - resolution: {integrity: sha512-WTUKm0KNhXc8ByquS1Z20LYzRllfJAU+SdCjTKEw6Bv0Xs/9AYvWu+q8UHO+CSXj4vK3cs1c2OfmweAqc2YWcA==} + '@0xsequence/builder@3.0.0-beta.17': + resolution: {integrity: sha512-Oy4KAO4ow5AnTfHMJndZBG9ZF0MCSpih3NuYD1BzkPlueYMckWc6MKJNO+/vJn5ioKZUkeCGafOfT3WwbsrQpg==} '@0xsequence/core@2.3.41': resolution: {integrity: sha512-ibZ71pF0qkRjBXt7XiZLoP7THJn8d8M6MLKYE1u713g8iqmYT4ITlXWIGdO2T2noveSMw9YVCuJGkkh/PJ4PTw==} @@ -208,8 +208,8 @@ packages: '@0xsequence/guard@3.0.0-beta.19': resolution: {integrity: sha512-4A+LjH+uCywX9JD+O76D6o2ZkoIvym7LEVo5bxAcRV8zFyuwy7yiQHdiVvNcNaGayApn0Y7vt6mfZKdALoXqSA==} - '@0xsequence/identity-instrument@3.0.0-beta.19': - resolution: {integrity: sha512-aAoEXt5+JQCNyZttyxBVpZQOQf80hSE0CngsOiVxekJQl6xD/pX2FteWCXiPQPAeXOMtn6HTa/qNw+FAIAZpmg==} + '@0xsequence/identity-instrument@3.0.0': + resolution: {integrity: sha512-JKOVFlJvMHPCBrVPpSsVCq0yboBsVdgD49ScvOSiclia1yfPgIWne/MBmxTkcTUi8klB5ea912x4SNWatr3ztg==} '@0xsequence/indexer@2.3.41': resolution: {integrity: sha512-zAclbFgafj9O8+t4x7UmyNQu359SHY32aOGRQWsl5E7TvrfgPrAfDMW8Rfsu++fNwEhIgOt5gkL0kbyvUGKtLQ==} @@ -224,12 +224,12 @@ packages: peerDependencies: ethers: '>=6' - '@0xsequence/relayer@3.0.0': - resolution: {integrity: sha512-hMMAKGVeOqEdHO9/BqtSde1XpI6gc2V9ERXazuylYzly+eKnfLt2Ne/Tu0bGvfGgMU1+yvhGrtDabSxBRU5NMA==} - '@0xsequence/relayer@3.0.0-beta.16': resolution: {integrity: sha512-AThyuMWuvAJv64I2o38hJKtlRxzj51x8pYLWr70yqHkRi2CasHAEK5xEDhVJA9XCQ2g+XiKiBSezwsfNbStDVg==} + '@0xsequence/relayer@3.0.0-beta.17': + resolution: {integrity: sha512-PP75DQmaTQeNNzhC7zG5tCcGe44hfPyNKVEu5VjtYRQhQk+wlF1TjYxHUTB4ywynrnvfMYLDDE4uF7I6wjjMTg==} + '@0xsequence/tee-verifier@0.1.2': resolution: {integrity: sha512-7sKr8/T4newknx6LAukjlRI3siGiGhBnZohz2Z3jX0zb0EBQdKUq0L//A7CPSckHFPxTg/QvQU2v8e9x9GfkDw==} @@ -238,20 +238,20 @@ packages: peerDependencies: ethers: '>=6' - '@0xsequence/wallet-core@3.0.0': - resolution: {integrity: sha512-8A2UVY3lYPjo3/OxtVSGY4QJk34HEZKU8heMspoE563wyglwKP8Q0uxzFwQVMLc8mMV0qBIOMku3bdNEhI3FZw==} - '@0xsequence/wallet-core@3.0.0-beta.16': resolution: {integrity: sha512-Vi34/n5FPVXfbz6ykoiATXaG/CAYyMbo3f01/t3NuyZc2DkgzZ7/fIlN6G2i2PEi2aV3gTt/ENVapOsJVRD/xw==} - '@0xsequence/wallet-primitives@3.0.0': - resolution: {integrity: sha512-V43rz82YoRjOMRBRz8FRcXldyzdUtvhLaCwuqu2zW61SZhag/QVNEHNxGg8EGtqIt6e8xKHx8PfXPRWeUiEzpQ==} + '@0xsequence/wallet-core@3.0.0-beta.17': + resolution: {integrity: sha512-0IKBI+25BUoDbi/m3/uehFMjM+WuF8RAXVfz3QUtp7hI/sA6v0+bFA2Gq/rQdtoB40HkZjxTtsMhKEzmxLZTPA==} '@0xsequence/wallet-primitives@3.0.0-beta.16': resolution: {integrity: sha512-iwweQtEo/6sA6VBSVTQggdwKRvYoJOaRBrB+1trp05ULq4+rtvS+BG4mPfZQN86RWy93MYwCF1znsDon69u6wQ==} - '@0xsequence/wallet-wdk@3.0.0-beta.16': - resolution: {integrity: sha512-UQntO5CvZQkVsJEkZoGReIOUPa8i4m3Db/shbeUyJLfhMJCDWIbUNMlb8R9mOhPfISCumDzv84o05GDokhsWiA==} + '@0xsequence/wallet-primitives@3.0.0-beta.17': + resolution: {integrity: sha512-AjdckQi1tgqgHG55XvilfkINB0TTooCC2j5bHNB+FQyk30XwFCH7N6oUt55BzDycckHHrDhixsT7ua2V2/xxWg==} + + '@0xsequence/wallet-wdk@3.0.0-beta.17': + resolution: {integrity: sha512-tqunDMEu+LqNIt3Zbt6yrE6bb8tFs2aqk+fha0Tp7x8VOYGcgrPBiVOF48jjwljtzOk2tO/yu/tETH7wHIzX6Q==} '@0xtrails/api@0.10.4': resolution: {integrity: sha512-jjGYCxWvZxoox2kzEjVJSgmuy9LBKSxs1ZcEkGageJ6ggvOlN4H35H6kSouDkycz5uTyRsH3O+4qW6nxy9niBQ==} @@ -4897,11 +4897,11 @@ snapshots: '@0xsequence/abi@2.3.41': {} - '@0xsequence/abi@3.0.0-beta.16': {} + '@0xsequence/abi@3.0.0-beta.17': {} - '@0xsequence/api@3.0.0-beta.16': {} + '@0xsequence/api@3.0.0-beta.17': {} - '@0xsequence/builder@3.0.0-beta.16': {} + '@0xsequence/builder@3.0.0-beta.17': {} '@0xsequence/core@2.3.41(ethers@6.16.0)': dependencies: @@ -4938,9 +4938,9 @@ snapshots: '@0xsequence/dapp-client@3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76)': dependencies: '@0xsequence/guard': 3.0.0(typescript@5.9.3)(zod@3.25.76) - '@0xsequence/relayer': 3.0.0(typescript@5.9.3)(zod@3.25.76) - '@0xsequence/wallet-core': 3.0.0(typescript@5.9.3)(zod@3.25.76) - '@0xsequence/wallet-primitives': 3.0.0(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/relayer': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/wallet-core': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/wallet-primitives': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) ox: 0.9.17(typescript@5.9.3)(zod@3.25.76) transitivePeerDependencies: - bufferutil @@ -4962,7 +4962,7 @@ snapshots: - typescript - zod - '@0xsequence/identity-instrument@3.0.0-beta.19(typescript@5.9.3)(zod@3.25.76)': + '@0xsequence/identity-instrument@3.0.0(typescript@5.9.3)(zod@3.25.76)': dependencies: json-canonicalize: 2.0.0 jwt-decode: 4.0.0 @@ -4988,9 +4988,9 @@ snapshots: '@0xsequence/utils': 2.3.41(ethers@6.16.0) ethers: 6.16.0 - '@0xsequence/relayer@3.0.0(typescript@5.9.3)(zod@3.25.76)': + '@0xsequence/relayer@3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76)': dependencies: - '@0xsequence/wallet-primitives': 3.0.0(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/wallet-primitives': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) mipd: 0.0.7(typescript@5.9.3) ox: 0.9.17(typescript@5.9.3)(zod@3.25.76) viem: 2.46.3(typescript@5.9.3)(zod@3.25.76) @@ -5000,9 +5000,9 @@ snapshots: - utf-8-validate - zod - '@0xsequence/relayer@3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76)': + '@0xsequence/relayer@3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76)': dependencies: - '@0xsequence/wallet-primitives': 3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/wallet-primitives': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) mipd: 0.0.7(typescript@5.9.3) ox: 0.9.17(typescript@5.9.3)(zod@3.25.76) viem: 2.46.3(typescript@5.9.3)(zod@3.25.76) @@ -5022,11 +5022,11 @@ snapshots: ethers: 6.16.0 js-base64: 3.7.8 - '@0xsequence/wallet-core@3.0.0(typescript@5.9.3)(zod@3.25.76)': + '@0xsequence/wallet-core@3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76)': dependencies: - '@0xsequence/guard': 3.0.0(typescript@5.9.3)(zod@3.25.76) - '@0xsequence/relayer': 3.0.0(typescript@5.9.3)(zod@3.25.76) - '@0xsequence/wallet-primitives': 3.0.0(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/guard': 3.0.0-beta.19(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/relayer': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/wallet-primitives': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) mipd: 0.0.7(typescript@5.9.3) ox: 0.9.17(typescript@5.9.3)(zod@3.25.76) viem: 2.46.3(typescript@5.9.3)(zod@3.25.76) @@ -5036,11 +5036,11 @@ snapshots: - utf-8-validate - zod - '@0xsequence/wallet-core@3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76)': + '@0xsequence/wallet-core@3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76)': dependencies: - '@0xsequence/guard': 3.0.0-beta.19(typescript@5.9.3)(zod@3.25.76) - '@0xsequence/relayer': 3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76) - '@0xsequence/wallet-primitives': 3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/guard': 3.0.0(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/relayer': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/wallet-primitives': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) mipd: 0.0.7(typescript@5.9.3) ox: 0.9.17(typescript@5.9.3)(zod@3.25.76) viem: 2.46.3(typescript@5.9.3)(zod@3.25.76) @@ -5050,28 +5050,28 @@ snapshots: - utf-8-validate - zod - '@0xsequence/wallet-primitives@3.0.0(typescript@5.9.3)(zod@3.25.76)': + '@0xsequence/wallet-primitives@3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76)': dependencies: ox: 0.9.17(typescript@5.9.3)(zod@3.25.76) transitivePeerDependencies: - typescript - zod - '@0xsequence/wallet-primitives@3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76)': + '@0xsequence/wallet-primitives@3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76)': dependencies: ox: 0.9.17(typescript@5.9.3)(zod@3.25.76) transitivePeerDependencies: - typescript - zod - '@0xsequence/wallet-wdk@3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76)': + '@0xsequence/wallet-wdk@3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76)': dependencies: - '@0xsequence/guard': 3.0.0-beta.19(typescript@5.9.3)(zod@3.25.76) - '@0xsequence/identity-instrument': 3.0.0-beta.19(typescript@5.9.3)(zod@3.25.76) - '@0xsequence/relayer': 3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/guard': 3.0.0(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/identity-instrument': 3.0.0(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/relayer': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) '@0xsequence/tee-verifier': 0.1.2 - '@0xsequence/wallet-core': 3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76) - '@0xsequence/wallet-primitives': 3.0.0-beta.16(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/wallet-core': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) + '@0xsequence/wallet-primitives': 3.0.0-beta.17(typescript@5.9.3)(zod@3.25.76) idb: 8.0.3 jwt-decode: 4.0.0 ox: 0.9.17(typescript@5.9.3)(zod@3.25.76)