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
@@ -0,0 +1,152 @@
|
|
1
|
+
import {
|
2
|
+
type ReadContractErrorType,
|
3
|
+
readContract,
|
4
|
+
} from '../../../actions/public/readContract.js'
|
5
|
+
import type { Client } from '../../../clients/createClient.js'
|
6
|
+
import type { Transport } from '../../../clients/transports/createTransport.js'
|
7
|
+
import { ContractFunctionRevertedError } from '../../../errors/contract.js'
|
8
|
+
import type { ErrorType } from '../../../errors/utils.js'
|
9
|
+
import type { Account } from '../../../types/account.js'
|
10
|
+
import type {
|
11
|
+
Chain,
|
12
|
+
DeriveChain,
|
13
|
+
GetChainParameter,
|
14
|
+
} from '../../../types/chain.js'
|
15
|
+
import type { TransactionReceipt } from '../../../types/transaction.js'
|
16
|
+
import { portalAbi } from '../abis.js'
|
17
|
+
import { ReceiptContainsNoWithdrawalsError } from '../errors/withdrawal.js'
|
18
|
+
import type { GetContractAddressParameter } from '../types/contract.js'
|
19
|
+
import {
|
20
|
+
type GetWithdrawalsErrorType,
|
21
|
+
getWithdrawals,
|
22
|
+
} from '../utils/getWithdrawals.js'
|
23
|
+
import { type GetL2OutputErrorType, getL2Output } from './getL2Output.js'
|
24
|
+
import {
|
25
|
+
type GetTimeToFinalizeErrorType,
|
26
|
+
getTimeToFinalize,
|
27
|
+
} from './getTimeToFinalize.js'
|
28
|
+
|
29
|
+
export type GetWithdrawalStatusParameters<
|
30
|
+
chain extends Chain | undefined = Chain | undefined,
|
31
|
+
chainOverride extends Chain | undefined = Chain | undefined,
|
32
|
+
_derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>,
|
33
|
+
> = GetChainParameter<chain, chainOverride> &
|
34
|
+
GetContractAddressParameter<_derivedChain, 'l2OutputOracle' | 'portal'> & {
|
35
|
+
receipt: TransactionReceipt
|
36
|
+
}
|
37
|
+
export type GetWithdrawalStatusReturnType =
|
38
|
+
| 'waiting-to-prove'
|
39
|
+
| 'ready-to-prove'
|
40
|
+
| 'waiting-to-finalize'
|
41
|
+
| 'ready-to-finalize'
|
42
|
+
| 'finalized'
|
43
|
+
export type GetWithdrawalStatusErrorType =
|
44
|
+
| GetL2OutputErrorType
|
45
|
+
| GetTimeToFinalizeErrorType
|
46
|
+
| GetWithdrawalsErrorType
|
47
|
+
| ReadContractErrorType
|
48
|
+
| ErrorType
|
49
|
+
|
50
|
+
/**
|
51
|
+
* Returns the current status of a withdrawal. Used for the [Withdrawal](/op-stack/guides/withdrawals.html) flow.
|
52
|
+
*
|
53
|
+
* - Docs: https://viem.sh/op-stack/actions/getWithdrawalStatus.html
|
54
|
+
*
|
55
|
+
* @param client - Client to use
|
56
|
+
* @param parameters - {@link GetWithdrawalStatusParameters}
|
57
|
+
* @returns Status of the withdrawal. {@link GetWithdrawalStatusReturnType}
|
58
|
+
*
|
59
|
+
* @example
|
60
|
+
* import { createPublicClient, http } from 'viem'
|
61
|
+
* import { getBlockNumber } from 'viem/actions'
|
62
|
+
* import { mainnet, optimism } from 'viem/chains'
|
63
|
+
* import { getWithdrawalStatus } from 'viem/op-stack'
|
64
|
+
*
|
65
|
+
* const publicClientL1 = createPublicClient({
|
66
|
+
* chain: mainnet,
|
67
|
+
* transport: http(),
|
68
|
+
* })
|
69
|
+
* const publicClientL2 = createPublicClient({
|
70
|
+
* chain: optimism,
|
71
|
+
* transport: http(),
|
72
|
+
* })
|
73
|
+
*
|
74
|
+
* const receipt = await getTransactionReceipt(publicClientL2, { hash: '0x...' })
|
75
|
+
* const status = await getWithdrawalStatus(publicClientL1, {
|
76
|
+
* receipt,
|
77
|
+
* targetChain: optimism
|
78
|
+
* })
|
79
|
+
*/
|
80
|
+
export async function getWithdrawalStatus<
|
81
|
+
chain extends Chain | undefined,
|
82
|
+
account extends Account | undefined,
|
83
|
+
chainOverride extends Chain | undefined = undefined,
|
84
|
+
>(
|
85
|
+
client: Client<Transport, chain, account>,
|
86
|
+
parameters: GetWithdrawalStatusParameters<chain, chainOverride>,
|
87
|
+
): Promise<GetWithdrawalStatusReturnType> {
|
88
|
+
const { chain = client.chain, receipt, targetChain } = parameters
|
89
|
+
|
90
|
+
const portalAddress = (() => {
|
91
|
+
if (parameters.portalAddress) return parameters.portalAddress
|
92
|
+
if (chain) return targetChain!.contracts.portal[chain.id].address
|
93
|
+
return Object.values(targetChain!.contracts.portal)[0].address
|
94
|
+
})()
|
95
|
+
|
96
|
+
const [withdrawal] = getWithdrawals(receipt)
|
97
|
+
|
98
|
+
if (!withdrawal)
|
99
|
+
throw new ReceiptContainsNoWithdrawalsError({
|
100
|
+
hash: receipt.transactionHash,
|
101
|
+
})
|
102
|
+
|
103
|
+
const [outputResult, proveResult, finalizedResult, timeToFinalizeResult] =
|
104
|
+
await Promise.allSettled([
|
105
|
+
getL2Output(client, {
|
106
|
+
...parameters,
|
107
|
+
l2BlockNumber: receipt.blockNumber,
|
108
|
+
}),
|
109
|
+
readContract(client, {
|
110
|
+
abi: portalAbi,
|
111
|
+
address: portalAddress,
|
112
|
+
functionName: 'provenWithdrawals',
|
113
|
+
args: [withdrawal.withdrawalHash],
|
114
|
+
}),
|
115
|
+
readContract(client, {
|
116
|
+
abi: portalAbi,
|
117
|
+
address: portalAddress,
|
118
|
+
functionName: 'finalizedWithdrawals',
|
119
|
+
args: [withdrawal.withdrawalHash],
|
120
|
+
}),
|
121
|
+
getTimeToFinalize(client, {
|
122
|
+
...parameters,
|
123
|
+
withdrawalHash: withdrawal.withdrawalHash,
|
124
|
+
}),
|
125
|
+
])
|
126
|
+
|
127
|
+
// If the L2 Output is not processed yet (ie. the actions throws), this means
|
128
|
+
// that the withdrawal is not ready to prove.
|
129
|
+
if (outputResult.status === 'rejected') {
|
130
|
+
const error = outputResult.reason as GetL2OutputErrorType
|
131
|
+
if (
|
132
|
+
error.cause instanceof ContractFunctionRevertedError &&
|
133
|
+
error.cause.data?.args?.[0] ===
|
134
|
+
'L2OutputOracle: cannot get output for a block that has not been proposed'
|
135
|
+
)
|
136
|
+
return 'waiting-to-prove'
|
137
|
+
throw error
|
138
|
+
}
|
139
|
+
if (proveResult.status === 'rejected') throw proveResult.reason
|
140
|
+
if (finalizedResult.status === 'rejected') throw finalizedResult.reason
|
141
|
+
if (timeToFinalizeResult.status === 'rejected')
|
142
|
+
throw timeToFinalizeResult.reason
|
143
|
+
|
144
|
+
const [_, proveTimestamp] = proveResult.value
|
145
|
+
if (!proveTimestamp) return 'ready-to-prove'
|
146
|
+
|
147
|
+
const finalized = finalizedResult.value
|
148
|
+
if (finalized) return 'finalized'
|
149
|
+
|
150
|
+
const { seconds } = timeToFinalizeResult.value
|
151
|
+
return seconds > 0 ? 'waiting-to-finalize' : 'ready-to-finalize'
|
152
|
+
}
|
@@ -0,0 +1,153 @@
|
|
1
|
+
import type { Address } from 'abitype'
|
2
|
+
import {
|
3
|
+
type WriteContractErrorType,
|
4
|
+
type WriteContractParameters,
|
5
|
+
writeContract,
|
6
|
+
} from '../../../actions/wallet/writeContract.js'
|
7
|
+
import type { Client } from '../../../clients/createClient.js'
|
8
|
+
import type { Transport } from '../../../clients/transports/createTransport.js'
|
9
|
+
import type { ErrorType } from '../../../errors/utils.js'
|
10
|
+
import type { Account, GetAccountParameter } from '../../../types/account.js'
|
11
|
+
import type {
|
12
|
+
Chain,
|
13
|
+
DeriveChain,
|
14
|
+
GetChainParameter,
|
15
|
+
} from '../../../types/chain.js'
|
16
|
+
import type { Hash } from '../../../types/misc.js'
|
17
|
+
import type { UnionEvaluate, UnionOmit } from '../../../types/utils.js'
|
18
|
+
import type { FormattedTransactionRequest } from '../../../utils/formatters/transactionRequest.js'
|
19
|
+
import { l2ToL1MessagePasserAbi } from '../abis.js'
|
20
|
+
import { contracts } from '../contracts.js'
|
21
|
+
import type { WithdrawalRequest } from '../types/withdrawal.js'
|
22
|
+
import {
|
23
|
+
type EstimateInitiateWithdrawalGasErrorType,
|
24
|
+
type EstimateInitiateWithdrawalGasParameters,
|
25
|
+
estimateInitiateWithdrawalGas,
|
26
|
+
} from './estimateInitiateWithdrawalGas.js'
|
27
|
+
|
28
|
+
export type InitiateWithdrawalParameters<
|
29
|
+
chain extends Chain | undefined = Chain | undefined,
|
30
|
+
account extends Account | undefined = Account | undefined,
|
31
|
+
chainOverride extends Chain | undefined = Chain | undefined,
|
32
|
+
_derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>,
|
33
|
+
> = UnionEvaluate<
|
34
|
+
UnionOmit<
|
35
|
+
FormattedTransactionRequest<_derivedChain>,
|
36
|
+
| 'accessList'
|
37
|
+
| 'data'
|
38
|
+
| 'from'
|
39
|
+
| 'gas'
|
40
|
+
| 'gasPrice'
|
41
|
+
| 'to'
|
42
|
+
| 'type'
|
43
|
+
| 'value'
|
44
|
+
>
|
45
|
+
> &
|
46
|
+
GetAccountParameter<account, Account | Address> &
|
47
|
+
GetChainParameter<chain, chainOverride> & {
|
48
|
+
/**
|
49
|
+
* Gas limit for transaction execution on the L2.
|
50
|
+
* `null` to skip gas estimation & defer calculation to signer.
|
51
|
+
*/
|
52
|
+
gas?: bigint | null
|
53
|
+
/** Withdrawal request. Supplied to the L2ToL1MessagePasser `initiateWithdrawal` method. */
|
54
|
+
request: WithdrawalRequest
|
55
|
+
}
|
56
|
+
export type InitiateWithdrawalReturnType = Hash
|
57
|
+
export type InitiateWithdrawalErrorType =
|
58
|
+
| EstimateInitiateWithdrawalGasErrorType
|
59
|
+
| WriteContractErrorType
|
60
|
+
| ErrorType
|
61
|
+
|
62
|
+
/**
|
63
|
+
* Initiates a [withdrawal](https://community.optimism.io/docs/protocol/withdrawal-flow/#withdrawal-initiating-transaction) on an L2 to the L1.
|
64
|
+
*
|
65
|
+
* Internally performs a contract write to the [`initiateWithdrawal` function](https://github.com/ethereum-optimism/optimism/blob/283f0aa2e3358ced30ff7cbd4028c0c0c3faa140/packages/contracts-bedrock/src/L2/L2ToL1MessagePasser.sol#L73)
|
66
|
+
* on the [Optimism L2ToL1MessagePasser predeploy contract](https://github.com/ethereum-optimism/optimism/blob/283f0aa2e3358ced30ff7cbd4028c0c0c3faa140/packages/contracts-bedrock/src/L2/L2ToL1MessagePasser.sol).
|
67
|
+
*
|
68
|
+
* - Docs: https://viem.sh/op-stack/actions/initiateWithdrawal.html
|
69
|
+
*
|
70
|
+
* @param client - Client to use
|
71
|
+
* @param parameters - {@link InitiateWithdrawalParameters}
|
72
|
+
* @returns The L2 transaction hash. {@link InitiateWithdrawalReturnType}
|
73
|
+
*
|
74
|
+
* @example
|
75
|
+
* import { createWalletClient, custom, parseEther } from 'viem'
|
76
|
+
* import { base, mainnet } from 'viem/chains'
|
77
|
+
* import { initiateWithdrawal } from 'viem/op-stack'
|
78
|
+
*
|
79
|
+
* const client = createWalletClient({
|
80
|
+
* chain: mainnet,
|
81
|
+
* transport: custom(window.ethereum),
|
82
|
+
* })
|
83
|
+
*
|
84
|
+
* const hash = await initiateWithdrawal(client, {
|
85
|
+
* account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
|
86
|
+
* args: {
|
87
|
+
* gas: 21_000n,
|
88
|
+
* to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
|
89
|
+
* value: parseEther('1'),
|
90
|
+
* },
|
91
|
+
* })
|
92
|
+
*
|
93
|
+
* @example
|
94
|
+
* // Account Hoisting
|
95
|
+
* import { createWalletClient, http } from 'viem'
|
96
|
+
* import { privateKeyToAccount } from 'viem/accounts'
|
97
|
+
* import { base, mainnet } from 'viem/chains'
|
98
|
+
* import { initiateWithdrawal } from 'viem/op-stack'
|
99
|
+
*
|
100
|
+
* const client = createWalletClient({
|
101
|
+
* account: privateKeyToAccount('0x…'),
|
102
|
+
* chain: mainnet,
|
103
|
+
* transport: http(),
|
104
|
+
* })
|
105
|
+
*
|
106
|
+
* const hash = await initiateWithdrawal(client, {
|
107
|
+
* request: {
|
108
|
+
* gas: 21_000n,
|
109
|
+
* to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
|
110
|
+
* value: parseEther('1'),
|
111
|
+
* },
|
112
|
+
* })
|
113
|
+
*/
|
114
|
+
export async function initiateWithdrawal<
|
115
|
+
chain extends Chain | undefined,
|
116
|
+
account extends Account | undefined,
|
117
|
+
chainOverride extends Chain | undefined = undefined,
|
118
|
+
>(
|
119
|
+
client: Client<Transport, chain, account>,
|
120
|
+
parameters: InitiateWithdrawalParameters<chain, account, chainOverride>,
|
121
|
+
) {
|
122
|
+
const {
|
123
|
+
account,
|
124
|
+
chain = client.chain,
|
125
|
+
gas,
|
126
|
+
maxFeePerGas,
|
127
|
+
maxPriorityFeePerGas,
|
128
|
+
nonce,
|
129
|
+
request: { data = '0x', gas: l1Gas, to, value },
|
130
|
+
} = parameters
|
131
|
+
|
132
|
+
const gas_ =
|
133
|
+
typeof gas !== 'number' && gas !== null
|
134
|
+
? await estimateInitiateWithdrawalGas(
|
135
|
+
client,
|
136
|
+
parameters as EstimateInitiateWithdrawalGasParameters,
|
137
|
+
)
|
138
|
+
: undefined
|
139
|
+
|
140
|
+
return writeContract(client, {
|
141
|
+
account: account!,
|
142
|
+
abi: l2ToL1MessagePasserAbi,
|
143
|
+
address: contracts.l2ToL1MessagePasser.address,
|
144
|
+
chain,
|
145
|
+
functionName: 'initiateWithdrawal',
|
146
|
+
args: [to, l1Gas, data],
|
147
|
+
gas: gas_,
|
148
|
+
maxFeePerGas,
|
149
|
+
maxPriorityFeePerGas,
|
150
|
+
nonce,
|
151
|
+
value,
|
152
|
+
} satisfies WriteContractParameters as any)
|
153
|
+
}
|
@@ -0,0 +1,151 @@
|
|
1
|
+
import type { Address } from 'abitype'
|
2
|
+
import {
|
3
|
+
type WriteContractErrorType,
|
4
|
+
writeContract,
|
5
|
+
} from '../../../actions/wallet/writeContract.js'
|
6
|
+
import type { Client } from '../../../clients/createClient.js'
|
7
|
+
import type { Transport } from '../../../clients/transports/createTransport.js'
|
8
|
+
import type { ErrorType } from '../../../errors/utils.js'
|
9
|
+
import type { Account, GetAccountParameter } from '../../../types/account.js'
|
10
|
+
import type {
|
11
|
+
Chain,
|
12
|
+
DeriveChain,
|
13
|
+
GetChainParameter,
|
14
|
+
} from '../../../types/chain.js'
|
15
|
+
import type { Hash, Hex } from '../../../types/misc.js'
|
16
|
+
import type { UnionEvaluate, UnionOmit } from '../../../types/utils.js'
|
17
|
+
import type { FormattedTransactionRequest } from '../../../utils/formatters/transactionRequest.js'
|
18
|
+
import { portalAbi } from '../abis.js'
|
19
|
+
import type { GetContractAddressParameter } from '../types/contract.js'
|
20
|
+
import {
|
21
|
+
type EstimateProveWithdrawalGasErrorType,
|
22
|
+
type EstimateProveWithdrawalGasParameters,
|
23
|
+
estimateProveWithdrawalGas,
|
24
|
+
} from './estimateProveWithdrawalGas.js'
|
25
|
+
|
26
|
+
export type ProveWithdrawalParameters<
|
27
|
+
chain extends Chain | undefined = Chain | undefined,
|
28
|
+
account extends Account | undefined = Account | undefined,
|
29
|
+
chainOverride extends Chain | undefined = Chain | undefined,
|
30
|
+
_derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>,
|
31
|
+
> = UnionEvaluate<
|
32
|
+
UnionOmit<
|
33
|
+
FormattedTransactionRequest<_derivedChain>,
|
34
|
+
| 'accessList'
|
35
|
+
| 'data'
|
36
|
+
| 'from'
|
37
|
+
| 'gas'
|
38
|
+
| 'gasPrice'
|
39
|
+
| 'to'
|
40
|
+
| 'type'
|
41
|
+
| 'value'
|
42
|
+
>
|
43
|
+
> &
|
44
|
+
GetAccountParameter<account, Account | Address> &
|
45
|
+
GetChainParameter<chain, chainOverride> &
|
46
|
+
GetContractAddressParameter<_derivedChain, 'portal'> & {
|
47
|
+
/**
|
48
|
+
* Gas limit for transaction execution on the L1.
|
49
|
+
* `null` to skip gas estimation & defer calculation to signer.
|
50
|
+
*/
|
51
|
+
gas?: bigint | null
|
52
|
+
l2OutputIndex: bigint
|
53
|
+
outputRootProof: {
|
54
|
+
version: Hex
|
55
|
+
stateRoot: Hex
|
56
|
+
messagePasserStorageRoot: Hex
|
57
|
+
latestBlockhash: Hex
|
58
|
+
}
|
59
|
+
withdrawalProof: readonly Hex[]
|
60
|
+
withdrawal: {
|
61
|
+
data: Hex
|
62
|
+
gasLimit: bigint
|
63
|
+
nonce: bigint
|
64
|
+
sender: Address
|
65
|
+
target: Address
|
66
|
+
value: bigint
|
67
|
+
}
|
68
|
+
}
|
69
|
+
export type ProveWithdrawalReturnType = Hash
|
70
|
+
export type ProveWithdrawalErrorType =
|
71
|
+
| EstimateProveWithdrawalGasErrorType
|
72
|
+
| WriteContractErrorType
|
73
|
+
| ErrorType
|
74
|
+
|
75
|
+
/**
|
76
|
+
* Proves a withdrawal that occurred on an L2. Used in the Withdrawal flow.
|
77
|
+
*
|
78
|
+
* - Docs: https://viem.sh/op-stack/actions/proveWithdrawal.html
|
79
|
+
*
|
80
|
+
* @param client - Client to use
|
81
|
+
* @param parameters - {@link ProveWithdrawalParameters}
|
82
|
+
* @returns The prove transaction hash. {@link ProveWithdrawalReturnType}
|
83
|
+
*
|
84
|
+
* @example
|
85
|
+
* import { createWalletClient, http } from 'viem'
|
86
|
+
* import { mainnet, optimism } from 'viem/chains'
|
87
|
+
* import { proveWithdrawal } from 'viem/op-stack'
|
88
|
+
*
|
89
|
+
* const walletClientL1 = createWalletClient({
|
90
|
+
* chain: mainnet,
|
91
|
+
* transport: http(),
|
92
|
+
* })
|
93
|
+
*
|
94
|
+
* const request = await proveWithdrawal(walletClientL1, {
|
95
|
+
* account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
|
96
|
+
* l2OutputIndex: 4529n,
|
97
|
+
* outputRootProof: { ... },
|
98
|
+
* targetChain: optimism,
|
99
|
+
* withdrawalProof: [ ... ],
|
100
|
+
* withdrawal: { ... },
|
101
|
+
* })
|
102
|
+
*/
|
103
|
+
export async function proveWithdrawal<
|
104
|
+
chain extends Chain | undefined,
|
105
|
+
account extends Account | undefined,
|
106
|
+
chainOverride extends Chain | undefined = undefined,
|
107
|
+
>(
|
108
|
+
client: Client<Transport, chain, account>,
|
109
|
+
parameters: ProveWithdrawalParameters<chain, account, chainOverride>,
|
110
|
+
): Promise<ProveWithdrawalReturnType> {
|
111
|
+
const {
|
112
|
+
account,
|
113
|
+
chain = client.chain,
|
114
|
+
gas,
|
115
|
+
l2OutputIndex,
|
116
|
+
maxFeePerGas,
|
117
|
+
maxPriorityFeePerGas,
|
118
|
+
nonce,
|
119
|
+
outputRootProof,
|
120
|
+
targetChain,
|
121
|
+
withdrawalProof,
|
122
|
+
withdrawal,
|
123
|
+
} = parameters
|
124
|
+
|
125
|
+
const portalAddress = (() => {
|
126
|
+
if (parameters.portalAddress) return parameters.portalAddress
|
127
|
+
if (chain) return targetChain!.contracts.portal[chain.id].address
|
128
|
+
return Object.values(targetChain!.contracts.portal)[0].address
|
129
|
+
})()
|
130
|
+
|
131
|
+
const gas_ =
|
132
|
+
typeof gas !== 'number' && gas !== null
|
133
|
+
? await estimateProveWithdrawalGas(
|
134
|
+
client,
|
135
|
+
parameters as EstimateProveWithdrawalGasParameters,
|
136
|
+
)
|
137
|
+
: undefined
|
138
|
+
|
139
|
+
return writeContract(client, {
|
140
|
+
account,
|
141
|
+
abi: portalAbi,
|
142
|
+
address: portalAddress,
|
143
|
+
chain,
|
144
|
+
functionName: 'proveWithdrawalTransaction',
|
145
|
+
args: [withdrawal, l2OutputIndex, outputRootProof, withdrawalProof],
|
146
|
+
gas: gas_,
|
147
|
+
maxFeePerGas,
|
148
|
+
maxPriorityFeePerGas,
|
149
|
+
nonce,
|
150
|
+
})
|
151
|
+
}
|
@@ -0,0 +1,111 @@
|
|
1
|
+
import type { Client } from '../../../clients/createClient.js'
|
2
|
+
import type { Transport } from '../../../clients/transports/createTransport.js'
|
3
|
+
import { ContractFunctionRevertedError } from '../../../errors/contract.js'
|
4
|
+
import type { ErrorType } from '../../../errors/utils.js'
|
5
|
+
import type { Account } from '../../../types/account.js'
|
6
|
+
import type {
|
7
|
+
Chain,
|
8
|
+
DeriveChain,
|
9
|
+
GetChainParameter,
|
10
|
+
} from '../../../types/chain.js'
|
11
|
+
import { poll } from '../../../utils/poll.js'
|
12
|
+
import type { GetContractAddressParameter } from '../types/contract.js'
|
13
|
+
import {
|
14
|
+
type GetL2OutputErrorType,
|
15
|
+
type GetL2OutputReturnType,
|
16
|
+
getL2Output,
|
17
|
+
} from './getL2Output.js'
|
18
|
+
import {
|
19
|
+
type GetTimeToNextL2OutputErrorType,
|
20
|
+
type GetTimeToNextL2OutputParameters,
|
21
|
+
getTimeToNextL2Output,
|
22
|
+
} from './getTimeToNextL2Output.js'
|
23
|
+
|
24
|
+
export type WaitForNextL2OutputParameters<
|
25
|
+
chain extends Chain | undefined = Chain | undefined,
|
26
|
+
chainOverride extends Chain | undefined = Chain | undefined,
|
27
|
+
_derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>,
|
28
|
+
> = GetChainParameter<chain, chainOverride> &
|
29
|
+
GetContractAddressParameter<_derivedChain, 'l2OutputOracle'> & {
|
30
|
+
/**
|
31
|
+
* The buffer to account for discrepencies between non-deterministic time intervals.
|
32
|
+
* @default 1.1
|
33
|
+
*/
|
34
|
+
intervalBuffer?: GetTimeToNextL2OutputParameters['intervalBuffer']
|
35
|
+
l2BlockNumber: bigint
|
36
|
+
/**
|
37
|
+
* Polling frequency (in ms). Defaults to Client's pollingInterval config.
|
38
|
+
* @default client.pollingInterval
|
39
|
+
*/
|
40
|
+
pollingInterval?: number
|
41
|
+
}
|
42
|
+
export type WaitForNextL2OutputReturnType = GetL2OutputReturnType
|
43
|
+
export type WaitForNextL2OutputErrorType =
|
44
|
+
| GetL2OutputErrorType
|
45
|
+
| GetTimeToNextL2OutputErrorType
|
46
|
+
| ErrorType
|
47
|
+
|
48
|
+
/**
|
49
|
+
* Waits for the next L2 output (after the provided block number) to be submitted.
|
50
|
+
*
|
51
|
+
* - Docs: https://viem.sh/op-stack/actions/waitForNextL2Output.html
|
52
|
+
*
|
53
|
+
* @param client - Client to use
|
54
|
+
* @param parameters - {@link WaitForNextL2OutputParameters}
|
55
|
+
* @returns The L2 transaction hash. {@link WaitForNextL2OutputReturnType}
|
56
|
+
*
|
57
|
+
* @example
|
58
|
+
* import { createPublicClient, http } from 'viem'
|
59
|
+
* import { getBlockNumber } from 'viem/actions'
|
60
|
+
* import { mainnet, optimism } from 'viem/chains'
|
61
|
+
* import { waitForNextL2Output } from 'viem/op-stack'
|
62
|
+
*
|
63
|
+
* const publicClientL1 = createPublicClient({
|
64
|
+
* chain: mainnet,
|
65
|
+
* transport: http(),
|
66
|
+
* })
|
67
|
+
* const publicClientL2 = createPublicClient({
|
68
|
+
* chain: optimism,
|
69
|
+
* transport: http(),
|
70
|
+
* })
|
71
|
+
*
|
72
|
+
* const l2BlockNumber = await getBlockNumber(publicClientL2)
|
73
|
+
* await waitForNextL2Output(publicClientL1, {
|
74
|
+
* l2BlockNumber,
|
75
|
+
* targetChain: optimism
|
76
|
+
* })
|
77
|
+
*/
|
78
|
+
export async function waitForNextL2Output<
|
79
|
+
chain extends Chain | undefined,
|
80
|
+
account extends Account | undefined,
|
81
|
+
chainOverride extends Chain | undefined = undefined,
|
82
|
+
>(
|
83
|
+
client: Client<Transport, chain, account>,
|
84
|
+
parameters: WaitForNextL2OutputParameters<chain, chainOverride>,
|
85
|
+
): Promise<WaitForNextL2OutputReturnType> {
|
86
|
+
const { pollingInterval = client.pollingInterval } = parameters
|
87
|
+
|
88
|
+
const { seconds } = await getTimeToNextL2Output(client, parameters)
|
89
|
+
|
90
|
+
return new Promise((resolve, reject) => {
|
91
|
+
poll(
|
92
|
+
async ({ unpoll }) => {
|
93
|
+
try {
|
94
|
+
const output = await getL2Output(client, parameters)
|
95
|
+
unpoll()
|
96
|
+
resolve(output)
|
97
|
+
} catch (e) {
|
98
|
+
const error = e as GetL2OutputErrorType
|
99
|
+
if (!(error.cause instanceof ContractFunctionRevertedError)) {
|
100
|
+
unpoll()
|
101
|
+
reject(e)
|
102
|
+
}
|
103
|
+
}
|
104
|
+
},
|
105
|
+
{
|
106
|
+
interval: pollingInterval,
|
107
|
+
initialWaitTime: async () => seconds * 1000,
|
108
|
+
},
|
109
|
+
)
|
110
|
+
})
|
111
|
+
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
import type { Client } from '../../../clients/createClient.js'
|
2
|
+
import type { Transport } from '../../../clients/transports/createTransport.js'
|
3
|
+
import type { ErrorType } from '../../../errors/utils.js'
|
4
|
+
import type { Account } from '../../../types/account.js'
|
5
|
+
import type { Chain } from '../../../types/chain.js'
|
6
|
+
import { wait } from '../../../utils/wait.js'
|
7
|
+
import {
|
8
|
+
type GetTimeToFinalizeErrorType,
|
9
|
+
type GetTimeToFinalizeParameters,
|
10
|
+
getTimeToFinalize,
|
11
|
+
} from './getTimeToFinalize.js'
|
12
|
+
|
13
|
+
export type WaitToFinalizeParameters<
|
14
|
+
chain extends Chain | undefined = Chain | undefined,
|
15
|
+
chainOverride extends Chain | undefined = Chain | undefined,
|
16
|
+
> = GetTimeToFinalizeParameters<chain, chainOverride>
|
17
|
+
export type WaitToFinalizeReturnType = void
|
18
|
+
export type WaitToFinalizeErrorType = GetTimeToFinalizeErrorType | ErrorType
|
19
|
+
|
20
|
+
/**
|
21
|
+
* Waits until the withdrawal transaction can be finalized. Used for the [Withdrawal](/op-stack/guides/withdrawals.html) flow.
|
22
|
+
*
|
23
|
+
* - Docs: https://viem.sh/op-stack/actions/waitToFinalize.html
|
24
|
+
*
|
25
|
+
* @param client - Client to use
|
26
|
+
* @param parameters - {@link WaitToFinalizeParameters}
|
27
|
+
*
|
28
|
+
* @example
|
29
|
+
* import { createPublicClient, http } from 'viem'
|
30
|
+
* import { getBlockNumber } from 'viem/actions'
|
31
|
+
* import { mainnet, optimism } from 'viem/chains'
|
32
|
+
* import { waitToFinalize } from 'viem/op-stack'
|
33
|
+
*
|
34
|
+
* const publicClientL1 = createPublicClient({
|
35
|
+
* chain: mainnet,
|
36
|
+
* transport: http(),
|
37
|
+
* })
|
38
|
+
* const publicClientL2 = createPublicClient({
|
39
|
+
* chain: optimism,
|
40
|
+
* transport: http(),
|
41
|
+
* })
|
42
|
+
*
|
43
|
+
* const receipt = await getTransactionReceipt(publicClientL2, {
|
44
|
+
* hash: '0x9a2f4283636ddeb9ac32382961b22c177c9e86dd3b283735c154f897b1a7ff4a',
|
45
|
+
* })
|
46
|
+
*
|
47
|
+
* const [withdrawal] = getWithdrawals(receipt)
|
48
|
+
*
|
49
|
+
* await waitToFinalize(publicClientL1, {
|
50
|
+
* withdrawalHash: withdrawal.withdrawalHash,
|
51
|
+
* targetChain: optimism
|
52
|
+
* })
|
53
|
+
*/
|
54
|
+
export async function waitToFinalize<
|
55
|
+
chain extends Chain | undefined,
|
56
|
+
account extends Account | undefined,
|
57
|
+
chainOverride extends Chain | undefined = undefined,
|
58
|
+
>(
|
59
|
+
client: Client<Transport, chain, account>,
|
60
|
+
parameters: WaitToFinalizeParameters<chain, chainOverride>,
|
61
|
+
): Promise<WaitToFinalizeReturnType> {
|
62
|
+
const { seconds } = await getTimeToFinalize(client, parameters)
|
63
|
+
await wait(seconds * 1000)
|
64
|
+
}
|