viem 1.6.6 → 1.6.7
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/chains/dist/cjs/celo/formatters.js +58 -0
- package/chains/dist/cjs/celo/parsers.js +72 -0
- package/chains/dist/cjs/celo/serializers.js +75 -0
- package/chains/dist/cjs/celo/types.js +3 -0
- package/chains/dist/cjs/index.js +135 -0
- package/chains/dist/cjs/optimism/fees.js +7 -0
- package/chains/dist/cjs/optimism/formatters.js +52 -0
- package/chains/dist/cjs/optimism/types.js +3 -0
- package/chains/dist/cjs/types.js +3 -0
- package/chains/dist/cjs/utils.js +49 -0
- package/chains/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/cjs/errors/version.js +1 -1
- package/dist/esm/errors/version.js +1 -1
- package/dist/types/abi.d.ts +6 -0
- package/dist/types/abi.d.ts.map +1 -0
- package/dist/types/accounts/generateMnemonic.d.ts +9 -0
- package/dist/types/accounts/generateMnemonic.d.ts.map +1 -0
- package/dist/types/accounts/generatePrivateKey.d.ts +8 -0
- package/dist/types/accounts/generatePrivateKey.d.ts.map +1 -0
- package/dist/types/accounts/hdKeyToAccount.d.ts +9 -0
- package/dist/types/accounts/hdKeyToAccount.d.ts.map +1 -0
- package/dist/types/accounts/index.d.ts +27 -0
- package/dist/types/accounts/index.d.ts.map +1 -0
- package/dist/types/accounts/mnemonicToAccount.d.ts +8 -0
- package/dist/types/accounts/mnemonicToAccount.d.ts.map +1 -0
- package/dist/types/accounts/privateKeyToAccount.d.ts +9 -0
- package/dist/types/accounts/privateKeyToAccount.d.ts.map +1 -0
- package/dist/types/accounts/toAccount.d.ts +11 -0
- package/dist/types/accounts/toAccount.d.ts.map +1 -0
- package/dist/types/accounts/types.d.ts +52 -0
- package/dist/types/accounts/types.d.ts.map +1 -0
- package/dist/types/accounts/utils/parseAccount.d.ts +4 -0
- package/dist/types/accounts/utils/parseAccount.d.ts.map +1 -0
- package/dist/types/accounts/utils/privateKeyToAddress.d.ts +11 -0
- package/dist/types/accounts/utils/privateKeyToAddress.d.ts.map +1 -0
- package/dist/types/accounts/utils/publicKeyToAddress.d.ts +11 -0
- package/dist/types/accounts/utils/publicKeyToAddress.d.ts.map +1 -0
- package/dist/types/accounts/utils/sign.d.ts +16 -0
- package/dist/types/accounts/utils/sign.d.ts.map +1 -0
- package/dist/types/accounts/utils/signMessage.d.ts +16 -0
- package/dist/types/accounts/utils/signMessage.d.ts.map +1 -0
- package/dist/types/accounts/utils/signTransaction.d.ts +12 -0
- package/dist/types/accounts/utils/signTransaction.d.ts.map +1 -0
- package/dist/types/accounts/utils/signTypedData.d.ts +20 -0
- package/dist/types/accounts/utils/signTypedData.d.ts.map +1 -0
- package/dist/types/accounts/wordlists/czech.d.ts +2 -0
- package/dist/types/accounts/wordlists/czech.d.ts.map +1 -0
- package/dist/types/accounts/wordlists/english.d.ts +2 -0
- package/dist/types/accounts/wordlists/english.d.ts.map +1 -0
- package/dist/types/accounts/wordlists/french.d.ts +2 -0
- package/dist/types/accounts/wordlists/french.d.ts.map +1 -0
- package/dist/types/accounts/wordlists/italian.d.ts +2 -0
- package/dist/types/accounts/wordlists/italian.d.ts.map +1 -0
- package/dist/types/accounts/wordlists/japanese.d.ts +2 -0
- package/dist/types/accounts/wordlists/japanese.d.ts.map +1 -0
- package/dist/types/accounts/wordlists/korean.d.ts +2 -0
- package/dist/types/accounts/wordlists/korean.d.ts.map +1 -0
- package/dist/types/accounts/wordlists/simplifiedChinese.d.ts +2 -0
- package/dist/types/accounts/wordlists/simplifiedChinese.d.ts.map +1 -0
- package/dist/types/accounts/wordlists/spanish.d.ts +2 -0
- package/dist/types/accounts/wordlists/spanish.d.ts.map +1 -0
- package/dist/types/accounts/wordlists/traditionalChinese.d.ts +2 -0
- package/dist/types/accounts/wordlists/traditionalChinese.d.ts.map +1 -0
- package/dist/types/actions/ens/getEnsAddress.d.ts +45 -0
- package/dist/types/actions/ens/getEnsAddress.d.ts.map +1 -0
- package/dist/types/actions/ens/getEnsAvatar.d.ts +41 -0
- package/dist/types/actions/ens/getEnsAvatar.d.ts.map +1 -0
- package/dist/types/actions/ens/getEnsName.d.ts +41 -0
- package/dist/types/actions/ens/getEnsName.d.ts.map +1 -0
- package/dist/types/actions/ens/getEnsResolver.d.ts +43 -0
- package/dist/types/actions/ens/getEnsResolver.d.ts.map +1 -0
- package/dist/types/actions/ens/getEnsText.d.ts +46 -0
- package/dist/types/actions/ens/getEnsText.d.ts.map +1 -0
- package/dist/types/actions/getContract.d.ts +314 -0
- package/dist/types/actions/getContract.d.ts.map +1 -0
- package/dist/types/actions/index.d.ts +80 -0
- package/dist/types/actions/index.d.ts.map +1 -0
- package/dist/types/actions/public/call.d.ts +56 -0
- package/dist/types/actions/public/call.d.ts.map +1 -0
- package/dist/types/actions/public/createBlockFilter.d.ts +28 -0
- package/dist/types/actions/public/createBlockFilter.d.ts.map +1 -0
- package/dist/types/actions/public/createContractEventFilter.d.ts +50 -0
- package/dist/types/actions/public/createContractEventFilter.d.ts.map +1 -0
- package/dist/types/actions/public/createEventFilter.d.ts +76 -0
- package/dist/types/actions/public/createEventFilter.d.ts.map +1 -0
- package/dist/types/actions/public/createPendingTransactionFilter.d.ts +28 -0
- package/dist/types/actions/public/createPendingTransactionFilter.d.ts.map +1 -0
- package/dist/types/actions/public/estimateContractGas.d.ts +39 -0
- package/dist/types/actions/public/estimateContractGas.d.ts.map +1 -0
- package/dist/types/actions/public/estimateGas.d.ts +49 -0
- package/dist/types/actions/public/estimateGas.d.ts.map +1 -0
- package/dist/types/actions/public/getBalance.d.ts +55 -0
- package/dist/types/actions/public/getBalance.d.ts.map +1 -0
- package/dist/types/actions/public/getBlock.d.ts +56 -0
- package/dist/types/actions/public/getBlock.d.ts.map +1 -0
- package/dist/types/actions/public/getBlockNumber.d.ts +57 -0
- package/dist/types/actions/public/getBlockNumber.d.ts.map +1 -0
- package/dist/types/actions/public/getBlockTransactionCount.d.ts +47 -0
- package/dist/types/actions/public/getBlockTransactionCount.d.ts.map +1 -0
- package/dist/types/actions/public/getBytecode.d.ts +41 -0
- package/dist/types/actions/public/getBytecode.d.ts.map +1 -0
- package/dist/types/actions/public/getChainId.d.ts +28 -0
- package/dist/types/actions/public/getChainId.d.ts.map +1 -0
- package/dist/types/actions/public/getFeeHistory.d.ts +53 -0
- package/dist/types/actions/public/getFeeHistory.d.ts.map +1 -0
- package/dist/types/actions/public/getFilterChanges.d.ts +96 -0
- package/dist/types/actions/public/getFilterChanges.d.ts.map +1 -0
- package/dist/types/actions/public/getFilterLogs.d.ts +40 -0
- package/dist/types/actions/public/getFilterLogs.d.ts.map +1 -0
- package/dist/types/actions/public/getGasPrice.d.ts +27 -0
- package/dist/types/actions/public/getGasPrice.d.ts.map +1 -0
- package/dist/types/actions/public/getLogs.d.ts +71 -0
- package/dist/types/actions/public/getLogs.d.ts.map +1 -0
- package/dist/types/actions/public/getStorageAt.d.ts +43 -0
- package/dist/types/actions/public/getStorageAt.d.ts.map +1 -0
- package/dist/types/actions/public/getTransaction.d.ts +65 -0
- package/dist/types/actions/public/getTransaction.d.ts.map +1 -0
- package/dist/types/actions/public/getTransactionConfirmations.d.ts +41 -0
- package/dist/types/actions/public/getTransactionConfirmations.d.ts.map +1 -0
- package/dist/types/actions/public/getTransactionCount.d.ts +44 -0
- package/dist/types/actions/public/getTransactionCount.d.ts.map +1 -0
- package/dist/types/actions/public/getTransactionReceipt.d.ts +36 -0
- package/dist/types/actions/public/getTransactionReceipt.d.ts.map +1 -0
- package/dist/types/actions/public/multicall.d.ts +56 -0
- package/dist/types/actions/public/multicall.d.ts.map +1 -0
- package/dist/types/actions/public/readContract.d.ts +41 -0
- package/dist/types/actions/public/readContract.d.ts.map +1 -0
- package/dist/types/actions/public/simulateContract.d.ts +54 -0
- package/dist/types/actions/public/simulateContract.d.ts.map +1 -0
- package/dist/types/actions/public/uninstallFilter.d.ts +34 -0
- package/dist/types/actions/public/uninstallFilter.d.ts.map +1 -0
- package/dist/types/actions/public/verifyHash.d.ts +24 -0
- package/dist/types/actions/public/verifyHash.d.ts.map +1 -0
- package/dist/types/actions/public/verifyMessage.d.ts +28 -0
- package/dist/types/actions/public/verifyMessage.d.ts.map +1 -0
- package/dist/types/actions/public/verifyTypedData.d.ts +27 -0
- package/dist/types/actions/public/verifyTypedData.d.ts.map +1 -0
- package/dist/types/actions/public/waitForTransactionReceipt.d.ts +72 -0
- package/dist/types/actions/public/waitForTransactionReceipt.d.ts.map +1 -0
- package/dist/types/actions/public/watchBlockNumber.d.ts +59 -0
- package/dist/types/actions/public/watchBlockNumber.d.ts.map +1 -0
- package/dist/types/actions/public/watchBlocks.d.ts +67 -0
- package/dist/types/actions/public/watchBlocks.d.ts.map +1 -0
- package/dist/types/actions/public/watchContractEvent.d.ts +89 -0
- package/dist/types/actions/public/watchContractEvent.d.ts.map +1 -0
- package/dist/types/actions/public/watchEvent.d.ts +104 -0
- package/dist/types/actions/public/watchEvent.d.ts.map +1 -0
- package/dist/types/actions/public/watchPendingTransactions.d.ts +74 -0
- package/dist/types/actions/public/watchPendingTransactions.d.ts.map +1 -0
- package/dist/types/actions/test/dropTransaction.d.ts +33 -0
- package/dist/types/actions/test/dropTransaction.d.ts.map +1 -0
- package/dist/types/actions/test/getAutomine.d.ts +27 -0
- package/dist/types/actions/test/getAutomine.d.ts.map +1 -0
- package/dist/types/actions/test/getTxpoolContent.d.ts +34 -0
- package/dist/types/actions/test/getTxpoolContent.d.ts.map +1 -0
- package/dist/types/actions/test/getTxpoolStatus.d.ts +30 -0
- package/dist/types/actions/test/getTxpoolStatus.d.ts.map +1 -0
- package/dist/types/actions/test/impersonateAccount.d.ts +33 -0
- package/dist/types/actions/test/impersonateAccount.d.ts.map +1 -0
- package/dist/types/actions/test/increaseTime.d.ts +32 -0
- package/dist/types/actions/test/increaseTime.d.ts.map +1 -0
- package/dist/types/actions/test/inspectTxpool.d.ts +31 -0
- package/dist/types/actions/test/inspectTxpool.d.ts.map +1 -0
- package/dist/types/actions/test/mine.d.ts +32 -0
- package/dist/types/actions/test/mine.d.ts.map +1 -0
- package/dist/types/actions/test/removeBlockTimestampInterval.d.ts +25 -0
- package/dist/types/actions/test/removeBlockTimestampInterval.d.ts.map +1 -0
- package/dist/types/actions/test/reset.d.ts +32 -0
- package/dist/types/actions/test/reset.d.ts.map +1 -0
- package/dist/types/actions/test/revert.d.ts +31 -0
- package/dist/types/actions/test/revert.d.ts.map +1 -0
- package/dist/types/actions/test/sendUnsignedTransaction.d.ts +35 -0
- package/dist/types/actions/test/sendUnsignedTransaction.d.ts.map +1 -0
- package/dist/types/actions/test/setAutomine.d.ts +25 -0
- package/dist/types/actions/test/setAutomine.d.ts.map +1 -0
- package/dist/types/actions/test/setBalance.d.ts +36 -0
- package/dist/types/actions/test/setBalance.d.ts.map +1 -0
- package/dist/types/actions/test/setBlockGasLimit.d.ts +30 -0
- package/dist/types/actions/test/setBlockGasLimit.d.ts.map +1 -0
- package/dist/types/actions/test/setBlockTimestampInterval.d.ts +30 -0
- package/dist/types/actions/test/setBlockTimestampInterval.d.ts.map +1 -0
- package/dist/types/actions/test/setCode.d.ts +37 -0
- package/dist/types/actions/test/setCode.d.ts.map +1 -0
- package/dist/types/actions/test/setCoinbase.d.ts +33 -0
- package/dist/types/actions/test/setCoinbase.d.ts.map +1 -0
- package/dist/types/actions/test/setIntervalMining.d.ts +30 -0
- package/dist/types/actions/test/setIntervalMining.d.ts.map +1 -0
- package/dist/types/actions/test/setLoggingEnabled.d.ts +25 -0
- package/dist/types/actions/test/setLoggingEnabled.d.ts.map +1 -0
- package/dist/types/actions/test/setMinGasPrice.d.ts +34 -0
- package/dist/types/actions/test/setMinGasPrice.d.ts.map +1 -0
- package/dist/types/actions/test/setNextBlockBaseFeePerGas.d.ts +32 -0
- package/dist/types/actions/test/setNextBlockBaseFeePerGas.d.ts.map +1 -0
- package/dist/types/actions/test/setNextBlockTimestamp.d.ts +30 -0
- package/dist/types/actions/test/setNextBlockTimestamp.d.ts.map +1 -0
- package/dist/types/actions/test/setNonce.d.ts +36 -0
- package/dist/types/actions/test/setNonce.d.ts.map +1 -0
- package/dist/types/actions/test/setRpcUrl.d.ts +26 -0
- package/dist/types/actions/test/setRpcUrl.d.ts.map +1 -0
- package/dist/types/actions/test/setStorageAt.d.ts +40 -0
- package/dist/types/actions/test/setStorageAt.d.ts.map +1 -0
- package/dist/types/actions/test/snapshot.d.ts +25 -0
- package/dist/types/actions/test/snapshot.d.ts.map +1 -0
- package/dist/types/actions/test/stopImpersonatingAccount.d.ts +33 -0
- package/dist/types/actions/test/stopImpersonatingAccount.d.ts.map +1 -0
- package/dist/types/actions/wallet/addChain.d.ts +29 -0
- package/dist/types/actions/wallet/addChain.d.ts.map +1 -0
- package/dist/types/actions/wallet/deployContract.d.ts +43 -0
- package/dist/types/actions/wallet/deployContract.d.ts.map +1 -0
- package/dist/types/actions/wallet/getAddresses.d.ts +28 -0
- package/dist/types/actions/wallet/getAddresses.d.ts.map +1 -0
- package/dist/types/actions/wallet/getPermissions.d.ts +28 -0
- package/dist/types/actions/wallet/getPermissions.d.ts.map +1 -0
- package/dist/types/actions/wallet/requestAddresses.d.ts +32 -0
- package/dist/types/actions/wallet/requestAddresses.d.ts.map +1 -0
- package/dist/types/actions/wallet/requestPermissions.d.ts +37 -0
- package/dist/types/actions/wallet/requestPermissions.d.ts.map +1 -0
- package/dist/types/actions/wallet/sendTransaction.d.ts +57 -0
- package/dist/types/actions/wallet/sendTransaction.d.ts.map +1 -0
- package/dist/types/actions/wallet/signMessage.d.ts +58 -0
- package/dist/types/actions/wallet/signMessage.d.ts.map +1 -0
- package/dist/types/actions/wallet/signTypedData.d.ts +114 -0
- package/dist/types/actions/wallet/signTypedData.d.ts.map +1 -0
- package/dist/types/actions/wallet/switchChain.d.ts +30 -0
- package/dist/types/actions/wallet/switchChain.d.ts.map +1 -0
- package/dist/types/actions/wallet/watchAsset.d.ts +37 -0
- package/dist/types/actions/wallet/watchAsset.d.ts.map +1 -0
- package/dist/types/actions/wallet/writeContract.d.ts +68 -0
- package/dist/types/actions/wallet/writeContract.d.ts.map +1 -0
- package/dist/types/chains/celo/formatters.d.ts +195 -0
- package/dist/types/chains/celo/formatters.d.ts.map +1 -0
- package/dist/types/chains/celo/parsers.d.ts +6 -0
- package/dist/types/chains/celo/parsers.d.ts.map +1 -0
- package/dist/types/chains/celo/serializers.d.ts +9 -0
- package/dist/types/chains/celo/serializers.d.ts.map +1 -0
- package/dist/types/chains/celo/types.d.ts +74 -0
- package/dist/types/chains/celo/types.d.ts.map +1 -0
- package/dist/types/chains/index.d.ts +5329 -0
- package/dist/types/chains/index.d.ts.map +1 -0
- package/dist/types/chains/optimism/fees.d.ts +4 -0
- package/dist/types/chains/optimism/fees.d.ts.map +1 -0
- package/dist/types/chains/optimism/formatters.d.ts +299 -0
- package/dist/types/chains/optimism/formatters.d.ts.map +1 -0
- package/dist/types/chains/optimism/types.d.ts +53 -0
- package/dist/types/chains/optimism/types.d.ts.map +1 -0
- package/dist/types/chains/utils.d.ts +7 -0
- package/dist/types/chains/utils.d.ts.map +1 -0
- package/dist/types/clients/createClient.d.ts +79 -0
- package/dist/types/clients/createClient.d.ts.map +1 -0
- package/dist/types/clients/createPublicClient.d.ts +29 -0
- package/dist/types/clients/createPublicClient.d.ts.map +1 -0
- package/dist/types/clients/createTestClient.d.ts +43 -0
- package/dist/types/clients/createTestClient.d.ts.map +1 -0
- package/dist/types/clients/createWalletClient.d.ts +49 -0
- package/dist/types/clients/createWalletClient.d.ts.map +1 -0
- package/dist/types/clients/decorators/public.d.ts +1087 -0
- package/dist/types/clients/decorators/public.d.ts.map +1 -0
- package/dist/types/clients/decorators/test.d.ts +599 -0
- package/dist/types/clients/decorators/test.d.ts.map +1 -0
- package/dist/types/clients/decorators/wallet.d.ts +449 -0
- package/dist/types/clients/decorators/wallet.d.ts.map +1 -0
- package/dist/types/clients/transports/createTransport.d.ts +34 -0
- package/dist/types/clients/transports/createTransport.d.ts.map +1 -0
- package/dist/types/clients/transports/custom.d.ts +21 -0
- package/dist/types/clients/transports/custom.d.ts.map +1 -0
- package/dist/types/clients/transports/fallback.d.ts +75 -0
- package/dist/types/clients/transports/fallback.d.ts.map +1 -0
- package/dist/types/clients/transports/http.d.ts +40 -0
- package/dist/types/clients/transports/http.d.ts.map +1 -0
- package/dist/types/clients/transports/webSocket.d.ts +46 -0
- package/dist/types/clients/transports/webSocket.d.ts.map +1 -0
- package/dist/types/constants/abis.d.ts +165 -0
- package/dist/types/constants/abis.d.ts.map +1 -0
- package/dist/types/constants/address.d.ts +2 -0
- package/dist/types/constants/address.d.ts.map +1 -0
- package/dist/types/constants/contract.d.ts +2 -0
- package/dist/types/constants/contract.d.ts.map +1 -0
- package/dist/types/constants/contracts.d.ts +2 -0
- package/dist/types/constants/contracts.d.ts.map +1 -0
- package/dist/types/constants/number.d.ts +97 -0
- package/dist/types/constants/number.d.ts.map +1 -0
- package/dist/types/constants/solidity.d.ts +15 -0
- package/dist/types/constants/solidity.d.ts.map +1 -0
- package/dist/types/constants/unit.d.ts +13 -0
- package/dist/types/constants/unit.d.ts.map +1 -0
- package/dist/types/contract.d.ts +30 -0
- package/dist/types/contract.d.ts.map +1 -0
- package/dist/types/ens.d.ts +9 -0
- package/dist/types/ens.d.ts.map +1 -0
- package/dist/types/errors/abi.d.ts +169 -0
- package/dist/types/errors/abi.d.ts.map +1 -0
- package/dist/types/errors/account.d.ts +8 -0
- package/dist/types/errors/account.d.ts.map +1 -0
- package/dist/types/errors/address.d.ts +8 -0
- package/dist/types/errors/address.d.ts.map +1 -0
- package/dist/types/errors/base.d.ts +24 -0
- package/dist/types/errors/base.d.ts.map +1 -0
- package/dist/types/errors/block.d.ts +10 -0
- package/dist/types/errors/block.d.ts.map +1 -0
- package/dist/types/errors/ccip.d.ts +29 -0
- package/dist/types/errors/ccip.d.ts.map +1 -0
- package/dist/types/errors/chain.d.ts +35 -0
- package/dist/types/errors/chain.d.ts.map +1 -0
- package/dist/types/errors/contract.d.ts +64 -0
- package/dist/types/errors/contract.d.ts.map +1 -0
- package/dist/types/errors/data.d.ts +18 -0
- package/dist/types/errors/data.d.ts.map +1 -0
- package/dist/types/errors/encoding.d.ts +53 -0
- package/dist/types/errors/encoding.d.ts.map +1 -0
- package/dist/types/errors/ens.d.ts +26 -0
- package/dist/types/errors/ens.d.ts.map +1 -0
- package/dist/types/errors/estimateGas.d.ts +14 -0
- package/dist/types/errors/estimateGas.d.ts.map +1 -0
- package/dist/types/errors/log.d.ts +6 -0
- package/dist/types/errors/log.d.ts.map +1 -0
- package/dist/types/errors/node.d.ts +105 -0
- package/dist/types/errors/node.d.ts.map +1 -0
- package/dist/types/errors/request.d.ts +61 -0
- package/dist/types/errors/request.d.ts.map +1 -0
- package/dist/types/errors/rpc.d.ts +221 -0
- package/dist/types/errors/rpc.d.ts.map +1 -0
- package/dist/types/errors/transaction.d.ts +79 -0
- package/dist/types/errors/transaction.d.ts.map +1 -0
- package/dist/types/errors/transport.d.ts +5 -0
- package/dist/types/errors/transport.d.ts.map +1 -0
- package/dist/types/errors/utils.d.ts +5 -0
- package/dist/types/errors/utils.d.ts.map +1 -0
- package/dist/types/errors/version.d.ts +2 -0
- package/dist/types/errors/version.d.ts.map +1 -0
- package/dist/types/index.d.ts +211 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/public.d.ts +31 -0
- package/dist/types/public.d.ts.map +1 -0
- package/dist/types/test.d.ts +29 -0
- package/dist/types/test.d.ts.map +1 -0
- package/dist/types/types/account.d.ts +12 -0
- package/dist/types/types/account.d.ts.map +1 -0
- package/dist/types/types/block.d.ts +62 -0
- package/dist/types/types/block.d.ts.map +1 -0
- package/dist/types/types/chain.d.ts +62 -0
- package/dist/types/types/chain.d.ts.map +1 -0
- package/dist/types/types/contract.d.ts +138 -0
- package/dist/types/types/contract.d.ts.map +1 -0
- package/dist/types/types/eip1193.d.ts +1216 -0
- package/dist/types/types/eip1193.d.ts.map +1 -0
- package/dist/types/types/ens.d.ts +5 -0
- package/dist/types/types/ens.d.ts.map +1 -0
- package/dist/types/types/fee.d.ts +29 -0
- package/dist/types/types/fee.d.ts.map +1 -0
- package/dist/types/types/filter.d.ts +40 -0
- package/dist/types/types/filter.d.ts.map +1 -0
- package/dist/types/types/log.d.ts +55 -0
- package/dist/types/types/log.d.ts.map +1 -0
- package/dist/types/types/misc.d.ts +14 -0
- package/dist/types/types/misc.d.ts.map +1 -0
- package/dist/types/types/multicall.d.ts +48 -0
- package/dist/types/types/multicall.d.ts.map +1 -0
- package/dist/types/types/rpc.d.ts +20 -0
- package/dist/types/types/rpc.d.ts.map +1 -0
- package/dist/types/types/transaction.d.ts +147 -0
- package/dist/types/types/transaction.d.ts.map +1 -0
- package/dist/types/types/transport.d.ts +3 -0
- package/dist/types/types/transport.d.ts.map +1 -0
- package/dist/types/types/typedData.d.ts +47 -0
- package/dist/types/types/typedData.d.ts.map +1 -0
- package/dist/types/types/utils.d.ts +188 -0
- package/dist/types/types/utils.d.ts.map +1 -0
- package/dist/types/types/window.d.ts +7 -0
- package/dist/types/types/window.d.ts.map +1 -0
- package/dist/types/utils/abi/decodeAbiParameters.d.ts +5 -0
- package/dist/types/utils/abi/decodeAbiParameters.d.ts.map +1 -0
- package/dist/types/utils/abi/decodeDeployData.d.ts +13 -0
- package/dist/types/utils/abi/decodeDeployData.d.ts.map +1 -0
- package/dist/types/utils/abi/decodeErrorResult.d.ts +16 -0
- package/dist/types/utils/abi/decodeErrorResult.d.ts.map +1 -0
- package/dist/types/utils/abi/decodeEventLog.d.ts +20 -0
- package/dist/types/utils/abi/decodeEventLog.d.ts.map +1 -0
- package/dist/types/utils/abi/decodeFunctionData.d.ts +15 -0
- package/dist/types/utils/abi/decodeFunctionData.d.ts.map +1 -0
- package/dist/types/utils/abi/decodeFunctionResult.d.ts +14 -0
- package/dist/types/utils/abi/decodeFunctionResult.d.ts.map +1 -0
- package/dist/types/utils/abi/encodeAbiParameters.d.ts +9 -0
- package/dist/types/utils/abi/encodeAbiParameters.d.ts.map +1 -0
- package/dist/types/utils/abi/encodeDeployData.d.ts +9 -0
- package/dist/types/utils/abi/encodeDeployData.d.ts.map +1 -0
- package/dist/types/utils/abi/encodeErrorResult.d.ts +11 -0
- package/dist/types/utils/abi/encodeErrorResult.d.ts.map +1 -0
- package/dist/types/utils/abi/encodeEventTopics.d.ts +13 -0
- package/dist/types/utils/abi/encodeEventTopics.d.ts.map +1 -0
- package/dist/types/utils/abi/encodeFunctionData.d.ts +11 -0
- package/dist/types/utils/abi/encodeFunctionData.d.ts.map +1 -0
- package/dist/types/utils/abi/encodeFunctionResult.d.ts +13 -0
- package/dist/types/utils/abi/encodeFunctionResult.d.ts.map +1 -0
- package/dist/types/utils/abi/encodePacked.d.ts +11 -0
- package/dist/types/utils/abi/encodePacked.d.ts.map +1 -0
- package/dist/types/utils/abi/formatAbiItem.d.ts +9 -0
- package/dist/types/utils/abi/formatAbiItem.d.ts.map +1 -0
- package/dist/types/utils/abi/formatAbiItemWithArgs.d.ts +8 -0
- package/dist/types/utils/abi/formatAbiItemWithArgs.d.ts.map +1 -0
- package/dist/types/utils/abi/getAbiItem.d.ts +12 -0
- package/dist/types/utils/abi/getAbiItem.d.ts.map +1 -0
- package/dist/types/utils/accounts.d.ts +3 -0
- package/dist/types/utils/accounts.d.ts.map +1 -0
- package/dist/types/utils/address/getAddress.d.ts +4 -0
- package/dist/types/utils/address/getAddress.d.ts.map +1 -0
- package/dist/types/utils/address/getContractAddress.d.ts +20 -0
- package/dist/types/utils/address/getContractAddress.d.ts.map +1 -0
- package/dist/types/utils/address/isAddress.d.ts +3 -0
- package/dist/types/utils/address/isAddress.d.ts.map +1 -0
- package/dist/types/utils/address/isAddressEqual.d.ts +3 -0
- package/dist/types/utils/address/isAddressEqual.d.ts.map +1 -0
- package/dist/types/utils/buildRequest.d.ts +6 -0
- package/dist/types/utils/buildRequest.d.ts.map +1 -0
- package/dist/types/utils/ccip.d.ts +37 -0
- package/dist/types/utils/ccip.d.ts.map +1 -0
- package/dist/types/utils/chain.d.ts +14 -0
- package/dist/types/utils/chain.d.ts.map +1 -0
- package/dist/types/utils/contract/extractFunctionParts.d.ts +13 -0
- package/dist/types/utils/contract/extractFunctionParts.d.ts.map +1 -0
- package/dist/types/utils/data/concat.d.ts +6 -0
- package/dist/types/utils/data/concat.d.ts.map +1 -0
- package/dist/types/utils/data/isBytes.d.ts +3 -0
- package/dist/types/utils/data/isBytes.d.ts.map +1 -0
- package/dist/types/utils/data/isBytesEqual.d.ts +3 -0
- package/dist/types/utils/data/isBytesEqual.d.ts.map +1 -0
- package/dist/types/utils/data/isHex.d.ts +5 -0
- package/dist/types/utils/data/isHex.d.ts.map +1 -0
- package/dist/types/utils/data/pad.d.ts +11 -0
- package/dist/types/utils/data/pad.d.ts.map +1 -0
- package/dist/types/utils/data/size.d.ts +9 -0
- package/dist/types/utils/data/size.d.ts.map +1 -0
- package/dist/types/utils/data/slice.d.ts +33 -0
- package/dist/types/utils/data/slice.d.ts.map +1 -0
- package/dist/types/utils/data/trim.d.ts +8 -0
- package/dist/types/utils/data/trim.d.ts.map +1 -0
- package/dist/types/utils/encoding/fromBytes.d.ts +109 -0
- package/dist/types/utils/encoding/fromBytes.d.ts.map +1 -0
- package/dist/types/utils/encoding/fromHex.d.ts +138 -0
- package/dist/types/utils/encoding/fromHex.d.ts.map +1 -0
- package/dist/types/utils/encoding/fromRlp.d.ts +6 -0
- package/dist/types/utils/encoding/fromRlp.d.ts.map +1 -0
- package/dist/types/utils/encoding/toBytes.d.ts +125 -0
- package/dist/types/utils/encoding/toBytes.d.ts.map +1 -0
- package/dist/types/utils/encoding/toHex.d.ts +139 -0
- package/dist/types/utils/encoding/toHex.d.ts.map +1 -0
- package/dist/types/utils/encoding/toRlp.d.ts +8 -0
- package/dist/types/utils/encoding/toRlp.d.ts.map +1 -0
- package/dist/types/utils/ens/avatar/parseAvatarRecord.d.ts +9 -0
- package/dist/types/utils/ens/avatar/parseAvatarRecord.d.ts.map +1 -0
- package/dist/types/utils/ens/avatar/utils.d.ts +37 -0
- package/dist/types/utils/ens/avatar/utils.d.ts.map +1 -0
- package/dist/types/utils/ens/encodeLabelhash.d.ts +3 -0
- package/dist/types/utils/ens/encodeLabelhash.d.ts.map +1 -0
- package/dist/types/utils/ens/encodedLabelToLabelhash.d.ts +3 -0
- package/dist/types/utils/ens/encodedLabelToLabelhash.d.ts.map +1 -0
- package/dist/types/utils/ens/errors.d.ts +2 -0
- package/dist/types/utils/ens/errors.d.ts.map +1 -0
- package/dist/types/utils/ens/labelhash.d.ts +11 -0
- package/dist/types/utils/ens/labelhash.d.ts.map +1 -0
- package/dist/types/utils/ens/namehash.d.ts +13 -0
- package/dist/types/utils/ens/namehash.d.ts.map +1 -0
- package/dist/types/utils/ens/normalize.d.ts +12 -0
- package/dist/types/utils/ens/normalize.d.ts.map +1 -0
- package/dist/types/utils/ens/packetToBytes.d.ts +3 -0
- package/dist/types/utils/ens/packetToBytes.d.ts.map +1 -0
- package/dist/types/utils/errors/getCallError.d.ts +9 -0
- package/dist/types/utils/errors/getCallError.d.ts.map +1 -0
- package/dist/types/utils/errors/getContractError.d.ts +12 -0
- package/dist/types/utils/errors/getContractError.d.ts.map +1 -0
- package/dist/types/utils/errors/getEstimateGasError.d.ts +11 -0
- package/dist/types/utils/errors/getEstimateGasError.d.ts.map +1 -0
- package/dist/types/utils/errors/getNodeError.d.ts +7 -0
- package/dist/types/utils/errors/getNodeError.d.ts.map +1 -0
- package/dist/types/utils/errors/getTransactionError.d.ts +12 -0
- package/dist/types/utils/errors/getTransactionError.d.ts.map +1 -0
- package/dist/types/utils/filters/createFilterRequestScope.d.ts +22 -0
- package/dist/types/utils/filters/createFilterRequestScope.d.ts.map +1 -0
- package/dist/types/utils/formatters/block.d.ts +28 -0
- package/dist/types/utils/formatters/block.d.ts.map +1 -0
- package/dist/types/utils/formatters/extract.d.ts +8 -0
- package/dist/types/utils/formatters/extract.d.ts.map +1 -0
- package/dist/types/utils/formatters/feeHistory.d.ts +4 -0
- package/dist/types/utils/formatters/feeHistory.d.ts.map +1 -0
- package/dist/types/utils/formatters/formatter.d.ts +10 -0
- package/dist/types/utils/formatters/formatter.d.ts.map +1 -0
- package/dist/types/utils/formatters/log.d.ts +7 -0
- package/dist/types/utils/formatters/log.d.ts.map +1 -0
- package/dist/types/utils/formatters/transaction.d.ts +30 -0
- package/dist/types/utils/formatters/transaction.d.ts.map +1 -0
- package/dist/types/utils/formatters/transactionReceipt.d.ts +14 -0
- package/dist/types/utils/formatters/transactionReceipt.d.ts.map +1 -0
- package/dist/types/utils/formatters/transactionRequest.d.ts +14 -0
- package/dist/types/utils/formatters/transactionRequest.d.ts.map +1 -0
- package/dist/types/utils/hash/getEventSelector.d.ts +4 -0
- package/dist/types/utils/hash/getEventSelector.d.ts.map +1 -0
- package/dist/types/utils/hash/getFunctionSelector.d.ts +3 -0
- package/dist/types/utils/hash/getFunctionSelector.d.ts.map +1 -0
- package/dist/types/utils/hash/hashFunction.d.ts +4 -0
- package/dist/types/utils/hash/hashFunction.d.ts.map +1 -0
- package/dist/types/utils/hash/isHash.d.ts +3 -0
- package/dist/types/utils/hash/isHash.d.ts.map +1 -0
- package/dist/types/utils/hash/keccak256.d.ts +6 -0
- package/dist/types/utils/hash/keccak256.d.ts.map +1 -0
- package/dist/types/utils/index.d.ts +82 -0
- package/dist/types/utils/index.d.ts.map +1 -0
- package/dist/types/utils/observe.d.ts +17 -0
- package/dist/types/utils/observe.d.ts.map +1 -0
- package/dist/types/utils/poll.d.ts +13 -0
- package/dist/types/utils/poll.d.ts.map +1 -0
- package/dist/types/utils/promise/createBatchScheduler.d.ts +17 -0
- package/dist/types/utils/promise/createBatchScheduler.d.ts.map +1 -0
- package/dist/types/utils/promise/withCache.d.ts +36 -0
- package/dist/types/utils/promise/withCache.d.ts.map +1 -0
- package/dist/types/utils/promise/withRetry.d.ts +12 -0
- package/dist/types/utils/promise/withRetry.d.ts.map +1 -0
- package/dist/types/utils/promise/withTimeout.d.ts +8 -0
- package/dist/types/utils/promise/withTimeout.d.ts.map +1 -0
- package/dist/types/utils/regex.d.ts +4 -0
- package/dist/types/utils/regex.d.ts.map +1 -0
- package/dist/types/utils/rpc.d.ts +72 -0
- package/dist/types/utils/rpc.d.ts.map +1 -0
- package/dist/types/utils/signature/hashMessage.d.ts +6 -0
- package/dist/types/utils/signature/hashMessage.d.ts.map +1 -0
- package/dist/types/utils/signature/hashTypedData.d.ts +11 -0
- package/dist/types/utils/signature/hashTypedData.d.ts.map +1 -0
- package/dist/types/utils/signature/hexToSignature.d.ts +13 -0
- package/dist/types/utils/signature/hexToSignature.d.ts.map +1 -0
- package/dist/types/utils/signature/recoverAddress.d.ts +9 -0
- package/dist/types/utils/signature/recoverAddress.d.ts.map +1 -0
- package/dist/types/utils/signature/recoverMessageAddress.d.ts +9 -0
- package/dist/types/utils/signature/recoverMessageAddress.d.ts.map +1 -0
- package/dist/types/utils/signature/recoverPublicKey.d.ts +8 -0
- package/dist/types/utils/signature/recoverPublicKey.d.ts.map +1 -0
- package/dist/types/utils/signature/recoverTypedDataAddress.d.ts +13 -0
- package/dist/types/utils/signature/recoverTypedDataAddress.d.ts.map +1 -0
- package/dist/types/utils/signature/signatureToHex.d.ts +17 -0
- package/dist/types/utils/signature/signatureToHex.d.ts.map +1 -0
- package/dist/types/utils/signature/verifyMessage.d.ts +25 -0
- package/dist/types/utils/signature/verifyMessage.d.ts.map +1 -0
- package/dist/types/utils/signature/verifyTypedData.d.ts +28 -0
- package/dist/types/utils/signature/verifyTypedData.d.ts.map +1 -0
- package/dist/types/utils/stringify.d.ts +2 -0
- package/dist/types/utils/stringify.d.ts.map +1 -0
- package/dist/types/utils/transaction/assertRequest.d.ts +5 -0
- package/dist/types/utils/transaction/assertRequest.d.ts.map +1 -0
- package/dist/types/utils/transaction/assertTransaction.d.ts +5 -0
- package/dist/types/utils/transaction/assertTransaction.d.ts.map +1 -0
- package/dist/types/utils/transaction/getSerializedTransactionType.d.ts +4 -0
- package/dist/types/utils/transaction/getSerializedTransactionType.d.ts.map +1 -0
- package/dist/types/utils/transaction/getTransactionType.d.ts +4 -0
- package/dist/types/utils/transaction/getTransactionType.d.ts.map +1 -0
- package/dist/types/utils/transaction/parseTransaction.d.ts +9 -0
- package/dist/types/utils/transaction/parseTransaction.d.ts.map +1 -0
- package/dist/types/utils/transaction/prepareRequest.d.ts +20 -0
- package/dist/types/utils/transaction/prepareRequest.d.ts.map +1 -0
- package/dist/types/utils/transaction/serializeAccessList.d.ts +5 -0
- package/dist/types/utils/transaction/serializeAccessList.d.ts.map +1 -0
- package/dist/types/utils/transaction/serializeTransaction.d.ts +7 -0
- package/dist/types/utils/transaction/serializeTransaction.d.ts.map +1 -0
- package/dist/types/utils/typedData.d.ts +6 -0
- package/dist/types/utils/typedData.d.ts.map +1 -0
- package/dist/types/utils/uid.d.ts +2 -0
- package/dist/types/utils/uid.d.ts.map +1 -0
- package/dist/types/utils/unit/formatEther.d.ts +2 -0
- package/dist/types/utils/unit/formatEther.d.ts.map +1 -0
- package/dist/types/utils/unit/formatGwei.d.ts +2 -0
- package/dist/types/utils/unit/formatGwei.d.ts.map +1 -0
- package/dist/types/utils/unit/formatUnits.d.ts +2 -0
- package/dist/types/utils/unit/formatUnits.d.ts.map +1 -0
- package/dist/types/utils/unit/parseEther.d.ts +2 -0
- package/dist/types/utils/unit/parseEther.d.ts.map +1 -0
- package/dist/types/utils/unit/parseGwei.d.ts +2 -0
- package/dist/types/utils/unit/parseGwei.d.ts.map +1 -0
- package/dist/types/utils/unit/parseUnits.d.ts +2 -0
- package/dist/types/utils/unit/parseUnits.d.ts.map +1 -0
- package/dist/types/utils/wait.d.ts +2 -0
- package/dist/types/utils/wait.d.ts.map +1 -0
- package/dist/types/wallet.d.ts +11 -0
- package/dist/types/wallet.d.ts.map +1 -0
- package/dist/types/window.d.ts +2 -0
- package/dist/types/window.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/errors/version.ts +1 -1
@@ -1 +1 @@
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@wagmi+chains@1.7.0_typescript@5.0.4/node_modules/@wagmi/chains/dist/index.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/types.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/config.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/abi.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/errors.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/narrow.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/utils.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/formatabiparameter.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/formatabiparameters.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/formatabiitem.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/formatabi.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/types/signatures.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/types/utils.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/types/structs.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/parseabi.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/parseabiitem.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/parseabiparameter.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/parseabiparameters.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/errors/abiitem.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/errors/abiparameter.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/errors/signature.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/errors/splitparameters.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/errors/struct.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/index.d.ts","../src/types.ts","../src/optimism/types.ts","../src/celo/types.ts","../src/celo/serializers.ts","../src/celo/parsers.ts","../src/optimism/formatters.ts","../src/utils.ts","../src/celo/formatters.ts","../src/optimism/fees.ts","../src/index.ts","../../node_modules/.pnpm/@types+eslint@8.21.3/node_modules/@types/eslint/helpers.d.ts","../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../node_modules/.pnpm/@types+json-schema@7.0.11/node_modules/@types/json-schema/index.d.ts","../../node_modules/.pnpm/@types+eslint@8.21.3/node_modules/@types/eslint/index.d.ts","../../node_modules/.pnpm/@types+eslint-scope@3.7.4/node_modules/@types/eslint-scope/index.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/globals.global.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/@types+fs-extra@9.0.13/node_modules/@types/fs-extra/index.d.ts","../../node_modules/.pnpm/@types+ws@8.5.4/node_modules/@types/ws/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3bcf9975d4008cfaa7cba4ff7f18b23fc57ef071b5d04e3bd7417188b591dd0","impliedFormat":1},{"version":"5ccc253bac7ad7975d220b0ffb47eccd93dc25ca22cdc7c5618a71ef8bc74fd0","impliedFormat":1},{"version":"951764544f3d43eb6840981ab6a38ea614b0d02ba85e93ac098e33cc9cbcd16d","impliedFormat":1},{"version":"ce0fa2aa08100b77cb6463bff955bb3346b1c349fc8aba5480c3b99218be32f2","impliedFormat":1},{"version":"63634c0855e639ea7f609613d799bbb0dc774ec9f3242bc272c5567dc5ccd485","impliedFormat":1},{"version":"ac303649361211bd11853edd036802fd068f0cc0aaefef6af82e18426b2ba8d7","impliedFormat":1},{"version":"81d79ed404fd43ebea2b42b4db5d4a36264503aee83b49975e685880ac797508","impliedFormat":1},{"version":"fd454416a37c311df532c9bc45c66ce00dc80b6f093c42d8242b69433fdee484","impliedFormat":1},{"version":"89c66198a7db1a95a5a1120573334d9963eed7678e51b6b84eee0e0ae612c5f6","impliedFormat":1},{"version":"69b503caddad27cb99ea62204e24fe061ea63664870c6ad2d31dcef5ff3914a0","impliedFormat":1},{"version":"12add8b9d557be5e629d76ab6ec73ecc4ea2e0c77df1c47ec1da89cab2be5dbd","impliedFormat":1},{"version":"e0ff4934a062b7b90b7bc3c32c323d110b140e105ef7fdfe111a474dccf047bd","impliedFormat":1},{"version":"b66f64931b7d840839788ad332760b38ffde975a5193405b5f61c59a0c79229b","impliedFormat":1},{"version":"cb14ca1f254df0344f717d3e5a832736377410cfd786a0ba59aba8e76849197d","impliedFormat":1},{"version":"f5742eccfdeaa904e6e7618b9cacb5b4669465718fcb10cb45d0cd071fc0ec84","impliedFormat":1},{"version":"e54fbc8f58130c95e75dc512fccd01d3df18ab6db1f1075f5210e084590b2961","impliedFormat":1},{"version":"1a2108b91af6f1ca36724cc5bd6938a654fff4810edcab5663ad952b677862fb","impliedFormat":1},{"version":"a69bf85101e61d32dbeb1d9bfe8f9f733494af634df01d3c1bc54c6649d928d9","impliedFormat":1},{"version":"d364c8df7d52199f5d011b4ded96f36dd114b984f5ee2e50ffe7d30ac1ab4bba","impliedFormat":1},{"version":"408f9eb3c7a3533bf5f07e0cde110a5ee0702864795ee6727792520fe60320b6","impliedFormat":1},{"version":"ba79eb15c36ff23e352ef608ceb7f9f0f278b15ad42512c05eedbe78f228e0e4","impliedFormat":1},{"version":"4cd233c6af471432253a67ae4f3b43c85e58a71418d98c3e162a1dac975c68f6","impliedFormat":1},{"version":"aa77c7d8ddc961e8192bcaa92da140e1205f8aee78bfadead5f52b8844d7d05c","impliedFormat":1},{"version":"c9b67818d4e8e06001a874c985698957f3994fff1ff440da69590f7b19855653","impliedFormat":1},{"version":"333c6f2e894abbad4cf5cb70d236a116b5c31d799e262499fa2c16090696f410","impliedFormat":99},{"version":"145761692b68905dc34eacd4c86674b93db9c9a9c7271c51e2886f1c5731125b","impliedFormat":99},{"version":"d452ef517ea6a8699020c8444e3609eb48402b4fc05d728a8268a848a9424755","impliedFormat":99},{"version":"dcb37dfbd18d44a59149eab4fb4e12a4c2846183894cdb514359b9e1a60eeae2","impliedFormat":99},{"version":"681fd7ccf8528e50a13082769f28aec925cd8473591dd652cd11321900e5221e","impliedFormat":99},{"version":"b12f91e7eca812f77f6000e7b11e1da35f596c8f3f4f8b6ed65353674f61c226","impliedFormat":99},{"version":"8d12648aeec416f43b7a349032b10ca94b31624084fd4cf73f148432e96de53e","impliedFormat":99},{"version":"1083397726f793fa422468c63262d17b5b2315a9e648d76d67f5992a1e07af67","impliedFormat":99},{"version":"a45c4fc84c1b7ada6127d8e7243073fadca60d74c86c44b6e005b07f7f5d3784","impliedFormat":99},{"version":"6354e269bc59b11071287174012a7cfa28bf7ffc6098822ad95148c793c1738e","impliedFormat":99},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"7ef2c2fd6c34f20cfabecfc8b0b918dbb30d86773ca58071cadc19c2379e0f95","impliedFormat":1},{"version":"e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","impliedFormat":1},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true,"impliedFormat":1},{"version":"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f","impliedFormat":1},{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true,"impliedFormat":1},{"version":"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","impliedFormat":1},{"version":"216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","impliedFormat":1},{"version":"1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","impliedFormat":1},{"version":"e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","impliedFormat":1},{"version":"a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","impliedFormat":1},{"version":"7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"4f3fdeba4e28e21aa719c081b8dc8f91d47e12e773389b9d35679c08151c9d37","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7","impliedFormat":1},{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true,"impliedFormat":1},{"version":"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","impliedFormat":1},{"version":"0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","impliedFormat":1},{"version":"ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","impliedFormat":1},{"version":"77c5c7f8578d139c74102a29384f5f4f0792a12d819ddcdcaf8307185ff2d45d","impliedFormat":1}],"root":[[82,91]],"options":{"allowSyntheticDefaultImports":false,"esModuleInterop":false,"importHelpers":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./cjs","removeComments":true,"rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":8,"useDefineForClassFields":true,"useUnknownInCatchVariables":true},"fileIdsList":[[82,84,88,143],[84,85,143],[82,84,143],[81,83,143],[58,82,85,87,88,89,90,143],[82,143],[82,83,88,143],[143],[58,81,143],[82,83,84,85,86,87,89,143],[93,95,143],[92,93,94,143],[114,143,150],[97,143],[100,143],[101,106,134,143],[102,113,114,121,131,142,143],[102,103,113,121,143],[104,143],[105,106,114,122,143],[106,131,139,143],[107,109,113,121,143],[108,143],[109,110,143],[113,143],[111,113,143],[113,114,115,131,142,143],[113,114,115,128,131,134,143],[143,147],[109,116,121,131,142,143],[113,114,116,117,121,131,139,142,143],[116,118,131,139,142,143],[97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149],[113,119,143],[120,142,143],[109,113,121,131,143],[122,143],[123,143],[100,124,143],[125,141,143,147],[126,143],[127,143],[113,128,129,143],[128,130,143,145],[101,113,131,132,133,134,143],[101,131,133,143],[131,132,143],[134,143],[135,143],[113,137,138,143],[137,138,143],[106,121,131,139,143],[140,143],[121,141,143],[101,116,127,142,143],[106,143],[131,143,144],[143,145],[143,146],[101,106,113,115,124,131,142,143,145,147],[131,143,148],[113,116,118,131,139,142,143,148,150],[59,60,143],[59,143],[62,143],[61,62,69,143],[61,62,143],[61,67,143],[61,66,143],[59,61,143],[59,61,65,143],[59,61,69,70,71,143],[59,61,63,69,70,71,143],[59,61,69,70,143],[59,60,61,69,71,143],[60,61,62,63,64,65,66,67,68,72,73,74,75,76,77,78,79,80,143],[59,60,61,143]],"referencedMap":[[89,1],[86,2],[85,3],[84,4],[91,5],[90,6],[87,7],[83,8],[82,9],[88,10],[96,11],[92,8],[95,12],[93,8],[151,13],[94,8],[97,14],[98,14],[100,15],[101,16],[102,17],[103,18],[104,19],[105,20],[106,21],[107,22],[108,23],[109,24],[110,24],[112,25],[111,26],[113,25],[114,27],[115,28],[99,29],[149,8],[116,30],[117,31],[118,32],[150,33],[119,34],[120,35],[121,36],[122,37],[123,38],[124,39],[125,40],[126,41],[127,42],[128,43],[129,43],[130,44],[131,45],[133,46],[132,47],[134,48],[135,49],[136,8],[137,50],[138,51],[139,52],[140,53],[141,54],[142,55],[143,56],[144,57],[145,58],[146,59],[147,60],[148,61],[152,62],[58,8],[61,63],[60,64],[62,64],[76,65],[77,66],[78,67],[79,65],[80,65],[68,68],[67,69],[65,70],[66,71],[72,72],[73,73],[74,73],[75,73],[69,70],[71,74],[70,75],[81,76],[63,8],[59,8],[64,77],[56,8],[57,8],[10,8],[12,8],[11,8],[2,8],[13,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[3,8],[4,8],[24,8],[21,8],[22,8],[23,8],[25,8],[26,8],[27,8],[5,8],[28,8],[29,8],[30,8],[31,8],[6,8],[35,8],[32,8],[33,8],[34,8],[36,8],[7,8],[37,8],[42,8],[43,8],[38,8],[39,8],[40,8],[41,8],[8,8],[47,8],[44,8],[45,8],[46,8],[48,8],[9,8],[49,8],[50,8],[51,8],[54,8],[52,8],[53,8],[1,8],[55,8]],"exportedModulesMap":[[89,1],[86,2],[85,3],[84,4],[91,5],[90,6],[87,7],[83,8],[82,9],[88,10],[96,11],[92,8],[95,12],[93,8],[151,13],[94,8],[97,14],[98,14],[100,15],[101,16],[102,17],[103,18],[104,19],[105,20],[106,21],[107,22],[108,23],[109,24],[110,24],[112,25],[111,26],[113,25],[114,27],[115,28],[99,29],[149,8],[116,30],[117,31],[118,32],[150,33],[119,34],[120,35],[121,36],[122,37],[123,38],[124,39],[125,40],[126,41],[127,42],[128,43],[129,43],[130,44],[131,45],[133,46],[132,47],[134,48],[135,49],[136,8],[137,50],[138,51],[139,52],[140,53],[141,54],[142,55],[143,56],[144,57],[145,58],[146,59],[147,60],[148,61],[152,62],[58,8],[61,63],[60,64],[62,64],[76,65],[77,66],[78,67],[79,65],[80,65],[68,68],[67,69],[65,70],[66,71],[72,72],[73,73],[74,73],[75,73],[69,70],[71,74],[70,75],[81,76],[63,8],[59,8],[64,77],[56,8],[57,8],[10,8],[12,8],[11,8],[2,8],[13,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[3,8],[4,8],[24,8],[21,8],[22,8],[23,8],[25,8],[26,8],[27,8],[5,8],[28,8],[29,8],[30,8],[31,8],[6,8],[35,8],[32,8],[33,8],[34,8],[36,8],[7,8],[37,8],[42,8],[43,8],[38,8],[39,8],[40,8],[41,8],[8,8],[47,8],[44,8],[45,8],[46,8],[48,8],[9,8],[49,8],[50,8],[51,8],[54,8],[52,8],[53,8],[1,8],[55,8]],"semanticDiagnosticsPerFile":[[89,[{"file":"../src/celo/formatters.ts","start":71,"length":6,"messageText":"Cannot find module 'viem' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/celo/formatters.ts","start":638,"length":12,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'never'."},{"file":"../src/celo/formatters.ts","start":652,"length":10,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'never'."},{"file":"../src/celo/formatters.ts","start":664,"length":9,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'never'."},{"file":"../src/celo/formatters.ts","start":675,"length":7,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'never'."},{"file":"../src/celo/formatters.ts","start":684,"length":8,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'never'."},{"file":"../src/celo/formatters.ts","start":699,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '(args: CeloBlockOverrides & { transactions: any[] | Hash[]; }) => CeloBlockOverrides & { transactions: any[] | Hash[]; }' is not assignable to type '(_: unknown) => unknown'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'args' and '_' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'unknown' is not assignable to type 'CeloBlockOverrides & { transactions: any[] | Hash[]; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'unknown' is not assignable to type 'CeloBlockOverrides'.","category":1,"code":2322}]}]}]},"relatedInformation":[{"file":"../src/utils.ts","start":1009,"length":6,"messageText":"The expected type comes from property 'format' which is declared here on type '{ exclude?: never[] | undefined; format: (_: unknown) => unknown; }'","category":3,"code":6500}]}]],[86,[{"file":"../src/celo/parsers.ts","start":272,"length":6,"messageText":"Cannot find module 'viem' or its corresponding type declarations.","category":1,"code":2307}]],[85,[{"file":"../src/celo/serializers.ts","start":300,"length":6,"messageText":"Cannot find module 'viem' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/celo/serializers.ts","start":586,"length":2,"messageText":"Parameter 'tx' implicitly has an 'any' type.","category":1,"code":7006},{"file":"../src/celo/serializers.ts","start":590,"length":9,"messageText":"Parameter 'signature' implicitly has an 'any' type.","category":1,"code":7006}]],[84,[{"file":"../src/celo/types.ts","start":363,"length":6,"messageText":"Cannot find module 'viem' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/celo/types.ts","start":399,"length":15,"messageText":"Cannot find module 'viem/internal' or its corresponding type declarations.","category":1,"code":2307}]],91,90,[87,[{"file":"../src/optimism/formatters.ts","start":88,"length":6,"messageText":"Cannot find module 'viem' or its corresponding type declarations.","category":1,"code":2307}]],[83,[{"file":"../src/optimism/types.ts","start":244,"length":6,"messageText":"Cannot find module 'viem' or its corresponding type declarations.","category":1,"code":2307}]],[82,[{"file":"../src/types.ts","start":276,"length":6,"messageText":"Cannot find module 'viem' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/types.ts","start":313,"length":15,"messageText":"Cannot find module 'viem/internal' or its corresponding type declarations.","category":1,"code":2307}]],[88,[{"file":"../src/utils.ts","start":108,"length":6,"messageText":"Cannot find module 'viem' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/utils.ts","start":153,"length":15,"messageText":"Cannot find module 'viem/internal' or its corresponding type declarations.","category":1,"code":2307}]],96,92,95,93,151,94,97,98,100,101,102,103,104,105,106,107,108,109,110,112,111,113,114,115,99,149,116,117,118,150,119,120,121,122,123,124,125,126,127,128,129,130,131,133,132,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,152,58,61,60,62,76,77,78,79,80,68,67,65,66,72,73,74,75,69,71,70,81,63,59,64,56,57,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,54,52,53,1,55]},"version":"5.0.4"}
|
1
|
+
{"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@wagmi+chains@1.7.0_typescript@5.0.4/node_modules/@wagmi/chains/dist/index.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/types.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/config.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/abi.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/errors.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/narrow.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/utils.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/formatabiparameter.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/formatabiparameters.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/formatabiitem.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/formatabi.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/types/signatures.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/types/utils.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/types/structs.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/parseabi.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/parseabiitem.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/parseabiparameter.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/parseabiparameters.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/errors/abiitem.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/errors/abiparameter.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/errors/signature.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/errors/splitparameters.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/human-readable/errors/struct.d.ts","../../node_modules/.pnpm/abitype@0.9.3_typescript@5.1.6/node_modules/abitype/dist/types/index.d.ts","../../dist/types/actions/ens/getensaddress.d.ts","../../dist/types/actions/ens/getenstext.d.ts","../../dist/types/actions/ens/getensavatar.d.ts","../../dist/types/actions/ens/getensname.d.ts","../../dist/types/actions/ens/getensresolver.d.ts","../../dist/types/actions/public/gettransactionreceipt.d.ts","../../dist/types/actions/public/verifyhash.d.ts","../../dist/types/actions/public/verifymessage.d.ts","../../dist/types/actions/public/verifytypeddata.d.ts","../../dist/types/actions/public/waitfortransactionreceipt.d.ts","../../dist/types/actions/public/watchcontractevent.d.ts","../../dist/types/clients/decorators/public.d.ts","../../dist/types/clients/createpublicclient.d.ts","../../dist/types/actions/getcontract.d.ts","../../node_modules/.pnpm/@scure+bip32@1.3.0/node_modules/@scure/bip32/lib/index.d.ts","../../dist/types/utils/ens/labelhash.d.ts","../../dist/types/utils/ens/namehash.d.ts","../../dist/types/index.d.ts","../../dist/types/internal.d.ts","../src/types.ts","../src/optimism/types.ts","../src/celo/types.ts","../src/celo/serializers.ts","../src/celo/parsers.ts","../src/optimism/formatters.ts","../src/utils.ts","../src/celo/formatters.ts","../src/optimism/fees.ts","../src/index.ts","../../node_modules/.pnpm/@types+eslint@8.21.3/node_modules/@types/eslint/helpers.d.ts","../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../node_modules/.pnpm/@types+json-schema@7.0.11/node_modules/@types/json-schema/index.d.ts","../../node_modules/.pnpm/@types+eslint@8.21.3/node_modules/@types/eslint/index.d.ts","../../node_modules/.pnpm/@types+eslint-scope@3.7.4/node_modules/@types/eslint-scope/index.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/globals.global.d.ts","../../node_modules/.pnpm/@types+node@18.15.12/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/@types+fs-extra@9.0.13/node_modules/@types/fs-extra/index.d.ts","../../node_modules/.pnpm/@types+ws@8.5.4/node_modules/@types/ws/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3bcf9975d4008cfaa7cba4ff7f18b23fc57ef071b5d04e3bd7417188b591dd0","impliedFormat":1},{"version":"5ccc253bac7ad7975d220b0ffb47eccd93dc25ca22cdc7c5618a71ef8bc74fd0","impliedFormat":1},{"version":"951764544f3d43eb6840981ab6a38ea614b0d02ba85e93ac098e33cc9cbcd16d","impliedFormat":1},{"version":"ce0fa2aa08100b77cb6463bff955bb3346b1c349fc8aba5480c3b99218be32f2","impliedFormat":1},{"version":"63634c0855e639ea7f609613d799bbb0dc774ec9f3242bc272c5567dc5ccd485","impliedFormat":1},{"version":"ac303649361211bd11853edd036802fd068f0cc0aaefef6af82e18426b2ba8d7","impliedFormat":1},{"version":"81d79ed404fd43ebea2b42b4db5d4a36264503aee83b49975e685880ac797508","impliedFormat":1},{"version":"fd454416a37c311df532c9bc45c66ce00dc80b6f093c42d8242b69433fdee484","impliedFormat":1},{"version":"89c66198a7db1a95a5a1120573334d9963eed7678e51b6b84eee0e0ae612c5f6","impliedFormat":1},{"version":"69b503caddad27cb99ea62204e24fe061ea63664870c6ad2d31dcef5ff3914a0","impliedFormat":1},{"version":"12add8b9d557be5e629d76ab6ec73ecc4ea2e0c77df1c47ec1da89cab2be5dbd","impliedFormat":1},{"version":"e0ff4934a062b7b90b7bc3c32c323d110b140e105ef7fdfe111a474dccf047bd","impliedFormat":1},{"version":"b66f64931b7d840839788ad332760b38ffde975a5193405b5f61c59a0c79229b","impliedFormat":1},{"version":"cb14ca1f254df0344f717d3e5a832736377410cfd786a0ba59aba8e76849197d","impliedFormat":1},{"version":"f5742eccfdeaa904e6e7618b9cacb5b4669465718fcb10cb45d0cd071fc0ec84","impliedFormat":1},{"version":"e54fbc8f58130c95e75dc512fccd01d3df18ab6db1f1075f5210e084590b2961","impliedFormat":1},{"version":"1a2108b91af6f1ca36724cc5bd6938a654fff4810edcab5663ad952b677862fb","impliedFormat":1},{"version":"a69bf85101e61d32dbeb1d9bfe8f9f733494af634df01d3c1bc54c6649d928d9","impliedFormat":1},{"version":"d364c8df7d52199f5d011b4ded96f36dd114b984f5ee2e50ffe7d30ac1ab4bba","impliedFormat":1},{"version":"408f9eb3c7a3533bf5f07e0cde110a5ee0702864795ee6727792520fe60320b6","impliedFormat":1},{"version":"ba79eb15c36ff23e352ef608ceb7f9f0f278b15ad42512c05eedbe78f228e0e4","impliedFormat":1},{"version":"4cd233c6af471432253a67ae4f3b43c85e58a71418d98c3e162a1dac975c68f6","impliedFormat":1},{"version":"aa77c7d8ddc961e8192bcaa92da140e1205f8aee78bfadead5f52b8844d7d05c","impliedFormat":1},{"version":"c9b67818d4e8e06001a874c985698957f3994fff1ff440da69590f7b19855653","impliedFormat":1},{"version":"9d295b5eada654e9db8e987f5ff65da0cb3d9d924df4231668ac69ce2c142de6","impliedFormat":99},{"version":"0c9bd5894ab629a3c5b56c0e853ad7020afa30c4820d56391a68fc9780c061a8","impliedFormat":99},{"version":"95358835831718706f0d9ee8296ff47a37e80957408a9a93a51e93afc7cf8919","impliedFormat":99},{"version":"6dcea8b36ba2604c1d1228ce22ebe9866edd7d1943f9c8e2d9410f04300ecc28","impliedFormat":99},{"version":"d1d78453fe3859566f801a27a6cff72f2bd6ec3809315a73fa1026e0101d9789","impliedFormat":99},{"version":"44e941c6b09c9ece296ba253c106e91b3b9b5ff632366ee187cd64f084167ce6","impliedFormat":99},{"version":"150e19a0abf5c4a02444ce6039a6f2bfd488cc7abf1cace942129733573e9df5","impliedFormat":99},{"version":"a935adcb8946a8922b3cfdf371b681de61dabe282dfb191f78bca3aa604dbdac","impliedFormat":99},{"version":"0739f8f4b77d6c076753b761fae237315fb18791ff3f54997f6630d22ad3445f","impliedFormat":99},{"version":"bffe4394485a95cbb2b6516d00cb2096b7bfb859b3bf44a3381140b3dea5dece","impliedFormat":99},{"version":"0459639a78aef11279797bf40f95d3a9cb0867f7a649b9781597cf71dda87a36","impliedFormat":99},{"version":"cfe0cef8cd2253e51a6ff12eb1d127b2099b9195edf834ad661e4d4669a740af","impliedFormat":99},{"version":"af9d38e296ae3e4ba4ea8e44d9d29bfd62044f6cad596f5712ef5994e5472e2f","impliedFormat":99},{"version":"a72872005f6fb1338c44c76477612676f25e4ad3ac81c713f8a42bfb94622a66","impliedFormat":99},{"version":"e34b123b5031f7625e989c64cbaffa0e83b4f24c5b828bdbcad8e4c62730d9cb","impliedFormat":1},{"version":"2cf7f66d7bade8d1e96b4a29027bc6e5ad0ad4c629a79fac4412189332773ff8","impliedFormat":99},{"version":"c9bf2f91c96d539ce6b5c685d35862f3f74d8692c42a3c67c9949da3ab01db58","impliedFormat":99},{"version":"2abb6a06f915e62e297d89c448f85fb6559d25b17fe8b15a3d10f9ad9a5ba816","impliedFormat":99},{"version":"acb2d7527fab14fa756b01471fe8404651aa3e2e0ce90ec74398c746f4678c31","impliedFormat":99},{"version":"333c6f2e894abbad4cf5cb70d236a116b5c31d799e262499fa2c16090696f410","impliedFormat":99},{"version":"145761692b68905dc34eacd4c86674b93db9c9a9c7271c51e2886f1c5731125b","impliedFormat":99},{"version":"d452ef517ea6a8699020c8444e3609eb48402b4fc05d728a8268a848a9424755","impliedFormat":99},{"version":"dcb37dfbd18d44a59149eab4fb4e12a4c2846183894cdb514359b9e1a60eeae2","impliedFormat":99},{"version":"681fd7ccf8528e50a13082769f28aec925cd8473591dd652cd11321900e5221e","impliedFormat":99},{"version":"b12f91e7eca812f77f6000e7b11e1da35f596c8f3f4f8b6ed65353674f61c226","impliedFormat":99},{"version":"8d12648aeec416f43b7a349032b10ca94b31624084fd4cf73f148432e96de53e","impliedFormat":99},{"version":"1083397726f793fa422468c63262d17b5b2315a9e648d76d67f5992a1e07af67","impliedFormat":99},{"version":"a45c4fc84c1b7ada6127d8e7243073fadca60d74c86c44b6e005b07f7f5d3784","impliedFormat":99},{"version":"1d11adb213918a121b86e856c263f2b9dd29434f454106a4b158ae4a35083b62","impliedFormat":99},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"7ef2c2fd6c34f20cfabecfc8b0b918dbb30d86773ca58071cadc19c2379e0f95","impliedFormat":1},{"version":"e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","impliedFormat":1},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true,"impliedFormat":1},{"version":"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f","impliedFormat":1},{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true,"impliedFormat":1},{"version":"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","impliedFormat":1},{"version":"216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","impliedFormat":1},{"version":"1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","impliedFormat":1},{"version":"e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","impliedFormat":1},{"version":"a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","impliedFormat":1},{"version":"7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"4f3fdeba4e28e21aa719c081b8dc8f91d47e12e773389b9d35679c08151c9d37","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7","impliedFormat":1},{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true,"impliedFormat":1},{"version":"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","impliedFormat":1},{"version":"0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","impliedFormat":1},{"version":"ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","impliedFormat":1},{"version":"77c5c7f8578d139c74102a29384f5f4f0792a12d819ddcdcaf8307185ff2d45d","impliedFormat":1}],"root":[[101,110]],"options":{"allowSyntheticDefaultImports":false,"esModuleInterop":false,"importHelpers":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./cjs","removeComments":true,"rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":8,"useDefineForClassFields":true,"useUnknownInCatchVariables":true},"fileIdsList":[[99,101,103,107,162],[99,103,104,162],[99,101,103,162],[81,99,100,102,162],[58,99,104,106,107,108,109,162],[101,162],[99,101,102,107,162],[99,162],[58,81,99,100,162],[99,100,101,102,103,104,105,106,108,162],[81,162],[83,162],[81,92,94,162],[81,88,162],[87,162],[93,162],[81,82,83,84,85,86,87,89,90,91,92,162],[81,82,85,86,87,88,91,92,93,94,95,96,97,98,162],[162],[112,114,162],[111,112,113,162],[133,162,169],[116,162],[119,162],[120,125,153,162],[121,132,133,140,150,161,162],[121,122,132,140,162],[123,162],[124,125,133,141,162],[125,150,158,162],[126,128,132,140,162],[127,162],[128,129,162],[132,162],[130,132,162],[132,133,134,150,161,162],[132,133,134,147,150,153,162],[162,166],[128,135,140,150,161,162],[132,133,135,136,140,150,158,161,162],[135,137,150,158,161,162],[116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168],[132,138,162],[139,161,162],[128,132,140,150,162],[141,162],[142,162],[119,143,162],[144,160,162,166],[145,162],[146,162],[132,147,148,162],[147,149,162,164],[120,132,150,151,152,153,162],[120,150,152,162],[150,151,162],[153,162],[154,162],[132,156,157,162],[156,157,162],[125,140,150,158,162],[159,162],[140,160,162],[120,135,146,161,162],[125,162],[150,162,163],[162,164],[162,165],[120,125,132,134,143,150,161,162,164,166],[150,162,167],[132,135,137,150,158,161,162,167,169],[59,60,162],[59,162],[62,162],[61,62,69,162],[61,62,162],[61,67,162],[61,66,162],[59,61,162],[59,61,65,162],[59,61,69,70,71,162],[59,61,63,69,70,71,162],[59,61,69,70,162],[59,60,61,69,71,162],[60,61,62,63,64,65,66,67,68,72,73,74,75,76,77,78,79,80,162],[59,60,61,162]],"referencedMap":[[108,1],[105,2],[104,3],[103,4],[110,5],[109,6],[106,7],[102,8],[101,9],[107,10],[82,11],[84,12],[85,11],[86,11],[83,11],[95,13],[87,8],[88,11],[89,14],[90,14],[91,15],[92,11],[94,16],[93,17],[99,18],[100,19],[97,19],[98,19],[96,19],[115,20],[111,19],[114,21],[112,19],[170,22],[113,19],[116,23],[117,23],[119,24],[120,25],[121,26],[122,27],[123,28],[124,29],[125,30],[126,31],[127,32],[128,33],[129,33],[131,34],[130,35],[132,34],[133,36],[134,37],[118,38],[168,19],[135,39],[136,40],[137,41],[169,42],[138,43],[139,44],[140,45],[141,46],[142,47],[143,48],[144,49],[145,50],[146,51],[147,52],[148,52],[149,53],[150,54],[152,55],[151,56],[153,57],[154,58],[155,19],[156,59],[157,60],[158,61],[159,62],[160,63],[161,64],[162,65],[163,66],[164,67],[165,68],[166,69],[167,70],[171,71],[58,19],[61,72],[60,73],[62,73],[76,74],[77,75],[78,76],[79,74],[80,74],[68,77],[67,78],[65,79],[66,80],[72,81],[73,82],[74,82],[75,82],[69,79],[71,83],[70,84],[81,85],[63,19],[59,19],[64,86],[56,19],[57,19],[10,19],[12,19],[11,19],[2,19],[13,19],[14,19],[15,19],[16,19],[17,19],[18,19],[19,19],[20,19],[3,19],[4,19],[24,19],[21,19],[22,19],[23,19],[25,19],[26,19],[27,19],[5,19],[28,19],[29,19],[30,19],[31,19],[6,19],[35,19],[32,19],[33,19],[34,19],[36,19],[7,19],[37,19],[42,19],[43,19],[38,19],[39,19],[40,19],[41,19],[8,19],[47,19],[44,19],[45,19],[46,19],[48,19],[9,19],[49,19],[50,19],[51,19],[54,19],[52,19],[53,19],[1,19],[55,19]],"exportedModulesMap":[[108,1],[105,2],[104,3],[103,4],[110,5],[109,6],[106,7],[102,8],[101,9],[107,10],[82,11],[84,12],[85,11],[86,11],[83,11],[95,13],[87,8],[88,11],[89,14],[90,14],[91,15],[92,11],[94,16],[93,17],[99,18],[100,19],[97,19],[98,19],[96,19],[115,20],[111,19],[114,21],[112,19],[170,22],[113,19],[116,23],[117,23],[119,24],[120,25],[121,26],[122,27],[123,28],[124,29],[125,30],[126,31],[127,32],[128,33],[129,33],[131,34],[130,35],[132,34],[133,36],[134,37],[118,38],[168,19],[135,39],[136,40],[137,41],[169,42],[138,43],[139,44],[140,45],[141,46],[142,47],[143,48],[144,49],[145,50],[146,51],[147,52],[148,52],[149,53],[150,54],[152,55],[151,56],[153,57],[154,58],[155,19],[156,59],[157,60],[158,61],[159,62],[160,63],[161,64],[162,65],[163,66],[164,67],[165,68],[166,69],[167,70],[171,71],[58,19],[61,72],[60,73],[62,73],[76,74],[77,75],[78,76],[79,74],[80,74],[68,77],[67,78],[65,79],[66,80],[72,81],[73,82],[74,82],[75,82],[69,79],[71,83],[70,84],[81,85],[63,19],[59,19],[64,86],[56,19],[57,19],[10,19],[12,19],[11,19],[2,19],[13,19],[14,19],[15,19],[16,19],[17,19],[18,19],[19,19],[20,19],[3,19],[4,19],[24,19],[21,19],[22,19],[23,19],[25,19],[26,19],[27,19],[5,19],[28,19],[29,19],[30,19],[31,19],[6,19],[35,19],[32,19],[33,19],[34,19],[36,19],[7,19],[37,19],[42,19],[43,19],[38,19],[39,19],[40,19],[41,19],[8,19],[47,19],[44,19],[45,19],[46,19],[48,19],[9,19],[49,19],[50,19],[51,19],[54,19],[52,19],[53,19],[1,19],[55,19]],"semanticDiagnosticsPerFile":[[108,[{"file":"../src/celo/formatters.ts","start":638,"length":12,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'never'."},{"file":"../src/celo/formatters.ts","start":652,"length":10,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'never'."},{"file":"../src/celo/formatters.ts","start":664,"length":9,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'never'."},{"file":"../src/celo/formatters.ts","start":675,"length":7,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'never'."},{"file":"../src/celo/formatters.ts","start":684,"length":8,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'never'."},{"file":"../src/celo/formatters.ts","start":699,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '(args: CeloBlockOverrides & { transactions: any[] | Hash[]; }) => CeloBlockOverrides & { transactions: any[] | Hash[]; }' is not assignable to type '(_: unknown) => unknown'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'args' and '_' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'unknown' is not assignable to type 'CeloBlockOverrides & { transactions: any[] | Hash[]; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'unknown' is not assignable to type 'CeloBlockOverrides'.","category":1,"code":2322}]}]}]},"relatedInformation":[{"file":"../src/utils.ts","start":1009,"length":6,"messageText":"The expected type comes from property 'format' which is declared here on type '{ exclude?: never[] | undefined; format: (_: unknown) => unknown; }'","category":3,"code":6500}]}]],105,[104,[{"file":"../src/celo/serializers.ts","start":586,"length":2,"messageText":"Parameter 'tx' implicitly has an 'any' type.","category":1,"code":7006},{"file":"../src/celo/serializers.ts","start":590,"length":9,"messageText":"Parameter 'signature' implicitly has an 'any' type.","category":1,"code":7006}]],103,110,109,106,102,[101,[{"file":"../src/types.ts","start":143,"length":24,"messageText":"Module '\"viem\"' has no exported member 'PrepareRequestParameters'.","category":1,"code":2305},{"file":"../src/types.ts","start":224,"length":30,"messageText":"'\"viem\"' has no exported member named 'TransactionSerializableGeneric'. Did you mean 'TransactionSerializable'?","category":1,"code":2724}]],[107,[{"file":"../src/utils.ts","start":47,"length":24,"messageText":"'\"viem\"' has no exported member named 'formatTransactionReceipt'. Did you mean 'FormattedTransactionReceipt'?","category":1,"code":2724}]],82,84,85,86,83,95,87,88,89,90,91,92,94,93,99,100,97,98,96,115,111,114,112,170,113,116,117,119,120,121,122,123,124,125,126,127,128,129,131,130,132,133,134,118,168,135,136,137,169,138,139,140,141,142,143,144,145,146,147,148,149,150,152,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,58,61,60,62,76,77,78,79,80,68,67,65,66,72,73,74,75,69,71,70,81,63,59,64,56,57,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,54,52,53,1,55]},"version":"5.0.4"}
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export const version = '1.6.
|
1
|
+
export const version = '1.6.7';
|
2
2
|
//# sourceMappingURL=version.js.map
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export { type DecodeAbiParametersReturnType, decodeAbiParameters, } from './utils/abi/decodeAbiParameters.js';
|
2
|
+
export { type EncodeAbiParametersReturnType, encodeAbiParameters, } from './utils/abi/encodeAbiParameters.js';
|
3
|
+
export { type GetAbiItemParameters, getAbiItem, } from './utils/abi/getAbiItem.js';
|
4
|
+
export { type ParseAbi, type ParseAbiItem, type ParseAbiParameter, type ParseAbiParameters, parseAbi, parseAbiItem, parseAbiParameter, parseAbiParameters, } from 'abitype';
|
5
|
+
export { encodePacked } from './utils/abi/encodePacked.js';
|
6
|
+
//# sourceMappingURL=abi.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"abi.d.ts","sourceRoot":"","sources":["../../src/abi.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,6BAA6B,EAClC,mBAAmB,GACpB,MAAM,oCAAoC,CAAA;AAC3C,OAAO,EACL,KAAK,6BAA6B,EAClC,mBAAmB,GACpB,MAAM,oCAAoC,CAAA;AAC3C,OAAO,EACL,KAAK,oBAAoB,EACzB,UAAU,GACX,MAAM,2BAA2B,CAAA;AAClC,OAAO,EACL,KAAK,QAAQ,EACb,KAAK,YAAY,EACjB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,QAAQ,EACR,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,GACnB,MAAM,SAAS,CAAA;AAChB,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAA"}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/**
|
2
|
+
* @description Generates a random mnemonic phrase with a given wordlist.
|
3
|
+
*
|
4
|
+
* @param wordlist The wordlist to use for generating the mnemonic phrase.
|
5
|
+
*
|
6
|
+
* @returns A randomly generated mnemonic phrase.
|
7
|
+
*/
|
8
|
+
export declare function generateMnemonic(wordlist: string[]): string;
|
9
|
+
//# sourceMappingURL=generateMnemonic.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"generateMnemonic.d.ts","sourceRoot":"","sources":["../../../src/accounts/generateMnemonic.ts"],"names":[],"mappings":"AAEA;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,GAAG,MAAM,CAE3D"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"generatePrivateKey.d.ts","sourceRoot":"","sources":["../../../src/accounts/generatePrivateKey.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,kBAAkB,CAAA;AAG3C;;;;GAIG;AACH,wBAAgB,kBAAkB,IAAI,GAAG,CAExC"}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import type { HDKey } from '@scure/bip32';
|
2
|
+
import type { HDAccount, HDOptions } from './types.js';
|
3
|
+
/**
|
4
|
+
* @description Creates an Account from a HD Key.
|
5
|
+
*
|
6
|
+
* @returns A HD Account.
|
7
|
+
*/
|
8
|
+
export declare function hdKeyToAccount(hdKey_: HDKey, { accountIndex, addressIndex, changeIndex, path }?: HDOptions): HDAccount;
|
9
|
+
//# sourceMappingURL=hdKeyToAccount.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"hdKeyToAccount.d.ts","sourceRoot":"","sources":["../../../src/accounts/hdKeyToAccount.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,cAAc,CAAA;AAKzC,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,YAAY,CAAA;AAEtD;;;;GAIG;AACH,wBAAgB,cAAc,CAC5B,MAAM,EAAE,KAAK,EACb,EAAE,YAAgB,EAAE,YAAgB,EAAE,WAAe,EAAE,IAAI,EAAE,GAAE,SAAc,GAC5E,SAAS,CAUX"}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
export type { Address } from 'abitype';
|
2
|
+
export { HDKey } from '@scure/bip32';
|
3
|
+
export { generateMnemonic } from './generateMnemonic.js';
|
4
|
+
export { generatePrivateKey } from './generatePrivateKey.js';
|
5
|
+
export { hdKeyToAccount } from './hdKeyToAccount.js';
|
6
|
+
export { mnemonicToAccount } from './mnemonicToAccount.js';
|
7
|
+
export { privateKeyToAccount } from './privateKeyToAccount.js';
|
8
|
+
export { toAccount } from './toAccount.js';
|
9
|
+
export type { Account, AccountSource, CustomSource, HDOptions, JsonRpcAccount, LocalAccount, HDAccount, PrivateKeyAccount, } from './types.js';
|
10
|
+
export { type SignParameters, type SignReturnType, sign } from './utils/sign.js';
|
11
|
+
export { signatureToHex } from '../utils/signature/signatureToHex.js';
|
12
|
+
export { type SignMessageParameters, type SignMessageReturnType, signMessage, } from './utils/signMessage.js';
|
13
|
+
export { type SignTransactionParameters, type SignTransactionReturnType, signTransaction, } from './utils/signTransaction.js';
|
14
|
+
export { type SignTypedDataParameters, type SignTypedDataReturnType, signTypedData, } from './utils/signTypedData.js';
|
15
|
+
export { parseAccount } from './utils/parseAccount.js';
|
16
|
+
export { publicKeyToAddress } from './utils/publicKeyToAddress.js';
|
17
|
+
export { privateKeyToAddress } from './utils/privateKeyToAddress.js';
|
18
|
+
export { czech } from './wordlists/czech.js';
|
19
|
+
export { english } from './wordlists/english.js';
|
20
|
+
export { french } from './wordlists/french.js';
|
21
|
+
export { italian } from './wordlists/italian.js';
|
22
|
+
export { japanese } from './wordlists/japanese.js';
|
23
|
+
export { korean } from './wordlists/korean.js';
|
24
|
+
export { simplifiedChinese } from './wordlists/simplifiedChinese.js';
|
25
|
+
export { spanish } from './wordlists/spanish.js';
|
26
|
+
export { traditionalChinese } from './wordlists/traditionalChinese.js';
|
27
|
+
//# sourceMappingURL=index.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/accounts/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAA;AACpC,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AACxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAC1D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAA;AAC9D,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAC1C,YAAY,EACV,OAAO,EACP,aAAa,EACb,YAAY,EACZ,SAAS,EACT,cAAc,EACd,YAAY,EACZ,SAAS,EACT,iBAAiB,GAClB,MAAM,YAAY,CAAA;AACnB,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,cAAc,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAA;AAChF,OAAO,EAAE,cAAc,EAAE,MAAM,sCAAsC,CAAA;AACrE,OAAO,EACL,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,WAAW,GACZ,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EACL,KAAK,yBAAyB,EAC9B,KAAK,yBAAyB,EAC9B,eAAe,GAChB,MAAM,4BAA4B,CAAA;AACnC,OAAO,EACL,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,EAC5B,aAAa,GACd,MAAM,0BAA0B,CAAA;AACjC,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAA;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAA;AAClE,OAAO,EAAE,mBAAmB,EAAE,MAAM,gCAAgC,CAAA;AACpE,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAA;AAC5C,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAA;AAChD,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAA;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAA;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAA;AAClD,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAA;AAC9C,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAA;AACpE,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAA;AAChD,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAA"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import type { HDAccount, HDOptions } from './types.js';
|
2
|
+
/**
|
3
|
+
* @description Creates an Account from a mnemonic phrase.
|
4
|
+
*
|
5
|
+
* @returns A HD Account.
|
6
|
+
*/
|
7
|
+
export declare function mnemonicToAccount(mnemonic: string, opts?: HDOptions): HDAccount;
|
8
|
+
//# sourceMappingURL=mnemonicToAccount.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"mnemonicToAccount.d.ts","sourceRoot":"","sources":["../../../src/accounts/mnemonicToAccount.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,YAAY,CAAA;AAEtD;;;;GAIG;AACH,wBAAgB,iBAAiB,CAC/B,QAAQ,EAAE,MAAM,EAChB,IAAI,GAAE,SAAc,GACnB,SAAS,CAGX"}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import type { Hex } from '../types/misc.js';
|
2
|
+
import type { PrivateKeyAccount } from './types.js';
|
3
|
+
/**
|
4
|
+
* @description Creates an Account from a private key.
|
5
|
+
*
|
6
|
+
* @returns A Private Key Account.
|
7
|
+
*/
|
8
|
+
export declare function privateKeyToAccount(privateKey: Hex): PrivateKeyAccount;
|
9
|
+
//# sourceMappingURL=privateKeyToAccount.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"privateKeyToAccount.d.ts","sourceRoot":"","sources":["../../../src/accounts/privateKeyToAccount.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,kBAAkB,CAAA;AAI3C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA;AAMnD;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,UAAU,EAAE,GAAG,GAAG,iBAAiB,CAsBtE"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import type { Address } from 'abitype';
|
2
|
+
import type { AccountSource, CustomSource, JsonRpcAccount, LocalAccount } from './types.js';
|
3
|
+
type GetAccountReturnType<TAccountSource extends AccountSource> = (TAccountSource extends Address ? JsonRpcAccount : never) | (TAccountSource extends CustomSource ? LocalAccount : never);
|
4
|
+
/**
|
5
|
+
* @description Creates an Account from a custom signing implementation.
|
6
|
+
*
|
7
|
+
* @returns A Local Account.
|
8
|
+
*/
|
9
|
+
export declare function toAccount<TAccountSource extends AccountSource>(source: TAccountSource): GetAccountReturnType<TAccountSource>;
|
10
|
+
export {};
|
11
|
+
//# sourceMappingURL=toAccount.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"toAccount.d.ts","sourceRoot":"","sources":["../../../src/accounts/toAccount.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAKtC,OAAO,KAAK,EACV,aAAa,EACb,YAAY,EACZ,cAAc,EACd,YAAY,EACb,MAAM,YAAY,CAAA;AAEnB,KAAK,oBAAoB,CAAC,cAAc,SAAS,aAAa,IAC1D,CAAC,cAAc,SAAS,OAAO,GAAG,cAAc,GAAG,KAAK,CAAC,GACzD,CAAC,cAAc,SAAS,YAAY,GAAG,YAAY,GAAG,KAAK,CAAC,CAAA;AAEhE;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,cAAc,SAAS,aAAa,EAC5D,MAAM,EAAE,cAAc,GACrB,oBAAoB,CAAC,cAAc,CAAC,CAmBtC"}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
import type { HDKey } from '@scure/bip32';
|
2
|
+
import type { Address, TypedData } from 'abitype';
|
3
|
+
import type { Hash, Hex, SignableMessage } from '../types/misc.js';
|
4
|
+
import type { TransactionSerializable, TransactionSerialized } from '../types/transaction.js';
|
5
|
+
import type { TypedDataDefinition } from '../types/typedData.js';
|
6
|
+
import type { IsNarrowable } from '../types/utils.js';
|
7
|
+
import type { GetTransactionType } from '../utils/transaction/getTransactionType.js';
|
8
|
+
import type { SerializeTransactionFn } from '../utils/transaction/serializeTransaction.js';
|
9
|
+
export type Account<TAddress extends Address = Address> = JsonRpcAccount<TAddress> | LocalAccount<string, TAddress>;
|
10
|
+
export type AccountSource = Address | CustomSource;
|
11
|
+
export type CustomSource = {
|
12
|
+
address: Address;
|
13
|
+
signMessage: ({ message }: {
|
14
|
+
message: SignableMessage;
|
15
|
+
}) => Promise<Hash>;
|
16
|
+
signTransaction: <TTransactionSerializable extends TransactionSerializable>(transaction: TTransactionSerializable, args?: {
|
17
|
+
serializer?: SerializeTransactionFn<TTransactionSerializable>;
|
18
|
+
}) => Promise<IsNarrowable<TransactionSerialized<GetTransactionType<TTransactionSerializable>>, Hash> extends true ? TransactionSerialized<GetTransactionType<TTransactionSerializable>> : Hash>;
|
19
|
+
signTypedData: <const TTypedData extends TypedData | {
|
20
|
+
[key: string]: unknown;
|
21
|
+
}, TPrimaryType extends string = string>(typedData: TypedDataDefinition<TTypedData, TPrimaryType>) => Promise<Hash>;
|
22
|
+
};
|
23
|
+
export type JsonRpcAccount<TAddress extends Address = Address> = {
|
24
|
+
address: TAddress;
|
25
|
+
type: 'json-rpc';
|
26
|
+
};
|
27
|
+
export type LocalAccount<TSource extends string = 'custom', TAddress extends Address = Address> = CustomSource & {
|
28
|
+
address: TAddress;
|
29
|
+
publicKey: Hex;
|
30
|
+
source: TSource;
|
31
|
+
type: 'local';
|
32
|
+
};
|
33
|
+
export type HDAccount = LocalAccount<'hd'> & {
|
34
|
+
getHdKey(): HDKey;
|
35
|
+
};
|
36
|
+
export type HDOptions = {
|
37
|
+
/** The account index to use in the path (`"m/44'/60'/${accountIndex}'/0/0"`). */
|
38
|
+
accountIndex?: number;
|
39
|
+
/** The address index to use in the path (`"m/44'/60'/0'/0/${addressIndex}"`). */
|
40
|
+
addressIndex?: number;
|
41
|
+
/** The change index to use in the path (`"m/44'/60'/0'/${changeIndex}/0"`). */
|
42
|
+
changeIndex?: number;
|
43
|
+
path?: never;
|
44
|
+
} | {
|
45
|
+
accountIndex?: never;
|
46
|
+
addressIndex?: never;
|
47
|
+
changeIndex?: never;
|
48
|
+
/** The HD path. */
|
49
|
+
path: `m/44'/60'/${string}`;
|
50
|
+
};
|
51
|
+
export type PrivateKeyAccount = LocalAccount<'privateKey'>;
|
52
|
+
//# sourceMappingURL=types.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/accounts/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,cAAc,CAAA;AAEzC,OAAO,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAEjD,OAAO,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAClE,OAAO,KAAK,EACV,uBAAuB,EACvB,qBAAqB,EACtB,MAAM,yBAAyB,CAAA;AAChC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAChE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAA;AACrD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,4CAA4C,CAAA;AACpF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,8CAA8C,CAAA;AAE1F,MAAM,MAAM,OAAO,CAAC,QAAQ,SAAS,OAAO,GAAG,OAAO,IAClD,cAAc,CAAC,QAAQ,CAAC,GACxB,YAAY,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;AAElC,MAAM,MAAM,aAAa,GAAG,OAAO,GAAG,YAAY,CAAA;AAClD,MAAM,MAAM,YAAY,GAAG;IACzB,OAAO,EAAE,OAAO,CAAA;IAChB,WAAW,EAAE,CAAC,EAAE,OAAO,EAAE,EAAE;QAAE,OAAO,EAAE,eAAe,CAAA;KAAE,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;IACzE,eAAe,EAAE,CAAC,wBAAwB,SAAS,uBAAuB,EACxE,WAAW,EAAE,wBAAwB,EACrC,IAAI,CAAC,EAAE;QACL,UAAU,CAAC,EAAE,sBAAsB,CAAC,wBAAwB,CAAC,CAAA;KAC9D,KACE,OAAO,CACV,YAAY,CACV,qBAAqB,CAAC,kBAAkB,CAAC,wBAAwB,CAAC,CAAC,EACnE,IAAI,CACL,SAAS,IAAI,GACV,qBAAqB,CAAC,kBAAkB,CAAC,wBAAwB,CAAC,CAAC,GACnE,IAAI,CACT,CAAA;IACD,aAAa,EAAE,CACb,KAAK,CAAC,UAAU,SAAS,SAAS,GAAG;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,EAC/D,YAAY,SAAS,MAAM,GAAG,MAAM,EAEpC,SAAS,EAAE,mBAAmB,CAAC,UAAU,EAAE,YAAY,CAAC,KACrD,OAAO,CAAC,IAAI,CAAC,CAAA;CACnB,CAAA;AAED,MAAM,MAAM,cAAc,CAAC,QAAQ,SAAS,OAAO,GAAG,OAAO,IAAI;IAC/D,OAAO,EAAE,QAAQ,CAAA;IACjB,IAAI,EAAE,UAAU,CAAA;CACjB,CAAA;AAED,MAAM,MAAM,YAAY,CACtB,OAAO,SAAS,MAAM,GAAG,QAAQ,EACjC,QAAQ,SAAS,OAAO,GAAG,OAAO,IAChC,YAAY,GAAG;IACjB,OAAO,EAAE,QAAQ,CAAA;IACjB,SAAS,EAAE,GAAG,CAAA;IACd,MAAM,EAAE,OAAO,CAAA;IACf,IAAI,EAAE,OAAO,CAAA;CACd,CAAA;AAED,MAAM,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,CAAC,GAAG;IAC3C,QAAQ,IAAI,KAAK,CAAA;CAClB,CAAA;AAED,MAAM,MAAM,SAAS,GACjB;IACE,iFAAiF;IACjF,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,iFAAiF;IACjF,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,+EAA+E;IAC/E,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,IAAI,CAAC,EAAE,KAAK,CAAA;CACb,GACD;IACE,YAAY,CAAC,EAAE,KAAK,CAAA;IACpB,YAAY,CAAC,EAAE,KAAK,CAAA;IACpB,WAAW,CAAC,EAAE,KAAK,CAAA;IACnB,mBAAmB;IACnB,IAAI,EAAE,aAAa,MAAM,EAAE,CAAA;CAC5B,CAAA;AAEL,MAAM,MAAM,iBAAiB,GAAG,YAAY,CAAC,YAAY,CAAC,CAAA"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"parseAccount.d.ts","sourceRoot":"","sources":["../../../../src/accounts/utils/parseAccount.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAEtC,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AAE1C,wBAAgB,YAAY,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,GAAG,OAAO,CAGhE"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import type { Address } from 'abitype';
|
2
|
+
import type { Hex } from '../../types/misc.js';
|
3
|
+
/**
|
4
|
+
* @description Converts an ECDSA private key to an address.
|
5
|
+
*
|
6
|
+
* @param privateKey The private key to convert.
|
7
|
+
*
|
8
|
+
* @returns The address.
|
9
|
+
*/
|
10
|
+
export declare function privateKeyToAddress(privateKey: Hex): Address;
|
11
|
+
//# sourceMappingURL=privateKeyToAddress.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"privateKeyToAddress.d.ts","sourceRoot":"","sources":["../../../../src/accounts/utils/privateKeyToAddress.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAEtC,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,qBAAqB,CAAA;AAI9C;;;;;;GAMG;AACH,wBAAgB,mBAAmB,CAAC,UAAU,EAAE,GAAG,GAAG,OAAO,CAK5D"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import type { Address } from 'abitype';
|
2
|
+
import type { Hex } from '../../types/misc.js';
|
3
|
+
/**
|
4
|
+
* @description Converts an ECDSA public key to an address.
|
5
|
+
*
|
6
|
+
* @param publicKey The public key to convert.
|
7
|
+
*
|
8
|
+
* @returns The address.
|
9
|
+
*/
|
10
|
+
export declare function publicKeyToAddress(publicKey: Hex): Address;
|
11
|
+
//# sourceMappingURL=publicKeyToAddress.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"publicKeyToAddress.d.ts","sourceRoot":"","sources":["../../../../src/accounts/utils/publicKeyToAddress.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAEtC,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,qBAAqB,CAAA;AAI9C;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,GAAG,GAAG,OAAO,CAG1D"}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import type { Hex, Signature } from '../../types/misc.js';
|
2
|
+
export type SignParameters = {
|
3
|
+
hash: Hex;
|
4
|
+
privateKey: Hex;
|
5
|
+
};
|
6
|
+
export type SignReturnType = Signature;
|
7
|
+
/**
|
8
|
+
* @description Signs a hash with a given private key.
|
9
|
+
*
|
10
|
+
* @param hash The hash to sign.
|
11
|
+
* @param privateKey The private key to sign with.
|
12
|
+
*
|
13
|
+
* @returns The signature.
|
14
|
+
*/
|
15
|
+
export declare function sign({ hash, privateKey, }: SignParameters): Promise<SignReturnType>;
|
16
|
+
//# sourceMappingURL=sign.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"sign.d.ts","sourceRoot":"","sources":["../../../../src/accounts/utils/sign.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;AAGzD,MAAM,MAAM,cAAc,GAAG;IAC3B,IAAI,EAAE,GAAG,CAAA;IACT,UAAU,EAAE,GAAG,CAAA;CAChB,CAAA;AACD,MAAM,MAAM,cAAc,GAAG,SAAS,CAAA;AAEtC;;;;;;;GAOG;AACH,wBAAsB,IAAI,CAAC,EACzB,IAAI,EACJ,UAAU,GACX,EAAE,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC,CAO1C"}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import type { Hex, SignableMessage } from '../../types/misc.js';
|
2
|
+
export type SignMessageParameters = {
|
3
|
+
/** The message to sign. */
|
4
|
+
message: SignableMessage;
|
5
|
+
/** The private key to sign with. */
|
6
|
+
privateKey: Hex;
|
7
|
+
};
|
8
|
+
export type SignMessageReturnType = Hex;
|
9
|
+
/**
|
10
|
+
* @description Calculates an Ethereum-specific signature in [EIP-191 format](https://eips.ethereum.org/EIPS/eip-191):
|
11
|
+
* `keccak256("\x19Ethereum Signed Message:\n" + len(message) + message))`.
|
12
|
+
*
|
13
|
+
* @returns The signature.
|
14
|
+
*/
|
15
|
+
export declare function signMessage({ message, privateKey, }: SignMessageParameters): Promise<SignMessageReturnType>;
|
16
|
+
//# sourceMappingURL=signMessage.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"signMessage.d.ts","sourceRoot":"","sources":["../../../../src/accounts/utils/signMessage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAA;AAM/D,MAAM,MAAM,qBAAqB,GAAG;IAClC,2BAA2B;IAC3B,OAAO,EAAE,eAAe,CAAA;IACxB,oCAAoC;IACpC,UAAU,EAAE,GAAG,CAAA;CAChB,CAAA;AACD,MAAM,MAAM,qBAAqB,GAAG,GAAG,CAAA;AAEvC;;;;;GAKG;AACH,wBAAsB,WAAW,CAAC,EAChC,OAAO,EACP,UAAU,GACX,EAAE,qBAAqB,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAGxD"}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import type { Hex } from '../../types/misc.js';
|
2
|
+
import type { TransactionSerializable, TransactionSerialized } from '../../types/transaction.js';
|
3
|
+
import type { GetTransactionType } from '../../utils/transaction/getTransactionType.js';
|
4
|
+
import { type SerializeTransactionFn } from '../../utils/transaction/serializeTransaction.js';
|
5
|
+
export type SignTransactionParameters<TTransactionSerializable extends TransactionSerializable = TransactionSerializable> = {
|
6
|
+
privateKey: Hex;
|
7
|
+
transaction: TTransactionSerializable;
|
8
|
+
serializer?: SerializeTransactionFn<TransactionSerializable & TTransactionSerializable>;
|
9
|
+
};
|
10
|
+
export type SignTransactionReturnType<TTransactionSerializable extends TransactionSerializable = TransactionSerializable> = TransactionSerialized<GetTransactionType<TTransactionSerializable>>;
|
11
|
+
export declare function signTransaction<TTransactionSerializable extends TransactionSerializable>({ privateKey, transaction, serializer, }: SignTransactionParameters<TTransactionSerializable>): Promise<SignTransactionReturnType<TTransactionSerializable>>;
|
12
|
+
//# sourceMappingURL=signTransaction.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"signTransaction.d.ts","sourceRoot":"","sources":["../../../../src/accounts/utils/signTransaction.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,qBAAqB,CAAA;AAC9C,OAAO,KAAK,EACV,uBAAuB,EACvB,qBAAqB,EACtB,MAAM,4BAA4B,CAAA;AAEnC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAA;AACvF,OAAO,EACL,KAAK,sBAAsB,EAE5B,MAAM,iDAAiD,CAAA;AAIxD,MAAM,MAAM,yBAAyB,CACnC,wBAAwB,SAAS,uBAAuB,GAAG,uBAAuB,IAChF;IACF,UAAU,EAAE,GAAG,CAAA;IACf,WAAW,EAAE,wBAAwB,CAAA;IACrC,UAAU,CAAC,EAAE,sBAAsB,CACjC,uBAAuB,GAAG,wBAAwB,CACnD,CAAA;CACF,CAAA;AACD,MAAM,MAAM,yBAAyB,CACnC,wBAAwB,SAAS,uBAAuB,GAAG,uBAAuB,IAChF,qBAAqB,CAAC,kBAAkB,CAAC,wBAAwB,CAAC,CAAC,CAAA;AAEvE,wBAAsB,eAAe,CACnC,wBAAwB,SAAS,uBAAuB,EACxD,EACA,UAAU,EACV,WAAW,EACX,UAAiC,GAClC,EAAE,yBAAyB,CAAC,wBAAwB,CAAC,GAAG,OAAO,CAC9D,yBAAyB,CAAC,wBAAwB,CAAC,CACpD,CASA"}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import type { TypedData } from 'abitype';
|
2
|
+
import type { Hex } from '../../types/misc.js';
|
3
|
+
import type { TypedDataDefinition } from '../../types/typedData.js';
|
4
|
+
export type SignTypedDataParameters<TTypedData extends TypedData | {
|
5
|
+
[key: string]: unknown;
|
6
|
+
} = TypedData, TPrimaryType extends string = string> = TypedDataDefinition<TTypedData, TPrimaryType> & {
|
7
|
+
/** The private key to sign with. */
|
8
|
+
privateKey: Hex;
|
9
|
+
};
|
10
|
+
export type SignTypedDataReturnType = Hex;
|
11
|
+
/**
|
12
|
+
* @description Signs typed data and calculates an Ethereum-specific signature in [EIP-191 format](https://eips.ethereum.org/EIPS/eip-191):
|
13
|
+
* `keccak256("\x19Ethereum Signed Message:\n" + len(message) + message))`.
|
14
|
+
*
|
15
|
+
* @returns The signature.
|
16
|
+
*/
|
17
|
+
export declare function signTypedData<const TTypedData extends TypedData | {
|
18
|
+
[key: string]: unknown;
|
19
|
+
}, TPrimaryType extends string = string>({ privateKey, ...typedData }: SignTypedDataParameters<TTypedData, TPrimaryType>): Promise<SignTypedDataReturnType>;
|
20
|
+
//# sourceMappingURL=signTypedData.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"signTypedData.d.ts","sourceRoot":"","sources":["../../../../src/accounts/utils/signTypedData.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,qBAAqB,CAAA;AAC9C,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAA;AASnE,MAAM,MAAM,uBAAuB,CACjC,UAAU,SAAS,SAAS,GAAG;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CAAE,GAAG,SAAS,EACrE,YAAY,SAAS,MAAM,GAAG,MAAM,IAClC,mBAAmB,CAAC,UAAU,EAAE,YAAY,CAAC,GAAG;IAClD,oCAAoC;IACpC,UAAU,EAAE,GAAG,CAAA;CAChB,CAAA;AAED,MAAM,MAAM,uBAAuB,GAAG,GAAG,CAAA;AAEzC;;;;;GAKG;AACH,wBAAsB,aAAa,CACjC,KAAK,CAAC,UAAU,SAAS,SAAS,GAAG;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CAAE,EAC/D,YAAY,SAAS,MAAM,GAAG,MAAM,EACpC,EACA,UAAU,EACV,GAAG,SAAS,EACb,EAAE,uBAAuB,CACxB,UAAU,EACV,YAAY,CACb,GAAG,OAAO,CAAC,uBAAuB,CAAC,CAMnC"}
|