@1llet.xyz/erc4337-gasless-sdk 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -272,4 +272,4 @@ declare const erc20Abi: readonly [{
272
272
  readonly type: "function";
273
273
  }];
274
274
 
275
- export { AccountAbstraction, BASE_MAINNET, BASE_SEPOLIA, BundlerClient, CHAIN_CONFIGS, type ChainConfig, type Token, type UserOpReceipt, type UserOperation, entryPointAbi, erc20Abi, smartAccountAbi };
275
+ export { AccountAbstraction, type ApprovalSupportResult, BASE_MAINNET, BASE_SEPOLIA, BundlerClient, CHAIN_CONFIGS, type ChainConfig, type GasEstimate, type Token, type UserOpReceipt, type UserOperation, entryPointAbi, erc20Abi, smartAccountAbi };
package/dist/index.d.ts CHANGED
@@ -272,4 +272,4 @@ declare const erc20Abi: readonly [{
272
272
  readonly type: "function";
273
273
  }];
274
274
 
275
- export { AccountAbstraction, BASE_MAINNET, BASE_SEPOLIA, BundlerClient, CHAIN_CONFIGS, type ChainConfig, type Token, type UserOpReceipt, type UserOperation, entryPointAbi, erc20Abi, smartAccountAbi };
275
+ export { AccountAbstraction, type ApprovalSupportResult, BASE_MAINNET, BASE_SEPOLIA, BundlerClient, CHAIN_CONFIGS, type ChainConfig, type GasEstimate, type Token, type UserOpReceipt, type UserOperation, entryPointAbi, erc20Abi, smartAccountAbi };
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts","../src/AccountAbstraction.ts","../src/constants.ts","../src/BundlerClient.ts","../src/TokenService.ts","../src/UserOpBuilder.ts","../src/chains.ts"],"sourcesContent":["// Core\nexport { AccountAbstraction } from \"./AccountAbstraction\";\nexport { BundlerClient } from \"./BundlerClient\";\n\n// Config & Registry\nexport { BASE_MAINNET, BASE_SEPOLIA, CHAIN_CONFIGS } from \"./chains\";\n\n// Types\nexport type { ChainConfig, Token, UserOperation, UserOpReceipt } from \"./types\";\n\n// Constants (ABIs)\nexport { erc20Abi, smartAccountAbi, entryPointAbi } from \"./constants\";\n","import {\n createPublicClient,\n http,\n type Address,\n type Hash,\n type Hex,\n type PublicClient,\n decodeErrorResult\n} from \"viem\";\nimport {\n factoryAbi,\n} from \"./constants\";\nimport {\n type ChainConfig,\n type UserOperation,\n type UserOpReceipt,\n type ApprovalSupportResult,\n type Token\n} from \"./types\";\nimport { BundlerClient } from \"./BundlerClient\";\nimport { TokenService } from \"./TokenService\";\nimport { UserOpBuilder } from \"./UserOpBuilder\";\n\n/**\n * ERC-4337 Account Abstraction Client\n */\nexport class AccountAbstraction {\n private owner: Address | null = null;\n private smartAccountAddress: Address | null = null;\n private chainConfig: ChainConfig;\n private publicClient: PublicClient;\n private bundlerClient: BundlerClient;\n\n // Services\n private tokenService: TokenService;\n private userOpBuilder: UserOpBuilder;\n\n // Resolved addresses\n private entryPointAddress: Address;\n private factoryAddress: Address;\n\n constructor(chainConfig: ChainConfig) {\n this.chainConfig = chainConfig;\n\n // Validation\n if (!chainConfig.entryPointAddress) throw new Error(\"EntryPoint address required\");\n this.entryPointAddress = chainConfig.entryPointAddress;\n if (!chainConfig.factoryAddress) throw new Error(\"Factory address required\");\n this.factoryAddress = chainConfig.factoryAddress;\n\n // Setup Clients\n const rpcUrl = chainConfig.rpcUrl || chainConfig.chain.rpcUrls.default.http[0];\n this.publicClient = createPublicClient({\n chain: chainConfig.chain,\n transport: http(rpcUrl),\n });\n\n this.bundlerClient = new BundlerClient(chainConfig, this.entryPointAddress);\n\n // Setup Services\n this.tokenService = new TokenService(chainConfig, this.publicClient);\n this.userOpBuilder = new UserOpBuilder(chainConfig, this.bundlerClient, this.publicClient);\n }\n\n /**\n * Connect to MetaMask and get the owner address\n */\n async connect(): Promise<{ owner: Address; smartAccount: Address }> {\n if (typeof window === \"undefined\" || !window.ethereum) {\n throw new Error(\"MetaMask is not installed\");\n }\n\n // Request account access\n const accounts = (await window.ethereum.request({\n method: \"eth_requestAccounts\",\n })) as string[];\n\n if (!accounts || accounts.length === 0) throw new Error(\"No accounts found\");\n\n // Check network\n const chainId = (await window.ethereum.request({\n method: \"eth_chainId\",\n })) as string;\n const targetChainId = this.chainConfig.chain.id;\n\n if (parseInt(chainId, 16) !== targetChainId) {\n try {\n await window.ethereum.request({\n method: \"wallet_switchEthereumChain\",\n params: [{ chainId: \"0x\" + targetChainId.toString(16) }],\n });\n } catch (switchError: unknown) {\n const error = switchError as { code?: number };\n if (error.code === 4902) {\n await window.ethereum.request({\n method: \"wallet_addEthereumChain\",\n params: [\n {\n chainId: \"0x\" + targetChainId.toString(16),\n chainName: this.chainConfig.chain.name,\n nativeCurrency: this.chainConfig.chain.nativeCurrency,\n rpcUrls: [this.chainConfig.rpcUrl || this.chainConfig.chain.rpcUrls.default.http[0]],\n blockExplorerUrls: this.chainConfig.chain.blockExplorers?.default?.url\n ? [this.chainConfig.chain.blockExplorers.default.url]\n : [],\n },\n ],\n });\n } else {\n throw switchError;\n }\n }\n }\n\n this.owner = accounts[0] as Address;\n this.smartAccountAddress = await this.getSmartAccountAddress(this.owner);\n\n return {\n owner: this.owner,\n smartAccount: this.smartAccountAddress,\n };\n }\n\n /**\n * Get the Smart Account address for an owner\n */\n async getSmartAccountAddress(owner: Address): Promise<Address> {\n const address = await this.publicClient.readContract({\n address: this.factoryAddress,\n abi: factoryAbi,\n functionName: \"getAccountAddress\",\n args: [owner, 0n],\n }) as Address;\n return address;\n }\n\n /**\n * Check if the Smart Account is deployed\n */\n async isAccountDeployed(): Promise<boolean> {\n if (!this.smartAccountAddress) throw new Error(\"Not connected\");\n return this.userOpBuilder.isAccountDeployed(this.smartAccountAddress);\n }\n\n // --- Token Methods (Delegated) ---\n\n getTokenAddress(token: string | Address): Address {\n return this.tokenService.getTokenAddress(token);\n }\n\n async getUsdcBalance(): Promise<bigint> {\n if (!this.smartAccountAddress) throw new Error(\"Not connected\");\n return this.tokenService.getBalance(\"USDC\", this.smartAccountAddress);\n }\n\n async getEoaUsdcBalance(): Promise<bigint> {\n if (!this.owner) throw new Error(\"Not connected\");\n return this.tokenService.getBalance(\"USDC\", this.owner);\n }\n\n async getAllowance(): Promise<bigint> {\n if (!this.owner || !this.smartAccountAddress) throw new Error(\"Not connected\");\n return this.tokenService.getAllowance(\"USDC\", this.owner, this.smartAccountAddress);\n }\n\n // --- Transactions ---\n\n async deployAccount(): Promise<UserOpReceipt> {\n if (!this.owner || !this.smartAccountAddress) throw new Error(\"Not connected\");\n\n try {\n const userOp = await this.userOpBuilder.buildDeployUserOp(this.owner, this.smartAccountAddress);\n const signed = await this.signUserOperation(userOp);\n const hash = await this.sendUserOperation(signed);\n return await this.waitForUserOperation(hash);\n } catch (error) {\n throw this.decodeError(error);\n }\n }\n\n async sendTransaction(\n tx: { target: Address; value?: bigint; data?: Hex }\n ): Promise<UserOpReceipt> {\n return this.sendBatchTransaction([tx]);\n }\n\n async sendBatchTransaction(\n txs: { target: Address; value?: bigint; data?: Hex }[]\n ): Promise<UserOpReceipt> {\n if (!this.owner || !this.smartAccountAddress) throw new Error(\"Not connected\");\n\n // Normalize\n const transactions = txs.map(tx => ({\n target: tx.target,\n value: tx.value ?? 0n,\n data: tx.data ?? \"0x\"\n }));\n\n try {\n const userOp = await this.userOpBuilder.buildUserOperationBatch(\n this.owner,\n this.smartAccountAddress,\n transactions\n );\n const signed = await this.signUserOperation(userOp);\n const hash = await this.sendUserOperation(signed);\n return await this.waitForUserOperation(hash);\n } catch (error) {\n throw this.decodeError(error);\n }\n }\n\n async deposit(amount: bigint): Promise<Hash> {\n if (!this.owner || !this.smartAccountAddress) throw new Error(\"Not connected\");\n\n const txHash = await window.ethereum!.request({\n method: \"eth_sendTransaction\",\n params: [{\n from: this.owner,\n to: this.smartAccountAddress,\n value: \"0x\" + amount.toString(16)\n }]\n }) as Hash;\n return txHash;\n }\n\n async transfer(\n token: Address | string,\n recipient: Address,\n amount: bigint\n ): Promise<UserOpReceipt> {\n const tokenAddress = this.getTokenAddress(token);\n\n // Native Transfer check\n if (tokenAddress === \"0x0000000000000000000000000000000000000000\") {\n return this.sendTransaction({\n target: recipient,\n value: amount,\n data: \"0x\"\n });\n }\n\n // ERC-20\n const data = this.tokenService.encodeTransfer(recipient, amount);\n return this.sendTransaction({\n target: tokenAddress,\n value: 0n,\n data\n });\n }\n\n /**\n * Approve a token for the Smart Account\n */\n async approveToken(\n token: Address,\n spender: Address,\n amount: bigint = 115792089237316195423570985008687907853269984665640564039457584007913129639935n // maxUint256\n ): Promise<Hash | \"NOT_NEEDED\"> {\n if (!this.owner) throw new Error(\"Not connected\");\n\n const support = await this.requestApprovalSupport(token, spender, amount);\n\n if (support.type === \"approve\") {\n const data = this.tokenService.encodeApprove(spender, amount);\n const txHash = await window.ethereum!.request({\n method: \"eth_sendTransaction\",\n params: [{\n from: this.owner,\n to: token,\n data,\n }]\n }) as Hash;\n return txHash;\n }\n\n if (support.type === \"permit\") throw new Error(\"Permit not yet supported\");\n return \"NOT_NEEDED\";\n }\n\n // --- Core Bridge to Bundler/UserOp ---\n\n // Deprecated/Legacy but kept for compatibility or advanced usage?\n // buildUserOperationBatch moved to internal usage mostly, but maybe exposed?\n // If I remove them from public API, that is a BREAKING change if user used them.\n // User requested \"modularize\", but usually expects same public API.\n // I will expose them as simple delegates if needed, or assume they primarily use sendBatchTransaction.\n // The previous implementation exposed `buildUserOperationBatch`.\n async buildUserOperationBatch(transactions: any[]) {\n if (!this.owner || !this.smartAccountAddress) throw new Error(\"Not connected\");\n return this.userOpBuilder.buildUserOperationBatch(this.owner, this.smartAccountAddress, transactions);\n }\n\n async signUserOperation(userOp: UserOperation): Promise<UserOperation> {\n if (!this.owner) throw new Error(\"Not connected\");\n\n const userOpHash = this.userOpBuilder.getUserOpHash(userOp);\n\n const signature = (await window.ethereum!.request({\n method: \"personal_sign\",\n params: [userOpHash, this.owner],\n })) as Hex;\n\n return { ...userOp, signature };\n }\n\n async sendUserOperation(userOp: UserOperation): Promise<Hash> {\n return this.bundlerClient.sendUserOperation(userOp);\n }\n\n async waitForUserOperation(hash: Hash, timeout = 60000) {\n return this.bundlerClient.waitForUserOperation(hash, timeout);\n }\n\n // Internal but exposed via BundlerClient originally\n async requestApprovalSupport(token: Address, spender: Address, amount: bigint): Promise<ApprovalSupportResult> {\n if (!this.owner) throw new Error(\"Not connected\");\n return this.bundlerClient.requestApprovalSupport(token, this.owner, spender, amount);\n }\n\n // Error Decoding (Private)\n private decodeError(error: any): Error {\n const msg = error?.message || \"\";\n const hexMatch = msg.match(/(0x[0-9a-fA-F]+)/);\n\n if (hexMatch) {\n try {\n const decoded = decodeErrorResult({\n abi: [{ inputs: [{ name: \"message\", type: \"string\" }], name: \"Error\", type: \"error\" }],\n data: hexMatch[0] as Hex\n });\n if (decoded.errorName === \"Error\") return new Error(`Smart Account Error: ${decoded.args[0]}`);\n } catch (e) { /* ignore */ }\n }\n\n if (msg.includes(\"AA21\")) return new Error(\"Smart Account: Native transfer failed (ETH missing?)\");\n if (msg.includes(\"AA25\")) return new Error(\"Smart Account: Invalid account nonce\");\n\n return error instanceof Error ? error : new Error(String(error));\n }\n\n // Getters\n getOwner() { return this.owner; }\n getSmartAccount() { return this.smartAccountAddress; }\n}\n\n// Global window types for MetaMask\ndeclare global {\n interface Window {\n ethereum?: {\n request: (args: { method: string; params?: unknown[] }) => Promise<unknown>;\n on: (event: string, callback: (args: unknown) => void) => void;\n removeListener: (event: string, callback: (args: unknown) => void) => void;\n };\n }\n}\n","export const DEFAULT_ENTRYPOINT = \"0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789\";\nexport const DEFAULT_FACTORY = \"0x9406Cc6185a346906296840746125a0E44976454\"; // SimpleAccountFactory v0.6\n\nexport const factoryAbi = [\n {\n inputs: [\n { name: \"owner\", type: \"address\" },\n { name: \"salt\", type: \"uint256\" },\n ],\n name: \"getAccountAddress\",\n outputs: [{ name: \"\", type: \"address\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"owner\", type: \"address\" },\n { name: \"salt\", type: \"uint256\" },\n ],\n name: \"isAccountDeployed\",\n outputs: [{ name: \"\", type: \"bool\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"owner\", type: \"address\" },\n { name: \"salt\", type: \"uint256\" },\n ],\n name: \"createAccount\",\n outputs: [{ name: \"account\", type: \"address\" }],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n] as const;\n\nexport const entryPointAbi = [\n {\n inputs: [\n { name: \"sender\", type: \"address\" },\n { name: \"key\", type: \"uint192\" },\n ],\n name: \"getNonce\",\n outputs: [{ name: \"nonce\", type: \"uint256\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n] as const;\n\nexport const smartAccountAbi = [\n {\n inputs: [\n { name: \"target\", type: \"address\" },\n { name: \"value\", type: \"uint256\" },\n { name: \"data\", type: \"bytes\" },\n ],\n name: \"execute\",\n outputs: [],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"targets\", type: \"address[]\" },\n { name: \"values\", type: \"uint256[]\" },\n { name: \"datas\", type: \"bytes[]\" },\n ],\n name: \"executeBatch\",\n outputs: [],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n] as const;\n\nexport const erc20Abi = [\n {\n inputs: [{ name: \"account\", type: \"address\" }],\n name: \"balanceOf\",\n outputs: [{ name: \"\", type: \"uint256\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"to\", type: \"address\" },\n { name: \"amount\", type: \"uint256\" },\n ],\n name: \"transfer\",\n outputs: [{ name: \"\", type: \"bool\" }],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"spender\", type: \"address\" },\n { name: \"amount\", type: \"uint256\" },\n ],\n name: \"approve\",\n outputs: [{ name: \"\", type: \"bool\" }],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"owner\", type: \"address\" },\n { name: \"spender\", type: \"address\" },\n ],\n name: \"allowance\",\n outputs: [{ name: \"\", type: \"uint256\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"from\", type: \"address\" },\n { name: \"to\", type: \"address\" },\n { name: \"amount\", type: \"uint256\" },\n ],\n name: \"transferFrom\",\n outputs: [{ name: \"\", type: \"bool\" }],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n {\n inputs: [],\n name: \"decimals\",\n outputs: [{ name: \"\", type: \"uint8\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n] as const;\n","import { type Address, type Hash, type Hex } from \"viem\";\nimport { type ChainConfig, type UserOperation, type GasEstimate, type UserOpReceipt, type ApprovalSupportResult } from \"./types\";\nimport { entryPointAbi } from \"./constants\";\n\nexport class BundlerClient {\n private bundlerUrl: string;\n private chainId: number;\n private entryPointAddress: Address;\n\n constructor(config: ChainConfig, entryPointAddress: Address) {\n this.bundlerUrl = config.bundlerUrl;\n this.chainId = config.chain.id;\n this.entryPointAddress = entryPointAddress;\n }\n\n private async call(method: string, params: any[]): Promise<any> {\n const response = await fetch(this.bundlerUrl, {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({\n jsonrpc: \"2.0\",\n id: 1,\n method,\n params,\n }),\n });\n\n const result = await response.json();\n if (result.error) {\n throw new Error(result.error.message);\n }\n return result.result;\n }\n\n async estimateGas(userOp: Partial<UserOperation>): Promise<GasEstimate> {\n return await this.call(\"eth_estimateUserOperationGas\", [\n {\n sender: userOp.sender,\n nonce: userOp.nonce ? \"0x\" + userOp.nonce.toString(16) : \"0x0\",\n initCode: userOp.initCode || \"0x\",\n callData: userOp.callData || \"0x\",\n paymasterAndData: userOp.paymasterAndData || \"0x\",\n signature: \"0x\",\n },\n this.entryPointAddress,\n ]);\n }\n\n async sendUserOperation(userOp: UserOperation): Promise<Hash> {\n return await this.call(\"eth_sendUserOperation\", [\n {\n sender: userOp.sender,\n nonce: \"0x\" + userOp.nonce.toString(16),\n initCode: userOp.initCode,\n callData: userOp.callData,\n callGasLimit: \"0x\" + userOp.callGasLimit.toString(16),\n verificationGasLimit: \"0x\" + userOp.verificationGasLimit.toString(16),\n preVerificationGas: \"0x\" + userOp.preVerificationGas.toString(16),\n maxFeePerGas: \"0x\" + userOp.maxFeePerGas.toString(16),\n maxPriorityFeePerGas: \"0x\" + userOp.maxPriorityFeePerGas.toString(16),\n paymasterAndData: userOp.paymasterAndData,\n signature: userOp.signature,\n },\n this.entryPointAddress,\n ]);\n }\n\n async waitForUserOperation(userOpHash: Hash, timeout = 60000): Promise<UserOpReceipt> {\n const startTime = Date.now();\n\n while (Date.now() - startTime < timeout) {\n const result = await this.call(\"eth_getUserOperationReceipt\", [userOpHash]);\n\n if (result) {\n return result as UserOpReceipt;\n }\n\n // Wait 2 seconds before polling again\n await new Promise((resolve) => setTimeout(resolve, 2000));\n }\n\n throw new Error(\"Timeout waiting for UserOperation\");\n }\n\n async requestApprovalSupport(token: Address, owner: Address, spender: Address, amount: bigint): Promise<ApprovalSupportResult> {\n return await this.call(\"pm_requestApprovalSupport\", [\n token,\n owner,\n spender,\n amount.toString()\n ]);\n }\n}\n","import { type Address, type PublicClient, encodeFunctionData } from \"viem\";\nimport { type ChainConfig, type Token } from \"./types\";\nimport { erc20Abi } from \"./constants\";\n\nexport class TokenService {\n private tokens: Map<string, Token> = new Map();\n private publicClient: PublicClient;\n\n constructor(chainConfig: ChainConfig, publicClient: PublicClient) {\n this.publicClient = publicClient;\n\n // Initialize Tokens\n chainConfig.tokens.forEach(token => {\n this.tokens.set(token.symbol.toUpperCase(), token);\n });\n }\n\n /**\n * Resolve token address from symbol or return address if provided\n */\n getTokenAddress(token: string | Address): Address {\n // Native Token (ETH)\n if (token === \"ETH\") {\n return \"0x0000000000000000000000000000000000000000\";\n }\n\n if (token.startsWith(\"0x\")) return token as Address;\n const info = this.tokens.get(token.toUpperCase());\n if (!info) throw new Error(`Token ${token} not found in chain config`);\n return info.address;\n }\n\n /**\n * Get balance of a token for an account\n */\n async getBalance(token: string | Address, account: Address): Promise<bigint> {\n const address = this.getTokenAddress(token);\n\n // Native Balance\n if (address === \"0x0000000000000000000000000000000000000000\") {\n return await this.publicClient.getBalance({ address: account });\n }\n\n // ERC-20 Balance\n return await this.publicClient.readContract({\n address,\n abi: erc20Abi,\n functionName: \"balanceOf\",\n args: [account],\n }) as bigint;\n }\n\n /**\n * Get allowance (ERC-20 only)\n */\n async getAllowance(token: string | Address, owner: Address, spender: Address): Promise<bigint> {\n const address = this.getTokenAddress(token);\n\n if (address === \"0x0000000000000000000000000000000000000000\") {\n return 0n; // Native token has no allowance\n }\n\n return await this.publicClient.readContract({\n address,\n abi: erc20Abi,\n functionName: \"allowance\",\n args: [owner, spender],\n }) as bigint;\n }\n\n /**\n * Encode transfer data\n */\n encodeTransfer(recipient: Address, amount: bigint): `0x${string}` {\n return encodeFunctionData({\n abi: erc20Abi,\n functionName: \"transfer\",\n args: [recipient, amount]\n });\n }\n\n /**\n * Encode approve data\n */\n encodeApprove(spender: Address, amount: bigint): `0x${string}` {\n return encodeFunctionData({\n abi: erc20Abi,\n functionName: \"approve\",\n args: [spender, amount]\n });\n }\n}\n","import {\n type Address,\n type Hash,\n type Hex,\n type PublicClient,\n encodeFunctionData,\n encodeAbiParameters,\n keccak256\n} from \"viem\";\nimport { type ChainConfig, type UserOperation, type GasEstimate } from \"./types\";\nimport { BundlerClient } from \"./BundlerClient\";\nimport { factoryAbi, smartAccountAbi, entryPointAbi } from \"./constants\";\n\nexport class UserOpBuilder {\n private chainConfig: ChainConfig;\n private bundlerClient: BundlerClient;\n private publicClient: PublicClient;\n private entryPointAddress: Address;\n private factoryAddress: Address;\n\n constructor(\n chainConfig: ChainConfig,\n bundlerClient: BundlerClient,\n publicClient: PublicClient\n ) {\n this.chainConfig = chainConfig;\n this.bundlerClient = bundlerClient;\n this.publicClient = publicClient;\n\n // Resolved in AA or here? Let's assume passed valid config or resolve again\n // Ideally we shouldn't duplicate logic. AA resolves them.\n // Let's rely on config having them or resolving valid ones.\n // For now take from config or defaults.\n this.entryPointAddress = chainConfig.entryPointAddress!; // Assumed validated by AA\n this.factoryAddress = chainConfig.factoryAddress!;\n }\n\n async getNonce(smartAccountAddress: Address): Promise<bigint> {\n return await this.publicClient.readContract({\n address: this.entryPointAddress,\n abi: entryPointAbi,\n functionName: \"getNonce\",\n args: [smartAccountAddress, 0n],\n }) as bigint;\n }\n\n buildInitCode(owner: Address): Hex {\n const createAccountData = encodeFunctionData({\n abi: factoryAbi,\n functionName: \"createAccount\",\n args: [owner, 0n],\n });\n return `${this.factoryAddress}${createAccountData.slice(2)}` as Hex;\n }\n\n async isAccountDeployed(smartAccountAddress: Address): Promise<boolean> {\n const code = await this.publicClient.getCode({\n address: smartAccountAddress,\n });\n return code !== undefined && code !== \"0x\";\n }\n\n async buildUserOperationBatch(\n owner: Address,\n smartAccountAddress: Address,\n transactions: { target: Address; value: bigint; data: Hex }[]\n ): Promise<UserOperation> {\n const isDeployed = await this.isAccountDeployed(smartAccountAddress);\n const initCode = isDeployed ? \"0x\" : this.buildInitCode(owner);\n\n const targets = transactions.map((tx) => tx.target);\n const values = transactions.map((tx) => tx.value);\n const datas = transactions.map((tx) => tx.data);\n\n const callData = encodeFunctionData({\n abi: smartAccountAbi,\n functionName: \"executeBatch\",\n args: [targets, values, datas],\n });\n\n const nonce = await this.getNonce(smartAccountAddress);\n\n const partialOp = {\n sender: smartAccountAddress,\n nonce,\n initCode: initCode as Hex,\n callData,\n paymasterAndData: (this.chainConfig.paymasterAddress || \"0x\") as Hex,\n };\n\n const gasEstimate = await this.bundlerClient.estimateGas(partialOp);\n\n return {\n ...partialOp,\n callGasLimit: BigInt(gasEstimate.callGasLimit),\n verificationGasLimit: BigInt(gasEstimate.verificationGasLimit),\n preVerificationGas: BigInt(gasEstimate.preVerificationGas),\n maxFeePerGas: BigInt(gasEstimate.maxFeePerGas),\n maxPriorityFeePerGas: BigInt(gasEstimate.maxPriorityFeePerGas),\n signature: \"0x\",\n };\n }\n\n async buildDeployUserOp(\n owner: Address,\n smartAccountAddress: Address\n ): Promise<UserOperation> {\n const isDeployed = await this.isAccountDeployed(smartAccountAddress);\n if (isDeployed) throw new Error(\"Account already deployed\");\n\n const initCode = this.buildInitCode(owner);\n const callData = \"0x\";\n const nonce = await this.getNonce(smartAccountAddress);\n\n const partialOp = {\n sender: smartAccountAddress,\n nonce,\n initCode: initCode as Hex,\n callData: callData as Hex,\n paymasterAndData: (this.chainConfig.paymasterAddress || \"0x\") as Hex,\n };\n\n const gasEstimate = await this.bundlerClient.estimateGas(partialOp);\n\n return {\n ...partialOp,\n callGasLimit: BigInt(gasEstimate.callGasLimit),\n verificationGasLimit: BigInt(gasEstimate.verificationGasLimit),\n preVerificationGas: BigInt(gasEstimate.preVerificationGas),\n maxFeePerGas: BigInt(gasEstimate.maxFeePerGas),\n maxPriorityFeePerGas: BigInt(gasEstimate.maxPriorityFeePerGas),\n signature: \"0x\",\n };\n }\n\n getUserOpHash(userOp: UserOperation): Hex {\n const packed = encodeAbiParameters(\n [\n { type: \"address\" },\n { type: \"uint256\" },\n { type: \"bytes32\" },\n { type: \"bytes32\" },\n { type: \"uint256\" },\n { type: \"uint256\" },\n { type: \"uint256\" },\n { type: \"uint256\" },\n { type: \"uint256\" },\n { type: \"bytes32\" },\n ],\n [\n userOp.sender,\n userOp.nonce,\n keccak256(userOp.initCode),\n keccak256(userOp.callData),\n userOp.callGasLimit,\n userOp.verificationGasLimit,\n userOp.preVerificationGas,\n userOp.maxFeePerGas,\n userOp.maxPriorityFeePerGas,\n keccak256(userOp.paymasterAndData),\n ]\n );\n\n const packedHash = keccak256(packed);\n\n return keccak256(\n encodeAbiParameters(\n [{ type: \"bytes32\" }, { type: \"address\" }, { type: \"uint256\" }],\n [packedHash, this.entryPointAddress, BigInt(this.chainConfig.chain.id)]\n )\n );\n }\n}\n","import { type ChainConfig } from \"./types\";\nimport { base, baseSepolia } from \"viem/chains\";\n\nexport const BASE_MAINNET: ChainConfig = {\n chain: base,\n bundlerUrl: \"http://localhost:3000/rpc?chain=base\", // Default to local bundler pattern\n\n // Addresses\n entryPointAddress: \"0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789\",\n factoryAddress: \"0xe2584152891E4769025807DEa0cD611F135aDC68\",\n paymasterAddress: \"0x1e13Eb16C565E3f3FDe49A011755e50410bb1F95\",\n\n tokens: [\n {\n symbol: \"USDC\",\n decimals: 6,\n address: \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\"\n },\n {\n symbol: \"ETH\",\n decimals: 18,\n address: \"0x0000000000000000000000000000000000000000\"\n }\n ]\n};\n\nexport const BASE_SEPOLIA: ChainConfig = {\n chain: baseSepolia,\n bundlerUrl: \"http://localhost:3000/rpc?chain=baseSepolia\", // Default to local bundler pattern\n\n // Addresses\n entryPointAddress: \"0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789\",\n factoryAddress: \"0x9406Cc6185a346906296840746125a0E44976454\",\n // Paymaster not configured in deployments.ts for Sepolia?\n\n tokens: [\n {\n symbol: \"USDC\",\n decimals: 6,\n address: \"0x036CbD53842c5426634e7929541eC2318f3dCF7e\"\n },\n {\n symbol: \"ETH\",\n decimals: 18,\n address: \"0x0000000000000000000000000000000000000000\"\n }\n ]\n};\n\n// Map accessible by ChainID\nexport const CHAIN_CONFIGS: Record<number, ChainConfig> = {\n [base.id]: BASE_MAINNET,\n [baseSepolia.id]: BASE_SEPOLIA\n};\n"],"mappings":"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","names":["import_viem","import_viem"]}
1
+ {"version":3,"sources":["../src/index.ts","../src/AccountAbstraction.ts","../src/constants.ts","../src/BundlerClient.ts","../src/TokenService.ts","../src/UserOpBuilder.ts","../src/chains.ts"],"sourcesContent":["// Core\nexport { AccountAbstraction } from \"./AccountAbstraction\";\nexport { BundlerClient } from \"./BundlerClient\";\n\n// Config & Registry\nexport { BASE_MAINNET, BASE_SEPOLIA, CHAIN_CONFIGS } from \"./chains\";\n\n// Types\nexport type { ChainConfig, Token, UserOperation, UserOpReceipt, GasEstimate, ApprovalSupportResult } from \"./types\";\n\n// Constants (ABIs)\nexport { erc20Abi, smartAccountAbi, entryPointAbi } from \"./constants\";\n","import {\n createPublicClient,\n http,\n type Address,\n type Hash,\n type Hex,\n type PublicClient,\n decodeErrorResult\n} from \"viem\";\nimport {\n factoryAbi,\n} from \"./constants\";\nimport {\n type ChainConfig,\n type UserOperation,\n type UserOpReceipt,\n type ApprovalSupportResult,\n type Token\n} from \"./types\";\nimport { BundlerClient } from \"./BundlerClient\";\nimport { TokenService } from \"./TokenService\";\nimport { UserOpBuilder } from \"./UserOpBuilder\";\n\n/**\n * ERC-4337 Account Abstraction Client\n */\nexport class AccountAbstraction {\n private owner: Address | null = null;\n private smartAccountAddress: Address | null = null;\n private chainConfig: ChainConfig;\n private publicClient: PublicClient;\n private bundlerClient: BundlerClient;\n\n // Services\n private tokenService: TokenService;\n private userOpBuilder: UserOpBuilder;\n\n // Resolved addresses\n private entryPointAddress: Address;\n private factoryAddress: Address;\n\n constructor(chainConfig: ChainConfig) {\n this.chainConfig = chainConfig;\n\n // Validation\n if (!chainConfig.entryPointAddress) throw new Error(\"EntryPoint address required\");\n this.entryPointAddress = chainConfig.entryPointAddress;\n if (!chainConfig.factoryAddress) throw new Error(\"Factory address required\");\n this.factoryAddress = chainConfig.factoryAddress;\n\n // Setup Clients\n const rpcUrl = chainConfig.rpcUrl || chainConfig.chain.rpcUrls.default.http[0];\n this.publicClient = createPublicClient({\n chain: chainConfig.chain,\n transport: http(rpcUrl),\n });\n\n this.bundlerClient = new BundlerClient(chainConfig, this.entryPointAddress);\n\n // Setup Services\n this.tokenService = new TokenService(chainConfig, this.publicClient);\n this.userOpBuilder = new UserOpBuilder(chainConfig, this.bundlerClient, this.publicClient);\n }\n\n /**\n * Connect to MetaMask and get the owner address\n */\n async connect(): Promise<{ owner: Address; smartAccount: Address }> {\n if (typeof window === \"undefined\" || !window.ethereum) {\n throw new Error(\"MetaMask is not installed\");\n }\n\n // Request account access\n const accounts = (await window.ethereum.request({\n method: \"eth_requestAccounts\",\n })) as string[];\n\n if (!accounts || accounts.length === 0) throw new Error(\"No accounts found\");\n\n // Check network\n const chainId = (await window.ethereum.request({\n method: \"eth_chainId\",\n })) as string;\n const targetChainId = this.chainConfig.chain.id;\n\n if (parseInt(chainId, 16) !== targetChainId) {\n try {\n await window.ethereum.request({\n method: \"wallet_switchEthereumChain\",\n params: [{ chainId: \"0x\" + targetChainId.toString(16) }],\n });\n } catch (switchError: unknown) {\n const error = switchError as { code?: number };\n if (error.code === 4902) {\n await window.ethereum.request({\n method: \"wallet_addEthereumChain\",\n params: [\n {\n chainId: \"0x\" + targetChainId.toString(16),\n chainName: this.chainConfig.chain.name,\n nativeCurrency: this.chainConfig.chain.nativeCurrency,\n rpcUrls: [this.chainConfig.rpcUrl || this.chainConfig.chain.rpcUrls.default.http[0]],\n blockExplorerUrls: this.chainConfig.chain.blockExplorers?.default?.url\n ? [this.chainConfig.chain.blockExplorers.default.url]\n : [],\n },\n ],\n });\n } else {\n throw switchError;\n }\n }\n }\n\n this.owner = accounts[0] as Address;\n this.smartAccountAddress = await this.getSmartAccountAddress(this.owner);\n\n return {\n owner: this.owner,\n smartAccount: this.smartAccountAddress,\n };\n }\n\n /**\n * Get the Smart Account address for an owner\n */\n async getSmartAccountAddress(owner: Address): Promise<Address> {\n const address = await this.publicClient.readContract({\n address: this.factoryAddress,\n abi: factoryAbi,\n functionName: \"getAccountAddress\",\n args: [owner, 0n],\n }) as Address;\n return address;\n }\n\n /**\n * Check if the Smart Account is deployed\n */\n async isAccountDeployed(): Promise<boolean> {\n if (!this.smartAccountAddress) throw new Error(\"Not connected\");\n return this.userOpBuilder.isAccountDeployed(this.smartAccountAddress);\n }\n\n // --- Token Methods (Delegated) ---\n\n getTokenAddress(token: string | Address): Address {\n return this.tokenService.getTokenAddress(token);\n }\n\n async getUsdcBalance(): Promise<bigint> {\n if (!this.smartAccountAddress) throw new Error(\"Not connected\");\n return this.tokenService.getBalance(\"USDC\", this.smartAccountAddress);\n }\n\n async getEoaUsdcBalance(): Promise<bigint> {\n if (!this.owner) throw new Error(\"Not connected\");\n return this.tokenService.getBalance(\"USDC\", this.owner);\n }\n\n async getAllowance(): Promise<bigint> {\n if (!this.owner || !this.smartAccountAddress) throw new Error(\"Not connected\");\n return this.tokenService.getAllowance(\"USDC\", this.owner, this.smartAccountAddress);\n }\n\n // --- Transactions ---\n\n async deployAccount(): Promise<UserOpReceipt> {\n if (!this.owner || !this.smartAccountAddress) throw new Error(\"Not connected\");\n\n try {\n const userOp = await this.userOpBuilder.buildDeployUserOp(this.owner, this.smartAccountAddress);\n const signed = await this.signUserOperation(userOp);\n const hash = await this.sendUserOperation(signed);\n return await this.waitForUserOperation(hash);\n } catch (error) {\n throw this.decodeError(error);\n }\n }\n\n async sendTransaction(\n tx: { target: Address; value?: bigint; data?: Hex }\n ): Promise<UserOpReceipt> {\n return this.sendBatchTransaction([tx]);\n }\n\n async sendBatchTransaction(\n txs: { target: Address; value?: bigint; data?: Hex }[]\n ): Promise<UserOpReceipt> {\n if (!this.owner || !this.smartAccountAddress) throw new Error(\"Not connected\");\n\n // Normalize\n const transactions = txs.map(tx => ({\n target: tx.target,\n value: tx.value ?? 0n,\n data: tx.data ?? \"0x\"\n }));\n\n try {\n const userOp = await this.userOpBuilder.buildUserOperationBatch(\n this.owner,\n this.smartAccountAddress,\n transactions\n );\n const signed = await this.signUserOperation(userOp);\n const hash = await this.sendUserOperation(signed);\n return await this.waitForUserOperation(hash);\n } catch (error) {\n throw this.decodeError(error);\n }\n }\n\n async deposit(amount: bigint): Promise<Hash> {\n if (!this.owner || !this.smartAccountAddress) throw new Error(\"Not connected\");\n\n const txHash = await window.ethereum!.request({\n method: \"eth_sendTransaction\",\n params: [{\n from: this.owner,\n to: this.smartAccountAddress,\n value: \"0x\" + amount.toString(16)\n }]\n }) as Hash;\n return txHash;\n }\n\n async transfer(\n token: Address | string,\n recipient: Address,\n amount: bigint\n ): Promise<UserOpReceipt> {\n const tokenAddress = this.getTokenAddress(token);\n\n // Native Transfer check\n if (tokenAddress === \"0x0000000000000000000000000000000000000000\") {\n return this.sendTransaction({\n target: recipient,\n value: amount,\n data: \"0x\"\n });\n }\n\n // ERC-20\n const data = this.tokenService.encodeTransfer(recipient, amount);\n return this.sendTransaction({\n target: tokenAddress,\n value: 0n,\n data\n });\n }\n\n /**\n * Approve a token for the Smart Account\n */\n async approveToken(\n token: Address,\n spender: Address,\n amount: bigint = 115792089237316195423570985008687907853269984665640564039457584007913129639935n // maxUint256\n ): Promise<Hash | \"NOT_NEEDED\"> {\n if (!this.owner) throw new Error(\"Not connected\");\n\n const support = await this.requestApprovalSupport(token, spender, amount);\n\n if (support.type === \"approve\") {\n const data = this.tokenService.encodeApprove(spender, amount);\n const txHash = await window.ethereum!.request({\n method: \"eth_sendTransaction\",\n params: [{\n from: this.owner,\n to: token,\n data,\n }]\n }) as Hash;\n return txHash;\n }\n\n if (support.type === \"permit\") throw new Error(\"Permit not yet supported\");\n return \"NOT_NEEDED\";\n }\n\n // --- Core Bridge to Bundler/UserOp ---\n\n // Deprecated/Legacy but kept for compatibility or advanced usage?\n // buildUserOperationBatch moved to internal usage mostly, but maybe exposed?\n // If I remove them from public API, that is a BREAKING change if user used them.\n // User requested \"modularize\", but usually expects same public API.\n // I will expose them as simple delegates if needed, or assume they primarily use sendBatchTransaction.\n // The previous implementation exposed `buildUserOperationBatch`.\n async buildUserOperationBatch(transactions: any[]) {\n if (!this.owner || !this.smartAccountAddress) throw new Error(\"Not connected\");\n return this.userOpBuilder.buildUserOperationBatch(this.owner, this.smartAccountAddress, transactions);\n }\n\n async signUserOperation(userOp: UserOperation): Promise<UserOperation> {\n if (!this.owner) throw new Error(\"Not connected\");\n\n const userOpHash = this.userOpBuilder.getUserOpHash(userOp);\n\n const signature = (await window.ethereum!.request({\n method: \"personal_sign\",\n params: [userOpHash, this.owner],\n })) as Hex;\n\n return { ...userOp, signature };\n }\n\n async sendUserOperation(userOp: UserOperation): Promise<Hash> {\n return this.bundlerClient.sendUserOperation(userOp);\n }\n\n async waitForUserOperation(hash: Hash, timeout = 60000) {\n return this.bundlerClient.waitForUserOperation(hash, timeout);\n }\n\n // Internal but exposed via BundlerClient originally\n async requestApprovalSupport(token: Address, spender: Address, amount: bigint): Promise<ApprovalSupportResult> {\n if (!this.owner) throw new Error(\"Not connected\");\n return this.bundlerClient.requestApprovalSupport(token, this.owner, spender, amount);\n }\n\n // Error Decoding (Private)\n private decodeError(error: any): Error {\n const msg = error?.message || \"\";\n const hexMatch = msg.match(/(0x[0-9a-fA-F]+)/);\n\n if (hexMatch) {\n try {\n const decoded = decodeErrorResult({\n abi: [{ inputs: [{ name: \"message\", type: \"string\" }], name: \"Error\", type: \"error\" }],\n data: hexMatch[0] as Hex\n });\n if (decoded.errorName === \"Error\") return new Error(`Smart Account Error: ${decoded.args[0]}`);\n } catch (e) { /* ignore */ }\n }\n\n if (msg.includes(\"AA21\")) return new Error(\"Smart Account: Native transfer failed (ETH missing?)\");\n if (msg.includes(\"AA25\")) return new Error(\"Smart Account: Invalid account nonce\");\n\n return error instanceof Error ? error : new Error(String(error));\n }\n\n // Getters\n getOwner() { return this.owner; }\n getSmartAccount() { return this.smartAccountAddress; }\n}\n\n// Global window types for MetaMask\ndeclare global {\n interface Window {\n ethereum?: {\n request: (args: { method: string; params?: unknown[] }) => Promise<unknown>;\n on: (event: string, callback: (args: unknown) => void) => void;\n removeListener: (event: string, callback: (args: unknown) => void) => void;\n };\n }\n}\n","export const DEFAULT_ENTRYPOINT = \"0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789\";\nexport const DEFAULT_FACTORY = \"0x9406Cc6185a346906296840746125a0E44976454\"; // SimpleAccountFactory v0.6\n\nexport const factoryAbi = [\n {\n inputs: [\n { name: \"owner\", type: \"address\" },\n { name: \"salt\", type: \"uint256\" },\n ],\n name: \"getAccountAddress\",\n outputs: [{ name: \"\", type: \"address\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"owner\", type: \"address\" },\n { name: \"salt\", type: \"uint256\" },\n ],\n name: \"isAccountDeployed\",\n outputs: [{ name: \"\", type: \"bool\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"owner\", type: \"address\" },\n { name: \"salt\", type: \"uint256\" },\n ],\n name: \"createAccount\",\n outputs: [{ name: \"account\", type: \"address\" }],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n] as const;\n\nexport const entryPointAbi = [\n {\n inputs: [\n { name: \"sender\", type: \"address\" },\n { name: \"key\", type: \"uint192\" },\n ],\n name: \"getNonce\",\n outputs: [{ name: \"nonce\", type: \"uint256\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n] as const;\n\nexport const smartAccountAbi = [\n {\n inputs: [\n { name: \"target\", type: \"address\" },\n { name: \"value\", type: \"uint256\" },\n { name: \"data\", type: \"bytes\" },\n ],\n name: \"execute\",\n outputs: [],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"targets\", type: \"address[]\" },\n { name: \"values\", type: \"uint256[]\" },\n { name: \"datas\", type: \"bytes[]\" },\n ],\n name: \"executeBatch\",\n outputs: [],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n] as const;\n\nexport const erc20Abi = [\n {\n inputs: [{ name: \"account\", type: \"address\" }],\n name: \"balanceOf\",\n outputs: [{ name: \"\", type: \"uint256\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"to\", type: \"address\" },\n { name: \"amount\", type: \"uint256\" },\n ],\n name: \"transfer\",\n outputs: [{ name: \"\", type: \"bool\" }],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"spender\", type: \"address\" },\n { name: \"amount\", type: \"uint256\" },\n ],\n name: \"approve\",\n outputs: [{ name: \"\", type: \"bool\" }],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"owner\", type: \"address\" },\n { name: \"spender\", type: \"address\" },\n ],\n name: \"allowance\",\n outputs: [{ name: \"\", type: \"uint256\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n {\n inputs: [\n { name: \"from\", type: \"address\" },\n { name: \"to\", type: \"address\" },\n { name: \"amount\", type: \"uint256\" },\n ],\n name: \"transferFrom\",\n outputs: [{ name: \"\", type: \"bool\" }],\n stateMutability: \"nonpayable\",\n type: \"function\",\n },\n {\n inputs: [],\n name: \"decimals\",\n outputs: [{ name: \"\", type: \"uint8\" }],\n stateMutability: \"view\",\n type: \"function\",\n },\n] as const;\n","import { type Address, type Hash, type Hex } from \"viem\";\nimport { type ChainConfig, type UserOperation, type GasEstimate, type UserOpReceipt, type ApprovalSupportResult } from \"./types\";\nimport { entryPointAbi } from \"./constants\";\n\nexport class BundlerClient {\n private bundlerUrl: string;\n private chainId: number;\n private entryPointAddress: Address;\n\n constructor(config: ChainConfig, entryPointAddress: Address) {\n this.bundlerUrl = config.bundlerUrl;\n this.chainId = config.chain.id;\n this.entryPointAddress = entryPointAddress;\n }\n\n private async call(method: string, params: any[]): Promise<any> {\n const response = await fetch(this.bundlerUrl, {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({\n jsonrpc: \"2.0\",\n id: 1,\n method,\n params,\n }),\n });\n\n const result = await response.json();\n if (result.error) {\n throw new Error(result.error.message);\n }\n return result.result;\n }\n\n async estimateGas(userOp: Partial<UserOperation>): Promise<GasEstimate> {\n return await this.call(\"eth_estimateUserOperationGas\", [\n {\n sender: userOp.sender,\n nonce: userOp.nonce ? \"0x\" + userOp.nonce.toString(16) : \"0x0\",\n initCode: userOp.initCode || \"0x\",\n callData: userOp.callData || \"0x\",\n paymasterAndData: userOp.paymasterAndData || \"0x\",\n signature: \"0x\",\n },\n this.entryPointAddress,\n ]);\n }\n\n async sendUserOperation(userOp: UserOperation): Promise<Hash> {\n return await this.call(\"eth_sendUserOperation\", [\n {\n sender: userOp.sender,\n nonce: \"0x\" + userOp.nonce.toString(16),\n initCode: userOp.initCode,\n callData: userOp.callData,\n callGasLimit: \"0x\" + userOp.callGasLimit.toString(16),\n verificationGasLimit: \"0x\" + userOp.verificationGasLimit.toString(16),\n preVerificationGas: \"0x\" + userOp.preVerificationGas.toString(16),\n maxFeePerGas: \"0x\" + userOp.maxFeePerGas.toString(16),\n maxPriorityFeePerGas: \"0x\" + userOp.maxPriorityFeePerGas.toString(16),\n paymasterAndData: userOp.paymasterAndData,\n signature: userOp.signature,\n },\n this.entryPointAddress,\n ]);\n }\n\n async waitForUserOperation(userOpHash: Hash, timeout = 60000): Promise<UserOpReceipt> {\n const startTime = Date.now();\n\n while (Date.now() - startTime < timeout) {\n const result = await this.call(\"eth_getUserOperationReceipt\", [userOpHash]);\n\n if (result) {\n return result as UserOpReceipt;\n }\n\n // Wait 2 seconds before polling again\n await new Promise((resolve) => setTimeout(resolve, 2000));\n }\n\n throw new Error(\"Timeout waiting for UserOperation\");\n }\n\n async requestApprovalSupport(token: Address, owner: Address, spender: Address, amount: bigint): Promise<ApprovalSupportResult> {\n return await this.call(\"pm_requestApprovalSupport\", [\n token,\n owner,\n spender,\n amount.toString()\n ]);\n }\n}\n","import { type Address, type PublicClient, encodeFunctionData } from \"viem\";\nimport { type ChainConfig, type Token } from \"./types\";\nimport { erc20Abi } from \"./constants\";\n\nexport class TokenService {\n private tokens: Map<string, Token> = new Map();\n private publicClient: PublicClient;\n\n constructor(chainConfig: ChainConfig, publicClient: PublicClient) {\n this.publicClient = publicClient;\n\n // Initialize Tokens\n chainConfig.tokens.forEach(token => {\n this.tokens.set(token.symbol.toUpperCase(), token);\n });\n }\n\n /**\n * Resolve token address from symbol or return address if provided\n */\n getTokenAddress(token: string | Address): Address {\n // Native Token (ETH)\n if (token === \"ETH\") {\n return \"0x0000000000000000000000000000000000000000\";\n }\n\n if (token.startsWith(\"0x\")) return token as Address;\n const info = this.tokens.get(token.toUpperCase());\n if (!info) throw new Error(`Token ${token} not found in chain config`);\n return info.address;\n }\n\n /**\n * Get balance of a token for an account\n */\n async getBalance(token: string | Address, account: Address): Promise<bigint> {\n const address = this.getTokenAddress(token);\n\n // Native Balance\n if (address === \"0x0000000000000000000000000000000000000000\") {\n return await this.publicClient.getBalance({ address: account });\n }\n\n // ERC-20 Balance\n return await this.publicClient.readContract({\n address,\n abi: erc20Abi,\n functionName: \"balanceOf\",\n args: [account],\n }) as bigint;\n }\n\n /**\n * Get allowance (ERC-20 only)\n */\n async getAllowance(token: string | Address, owner: Address, spender: Address): Promise<bigint> {\n const address = this.getTokenAddress(token);\n\n if (address === \"0x0000000000000000000000000000000000000000\") {\n return 0n; // Native token has no allowance\n }\n\n return await this.publicClient.readContract({\n address,\n abi: erc20Abi,\n functionName: \"allowance\",\n args: [owner, spender],\n }) as bigint;\n }\n\n /**\n * Encode transfer data\n */\n encodeTransfer(recipient: Address, amount: bigint): `0x${string}` {\n return encodeFunctionData({\n abi: erc20Abi,\n functionName: \"transfer\",\n args: [recipient, amount]\n });\n }\n\n /**\n * Encode approve data\n */\n encodeApprove(spender: Address, amount: bigint): `0x${string}` {\n return encodeFunctionData({\n abi: erc20Abi,\n functionName: \"approve\",\n args: [spender, amount]\n });\n }\n}\n","import {\n type Address,\n type Hash,\n type Hex,\n type PublicClient,\n encodeFunctionData,\n encodeAbiParameters,\n keccak256\n} from \"viem\";\nimport { type ChainConfig, type UserOperation, type GasEstimate } from \"./types\";\nimport { BundlerClient } from \"./BundlerClient\";\nimport { factoryAbi, smartAccountAbi, entryPointAbi } from \"./constants\";\n\nexport class UserOpBuilder {\n private chainConfig: ChainConfig;\n private bundlerClient: BundlerClient;\n private publicClient: PublicClient;\n private entryPointAddress: Address;\n private factoryAddress: Address;\n\n constructor(\n chainConfig: ChainConfig,\n bundlerClient: BundlerClient,\n publicClient: PublicClient\n ) {\n this.chainConfig = chainConfig;\n this.bundlerClient = bundlerClient;\n this.publicClient = publicClient;\n\n // Resolved in AA or here? Let's assume passed valid config or resolve again\n // Ideally we shouldn't duplicate logic. AA resolves them.\n // Let's rely on config having them or resolving valid ones.\n // For now take from config or defaults.\n this.entryPointAddress = chainConfig.entryPointAddress!; // Assumed validated by AA\n this.factoryAddress = chainConfig.factoryAddress!;\n }\n\n async getNonce(smartAccountAddress: Address): Promise<bigint> {\n return await this.publicClient.readContract({\n address: this.entryPointAddress,\n abi: entryPointAbi,\n functionName: \"getNonce\",\n args: [smartAccountAddress, 0n],\n }) as bigint;\n }\n\n buildInitCode(owner: Address): Hex {\n const createAccountData = encodeFunctionData({\n abi: factoryAbi,\n functionName: \"createAccount\",\n args: [owner, 0n],\n });\n return `${this.factoryAddress}${createAccountData.slice(2)}` as Hex;\n }\n\n async isAccountDeployed(smartAccountAddress: Address): Promise<boolean> {\n const code = await this.publicClient.getCode({\n address: smartAccountAddress,\n });\n return code !== undefined && code !== \"0x\";\n }\n\n async buildUserOperationBatch(\n owner: Address,\n smartAccountAddress: Address,\n transactions: { target: Address; value: bigint; data: Hex }[]\n ): Promise<UserOperation> {\n const isDeployed = await this.isAccountDeployed(smartAccountAddress);\n const initCode = isDeployed ? \"0x\" : this.buildInitCode(owner);\n\n const targets = transactions.map((tx) => tx.target);\n const values = transactions.map((tx) => tx.value);\n const datas = transactions.map((tx) => tx.data);\n\n const callData = encodeFunctionData({\n abi: smartAccountAbi,\n functionName: \"executeBatch\",\n args: [targets, values, datas],\n });\n\n const nonce = await this.getNonce(smartAccountAddress);\n\n const partialOp = {\n sender: smartAccountAddress,\n nonce,\n initCode: initCode as Hex,\n callData,\n paymasterAndData: (this.chainConfig.paymasterAddress || \"0x\") as Hex,\n };\n\n const gasEstimate = await this.bundlerClient.estimateGas(partialOp);\n\n return {\n ...partialOp,\n callGasLimit: BigInt(gasEstimate.callGasLimit),\n verificationGasLimit: BigInt(gasEstimate.verificationGasLimit),\n preVerificationGas: BigInt(gasEstimate.preVerificationGas),\n maxFeePerGas: BigInt(gasEstimate.maxFeePerGas),\n maxPriorityFeePerGas: BigInt(gasEstimate.maxPriorityFeePerGas),\n signature: \"0x\",\n };\n }\n\n async buildDeployUserOp(\n owner: Address,\n smartAccountAddress: Address\n ): Promise<UserOperation> {\n const isDeployed = await this.isAccountDeployed(smartAccountAddress);\n if (isDeployed) throw new Error(\"Account already deployed\");\n\n const initCode = this.buildInitCode(owner);\n const callData = \"0x\";\n const nonce = await this.getNonce(smartAccountAddress);\n\n const partialOp = {\n sender: smartAccountAddress,\n nonce,\n initCode: initCode as Hex,\n callData: callData as Hex,\n paymasterAndData: (this.chainConfig.paymasterAddress || \"0x\") as Hex,\n };\n\n const gasEstimate = await this.bundlerClient.estimateGas(partialOp);\n\n return {\n ...partialOp,\n callGasLimit: BigInt(gasEstimate.callGasLimit),\n verificationGasLimit: BigInt(gasEstimate.verificationGasLimit),\n preVerificationGas: BigInt(gasEstimate.preVerificationGas),\n maxFeePerGas: BigInt(gasEstimate.maxFeePerGas),\n maxPriorityFeePerGas: BigInt(gasEstimate.maxPriorityFeePerGas),\n signature: \"0x\",\n };\n }\n\n getUserOpHash(userOp: UserOperation): Hex {\n const packed = encodeAbiParameters(\n [\n { type: \"address\" },\n { type: \"uint256\" },\n { type: \"bytes32\" },\n { type: \"bytes32\" },\n { type: \"uint256\" },\n { type: \"uint256\" },\n { type: \"uint256\" },\n { type: \"uint256\" },\n { type: \"uint256\" },\n { type: \"bytes32\" },\n ],\n [\n userOp.sender,\n userOp.nonce,\n keccak256(userOp.initCode),\n keccak256(userOp.callData),\n userOp.callGasLimit,\n userOp.verificationGasLimit,\n userOp.preVerificationGas,\n userOp.maxFeePerGas,\n userOp.maxPriorityFeePerGas,\n keccak256(userOp.paymasterAndData),\n ]\n );\n\n const packedHash = keccak256(packed);\n\n return keccak256(\n encodeAbiParameters(\n [{ type: \"bytes32\" }, { type: \"address\" }, { type: \"uint256\" }],\n [packedHash, this.entryPointAddress, BigInt(this.chainConfig.chain.id)]\n )\n );\n }\n}\n","import { type ChainConfig } from \"./types\";\nimport { base, baseSepolia } from \"viem/chains\";\n\nexport const BASE_MAINNET: ChainConfig = {\n chain: base,\n bundlerUrl: \"http://localhost:3000/rpc?chain=base\", // Default to local bundler pattern\n\n // Addresses\n entryPointAddress: \"0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789\",\n factoryAddress: \"0xe2584152891E4769025807DEa0cD611F135aDC68\",\n paymasterAddress: \"0x1e13Eb16C565E3f3FDe49A011755e50410bb1F95\",\n\n tokens: [\n {\n symbol: \"USDC\",\n decimals: 6,\n address: \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\"\n },\n {\n symbol: \"ETH\",\n decimals: 18,\n address: \"0x0000000000000000000000000000000000000000\"\n }\n ]\n};\n\nexport const BASE_SEPOLIA: ChainConfig = {\n chain: baseSepolia,\n bundlerUrl: \"http://localhost:3000/rpc?chain=baseSepolia\", // Default to local bundler pattern\n\n // Addresses\n entryPointAddress: \"0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789\",\n factoryAddress: \"0x9406Cc6185a346906296840746125a0E44976454\",\n // Paymaster not configured in deployments.ts for Sepolia?\n\n tokens: [\n {\n symbol: \"USDC\",\n decimals: 6,\n address: \"0x036CbD53842c5426634e7929541eC2318f3dCF7e\"\n },\n {\n symbol: \"ETH\",\n decimals: 18,\n address: \"0x0000000000000000000000000000000000000000\"\n }\n ]\n};\n\n// Map accessible by ChainID\nexport const CHAIN_CONFIGS: Record<number, ChainConfig> = {\n [base.id]: BASE_MAINNET,\n [baseSepolia.id]: BASE_SEPOLIA\n};\n"],"mappings":"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","names":["import_viem","import_viem"]}
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.4.1",
6
+ "version": "0.4.2",
7
7
  "description": "SDK for ERC-4337 Gasless Transfers",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",