viem 2.0.0-beta.8 → 2.0.0-rc.0
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/CHANGELOG.md +44 -0
- package/README.md +9 -3
- package/_cjs/actions/ens/getEnsName.js +4 -2
- package/_cjs/actions/ens/getEnsName.js.map +1 -1
- package/_cjs/actions/index.js +16 -2
- package/_cjs/actions/index.js.map +1 -1
- package/_cjs/actions/wallet/prepareTransactionRequest.js.map +1 -1
- package/_cjs/chains/definitions/arbitrumSepolia.js +4 -0
- package/_cjs/chains/definitions/arbitrumSepolia.js.map +1 -1
- package/_cjs/chains/definitions/base.js +5 -0
- package/_cjs/chains/definitions/base.js.map +1 -1
- package/_cjs/chains/definitions/baseGoerli.js +5 -0
- package/_cjs/chains/definitions/baseGoerli.js.map +1 -1
- package/_cjs/chains/definitions/baseSepolia.js +5 -0
- package/_cjs/chains/definitions/baseSepolia.js.map +1 -1
- package/_cjs/chains/definitions/fantomSonicTestnet.js +26 -0
- package/_cjs/chains/definitions/fantomSonicTestnet.js.map +1 -0
- package/_cjs/chains/definitions/optimism.js +5 -0
- package/_cjs/chains/definitions/optimism.js.map +1 -1
- package/_cjs/chains/definitions/optimismGoerli.js +5 -0
- package/_cjs/chains/definitions/optimismGoerli.js.map +1 -1
- package/_cjs/chains/definitions/optimismSepolia.js +5 -0
- package/_cjs/chains/definitions/optimismSepolia.js.map +1 -1
- package/_cjs/chains/definitions/pgn.js +12 -0
- package/_cjs/chains/definitions/pgn.js.map +1 -1
- package/_cjs/chains/definitions/pgnTestnet.js +7 -0
- package/_cjs/chains/definitions/pgnTestnet.js.map +1 -1
- package/_cjs/chains/definitions/zilliqa.js +26 -0
- package/_cjs/chains/definitions/zilliqa.js.map +1 -0
- package/_cjs/chains/definitions/zilliqaTestnet.js +26 -0
- package/_cjs/chains/definitions/zilliqaTestnet.js.map +1 -0
- package/_cjs/chains/definitions/zkSyncSepoliaTestnet.js +35 -0
- package/_cjs/chains/definitions/zkSyncSepoliaTestnet.js.map +1 -0
- package/_cjs/chains/definitions/zkSyncTestnet.js +4 -0
- package/_cjs/chains/definitions/zkSyncTestnet.js.map +1 -1
- package/_cjs/chains/definitions/zora.js +5 -0
- package/_cjs/chains/definitions/zora.js.map +1 -1
- package/_cjs/chains/definitions/zoraSepolia.js +5 -0
- package/_cjs/chains/definitions/zoraSepolia.js.map +1 -1
- package/_cjs/chains/index.js +12 -4
- package/_cjs/chains/index.js.map +1 -1
- package/_cjs/chains/opStack/abis.js +366 -1
- package/_cjs/chains/opStack/abis.js.map +1 -1
- package/_cjs/chains/opStack/actions/buildDepositTransaction.js +1 -1
- package/_cjs/chains/opStack/actions/buildDepositTransaction.js.map +1 -1
- package/_cjs/chains/opStack/actions/buildInitiateWithdrawal.js +29 -0
- package/_cjs/chains/opStack/actions/buildInitiateWithdrawal.js.map +1 -0
- package/_cjs/chains/opStack/actions/buildProveWithdrawal.js +39 -0
- package/_cjs/chains/opStack/actions/buildProveWithdrawal.js.map +1 -0
- package/_cjs/chains/opStack/actions/depositTransaction.js +11 -6
- package/_cjs/chains/opStack/actions/depositTransaction.js.map +1 -1
- package/_cjs/chains/opStack/actions/estimateDepositTransactionGas.js +37 -0
- package/_cjs/chains/opStack/actions/estimateDepositTransactionGas.js.map +1 -0
- package/_cjs/chains/opStack/actions/estimateFinalizeWithdrawalGas.js +29 -0
- package/_cjs/chains/opStack/actions/estimateFinalizeWithdrawalGas.js.map +1 -0
- package/_cjs/chains/opStack/actions/estimateInitiateWithdrawalGas.js +24 -0
- package/_cjs/chains/opStack/actions/estimateInitiateWithdrawalGas.js.map +1 -0
- package/_cjs/chains/opStack/actions/estimateProveWithdrawalGas.js +29 -0
- package/_cjs/chains/opStack/actions/estimateProveWithdrawalGas.js.map +1 -0
- package/_cjs/chains/opStack/actions/finalizeWithdrawal.js +33 -0
- package/_cjs/chains/opStack/actions/finalizeWithdrawal.js.map +1 -0
- package/_cjs/chains/opStack/actions/getL2Output.js +30 -0
- package/_cjs/chains/opStack/actions/getL2Output.js.map +1 -0
- package/_cjs/chains/opStack/actions/getTimeToFinalize.js +46 -0
- package/_cjs/chains/opStack/actions/getTimeToFinalize.js.map +1 -0
- package/_cjs/chains/opStack/actions/getTimeToNextL2Output.js +63 -0
- package/_cjs/chains/opStack/actions/getTimeToNextL2Output.js.map +1 -0
- package/_cjs/chains/opStack/actions/getTimeToProve.js +13 -0
- package/_cjs/chains/opStack/actions/getTimeToProve.js.map +1 -0
- package/_cjs/chains/opStack/actions/getWithdrawalStatus.js +71 -0
- package/_cjs/chains/opStack/actions/getWithdrawalStatus.js.map +1 -0
- package/_cjs/chains/opStack/actions/initiateWithdrawal.js +28 -0
- package/_cjs/chains/opStack/actions/initiateWithdrawal.js.map +1 -0
- package/_cjs/chains/opStack/actions/proveWithdrawal.js +33 -0
- package/_cjs/chains/opStack/actions/proveWithdrawal.js.map +1 -0
- package/_cjs/chains/opStack/actions/waitForNextL2Output.js +32 -0
- package/_cjs/chains/opStack/actions/waitForNextL2Output.js.map +1 -0
- package/_cjs/chains/opStack/actions/waitToFinalize.js +11 -0
- package/_cjs/chains/opStack/actions/waitToFinalize.js.map +1 -0
- package/_cjs/chains/opStack/actions/waitToProve.js +21 -0
- package/_cjs/chains/opStack/actions/waitToProve.js.map +1 -0
- package/_cjs/chains/opStack/chains.js +5 -1
- package/_cjs/chains/opStack/chains.js.map +1 -1
- package/_cjs/chains/opStack/decorators/publicL1.js +35 -0
- package/_cjs/chains/opStack/decorators/publicL1.js.map +1 -0
- package/_cjs/chains/opStack/decorators/publicL2.js +5 -1
- package/_cjs/chains/opStack/decorators/publicL2.js.map +1 -1
- package/_cjs/chains/opStack/decorators/walletL1.js +4 -0
- package/_cjs/chains/opStack/decorators/walletL1.js.map +1 -1
- package/_cjs/chains/opStack/decorators/walletL2.js +13 -0
- package/_cjs/chains/opStack/decorators/walletL2.js.map +1 -0
- package/_cjs/chains/opStack/errors/withdrawal.js +17 -0
- package/_cjs/chains/opStack/errors/withdrawal.js.map +1 -0
- package/_cjs/chains/opStack/index.js +43 -15
- package/_cjs/chains/opStack/index.js.map +1 -1
- package/_cjs/chains/opStack/types/deposit.js +3 -0
- package/_cjs/chains/opStack/types/deposit.js.map +1 -0
- package/_cjs/chains/opStack/types/withdrawal.js +3 -0
- package/_cjs/chains/opStack/types/withdrawal.js.map +1 -0
- package/_cjs/chains/opStack/utils/extractWithdrawalMessageLogs.js +14 -0
- package/_cjs/chains/opStack/utils/extractWithdrawalMessageLogs.js.map +1 -0
- package/_cjs/chains/opStack/utils/getL2TransactionHash.js +2 -2
- package/_cjs/chains/opStack/utils/getL2TransactionHash.js.map +1 -1
- package/_cjs/chains/opStack/utils/getWithdrawalHashStorageSlot.js +11 -0
- package/_cjs/chains/opStack/utils/getWithdrawalHashStorageSlot.js.map +1 -0
- package/_cjs/chains/opStack/utils/getWithdrawals.js +10 -0
- package/_cjs/chains/opStack/utils/getWithdrawals.js.map +1 -0
- package/_cjs/chains/opStack/utils/{fromOpaqueData.js → opaqueDataToDepositData.js} +4 -4
- package/_cjs/chains/opStack/utils/opaqueDataToDepositData.js.map +1 -0
- package/_cjs/errors/abi.js +21 -1
- package/_cjs/errors/abi.js.map +1 -1
- package/_cjs/errors/version.js +1 -1
- package/_cjs/errors/version.js.map +1 -1
- package/_cjs/index.js +10 -2
- package/_cjs/index.js.map +1 -1
- package/_cjs/utils/abi/getAbiItem.js +46 -3
- package/_cjs/utils/abi/getAbiItem.js.map +1 -1
- package/_cjs/utils/hash/ripemd160.js +16 -0
- package/_cjs/utils/hash/ripemd160.js.map +1 -0
- package/_cjs/utils/hash/sha256.js +16 -0
- package/_cjs/utils/hash/sha256.js.map +1 -0
- package/_cjs/utils/index.js +5 -1
- package/_cjs/utils/index.js.map +1 -1
- package/_esm/actions/ens/getEnsName.js +4 -2
- package/_esm/actions/ens/getEnsName.js.map +1 -1
- package/_esm/actions/index.js +7 -0
- package/_esm/actions/index.js.map +1 -1
- package/_esm/actions/wallet/prepareTransactionRequest.js.map +1 -1
- package/_esm/chains/definitions/arbitrumSepolia.js +4 -0
- package/_esm/chains/definitions/arbitrumSepolia.js.map +1 -1
- package/_esm/chains/definitions/base.js +5 -0
- package/_esm/chains/definitions/base.js.map +1 -1
- package/_esm/chains/definitions/baseGoerli.js +5 -0
- package/_esm/chains/definitions/baseGoerli.js.map +1 -1
- package/_esm/chains/definitions/baseSepolia.js +5 -0
- package/_esm/chains/definitions/baseSepolia.js.map +1 -1
- package/_esm/chains/definitions/fantomSonicTestnet.js +23 -0
- package/_esm/chains/definitions/fantomSonicTestnet.js.map +1 -0
- package/_esm/chains/definitions/optimism.js +5 -0
- package/_esm/chains/definitions/optimism.js.map +1 -1
- package/_esm/chains/definitions/optimismGoerli.js +5 -0
- package/_esm/chains/definitions/optimismGoerli.js.map +1 -1
- package/_esm/chains/definitions/optimismSepolia.js +5 -0
- package/_esm/chains/definitions/optimismSepolia.js.map +1 -1
- package/_esm/chains/definitions/pgn.js +12 -0
- package/_esm/chains/definitions/pgn.js.map +1 -1
- package/_esm/chains/definitions/pgnTestnet.js +7 -0
- package/_esm/chains/definitions/pgnTestnet.js.map +1 -1
- package/_esm/chains/definitions/zilliqa.js +23 -0
- package/_esm/chains/definitions/zilliqa.js.map +1 -0
- package/_esm/chains/definitions/zilliqaTestnet.js +23 -0
- package/_esm/chains/definitions/zilliqaTestnet.js.map +1 -0
- package/_esm/chains/definitions/zkSyncSepoliaTestnet.js +32 -0
- package/_esm/chains/definitions/zkSyncSepoliaTestnet.js.map +1 -0
- package/_esm/chains/definitions/zkSyncTestnet.js +5 -0
- package/_esm/chains/definitions/zkSyncTestnet.js.map +1 -1
- package/_esm/chains/definitions/zora.js +5 -0
- package/_esm/chains/definitions/zora.js.map +1 -1
- package/_esm/chains/definitions/zoraSepolia.js +5 -0
- package/_esm/chains/definitions/zoraSepolia.js.map +1 -1
- package/_esm/chains/index.js +4 -0
- package/_esm/chains/index.js.map +1 -1
- package/_esm/chains/opStack/abis.js +365 -0
- package/_esm/chains/opStack/abis.js.map +1 -1
- package/_esm/chains/opStack/actions/buildDepositTransaction.js +2 -2
- package/_esm/chains/opStack/actions/buildDepositTransaction.js.map +1 -1
- package/_esm/chains/opStack/actions/buildInitiateWithdrawal.js +50 -0
- package/_esm/chains/opStack/actions/buildInitiateWithdrawal.js.map +1 -0
- package/_esm/chains/opStack/actions/buildProveWithdrawal.js +59 -0
- package/_esm/chains/opStack/actions/buildProveWithdrawal.js.map +1 -0
- package/_esm/chains/opStack/actions/depositTransaction.js +17 -14
- package/_esm/chains/opStack/actions/depositTransaction.js.map +1 -1
- package/_esm/chains/opStack/actions/estimateDepositTransactionGas.js +62 -0
- package/_esm/chains/opStack/actions/estimateDepositTransactionGas.js.map +1 -0
- package/_esm/chains/opStack/actions/estimateFinalizeWithdrawalGas.js +50 -0
- package/_esm/chains/opStack/actions/estimateFinalizeWithdrawalGas.js.map +1 -0
- package/_esm/chains/opStack/actions/estimateInitiateWithdrawalGas.js +48 -0
- package/_esm/chains/opStack/actions/estimateInitiateWithdrawalGas.js.map +1 -0
- package/_esm/chains/opStack/actions/estimateProveWithdrawalGas.js +53 -0
- package/_esm/chains/opStack/actions/estimateProveWithdrawalGas.js.map +1 -0
- package/_esm/chains/opStack/actions/finalizeWithdrawal.js +53 -0
- package/_esm/chains/opStack/actions/finalizeWithdrawal.js.map +1 -0
- package/_esm/chains/opStack/actions/getL2Output.js +50 -0
- package/_esm/chains/opStack/actions/getL2Output.js.map +1 -0
- package/_esm/chains/opStack/actions/getTimeToFinalize.js +77 -0
- package/_esm/chains/opStack/actions/getTimeToFinalize.js.map +1 -0
- package/_esm/chains/opStack/actions/getTimeToNextL2Output.js +91 -0
- package/_esm/chains/opStack/actions/getTimeToNextL2Output.js.map +1 -0
- package/_esm/chains/opStack/actions/getTimeToProve.js +39 -0
- package/_esm/chains/opStack/actions/getTimeToProve.js.map +1 -0
- package/_esm/chains/opStack/actions/getWithdrawalStatus.js +99 -0
- package/_esm/chains/opStack/actions/getWithdrawalStatus.js.map +1 -0
- package/_esm/chains/opStack/actions/initiateWithdrawal.js +76 -0
- package/_esm/chains/opStack/actions/initiateWithdrawal.js.map +1 -0
- package/_esm/chains/opStack/actions/proveWithdrawal.js +57 -0
- package/_esm/chains/opStack/actions/proveWithdrawal.js.map +1 -0
- package/_esm/chains/opStack/actions/waitForNextL2Output.js +58 -0
- package/_esm/chains/opStack/actions/waitForNextL2Output.js.map +1 -0
- package/_esm/chains/opStack/actions/waitToFinalize.js +41 -0
- package/_esm/chains/opStack/actions/waitToFinalize.js.map +1 -0
- package/_esm/chains/opStack/actions/waitToProve.js +47 -0
- package/_esm/chains/opStack/actions/waitToProve.js.map +1 -0
- package/_esm/chains/opStack/chains.js +2 -0
- package/_esm/chains/opStack/chains.js.map +1 -1
- package/_esm/chains/opStack/decorators/publicL1.js +31 -0
- package/_esm/chains/opStack/decorators/publicL1.js.map +1 -0
- package/_esm/chains/opStack/decorators/publicL2.js +5 -1
- package/_esm/chains/opStack/decorators/publicL2.js.map +1 -1
- package/_esm/chains/opStack/decorators/walletL1.js +4 -0
- package/_esm/chains/opStack/decorators/walletL1.js.map +1 -1
- package/_esm/chains/opStack/decorators/walletL2.js +9 -0
- package/_esm/chains/opStack/decorators/walletL2.js.map +1 -0
- package/_esm/chains/opStack/errors/withdrawal.js +13 -0
- package/_esm/chains/opStack/errors/withdrawal.js.map +1 -0
- package/_esm/chains/opStack/index.js +21 -3
- package/_esm/chains/opStack/index.js.map +1 -1
- package/_esm/chains/opStack/types/deposit.js +2 -0
- package/_esm/chains/opStack/types/deposit.js.map +1 -0
- package/_esm/chains/opStack/types/withdrawal.js +2 -0
- package/_esm/chains/opStack/types/withdrawal.js.map +1 -0
- package/_esm/chains/opStack/utils/extractWithdrawalMessageLogs.js +10 -0
- package/_esm/chains/opStack/utils/extractWithdrawalMessageLogs.js.map +1 -0
- package/_esm/chains/opStack/utils/getL2TransactionHash.js +2 -2
- package/_esm/chains/opStack/utils/getL2TransactionHash.js.map +1 -1
- package/_esm/chains/opStack/utils/getWithdrawalHashStorageSlot.js +7 -0
- package/_esm/chains/opStack/utils/getWithdrawalHashStorageSlot.js.map +1 -0
- package/_esm/chains/opStack/utils/getWithdrawals.js +6 -0
- package/_esm/chains/opStack/utils/getWithdrawals.js.map +1 -0
- package/_esm/chains/opStack/utils/{fromOpaqueData.js → opaqueDataToDepositData.js} +2 -2
- package/_esm/chains/opStack/utils/opaqueDataToDepositData.js.map +1 -0
- package/_esm/errors/abi.js +19 -0
- package/_esm/errors/abi.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_esm/errors/version.js.map +1 -1
- package/_esm/index.js +4 -0
- package/_esm/index.js.map +1 -1
- package/_esm/utils/abi/getAbiItem.js +46 -2
- package/_esm/utils/abi/getAbiItem.js.map +1 -1
- package/_esm/utils/hash/ripemd160.js +12 -0
- package/_esm/utils/hash/ripemd160.js.map +1 -0
- package/_esm/utils/hash/sha256.js +12 -0
- package/_esm/utils/hash/sha256.js.map +1 -0
- package/_esm/utils/index.js +2 -0
- package/_esm/utils/index.js.map +1 -1
- package/_types/actions/ens/getEnsName.d.ts.map +1 -1
- package/_types/actions/index.d.ts +7 -0
- package/_types/actions/index.d.ts.map +1 -1
- package/_types/actions/public/getBlock.d.ts +1 -1
- package/_types/actions/public/getBlock.d.ts.map +1 -1
- package/_types/actions/public/getTransaction.d.ts +1 -1
- package/_types/actions/public/getTransaction.d.ts.map +1 -1
- package/_types/actions/public/getTransactionReceipt.d.ts +1 -1
- package/_types/actions/public/getTransactionReceipt.d.ts.map +1 -1
- package/_types/actions/wallet/prepareTransactionRequest.d.ts +5 -5
- package/_types/actions/wallet/prepareTransactionRequest.d.ts.map +1 -1
- package/_types/chains/celo/chainConfig.d.ts +180 -180
- package/_types/chains/celo/formatters.d.ts +180 -180
- package/_types/chains/definitions/arbitrumSepolia.d.ts +4 -0
- package/_types/chains/definitions/arbitrumSepolia.d.ts.map +1 -1
- package/_types/chains/definitions/base.d.ts +142 -137
- package/_types/chains/definitions/base.d.ts.map +1 -1
- package/_types/chains/definitions/baseGoerli.d.ts +142 -137
- package/_types/chains/definitions/baseGoerli.d.ts.map +1 -1
- package/_types/chains/definitions/baseSepolia.d.ts +142 -137
- package/_types/chains/definitions/baseSepolia.d.ts.map +1 -1
- package/_types/chains/definitions/celo.d.ts +180 -180
- package/_types/chains/definitions/celoAlfajores.d.ts +180 -180
- package/_types/chains/definitions/celoCannoli.d.ts +180 -180
- package/_types/chains/definitions/fantomSonicTestnet.d.ts +38 -0
- package/_types/chains/definitions/fantomSonicTestnet.d.ts.map +1 -0
- package/_types/chains/definitions/optimism.d.ts +142 -137
- package/_types/chains/definitions/optimism.d.ts.map +1 -1
- package/_types/chains/definitions/optimismGoerli.d.ts +142 -137
- package/_types/chains/definitions/optimismGoerli.d.ts.map +1 -1
- package/_types/chains/definitions/optimismSepolia.d.ts +142 -137
- package/_types/chains/definitions/optimismSepolia.d.ts.map +1 -1
- package/_types/chains/definitions/pgn.d.ts +147 -137
- package/_types/chains/definitions/pgn.d.ts.map +1 -1
- package/_types/chains/definitions/pgnTestnet.d.ts +142 -137
- package/_types/chains/definitions/pgnTestnet.d.ts.map +1 -1
- package/_types/chains/definitions/zilliqa.d.ts +38 -0
- package/_types/chains/definitions/zilliqa.d.ts.map +1 -0
- package/_types/chains/definitions/zilliqaTestnet.d.ts +38 -0
- package/_types/chains/definitions/zilliqaTestnet.d.ts.map +1 -0
- package/_types/chains/definitions/zkSync.d.ts +24 -24
- package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +533 -0
- package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts.map +1 -0
- package/_types/chains/definitions/zkSyncTestnet.d.ts +29 -24
- package/_types/chains/definitions/zkSyncTestnet.d.ts.map +1 -1
- package/_types/chains/definitions/zora.d.ts +142 -137
- package/_types/chains/definitions/zora.d.ts.map +1 -1
- package/_types/chains/definitions/zoraSepolia.d.ts +142 -137
- package/_types/chains/definitions/zoraSepolia.d.ts.map +1 -1
- package/_types/chains/definitions/zoraTestnet.d.ts +137 -137
- package/_types/chains/index.d.ts +5 -1
- package/_types/chains/index.d.ts.map +1 -1
- package/_types/chains/opStack/abis.d.ts +457 -0
- package/_types/chains/opStack/abis.d.ts.map +1 -1
- package/_types/chains/opStack/actions/buildDepositTransaction.d.ts +5 -3
- package/_types/chains/opStack/actions/buildDepositTransaction.d.ts.map +1 -1
- package/_types/chains/opStack/actions/buildInitiateWithdrawal.d.ts +50 -0
- package/_types/chains/opStack/actions/buildInitiateWithdrawal.d.ts.map +1 -0
- package/_types/chains/opStack/actions/buildProveWithdrawal.d.ts +48 -0
- package/_types/chains/opStack/actions/buildProveWithdrawal.d.ts.map +1 -0
- package/_types/chains/opStack/actions/depositTransaction.d.ts +18 -34
- package/_types/chains/opStack/actions/depositTransaction.d.ts.map +1 -1
- package/_types/chains/opStack/actions/estimateDepositTransactionGas.d.ts +50 -0
- package/_types/chains/opStack/actions/estimateDepositTransactionGas.d.ts.map +1 -0
- package/_types/chains/opStack/actions/estimateFinalizeWithdrawalGas.d.ts +45 -0
- package/_types/chains/opStack/actions/estimateFinalizeWithdrawalGas.d.ts.map +1 -0
- package/_types/chains/opStack/actions/estimateInitiateWithdrawalGas.d.ts +51 -0
- package/_types/chains/opStack/actions/estimateInitiateWithdrawalGas.d.ts.map +1 -0
- package/_types/chains/opStack/actions/estimateProveWithdrawalGas.d.ts +63 -0
- package/_types/chains/opStack/actions/estimateProveWithdrawalGas.d.ts.map +1 -0
- package/_types/chains/opStack/actions/finalizeWithdrawal.d.ts +49 -0
- package/_types/chains/opStack/actions/finalizeWithdrawal.d.ts.map +1 -0
- package/_types/chains/opStack/actions/getL2Output.d.ts +44 -0
- package/_types/chains/opStack/actions/getL2Output.d.ts.map +1 -0
- package/_types/chains/opStack/actions/getTimeToFinalize.d.ts +57 -0
- package/_types/chains/opStack/actions/getTimeToFinalize.d.ts.map +1 -0
- package/_types/chains/opStack/actions/getTimeToNextL2Output.d.ts +61 -0
- package/_types/chains/opStack/actions/getTimeToNextL2Output.d.ts.map +1 -0
- package/_types/chains/opStack/actions/getTimeToProve.d.ts +50 -0
- package/_types/chains/opStack/actions/getTimeToProve.d.ts.map +1 -0
- package/_types/chains/opStack/actions/getWithdrawalStatus.d.ts +48 -0
- package/_types/chains/opStack/actions/getWithdrawalStatus.d.ts.map +1 -0
- package/_types/chains/opStack/actions/initiateWithdrawal.d.ts +77 -0
- package/_types/chains/opStack/actions/initiateWithdrawal.d.ts.map +1 -0
- package/_types/chains/opStack/actions/proveWithdrawal.d.ts +67 -0
- package/_types/chains/opStack/actions/proveWithdrawal.d.ts.map +1 -0
- package/_types/chains/opStack/actions/waitForNextL2Output.d.ts +55 -0
- package/_types/chains/opStack/actions/waitForNextL2Output.d.ts.map +1 -0
- package/_types/chains/opStack/actions/waitToFinalize.d.ts +45 -0
- package/_types/chains/opStack/actions/waitToFinalize.d.ts.map +1 -0
- package/_types/chains/opStack/actions/waitToProve.d.ts +55 -0
- package/_types/chains/opStack/actions/waitToProve.d.ts.map +1 -0
- package/_types/chains/opStack/chainConfig.d.ts +136 -136
- package/_types/chains/opStack/chains.d.ts +2 -0
- package/_types/chains/opStack/chains.d.ts.map +1 -1
- package/_types/chains/opStack/decorators/publicL1.d.ts +386 -0
- package/_types/chains/opStack/decorators/publicL1.d.ts.map +1 -0
- package/_types/chains/opStack/decorators/publicL2.d.ts +82 -26
- package/_types/chains/opStack/decorators/publicL2.d.ts.map +1 -1
- package/_types/chains/opStack/decorators/walletL1.d.ts +57 -2
- package/_types/chains/opStack/decorators/walletL1.d.ts.map +1 -1
- package/_types/chains/opStack/decorators/walletL2.d.ts +62 -0
- package/_types/chains/opStack/decorators/walletL2.d.ts.map +1 -0
- package/_types/chains/opStack/errors/withdrawal.d.ts +12 -0
- package/_types/chains/opStack/errors/withdrawal.d.ts.map +1 -0
- package/_types/chains/opStack/formatters.d.ts +136 -136
- package/_types/chains/opStack/index.d.ts +21 -3
- package/_types/chains/opStack/index.d.ts.map +1 -1
- package/_types/chains/opStack/types/deposit.d.ts +25 -0
- package/_types/chains/opStack/types/deposit.d.ts.map +1 -0
- package/_types/chains/opStack/types/withdrawal.d.ts +22 -0
- package/_types/chains/opStack/types/withdrawal.d.ts.map +1 -0
- package/_types/chains/opStack/utils/extractWithdrawalMessageLogs.d.ts +137 -0
- package/_types/chains/opStack/utils/extractWithdrawalMessageLogs.d.ts.map +1 -0
- package/_types/chains/opStack/utils/getWithdrawalHashStorageSlot.d.ts +11 -0
- package/_types/chains/opStack/utils/getWithdrawalHashStorageSlot.d.ts.map +1 -0
- package/_types/chains/opStack/utils/getWithdrawals.d.ts +12 -0
- package/_types/chains/opStack/utils/getWithdrawals.d.ts.map +1 -0
- package/_types/chains/opStack/utils/opaqueDataToDepositData.d.ts +15 -0
- package/_types/chains/opStack/utils/opaqueDataToDepositData.d.ts.map +1 -0
- package/_types/chains/zksync/chainConfig.d.ts +24 -24
- package/_types/chains/zksync/formatters.d.ts +24 -24
- package/_types/clients/decorators/public.d.ts +2 -2
- package/_types/clients/decorators/public.d.ts.map +1 -1
- package/_types/clients/decorators/wallet.d.ts +2 -2
- package/_types/clients/decorators/wallet.d.ts.map +1 -1
- package/_types/errors/abi.d.ts +14 -1
- package/_types/errors/abi.d.ts.map +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/_types/errors/version.d.ts.map +1 -1
- package/_types/index.d.ts +15 -1
- package/_types/index.d.ts.map +1 -1
- package/_types/types/account.d.ts +1 -1
- package/_types/types/account.d.ts.map +1 -1
- package/_types/types/eip1193.d.ts +12 -0
- package/_types/types/eip1193.d.ts.map +1 -1
- package/_types/utils/abi/getAbiItem.d.ts +2 -1
- package/_types/utils/abi/getAbiItem.d.ts.map +1 -1
- package/_types/utils/formatters/block.d.ts +1 -1
- package/_types/utils/formatters/block.d.ts.map +1 -1
- package/_types/utils/formatters/transaction.d.ts +2 -2
- package/_types/utils/formatters/transaction.d.ts.map +1 -1
- package/_types/utils/formatters/transactionReceipt.d.ts +1 -1
- package/_types/utils/formatters/transactionReceipt.d.ts.map +1 -1
- package/_types/utils/formatters/transactionRequest.d.ts +1 -1
- package/_types/utils/hash/ripemd160.d.ts +11 -0
- package/_types/utils/hash/ripemd160.d.ts.map +1 -0
- package/_types/utils/hash/sha256.d.ts +11 -0
- package/_types/utils/hash/sha256.d.ts.map +1 -0
- package/_types/utils/index.d.ts +2 -0
- package/_types/utils/index.d.ts.map +1 -1
- package/actions/ens/getEnsName.ts +3 -2
- package/actions/index.ts +31 -0
- package/actions/public/getBlock.ts +1 -1
- package/actions/public/getTransaction.ts +1 -1
- package/actions/public/getTransactionReceipt.ts +1 -1
- package/actions/wallet/prepareTransactionRequest.ts +16 -9
- package/chains/definitions/arbitrumSepolia.ts +4 -0
- package/chains/definitions/base.ts +5 -0
- package/chains/definitions/baseGoerli.ts +5 -0
- package/chains/definitions/baseSepolia.ts +5 -0
- package/chains/definitions/fantomSonicTestnet.ts +23 -0
- package/chains/definitions/optimism.ts +5 -0
- package/chains/definitions/optimismGoerli.ts +5 -0
- package/chains/definitions/optimismSepolia.ts +5 -0
- package/chains/definitions/pgn.ts +13 -0
- package/chains/definitions/pgnTestnet.ts +8 -0
- package/chains/definitions/zilliqa.ts +23 -0
- package/chains/definitions/zilliqaTestnet.ts +23 -0
- package/chains/definitions/zkSyncSepoliaTestnet.ts +32 -0
- package/chains/definitions/zkSyncTestnet.ts +5 -0
- package/chains/definitions/zora.ts +5 -0
- package/chains/definitions/zoraSepolia.ts +5 -0
- package/chains/index.ts +9 -0
- package/chains/opStack/abis.ts +367 -0
- package/chains/opStack/actions/buildDepositTransaction.ts +11 -6
- package/chains/opStack/actions/buildInitiateWithdrawal.ts +118 -0
- package/chains/opStack/actions/buildProveWithdrawal.ts +149 -0
- package/chains/opStack/actions/depositTransaction.ts +50 -44
- package/chains/opStack/actions/estimateDepositTransactionGas.ts +138 -0
- package/chains/opStack/actions/estimateFinalizeWithdrawalGas.ts +118 -0
- package/chains/opStack/actions/estimateInitiateWithdrawalGas.ts +118 -0
- package/chains/opStack/actions/estimateProveWithdrawalGas.ts +139 -0
- package/chains/opStack/actions/finalizeWithdrawal.ts +130 -0
- package/chains/opStack/actions/getL2Output.ts +89 -0
- package/chains/opStack/actions/getTimeToFinalize.ts +122 -0
- package/chains/opStack/actions/getTimeToNextL2Output.ts +162 -0
- package/chains/opStack/actions/getTimeToProve.ts +79 -0
- package/chains/opStack/actions/getWithdrawalStatus.ts +152 -0
- package/chains/opStack/actions/initiateWithdrawal.ts +153 -0
- package/chains/opStack/actions/proveWithdrawal.ts +151 -0
- package/chains/opStack/actions/waitForNextL2Output.ts +111 -0
- package/chains/opStack/actions/waitToFinalize.ts +64 -0
- package/chains/opStack/actions/waitToProve.ts +99 -0
- package/chains/opStack/chains.ts +2 -0
- package/chains/opStack/decorators/publicL1.ts +514 -0
- package/chains/opStack/decorators/publicL2.ts +129 -37
- package/chains/opStack/decorators/walletL1.ts +71 -2
- package/chains/opStack/decorators/walletL2.ts +84 -0
- package/chains/opStack/errors/withdrawal.ts +15 -0
- package/chains/opStack/index.ts +112 -21
- package/chains/opStack/types/deposit.ts +28 -0
- package/chains/opStack/types/withdrawal.ts +23 -0
- package/chains/opStack/utils/extractWithdrawalMessageLogs.ts +36 -0
- package/chains/opStack/utils/getL2TransactionHash.ts +2 -2
- package/chains/opStack/utils/getWithdrawalHashStorageSlot.ts +29 -0
- package/chains/opStack/utils/getWithdrawals.ts +25 -0
- package/chains/opStack/utils/{fromOpaqueData.ts → opaqueDataToDepositData.ts} +9 -4
- package/clients/decorators/public.ts +2 -2
- package/clients/decorators/wallet.ts +2 -2
- package/errors/abi.ts +22 -1
- package/errors/version.ts +1 -1
- package/index.ts +40 -0
- package/package.json +1 -1
- package/types/account.ts +1 -1
- package/types/eip1193.ts +12 -0
- package/utils/abi/getAbiItem.ts +71 -2
- package/utils/formatters/block.ts +1 -1
- package/utils/formatters/transaction.ts +1 -1
- package/utils/formatters/transactionReceipt.ts +1 -1
- package/utils/hash/ripemd160.ts +31 -0
- package/utils/hash/sha256.ts +31 -0
- package/utils/index.ts +2 -0
- package/_cjs/chains/opStack/utils/fromOpaqueData.js.map +0 -1
- package/_esm/chains/opStack/utils/fromOpaqueData.js.map +0 -1
- package/_types/chains/opStack/utils/fromOpaqueData.d.ts +0 -15
- package/_types/chains/opStack/utils/fromOpaqueData.d.ts.map +0 -1
- package/chains/celo/package.json +0 -6
- package/chains/opStack/package.json +0 -6
- package/chains/zksync/package.json +0 -6
@@ -6,8 +6,8 @@ import type { Hex } from '../../../types/misc.js'
|
|
6
6
|
import { keccak256 } from '../../../utils/hash/keccak256.js'
|
7
7
|
import type { portalAbi } from '../abis.js'
|
8
8
|
import { serializeTransaction } from '../serializers.js'
|
9
|
-
import { fromOpaqueData } from './fromOpaqueData.js'
|
10
9
|
import { getSourceHash } from './getSourceHash.js'
|
10
|
+
import { opaqueDataToDepositData } from './opaqueDataToDepositData.js'
|
11
11
|
|
12
12
|
export type GetL2TransactionHashParameters = {
|
13
13
|
/** The "TransactionDeposited" log to compute the L2 hash from. */
|
@@ -32,7 +32,7 @@ export function getL2TransactionHash({ log }: GetL2TransactionHashParameters) {
|
|
32
32
|
l1BlockHash: log.blockHash,
|
33
33
|
l1LogIndex: log.logIndex,
|
34
34
|
})
|
35
|
-
const { data, gas, isCreation, mint, value } =
|
35
|
+
const { data, gas, isCreation, mint, value } = opaqueDataToDepositData(
|
36
36
|
log.args.opaqueData,
|
37
37
|
)
|
38
38
|
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import type { ErrorType } from '../../../errors/utils.js'
|
2
|
+
import type { Hash } from '../../../types/misc.js'
|
3
|
+
import {
|
4
|
+
type EncodeAbiParametersErrorType,
|
5
|
+
encodeAbiParameters,
|
6
|
+
} from '../../../utils/abi/encodeAbiParameters.js'
|
7
|
+
import {
|
8
|
+
type Keccak256ErrorType,
|
9
|
+
keccak256,
|
10
|
+
} from '../../../utils/hash/keccak256.js'
|
11
|
+
|
12
|
+
export type GetWithdrawalHashStorageSlotParameters = {
|
13
|
+
withdrawalHash: Hash
|
14
|
+
}
|
15
|
+
export type GetWithdrawalHashStorageSlotReturnType = Hash
|
16
|
+
export type GetWithdrawalHashStorageSlotErrorType =
|
17
|
+
| EncodeAbiParametersErrorType
|
18
|
+
| Keccak256ErrorType
|
19
|
+
| ErrorType
|
20
|
+
|
21
|
+
export function getWithdrawalHashStorageSlot({
|
22
|
+
withdrawalHash,
|
23
|
+
}: GetWithdrawalHashStorageSlotParameters) {
|
24
|
+
const data = encodeAbiParameters(
|
25
|
+
[{ type: 'bytes32' }, { type: 'uint256' }],
|
26
|
+
[withdrawalHash, 0n],
|
27
|
+
)
|
28
|
+
return keccak256(data)
|
29
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
import type { ErrorType } from '../../../errors/utils.js'
|
2
|
+
import type { Log } from '../../../types/log.js'
|
3
|
+
import type { Withdrawal } from '../types/withdrawal.js'
|
4
|
+
import {
|
5
|
+
type ExtractWithdrawalMessageLogsErrorType,
|
6
|
+
extractWithdrawalMessageLogs,
|
7
|
+
} from './extractWithdrawalMessageLogs.js'
|
8
|
+
|
9
|
+
export type GetWithdrawalsParameters = {
|
10
|
+
/** The L2 transaction receipt logs. */
|
11
|
+
logs: Log[]
|
12
|
+
}
|
13
|
+
|
14
|
+
export type GetWithdrawalsReturnType = Withdrawal[]
|
15
|
+
|
16
|
+
export type GetWithdrawalsErrorType =
|
17
|
+
| ExtractWithdrawalMessageLogsErrorType
|
18
|
+
| ErrorType
|
19
|
+
|
20
|
+
export function getWithdrawals({
|
21
|
+
logs,
|
22
|
+
}: GetWithdrawalsParameters): GetWithdrawalsReturnType {
|
23
|
+
const extractedLogs = extractWithdrawalMessageLogs({ logs })
|
24
|
+
return extractedLogs.map((log) => log.args)
|
25
|
+
}
|
@@ -4,9 +4,9 @@ import { type SizeErrorType, size } from '../../../utils/data/size.js'
|
|
4
4
|
import { type SliceErrorType, slice } from '../../../utils/data/slice.js'
|
5
5
|
import { hexToBigInt } from '../../../utils/encoding/fromHex.js'
|
6
6
|
|
7
|
-
export type
|
7
|
+
export type OpaqueDataToDepositDataParameters = Hex
|
8
8
|
|
9
|
-
export type
|
9
|
+
export type OpaqueDataToDepositDataReturnType = {
|
10
10
|
mint: bigint
|
11
11
|
value: bigint
|
12
12
|
gas: bigint
|
@@ -14,9 +14,14 @@ export type FromOpaqueDataReturnType = {
|
|
14
14
|
data: Hex
|
15
15
|
}
|
16
16
|
|
17
|
-
export type
|
17
|
+
export type OpaqueDataToDepositDataErrorType =
|
18
|
+
| SliceErrorType
|
19
|
+
| SizeErrorType
|
20
|
+
| ErrorType
|
18
21
|
|
19
|
-
export function
|
22
|
+
export function opaqueDataToDepositData(
|
23
|
+
opaqueData: Hex,
|
24
|
+
): OpaqueDataToDepositDataReturnType {
|
20
25
|
let offset = 0
|
21
26
|
const mint = slice(opaqueData, offset, offset + 32)
|
22
27
|
offset += 32
|
@@ -217,7 +217,7 @@ import {
|
|
217
217
|
watchPendingTransactions,
|
218
218
|
} from '../../actions/public/watchPendingTransactions.js'
|
219
219
|
import {
|
220
|
-
type
|
220
|
+
type PrepareTransactionRequestParameterType,
|
221
221
|
type PrepareTransactionRequestParameters,
|
222
222
|
type PrepareTransactionRequestReturnType,
|
223
223
|
prepareTransactionRequest,
|
@@ -1335,7 +1335,7 @@ export type PublicActions<
|
|
1335
1335
|
* })
|
1336
1336
|
*/
|
1337
1337
|
prepareTransactionRequest: <
|
1338
|
-
TParameterType extends
|
1338
|
+
TParameterType extends PrepareTransactionRequestParameterType,
|
1339
1339
|
TChainOverride extends Chain | undefined = undefined,
|
1340
1340
|
TAccountOverride extends Account | Address | undefined = undefined,
|
1341
1341
|
>(
|
@@ -23,7 +23,7 @@ import {
|
|
23
23
|
getPermissions,
|
24
24
|
} from '../../actions/wallet/getPermissions.js'
|
25
25
|
import {
|
26
|
-
type
|
26
|
+
type PrepareTransactionRequestParameterType,
|
27
27
|
type PrepareTransactionRequestParameters,
|
28
28
|
type PrepareTransactionRequestReturnType,
|
29
29
|
prepareTransactionRequest,
|
@@ -234,7 +234,7 @@ export type WalletActions<
|
|
234
234
|
* })
|
235
235
|
*/
|
236
236
|
prepareTransactionRequest: <
|
237
|
-
TParameterType extends
|
237
|
+
TParameterType extends PrepareTransactionRequestParameterType,
|
238
238
|
TChainOverride extends Chain | undefined = undefined,
|
239
239
|
TAccountOverride extends Account | Address | undefined = undefined,
|
240
240
|
>(
|
package/errors/abi.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import type { AbiEvent, AbiParameter } from 'abitype'
|
1
|
+
import type { Abi, AbiEvent, AbiParameter } from 'abitype'
|
2
2
|
|
3
3
|
import type { Hex } from '../types/misc.js'
|
4
4
|
import { formatAbiItem, formatAbiParams } from '../utils/abi/formatAbiItem.js'
|
@@ -331,6 +331,27 @@ export class AbiFunctionSignatureNotFoundError extends BaseError {
|
|
331
331
|
}
|
332
332
|
}
|
333
333
|
|
334
|
+
export type AbiItemAmbiguityErrorType = AbiItemAmbiguityError & {
|
335
|
+
name: 'AbiItemAmbiguityError'
|
336
|
+
}
|
337
|
+
export class AbiItemAmbiguityError extends BaseError {
|
338
|
+
override name = 'AbiItemAmbiguityError'
|
339
|
+
constructor(
|
340
|
+
x: { abiItem: Abi[number]; type: string },
|
341
|
+
y: { abiItem: Abi[number]; type: string },
|
342
|
+
) {
|
343
|
+
super('Found ambiguous types in overloaded ABI items.', {
|
344
|
+
metaMessages: [
|
345
|
+
`\`${x.type}\` in \`${formatAbiItem(x.abiItem)}\`, and`,
|
346
|
+
`\`${y.type}\` in \`${formatAbiItem(y.abiItem)}\``,
|
347
|
+
'',
|
348
|
+
'These types encode differently and cannot be distinguished at runtime.',
|
349
|
+
'Remove one of the ambiguous items in the ABI.',
|
350
|
+
],
|
351
|
+
})
|
352
|
+
}
|
353
|
+
}
|
354
|
+
|
334
355
|
export type BytesSizeMismatchErrorType = BytesSizeMismatchError & {
|
335
356
|
name: 'BytesSizeMismatchError'
|
336
357
|
}
|
package/errors/version.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export const version = '2.0.0-
|
1
|
+
export const version = '2.0.0-rc.0'
|
package/index.ts
CHANGED
@@ -77,6 +77,10 @@ export type {
|
|
77
77
|
DropTransactionErrorType,
|
78
78
|
DropTransactionParameters,
|
79
79
|
} from './actions/test/dropTransaction.js'
|
80
|
+
export type {
|
81
|
+
DumpStateErrorType,
|
82
|
+
DumpStateReturnType,
|
83
|
+
} from './actions/test/dumpState.js'
|
80
84
|
export type {
|
81
85
|
GetAutomineErrorType,
|
82
86
|
GetAutomineReturnType,
|
@@ -177,6 +181,11 @@ export type {
|
|
177
181
|
GetPermissionsErrorType,
|
178
182
|
GetPermissionsReturnType,
|
179
183
|
} from './actions/wallet/getPermissions.js'
|
184
|
+
export type {
|
185
|
+
GetProofErrorType,
|
186
|
+
GetProofParameters,
|
187
|
+
GetProofReturnType,
|
188
|
+
} from './actions/public/getProof.js'
|
180
189
|
export type {
|
181
190
|
GetStorageAtErrorType,
|
182
191
|
GetStorageAtParameters,
|
@@ -210,12 +219,18 @@ export type {
|
|
210
219
|
IncreaseTimeErrorType,
|
211
220
|
IncreaseTimeParameters,
|
212
221
|
} from './actions/test/increaseTime.js'
|
222
|
+
export type {
|
223
|
+
LoadStateErrorType,
|
224
|
+
LoadStateParameters,
|
225
|
+
LoadStateReturnType,
|
226
|
+
} from './actions/test/loadState.js'
|
213
227
|
export type { MineErrorType, MineParameters } from './actions/test/mine.js'
|
214
228
|
export type {
|
215
229
|
MulticallErrorType,
|
216
230
|
MulticallParameters,
|
217
231
|
MulticallReturnType,
|
218
232
|
} from './actions/public/multicall.js'
|
233
|
+
export type { SnapshotErrorType } from './actions/test/snapshot.js'
|
219
234
|
export type {
|
220
235
|
OnBlock,
|
221
236
|
OnBlockParameter,
|
@@ -277,19 +292,31 @@ export type {
|
|
277
292
|
InspectTxpoolErrorType,
|
278
293
|
InspectTxpoolReturnType,
|
279
294
|
} from './actions/test/inspectTxpool.js'
|
295
|
+
export type { RemoveBlockTimestampIntervalErrorType } from './actions/test/removeBlockTimestampInterval.js'
|
280
296
|
export type { ResetErrorType, ResetParameters } from './actions/test/reset.js'
|
281
297
|
export type {
|
282
298
|
RevertErrorType,
|
283
299
|
RevertParameters,
|
284
300
|
} from './actions/test/revert.js'
|
301
|
+
export type {
|
302
|
+
SendRawTransactionErrorType,
|
303
|
+
SendRawTransactionParameters,
|
304
|
+
SendRawTransactionReturnType,
|
305
|
+
} from './actions/wallet/sendRawTransaction.js'
|
285
306
|
export type {
|
286
307
|
SendTransactionErrorType,
|
287
308
|
SendTransactionParameters,
|
288
309
|
SendTransactionReturnType,
|
289
310
|
} from './actions/wallet/sendTransaction.js'
|
311
|
+
export type {
|
312
|
+
SignTransactionErrorType,
|
313
|
+
SignTransactionParameters,
|
314
|
+
SignTransactionReturnType,
|
315
|
+
} from './actions/wallet/signTransaction.js'
|
290
316
|
export type {
|
291
317
|
PrepareTransactionRequestErrorType,
|
292
318
|
PrepareTransactionRequestParameters,
|
319
|
+
PrepareTransactionRequestParameterType,
|
293
320
|
PrepareTransactionRequestReturnType,
|
294
321
|
} from './actions/wallet/prepareTransactionRequest.js'
|
295
322
|
export type {
|
@@ -297,6 +324,7 @@ export type {
|
|
297
324
|
SendUnsignedTransactionParameters,
|
298
325
|
SendUnsignedTransactionReturnType,
|
299
326
|
} from './actions/test/sendUnsignedTransaction.js'
|
327
|
+
export type { SetAutomineErrorType } from './actions/test/setAutomine.js'
|
300
328
|
export type {
|
301
329
|
SetBalanceErrorType,
|
302
330
|
SetBalanceParameters,
|
@@ -321,6 +349,7 @@ export type {
|
|
321
349
|
SetIntervalMiningErrorType,
|
322
350
|
SetIntervalMiningParameters,
|
323
351
|
} from './actions/test/setIntervalMining.js'
|
352
|
+
export type { SetLoggingEnabledErrorType } from './actions/test/setLoggingEnabled.js'
|
324
353
|
export type {
|
325
354
|
SetMinGasPriceErrorType,
|
326
355
|
SetMinGasPriceParameters,
|
@@ -337,6 +366,7 @@ export type {
|
|
337
366
|
SetNonceErrorType,
|
338
367
|
SetNonceParameters,
|
339
368
|
} from './actions/test/setNonce.js'
|
369
|
+
export type { SetRpcUrlErrorType } from './actions/test/setRpcUrl.js'
|
340
370
|
export type {
|
341
371
|
SetStorageAtErrorType,
|
342
372
|
SetStorageAtParameters,
|
@@ -1240,6 +1270,14 @@ export {
|
|
1240
1270
|
type EncodePackedErrorType,
|
1241
1271
|
encodePacked,
|
1242
1272
|
} from './utils/abi/encodePacked.js'
|
1273
|
+
export {
|
1274
|
+
type WithRetryErrorType,
|
1275
|
+
withRetry,
|
1276
|
+
} from './utils/promise/withRetry.js'
|
1277
|
+
export {
|
1278
|
+
type WithTimeoutErrorType,
|
1279
|
+
withTimeout,
|
1280
|
+
} from './utils/promise/withTimeout.js'
|
1243
1281
|
export {
|
1244
1282
|
type FormatEtherErrorType,
|
1245
1283
|
formatEther,
|
@@ -1311,6 +1349,8 @@ export { type IsBytesErrorType, isBytes } from './utils/data/isBytes.js'
|
|
1311
1349
|
export { type IsHashErrorType, isHash } from './utils/hash/isHash.js'
|
1312
1350
|
export { type IsHexErrorType, isHex } from './utils/data/isHex.js'
|
1313
1351
|
export { type Keccak256ErrorType, keccak256 } from './utils/hash/keccak256.js'
|
1352
|
+
export { type Sha256ErrorType, sha256 } from './utils/hash/sha256.js'
|
1353
|
+
export { type Ripemd160ErrorType, ripemd160 } from './utils/hash/ripemd160.js'
|
1314
1354
|
export {
|
1315
1355
|
type PadBytesErrorType,
|
1316
1356
|
type PadErrorType,
|
package/package.json
CHANGED
package/types/account.ts
CHANGED
@@ -7,7 +7,7 @@ import type { IsUndefined, Prettify } from './utils.js'
|
|
7
7
|
export type DeriveAccount<
|
8
8
|
account extends Account | undefined,
|
9
9
|
accountOverride extends Account | Address | undefined,
|
10
|
-
> = accountOverride extends Account ? accountOverride : account
|
10
|
+
> = accountOverride extends Account | Address ? accountOverride : account
|
11
11
|
|
12
12
|
export type GetAccountParameter<
|
13
13
|
TAccount extends Account | undefined = Account | undefined,
|
package/types/eip1193.ts
CHANGED
@@ -193,6 +193,18 @@ export type PublicRpcSchema = [
|
|
193
193
|
Parameters?: undefined
|
194
194
|
ReturnType: Quantity
|
195
195
|
},
|
196
|
+
/**
|
197
|
+
* @description Returns the current blob price of gas expressed in wei
|
198
|
+
*
|
199
|
+
* @example
|
200
|
+
* provider.request({ method: 'eth_blobGasPrice' })
|
201
|
+
* // => '0x09184e72a000'
|
202
|
+
*/
|
203
|
+
{
|
204
|
+
Method: 'eth_blobGasPrice'
|
205
|
+
Parameters?: undefined
|
206
|
+
ReturnType: Quantity
|
207
|
+
},
|
196
208
|
/**
|
197
209
|
* @description Returns the number of the most recent block seen by this client
|
198
210
|
*
|
package/utils/abi/getAbiItem.ts
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
-
import type
|
1
|
+
import { type Abi, type AbiParameter, type Address } from 'abitype'
|
2
2
|
|
3
|
+
import { AbiItemAmbiguityError } from '../../errors/abi.js'
|
3
4
|
import type { ErrorType } from '../../errors/utils.js'
|
4
5
|
import type {
|
5
6
|
AbiItem,
|
@@ -97,6 +98,7 @@ export function getAbiItem<
|
|
97
98
|
if (abiItems.length === 1)
|
98
99
|
return abiItems[0] as GetAbiItemReturnType<abi, name, args>
|
99
100
|
|
101
|
+
let matchedAbiItem: AbiItem | undefined = undefined
|
100
102
|
for (const abiItem of abiItems) {
|
101
103
|
if (!('inputs' in abiItem)) continue
|
102
104
|
if (!args || args.length === 0) {
|
@@ -112,8 +114,37 @@ export function getAbiItem<
|
|
112
114
|
if (!abiParameter) return false
|
113
115
|
return isArgOfType(arg, abiParameter)
|
114
116
|
})
|
115
|
-
if (matched)
|
117
|
+
if (matched) {
|
118
|
+
// Check for ambiguity against already matched parameters (e.g. `address` vs `bytes20`).
|
119
|
+
if (
|
120
|
+
matchedAbiItem &&
|
121
|
+
'inputs' in matchedAbiItem &&
|
122
|
+
matchedAbiItem.inputs
|
123
|
+
) {
|
124
|
+
const ambiguousTypes = getAmbiguousTypes(
|
125
|
+
abiItem.inputs,
|
126
|
+
matchedAbiItem.inputs,
|
127
|
+
args as readonly unknown[],
|
128
|
+
)
|
129
|
+
if (ambiguousTypes)
|
130
|
+
throw new AbiItemAmbiguityError(
|
131
|
+
{
|
132
|
+
abiItem,
|
133
|
+
type: ambiguousTypes[0],
|
134
|
+
},
|
135
|
+
{
|
136
|
+
abiItem: matchedAbiItem,
|
137
|
+
type: ambiguousTypes[1],
|
138
|
+
},
|
139
|
+
)
|
140
|
+
}
|
141
|
+
|
142
|
+
matchedAbiItem = abiItem
|
143
|
+
}
|
116
144
|
}
|
145
|
+
|
146
|
+
if (matchedAbiItem)
|
147
|
+
return matchedAbiItem as GetAbiItemReturnType<abi, name, args>
|
117
148
|
return abiItems[0] as GetAbiItemReturnType<abi, name, args>
|
118
149
|
}
|
119
150
|
|
@@ -175,3 +206,41 @@ export function isArgOfType(arg: unknown, abiParameter: AbiParameter): boolean {
|
|
175
206
|
}
|
176
207
|
}
|
177
208
|
}
|
209
|
+
|
210
|
+
export function getAmbiguousTypes(
|
211
|
+
sourceParameters: readonly AbiParameter[],
|
212
|
+
targetParameters: readonly AbiParameter[],
|
213
|
+
args: AbiItemArgs,
|
214
|
+
): AbiParameter['type'][] | undefined {
|
215
|
+
for (const parameterIndex in sourceParameters) {
|
216
|
+
const sourceParameter = sourceParameters[parameterIndex]
|
217
|
+
const targetParameter = targetParameters[parameterIndex]
|
218
|
+
|
219
|
+
if (
|
220
|
+
sourceParameter.type === 'tuple' &&
|
221
|
+
targetParameter.type === 'tuple' &&
|
222
|
+
'components' in sourceParameter &&
|
223
|
+
'components' in targetParameter
|
224
|
+
)
|
225
|
+
return getAmbiguousTypes(
|
226
|
+
sourceParameter.components,
|
227
|
+
targetParameter.components,
|
228
|
+
(args as any)[parameterIndex],
|
229
|
+
)
|
230
|
+
|
231
|
+
const types = [sourceParameter.type, targetParameter.type]
|
232
|
+
|
233
|
+
const ambiguous = (() => {
|
234
|
+
if (types.includes('address') && types.includes('bytes20')) return true
|
235
|
+
if (types.includes('address') && types.includes('string'))
|
236
|
+
return isAddress(args[parameterIndex] as Address)
|
237
|
+
if (types.includes('address') && types.includes('bytes'))
|
238
|
+
return isAddress(args[parameterIndex] as Address)
|
239
|
+
return false
|
240
|
+
})()
|
241
|
+
|
242
|
+
if (ambiguous) return types
|
243
|
+
}
|
244
|
+
|
245
|
+
return
|
246
|
+
}
|
@@ -15,7 +15,7 @@ import { type FormattedTransaction, formatTransaction } from './transaction.js'
|
|
15
15
|
type BlockPendingDependencies = 'hash' | 'logsBloom' | 'nonce' | 'number'
|
16
16
|
|
17
17
|
export type FormattedBlock<
|
18
|
-
TChain extends Chain | undefined =
|
18
|
+
TChain extends Chain | undefined = undefined,
|
19
19
|
TIncludeTransactions extends boolean = boolean,
|
20
20
|
TBlockTag extends BlockTag = BlockTag,
|
21
21
|
_FormatterReturnType = ExtractChainFormatterReturnType<
|
@@ -17,7 +17,7 @@ type TransactionPendingDependencies =
|
|
17
17
|
| 'transactionIndex'
|
18
18
|
|
19
19
|
export type FormattedTransaction<
|
20
|
-
TChain extends Chain | undefined =
|
20
|
+
TChain extends Chain | undefined = undefined,
|
21
21
|
TBlockTag extends BlockTag = BlockTag,
|
22
22
|
_FormatterReturnType = ExtractChainFormatterReturnType<
|
23
23
|
TChain,
|
@@ -12,7 +12,7 @@ import { formatLog } from './log.js'
|
|
12
12
|
import { transactionType } from './transaction.js'
|
13
13
|
|
14
14
|
export type FormattedTransactionReceipt<
|
15
|
-
TChain extends Chain | undefined =
|
15
|
+
TChain extends Chain | undefined = undefined,
|
16
16
|
> = ExtractChainFormatterReturnType<
|
17
17
|
TChain,
|
18
18
|
'transactionReceipt',
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import { ripemd160 as noble_ripemd160 } from '@noble/hashes/ripemd160'
|
2
|
+
|
3
|
+
import type { ErrorType } from '../../errors/utils.js'
|
4
|
+
import type { ByteArray, Hex } from '../../types/misc.js'
|
5
|
+
import { type IsHexErrorType, isHex } from '../data/isHex.js'
|
6
|
+
import { type ToBytesErrorType, toBytes } from '../encoding/toBytes.js'
|
7
|
+
import { type ToHexErrorType, toHex } from '../encoding/toHex.js'
|
8
|
+
|
9
|
+
type To = 'hex' | 'bytes'
|
10
|
+
|
11
|
+
export type Ripemd160Hash<TTo extends To> =
|
12
|
+
| (TTo extends 'bytes' ? ByteArray : never)
|
13
|
+
| (TTo extends 'hex' ? Hex : never)
|
14
|
+
|
15
|
+
export type Ripemd160ErrorType =
|
16
|
+
| IsHexErrorType
|
17
|
+
| ToBytesErrorType
|
18
|
+
| ToHexErrorType
|
19
|
+
| ErrorType
|
20
|
+
|
21
|
+
export function ripemd160<TTo extends To = 'hex'>(
|
22
|
+
value: Hex | ByteArray,
|
23
|
+
to_?: TTo,
|
24
|
+
): Ripemd160Hash<TTo> {
|
25
|
+
const to = to_ || 'hex'
|
26
|
+
const bytes = noble_ripemd160(
|
27
|
+
isHex(value, { strict: false }) ? toBytes(value) : value,
|
28
|
+
)
|
29
|
+
if (to === 'bytes') return bytes as Ripemd160Hash<TTo>
|
30
|
+
return toHex(bytes) as Ripemd160Hash<TTo>
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import { sha256 as noble_sha256 } from '@noble/hashes/sha256'
|
2
|
+
|
3
|
+
import type { ErrorType } from '../../errors/utils.js'
|
4
|
+
import type { ByteArray, Hex } from '../../types/misc.js'
|
5
|
+
import { type IsHexErrorType, isHex } from '../data/isHex.js'
|
6
|
+
import { type ToBytesErrorType, toBytes } from '../encoding/toBytes.js'
|
7
|
+
import { type ToHexErrorType, toHex } from '../encoding/toHex.js'
|
8
|
+
|
9
|
+
type To = 'hex' | 'bytes'
|
10
|
+
|
11
|
+
export type Sha256Hash<TTo extends To> =
|
12
|
+
| (TTo extends 'bytes' ? ByteArray : never)
|
13
|
+
| (TTo extends 'hex' ? Hex : never)
|
14
|
+
|
15
|
+
export type Sha256ErrorType =
|
16
|
+
| IsHexErrorType
|
17
|
+
| ToBytesErrorType
|
18
|
+
| ToHexErrorType
|
19
|
+
| ErrorType
|
20
|
+
|
21
|
+
export function sha256<TTo extends To = 'hex'>(
|
22
|
+
value: Hex | ByteArray,
|
23
|
+
to_?: TTo,
|
24
|
+
): Sha256Hash<TTo> {
|
25
|
+
const to = to_ || 'hex'
|
26
|
+
const bytes = noble_sha256(
|
27
|
+
isHex(value, { strict: false }) ? toBytes(value) : value,
|
28
|
+
)
|
29
|
+
if (to === 'bytes') return bytes as Sha256Hash<TTo>
|
30
|
+
return toHex(bytes) as Sha256Hash<TTo>
|
31
|
+
}
|
package/utils/index.ts
CHANGED
@@ -351,6 +351,8 @@ export {
|
|
351
351
|
} from './hash/getFunctionSelector.js'
|
352
352
|
export { type IsHashErrorType, isHash } from './hash/isHash.js'
|
353
353
|
export { type Keccak256ErrorType, keccak256 } from './hash/keccak256.js'
|
354
|
+
export { type Sha256ErrorType, sha256 } from './hash/sha256.js'
|
355
|
+
export { type Ripemd160ErrorType, ripemd160 } from './hash/ripemd160.js'
|
354
356
|
export {
|
355
357
|
type HashDomainErrorType,
|
356
358
|
type HashTypedDataParameters,
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"fromOpaqueData.js","sourceRoot":"","sources":["../../../../chains/opStack/utils/fromOpaqueData.ts"],"names":[],"mappings":";;;AAEA,yDAAsE;AACtE,2DAAyE;AACzE,mEAAgE;AAchE,SAAgB,cAAc,CAAC,UAAe;IAC5C,IAAI,MAAM,GAAG,CAAC,CAAA;IACd,MAAM,IAAI,GAAG,IAAA,gBAAK,EAAC,UAAU,EAAE,MAAM,EAAE,MAAM,GAAG,EAAE,CAAC,CAAA;IACnD,MAAM,IAAI,EAAE,CAAA;IACZ,MAAM,KAAK,GAAG,IAAA,gBAAK,EAAC,UAAU,EAAE,MAAM,EAAE,MAAM,GAAG,EAAE,CAAC,CAAA;IACpD,MAAM,IAAI,EAAE,CAAA;IACZ,MAAM,GAAG,GAAG,IAAA,gBAAK,EAAC,UAAU,EAAE,MAAM,EAAE,MAAM,GAAG,CAAC,CAAC,CAAA;IACjD,MAAM,IAAI,CAAC,CAAA;IACX,MAAM,UAAU,GAAG,MAAM,CAAC,IAAA,gBAAK,EAAC,UAAU,EAAE,MAAM,EAAE,MAAM,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,CAAA;IACvE,MAAM,IAAI,CAAC,CAAA;IACX,MAAM,IAAI,GACR,MAAM,GAAG,IAAA,cAAI,EAAC,UAAU,CAAC,GAAG,CAAC;QAC3B,CAAC,CAAC,IAAI;QACN,CAAC,CAAC,IAAA,gBAAK,EAAC,UAAU,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAClD,OAAO;QACL,IAAI,EAAE,IAAA,wBAAW,EAAC,IAAI,CAAC;QACvB,KAAK,EAAE,IAAA,wBAAW,EAAC,KAAK,CAAC;QACzB,GAAG,EAAE,IAAA,wBAAW,EAAC,GAAG,CAAC;QACrB,UAAU;QACV,IAAI;KACL,CAAA;AACH,CAAC;AArBD,wCAqBC"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"fromOpaqueData.js","sourceRoot":"","sources":["../../../../chains/opStack/utils/fromOpaqueData.ts"],"names":[],"mappings":"AAEA,OAAO,EAAsB,IAAI,EAAE,MAAM,6BAA6B,CAAA;AACtE,OAAO,EAAuB,KAAK,EAAE,MAAM,8BAA8B,CAAA;AACzE,OAAO,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAA;AAchE,MAAM,UAAU,cAAc,CAAC,UAAe;IAC5C,IAAI,MAAM,GAAG,CAAC,CAAA;IACd,MAAM,IAAI,GAAG,KAAK,CAAC,UAAU,EAAE,MAAM,EAAE,MAAM,GAAG,EAAE,CAAC,CAAA;IACnD,MAAM,IAAI,EAAE,CAAA;IACZ,MAAM,KAAK,GAAG,KAAK,CAAC,UAAU,EAAE,MAAM,EAAE,MAAM,GAAG,EAAE,CAAC,CAAA;IACpD,MAAM,IAAI,EAAE,CAAA;IACZ,MAAM,GAAG,GAAG,KAAK,CAAC,UAAU,EAAE,MAAM,EAAE,MAAM,GAAG,CAAC,CAAC,CAAA;IACjD,MAAM,IAAI,CAAC,CAAA;IACX,MAAM,UAAU,GAAG,MAAM,CAAC,KAAK,CAAC,UAAU,EAAE,MAAM,EAAE,MAAM,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,CAAA;IACvE,MAAM,IAAI,CAAC,CAAA;IACX,MAAM,IAAI,GACR,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC;QAC3B,CAAC,CAAC,IAAI;QACN,CAAC,CAAC,KAAK,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAClD,OAAO;QACL,IAAI,EAAE,WAAW,CAAC,IAAI,CAAC;QACvB,KAAK,EAAE,WAAW,CAAC,KAAK,CAAC;QACzB,GAAG,EAAE,WAAW,CAAC,GAAG,CAAC;QACrB,UAAU;QACV,IAAI;KACL,CAAA;AACH,CAAC"}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import type { ErrorType } from '../../../errors/utils.js';
|
2
|
-
import type { Hex } from '../../../types/misc.js';
|
3
|
-
import { type SizeErrorType } from '../../../utils/data/size.js';
|
4
|
-
import { type SliceErrorType } from '../../../utils/data/slice.js';
|
5
|
-
export type FromOpaqueDataParameters = Hex;
|
6
|
-
export type FromOpaqueDataReturnType = {
|
7
|
-
mint: bigint;
|
8
|
-
value: bigint;
|
9
|
-
gas: bigint;
|
10
|
-
isCreation: boolean;
|
11
|
-
data: Hex;
|
12
|
-
};
|
13
|
-
export type FromOpaqueDataErrorType = SliceErrorType | SizeErrorType | ErrorType;
|
14
|
-
export declare function fromOpaqueData(opaqueData: Hex): FromOpaqueDataReturnType;
|
15
|
-
//# sourceMappingURL=fromOpaqueData.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"fromOpaqueData.d.ts","sourceRoot":"","sources":["../../../../chains/opStack/utils/fromOpaqueData.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAA;AACzD,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,wBAAwB,CAAA;AACjD,OAAO,EAAE,KAAK,aAAa,EAAQ,MAAM,6BAA6B,CAAA;AACtE,OAAO,EAAE,KAAK,cAAc,EAAS,MAAM,8BAA8B,CAAA;AAGzE,MAAM,MAAM,wBAAwB,GAAG,GAAG,CAAA;AAE1C,MAAM,MAAM,wBAAwB,GAAG;IACrC,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,GAAG,EAAE,MAAM,CAAA;IACX,UAAU,EAAE,OAAO,CAAA;IACnB,IAAI,EAAE,GAAG,CAAA;CACV,CAAA;AAED,MAAM,MAAM,uBAAuB,GAAG,cAAc,GAAG,aAAa,GAAG,SAAS,CAAA;AAEhF,wBAAgB,cAAc,CAAC,UAAU,EAAE,GAAG,GAAG,wBAAwB,CAqBxE"}
|
package/chains/celo/package.json
DELETED