viem 2.0.0-beta.9 → 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/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/transaction.d.ts +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/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/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
@@ -21,6 +21,11 @@ export const base = /*#__PURE__*/ defineChain({
|
|
21
21
|
},
|
22
22
|
contracts: {
|
23
23
|
...chainConfig.contracts,
|
24
|
+
l2OutputOracle: {
|
25
|
+
[sourceId]: {
|
26
|
+
address: '0x56315b90c40730925ec5485cf004d835058518A0',
|
27
|
+
},
|
28
|
+
},
|
24
29
|
multicall3: {
|
25
30
|
address: '0xca11bde05977b3631167028862be2a173976ca11',
|
26
31
|
blockCreated: 5022,
|
@@ -19,6 +19,11 @@ export const baseGoerli = /*#__PURE__*/ defineChain({
|
|
19
19
|
},
|
20
20
|
contracts: {
|
21
21
|
...chainConfig.contracts,
|
22
|
+
l2OutputOracle: {
|
23
|
+
[sourceId]: {
|
24
|
+
address: '0x2A35891ff30313CcFa6CE88dcf3858bb075A2298',
|
25
|
+
},
|
26
|
+
},
|
22
27
|
multicall3: {
|
23
28
|
address: '0xca11bde05977b3631167028862be2a173976ca11',
|
24
29
|
blockCreated: 1376988,
|
@@ -29,6 +29,11 @@ export const baseSepolia = /*#__PURE__*/ defineChain({
|
|
29
29
|
},
|
30
30
|
contracts: {
|
31
31
|
...chainConfig.contracts,
|
32
|
+
l2OutputOracle: {
|
33
|
+
[sourceId]: {
|
34
|
+
address: '0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254',
|
35
|
+
},
|
36
|
+
},
|
32
37
|
portal: {
|
33
38
|
[sourceId]: {
|
34
39
|
address: '0x49f53e41452c74589e85ca1677426ba426459e85',
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { defineChain } from '../../utils/chain/defineChain.js'
|
2
|
+
|
3
|
+
export const fantomSonicTestnet = /*#__PURE__*/ defineChain({
|
4
|
+
id: 64_240,
|
5
|
+
name: 'Fantom Sonic Open Testnet',
|
6
|
+
network: 'fantom-sonic-testnet',
|
7
|
+
nativeCurrency: {
|
8
|
+
decimals: 18,
|
9
|
+
name: 'Fantom',
|
10
|
+
symbol: 'FTM',
|
11
|
+
},
|
12
|
+
rpcUrls: {
|
13
|
+
default: { http: ['https://rpcapi.sonic.fantom.network'] },
|
14
|
+
public: { http: ['https://rpcapi.sonic.fantom.network'] },
|
15
|
+
},
|
16
|
+
blockExplorers: {
|
17
|
+
default: {
|
18
|
+
name: 'Fantom Sonic Open Testnet Explorer',
|
19
|
+
url: 'https://public-sonic.fantom.network',
|
20
|
+
},
|
21
|
+
},
|
22
|
+
testnet: true,
|
23
|
+
})
|
@@ -21,6 +21,11 @@ export const optimism = /*#__PURE__*/ defineChain({
|
|
21
21
|
},
|
22
22
|
contracts: {
|
23
23
|
...chainConfig.contracts,
|
24
|
+
l2OutputOracle: {
|
25
|
+
[sourceId]: {
|
26
|
+
address: '0xdfe97868233d1aa22e815a266982f2cf17685a27',
|
27
|
+
},
|
28
|
+
},
|
24
29
|
multicall3: {
|
25
30
|
address: '0xca11bde05977b3631167028862be2a173976ca11',
|
26
31
|
blockCreated: 4286263,
|
@@ -21,6 +21,11 @@ export const optimismGoerli = /*#__PURE__*/ defineChain({
|
|
21
21
|
},
|
22
22
|
contracts: {
|
23
23
|
...chainConfig.contracts,
|
24
|
+
l2OutputOracle: {
|
25
|
+
[sourceId]: {
|
26
|
+
address: '0xE6Dfba0953616Bacab0c9A8ecb3a9BBa77FC15c0',
|
27
|
+
},
|
28
|
+
},
|
24
29
|
multicall3: {
|
25
30
|
address: '0xca11bde05977b3631167028862be2a173976ca11',
|
26
31
|
blockCreated: 49461,
|
@@ -21,6 +21,11 @@ export const optimismSepolia = /*#__PURE__*/ defineChain({
|
|
21
21
|
},
|
22
22
|
contracts: {
|
23
23
|
...chainConfig.contracts,
|
24
|
+
l2OutputOracle: {
|
25
|
+
[sourceId]: {
|
26
|
+
address: '0x90E9c4f8a994a250F6aEfd61CAFb4F2e895D458F',
|
27
|
+
},
|
28
|
+
},
|
24
29
|
multicall3: {
|
25
30
|
address: '0xca11bde05977b3631167028862be2a173976ca11',
|
26
31
|
blockCreated: 1620204,
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
2
2
|
import { formatters } from '../opStack/formatters.js'
|
3
3
|
|
4
|
+
const sourceId = 1 // mainnet
|
5
|
+
|
4
6
|
export const pgn = /*#__PURE__*/ defineChain({
|
5
7
|
id: 424,
|
6
8
|
network: 'pgn',
|
@@ -25,10 +27,21 @@ export const pgn = /*#__PURE__*/ defineChain({
|
|
25
27
|
},
|
26
28
|
},
|
27
29
|
contracts: {
|
30
|
+
l2OutputOracle: {
|
31
|
+
[sourceId]: {
|
32
|
+
address: '0x9E6204F750cD866b299594e2aC9eA824E2e5f95c',
|
33
|
+
},
|
34
|
+
},
|
28
35
|
multicall3: {
|
29
36
|
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
30
37
|
blockCreated: 3380209,
|
31
38
|
},
|
39
|
+
portal: {
|
40
|
+
[sourceId]: {
|
41
|
+
address: '0xb26Fd985c5959bBB382BAFdD0b879E149e48116c',
|
42
|
+
},
|
43
|
+
},
|
32
44
|
},
|
33
45
|
formatters,
|
46
|
+
sourceId,
|
34
47
|
})
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
2
2
|
import { formatters } from '../opStack/formatters.js'
|
3
3
|
|
4
|
+
const sourceId = 11_155_111 // sepolia
|
5
|
+
|
4
6
|
export const pgnTestnet = /*#__PURE__*/ defineChain({
|
5
7
|
id: 58008,
|
6
8
|
network: 'pgn-testnet',
|
@@ -25,11 +27,17 @@ export const pgnTestnet = /*#__PURE__*/ defineChain({
|
|
25
27
|
},
|
26
28
|
},
|
27
29
|
contracts: {
|
30
|
+
l2OutputOracle: {
|
31
|
+
[sourceId]: {
|
32
|
+
address: '0xD5bAc3152ffC25318F848B3DD5dA6C85171BaEEe',
|
33
|
+
},
|
34
|
+
},
|
28
35
|
multicall3: {
|
29
36
|
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
30
37
|
blockCreated: 3754925,
|
31
38
|
},
|
32
39
|
},
|
33
40
|
formatters,
|
41
|
+
sourceId,
|
34
42
|
testnet: true,
|
35
43
|
})
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { defineChain } from '../../utils/chain/defineChain.js'
|
2
|
+
|
3
|
+
export const zilliqa = /*#__PURE__*/ defineChain({
|
4
|
+
id: 32769,
|
5
|
+
name: 'Zilliqa',
|
6
|
+
network: 'zilliqa',
|
7
|
+
nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 },
|
8
|
+
rpcUrls: {
|
9
|
+
default: {
|
10
|
+
http: ['https://api.zilliqa.com'],
|
11
|
+
},
|
12
|
+
public: {
|
13
|
+
http: ['https://api.zilliqa.com'],
|
14
|
+
},
|
15
|
+
},
|
16
|
+
blockExplorers: {
|
17
|
+
default: {
|
18
|
+
name: 'Ethernal',
|
19
|
+
url: 'https://evmx.zilliqa.com',
|
20
|
+
},
|
21
|
+
},
|
22
|
+
testnet: false,
|
23
|
+
})
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { defineChain } from '../../utils/chain/defineChain.js'
|
2
|
+
|
3
|
+
export const zilliqaTestnet = /*#__PURE__*/ defineChain({
|
4
|
+
id: 33101,
|
5
|
+
name: 'Zilliqa Testnet',
|
6
|
+
network: 'zilliqa-testnet',
|
7
|
+
nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 },
|
8
|
+
rpcUrls: {
|
9
|
+
default: {
|
10
|
+
http: ['https://dev-api.zilliqa.com'],
|
11
|
+
},
|
12
|
+
public: {
|
13
|
+
http: ['https://dev-api.zilliqa.com'],
|
14
|
+
},
|
15
|
+
},
|
16
|
+
blockExplorers: {
|
17
|
+
default: {
|
18
|
+
name: 'Ethernal',
|
19
|
+
url: 'https://evmx.testnet.zilliqa.com',
|
20
|
+
},
|
21
|
+
},
|
22
|
+
testnet: true,
|
23
|
+
})
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import { defineChain } from '../../utils/chain/defineChain.js'
|
2
|
+
import { chainConfig } from '../zksync/chainConfig.js'
|
3
|
+
|
4
|
+
export const zkSyncSepoliaTestnet = /*#__PURE__*/ defineChain({
|
5
|
+
...chainConfig,
|
6
|
+
id: 300,
|
7
|
+
name: 'zkSync Sepolia Testnet',
|
8
|
+
network: 'zksync-sepolia-testnet',
|
9
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
10
|
+
rpcUrls: {
|
11
|
+
default: {
|
12
|
+
http: ['https://sepolia.era.zksync.dev'],
|
13
|
+
webSocket: ['wss://sepolia.era.zksync.dev/ws'],
|
14
|
+
},
|
15
|
+
public: {
|
16
|
+
http: ['https://sepolia.era.zksync.dev'],
|
17
|
+
webSocket: ['wss://sepolia.era.zksync.dev/ws'],
|
18
|
+
},
|
19
|
+
},
|
20
|
+
blockExplorers: {
|
21
|
+
default: {
|
22
|
+
name: 'zkExplorer',
|
23
|
+
url: 'https://sepolia.explorer.zksync.io/',
|
24
|
+
},
|
25
|
+
},
|
26
|
+
contracts: {
|
27
|
+
multicall3: {
|
28
|
+
address: '0xF9cda624FBC7e059355ce98a31693d299FACd963',
|
29
|
+
},
|
30
|
+
},
|
31
|
+
testnet: true,
|
32
|
+
})
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
2
2
|
import { chainConfig } from '../zksync/chainConfig.js'
|
3
3
|
|
4
|
+
/** @deprecated Use `zkSyncSepoliaTestnet` */
|
4
5
|
export const zkSyncTestnet = /*#__PURE__*/ defineChain({
|
5
6
|
...chainConfig,
|
6
7
|
id: 280,
|
@@ -12,6 +13,10 @@ export const zkSyncTestnet = /*#__PURE__*/ defineChain({
|
|
12
13
|
http: ['https://testnet.era.zksync.dev'],
|
13
14
|
webSocket: ['wss://testnet.era.zksync.dev/ws'],
|
14
15
|
},
|
16
|
+
public: {
|
17
|
+
http: ['https://testnet.era.zksync.dev'],
|
18
|
+
webSocket: ['wss://testnet.era.zksync.dev/ws'],
|
19
|
+
},
|
15
20
|
},
|
16
21
|
blockExplorers: {
|
17
22
|
default: {
|
@@ -23,6 +23,11 @@ export const zora = /*#__PURE__*/ defineChain({
|
|
23
23
|
},
|
24
24
|
contracts: {
|
25
25
|
...chainConfig.contracts,
|
26
|
+
l2OutputOracle: {
|
27
|
+
[sourceId]: {
|
28
|
+
address: '0x9E6204F750cD866b299594e2aC9eA824E2e5f95c',
|
29
|
+
},
|
30
|
+
},
|
26
31
|
multicall3: {
|
27
32
|
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
28
33
|
blockCreated: 5882,
|
@@ -31,6 +31,11 @@ export const zoraSepolia = /*#__PURE__*/ defineChain({
|
|
31
31
|
},
|
32
32
|
contracts: {
|
33
33
|
...chainConfig.contracts,
|
34
|
+
l2OutputOracle: {
|
35
|
+
[sourceId]: {
|
36
|
+
address: '0x2615B481Bd3E5A1C0C7Ca3Da1bdc663E8615Ade9',
|
37
|
+
},
|
38
|
+
},
|
34
39
|
multicall3: {
|
35
40
|
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
36
41
|
blockCreated: 83160,
|
package/chains/index.ts
CHANGED
@@ -45,6 +45,7 @@ export { evmosTestnet } from './definitions/evmosTestnet.js'
|
|
45
45
|
export { ekta } from './definitions/ekta.js'
|
46
46
|
export { ektaTestnet } from './definitions/ektaTestnet.js'
|
47
47
|
export { fantom } from './definitions/fantom.js'
|
48
|
+
export { fantomSonicTestnet } from './definitions/fantomSonicTestnet.js'
|
48
49
|
export { fantomTestnet } from './definitions/fantomTestnet.js'
|
49
50
|
export { fibo } from './definitions/fibo.js'
|
50
51
|
export { filecoin } from './definitions/filecoin.js'
|
@@ -165,7 +166,10 @@ export { xdcTestnet } from './definitions/xdcTestnet.js'
|
|
165
166
|
export { zhejiang } from './definitions/zhejiang.js'
|
166
167
|
export { zkSync } from './definitions/zkSync.js'
|
167
168
|
export { zkSyncTestnet } from './definitions/zkSyncTestnet.js'
|
169
|
+
export { zkSyncSepoliaTestnet } from './definitions/zkSyncSepoliaTestnet.js'
|
168
170
|
export { zetachainAthensTestnet } from './definitions/zetachainAthensTestnet.js'
|
171
|
+
export { zilliqa } from './definitions/zilliqa.js'
|
172
|
+
export { zilliqaTestnet } from './definitions/zilliqaTestnet.js'
|
169
173
|
export { zora } from './definitions/zora.js'
|
170
174
|
export { zoraSepolia } from './definitions/zoraSepolia.js'
|
171
175
|
export { zoraTestnet } from './definitions/zoraTestnet.js'
|
@@ -188,4 +192,9 @@ export type {
|
|
188
192
|
OpStackTransaction,
|
189
193
|
OpStackTransactionReceipt,
|
190
194
|
OpStackTransactionReceiptOverrides,
|
195
|
+
OpStackTransactionSerializable,
|
196
|
+
OpStackTransactionSerialized,
|
197
|
+
OpStackTransactionType,
|
198
|
+
TransactionSerializableDeposit,
|
199
|
+
TransactionSerializedDeposit,
|
191
200
|
} from './opStack/types/transaction.js'
|
package/chains/opStack/abis.ts
CHANGED
@@ -72,6 +72,373 @@ export const gasPriceOracleAbi = [
|
|
72
72
|
},
|
73
73
|
] as const
|
74
74
|
|
75
|
+
export const l2OutputOracleAbi = [
|
76
|
+
{
|
77
|
+
inputs: [
|
78
|
+
{ internalType: 'uint256', name: '_submissionInterval', type: 'uint256' },
|
79
|
+
{ internalType: 'uint256', name: '_l2BlockTime', type: 'uint256' },
|
80
|
+
{
|
81
|
+
internalType: 'uint256',
|
82
|
+
name: '_startingBlockNumber',
|
83
|
+
type: 'uint256',
|
84
|
+
},
|
85
|
+
{ internalType: 'uint256', name: '_startingTimestamp', type: 'uint256' },
|
86
|
+
{ internalType: 'address', name: '_proposer', type: 'address' },
|
87
|
+
{ internalType: 'address', name: '_challenger', type: 'address' },
|
88
|
+
{
|
89
|
+
internalType: 'uint256',
|
90
|
+
name: '_finalizationPeriodSeconds',
|
91
|
+
type: 'uint256',
|
92
|
+
},
|
93
|
+
],
|
94
|
+
stateMutability: 'nonpayable',
|
95
|
+
type: 'constructor',
|
96
|
+
},
|
97
|
+
{
|
98
|
+
anonymous: false,
|
99
|
+
inputs: [
|
100
|
+
{ indexed: false, internalType: 'uint8', name: 'version', type: 'uint8' },
|
101
|
+
],
|
102
|
+
name: 'Initialized',
|
103
|
+
type: 'event',
|
104
|
+
},
|
105
|
+
{
|
106
|
+
anonymous: false,
|
107
|
+
inputs: [
|
108
|
+
{
|
109
|
+
indexed: true,
|
110
|
+
internalType: 'bytes32',
|
111
|
+
name: 'outputRoot',
|
112
|
+
type: 'bytes32',
|
113
|
+
},
|
114
|
+
{
|
115
|
+
indexed: true,
|
116
|
+
internalType: 'uint256',
|
117
|
+
name: 'l2OutputIndex',
|
118
|
+
type: 'uint256',
|
119
|
+
},
|
120
|
+
{
|
121
|
+
indexed: true,
|
122
|
+
internalType: 'uint256',
|
123
|
+
name: 'l2BlockNumber',
|
124
|
+
type: 'uint256',
|
125
|
+
},
|
126
|
+
{
|
127
|
+
indexed: false,
|
128
|
+
internalType: 'uint256',
|
129
|
+
name: 'l1Timestamp',
|
130
|
+
type: 'uint256',
|
131
|
+
},
|
132
|
+
],
|
133
|
+
name: 'OutputProposed',
|
134
|
+
type: 'event',
|
135
|
+
},
|
136
|
+
{
|
137
|
+
anonymous: false,
|
138
|
+
inputs: [
|
139
|
+
{
|
140
|
+
indexed: true,
|
141
|
+
internalType: 'uint256',
|
142
|
+
name: 'prevNextOutputIndex',
|
143
|
+
type: 'uint256',
|
144
|
+
},
|
145
|
+
{
|
146
|
+
indexed: true,
|
147
|
+
internalType: 'uint256',
|
148
|
+
name: 'newNextOutputIndex',
|
149
|
+
type: 'uint256',
|
150
|
+
},
|
151
|
+
],
|
152
|
+
name: 'OutputsDeleted',
|
153
|
+
type: 'event',
|
154
|
+
},
|
155
|
+
{
|
156
|
+
inputs: [],
|
157
|
+
name: 'CHALLENGER',
|
158
|
+
outputs: [{ internalType: 'address', name: '', type: 'address' }],
|
159
|
+
stateMutability: 'view',
|
160
|
+
type: 'function',
|
161
|
+
},
|
162
|
+
{
|
163
|
+
inputs: [],
|
164
|
+
name: 'FINALIZATION_PERIOD_SECONDS',
|
165
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
166
|
+
stateMutability: 'view',
|
167
|
+
type: 'function',
|
168
|
+
},
|
169
|
+
{
|
170
|
+
inputs: [],
|
171
|
+
name: 'L2_BLOCK_TIME',
|
172
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
173
|
+
stateMutability: 'view',
|
174
|
+
type: 'function',
|
175
|
+
},
|
176
|
+
{
|
177
|
+
inputs: [],
|
178
|
+
name: 'PROPOSER',
|
179
|
+
outputs: [{ internalType: 'address', name: '', type: 'address' }],
|
180
|
+
stateMutability: 'view',
|
181
|
+
type: 'function',
|
182
|
+
},
|
183
|
+
{
|
184
|
+
inputs: [],
|
185
|
+
name: 'SUBMISSION_INTERVAL',
|
186
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
187
|
+
stateMutability: 'view',
|
188
|
+
type: 'function',
|
189
|
+
},
|
190
|
+
{
|
191
|
+
inputs: [
|
192
|
+
{ internalType: 'uint256', name: '_l2BlockNumber', type: 'uint256' },
|
193
|
+
],
|
194
|
+
name: 'computeL2Timestamp',
|
195
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
196
|
+
stateMutability: 'view',
|
197
|
+
type: 'function',
|
198
|
+
},
|
199
|
+
{
|
200
|
+
inputs: [
|
201
|
+
{ internalType: 'uint256', name: '_l2OutputIndex', type: 'uint256' },
|
202
|
+
],
|
203
|
+
name: 'deleteL2Outputs',
|
204
|
+
outputs: [],
|
205
|
+
stateMutability: 'nonpayable',
|
206
|
+
type: 'function',
|
207
|
+
},
|
208
|
+
{
|
209
|
+
inputs: [
|
210
|
+
{ internalType: 'uint256', name: '_l2OutputIndex', type: 'uint256' },
|
211
|
+
],
|
212
|
+
name: 'getL2Output',
|
213
|
+
outputs: [
|
214
|
+
{
|
215
|
+
components: [
|
216
|
+
{ internalType: 'bytes32', name: 'outputRoot', type: 'bytes32' },
|
217
|
+
{ internalType: 'uint128', name: 'timestamp', type: 'uint128' },
|
218
|
+
{ internalType: 'uint128', name: 'l2BlockNumber', type: 'uint128' },
|
219
|
+
],
|
220
|
+
internalType: 'struct Types.OutputProposal',
|
221
|
+
name: '',
|
222
|
+
type: 'tuple',
|
223
|
+
},
|
224
|
+
],
|
225
|
+
stateMutability: 'view',
|
226
|
+
type: 'function',
|
227
|
+
},
|
228
|
+
{
|
229
|
+
inputs: [
|
230
|
+
{ internalType: 'uint256', name: '_l2BlockNumber', type: 'uint256' },
|
231
|
+
],
|
232
|
+
name: 'getL2OutputAfter',
|
233
|
+
outputs: [
|
234
|
+
{
|
235
|
+
components: [
|
236
|
+
{ internalType: 'bytes32', name: 'outputRoot', type: 'bytes32' },
|
237
|
+
{ internalType: 'uint128', name: 'timestamp', type: 'uint128' },
|
238
|
+
{ internalType: 'uint128', name: 'l2BlockNumber', type: 'uint128' },
|
239
|
+
],
|
240
|
+
internalType: 'struct Types.OutputProposal',
|
241
|
+
name: '',
|
242
|
+
type: 'tuple',
|
243
|
+
},
|
244
|
+
],
|
245
|
+
stateMutability: 'view',
|
246
|
+
type: 'function',
|
247
|
+
},
|
248
|
+
{
|
249
|
+
inputs: [
|
250
|
+
{ internalType: 'uint256', name: '_l2BlockNumber', type: 'uint256' },
|
251
|
+
],
|
252
|
+
name: 'getL2OutputIndexAfter',
|
253
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
254
|
+
stateMutability: 'view',
|
255
|
+
type: 'function',
|
256
|
+
},
|
257
|
+
{
|
258
|
+
inputs: [
|
259
|
+
{
|
260
|
+
internalType: 'uint256',
|
261
|
+
name: '_startingBlockNumber',
|
262
|
+
type: 'uint256',
|
263
|
+
},
|
264
|
+
{ internalType: 'uint256', name: '_startingTimestamp', type: 'uint256' },
|
265
|
+
],
|
266
|
+
name: 'initialize',
|
267
|
+
outputs: [],
|
268
|
+
stateMutability: 'nonpayable',
|
269
|
+
type: 'function',
|
270
|
+
},
|
271
|
+
{
|
272
|
+
inputs: [],
|
273
|
+
name: 'latestBlockNumber',
|
274
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
275
|
+
stateMutability: 'view',
|
276
|
+
type: 'function',
|
277
|
+
},
|
278
|
+
{
|
279
|
+
inputs: [],
|
280
|
+
name: 'latestOutputIndex',
|
281
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
282
|
+
stateMutability: 'view',
|
283
|
+
type: 'function',
|
284
|
+
},
|
285
|
+
{
|
286
|
+
inputs: [],
|
287
|
+
name: 'nextBlockNumber',
|
288
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
289
|
+
stateMutability: 'view',
|
290
|
+
type: 'function',
|
291
|
+
},
|
292
|
+
{
|
293
|
+
inputs: [],
|
294
|
+
name: 'nextOutputIndex',
|
295
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
296
|
+
stateMutability: 'view',
|
297
|
+
type: 'function',
|
298
|
+
},
|
299
|
+
{
|
300
|
+
inputs: [
|
301
|
+
{ internalType: 'bytes32', name: '_outputRoot', type: 'bytes32' },
|
302
|
+
{ internalType: 'uint256', name: '_l2BlockNumber', type: 'uint256' },
|
303
|
+
{ internalType: 'bytes32', name: '_l1BlockHash', type: 'bytes32' },
|
304
|
+
{ internalType: 'uint256', name: '_l1BlockNumber', type: 'uint256' },
|
305
|
+
],
|
306
|
+
name: 'proposeL2Output',
|
307
|
+
outputs: [],
|
308
|
+
stateMutability: 'payable',
|
309
|
+
type: 'function',
|
310
|
+
},
|
311
|
+
{
|
312
|
+
inputs: [],
|
313
|
+
name: 'startingBlockNumber',
|
314
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
315
|
+
stateMutability: 'view',
|
316
|
+
type: 'function',
|
317
|
+
},
|
318
|
+
{
|
319
|
+
inputs: [],
|
320
|
+
name: 'startingTimestamp',
|
321
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
322
|
+
stateMutability: 'view',
|
323
|
+
type: 'function',
|
324
|
+
},
|
325
|
+
{
|
326
|
+
inputs: [],
|
327
|
+
name: 'version',
|
328
|
+
outputs: [{ internalType: 'string', name: '', type: 'string' }],
|
329
|
+
stateMutability: 'view',
|
330
|
+
type: 'function',
|
331
|
+
},
|
332
|
+
] as const
|
333
|
+
|
334
|
+
export const l2ToL1MessagePasserAbi = [
|
335
|
+
{ inputs: [], stateMutability: 'nonpayable', type: 'constructor' },
|
336
|
+
{
|
337
|
+
anonymous: false,
|
338
|
+
inputs: [
|
339
|
+
{
|
340
|
+
indexed: true,
|
341
|
+
internalType: 'uint256',
|
342
|
+
name: 'nonce',
|
343
|
+
type: 'uint256',
|
344
|
+
},
|
345
|
+
{
|
346
|
+
indexed: true,
|
347
|
+
internalType: 'address',
|
348
|
+
name: 'sender',
|
349
|
+
type: 'address',
|
350
|
+
},
|
351
|
+
{
|
352
|
+
indexed: true,
|
353
|
+
internalType: 'address',
|
354
|
+
name: 'target',
|
355
|
+
type: 'address',
|
356
|
+
},
|
357
|
+
{
|
358
|
+
indexed: false,
|
359
|
+
internalType: 'uint256',
|
360
|
+
name: 'value',
|
361
|
+
type: 'uint256',
|
362
|
+
},
|
363
|
+
{
|
364
|
+
indexed: false,
|
365
|
+
internalType: 'uint256',
|
366
|
+
name: 'gasLimit',
|
367
|
+
type: 'uint256',
|
368
|
+
},
|
369
|
+
{ indexed: false, internalType: 'bytes', name: 'data', type: 'bytes' },
|
370
|
+
{
|
371
|
+
indexed: false,
|
372
|
+
internalType: 'bytes32',
|
373
|
+
name: 'withdrawalHash',
|
374
|
+
type: 'bytes32',
|
375
|
+
},
|
376
|
+
],
|
377
|
+
name: 'MessagePassed',
|
378
|
+
type: 'event',
|
379
|
+
},
|
380
|
+
{
|
381
|
+
anonymous: false,
|
382
|
+
inputs: [
|
383
|
+
{
|
384
|
+
indexed: true,
|
385
|
+
internalType: 'uint256',
|
386
|
+
name: 'amount',
|
387
|
+
type: 'uint256',
|
388
|
+
},
|
389
|
+
],
|
390
|
+
name: 'WithdrawerBalanceBurnt',
|
391
|
+
type: 'event',
|
392
|
+
},
|
393
|
+
{
|
394
|
+
inputs: [],
|
395
|
+
name: 'MESSAGE_VERSION',
|
396
|
+
outputs: [{ internalType: 'uint16', name: '', type: 'uint16' }],
|
397
|
+
stateMutability: 'view',
|
398
|
+
type: 'function',
|
399
|
+
},
|
400
|
+
{
|
401
|
+
inputs: [],
|
402
|
+
name: 'burn',
|
403
|
+
outputs: [],
|
404
|
+
stateMutability: 'nonpayable',
|
405
|
+
type: 'function',
|
406
|
+
},
|
407
|
+
{
|
408
|
+
inputs: [
|
409
|
+
{ internalType: 'address', name: '_target', type: 'address' },
|
410
|
+
{ internalType: 'uint256', name: '_gasLimit', type: 'uint256' },
|
411
|
+
{ internalType: 'bytes', name: '_data', type: 'bytes' },
|
412
|
+
],
|
413
|
+
name: 'initiateWithdrawal',
|
414
|
+
outputs: [],
|
415
|
+
stateMutability: 'payable',
|
416
|
+
type: 'function',
|
417
|
+
},
|
418
|
+
{
|
419
|
+
inputs: [],
|
420
|
+
name: 'messageNonce',
|
421
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
422
|
+
stateMutability: 'view',
|
423
|
+
type: 'function',
|
424
|
+
},
|
425
|
+
{
|
426
|
+
inputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
|
427
|
+
name: 'sentMessages',
|
428
|
+
outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
|
429
|
+
stateMutability: 'view',
|
430
|
+
type: 'function',
|
431
|
+
},
|
432
|
+
{
|
433
|
+
inputs: [],
|
434
|
+
name: 'version',
|
435
|
+
outputs: [{ internalType: 'string', name: '', type: 'string' }],
|
436
|
+
stateMutability: 'view',
|
437
|
+
type: 'function',
|
438
|
+
},
|
439
|
+
{ stateMutability: 'payable', type: 'receive' },
|
440
|
+
] as const
|
441
|
+
|
75
442
|
export const portalAbi = [
|
76
443
|
{ stateMutability: 'nonpayable', type: 'constructor', inputs: [] },
|
77
444
|
{
|