viem 2.7.22 → 2.8.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 +10 -0
- package/_cjs/accounts/utils/sign.js +1 -0
- package/_cjs/accounts/utils/sign.js.map +1 -1
- package/_cjs/accounts/utils/signTransaction.js +11 -2
- package/_cjs/accounts/utils/signTransaction.js.map +1 -1
- package/_cjs/actions/index.js +4 -2
- package/_cjs/actions/index.js.map +1 -1
- package/_cjs/actions/public/call.js +3 -1
- package/_cjs/actions/public/call.js.map +1 -1
- package/_cjs/actions/public/estimateGas.js +3 -1
- package/_cjs/actions/public/estimateGas.js.map +1 -1
- package/_cjs/actions/public/getBlobBaseFee.js +11 -0
- package/_cjs/actions/public/getBlobBaseFee.js.map +1 -0
- package/_cjs/actions/wallet/prepareTransactionRequest.js +11 -2
- package/_cjs/actions/wallet/prepareTransactionRequest.js.map +1 -1
- package/_cjs/actions/wallet/sendRawTransaction.js.map +1 -1
- package/_cjs/actions/wallet/sendTransaction.js +7 -8
- package/_cjs/actions/wallet/sendTransaction.js.map +1 -1
- package/_cjs/actions/wallet/signTransaction.js +7 -6
- package/_cjs/actions/wallet/signTransaction.js.map +1 -1
- package/_cjs/chains/celo/serializers.js +10 -15
- package/_cjs/chains/celo/serializers.js.map +1 -1
- package/_cjs/chains/definitions/plumeTestnet.js +30 -0
- package/_cjs/chains/definitions/plumeTestnet.js.map +1 -0
- package/_cjs/chains/index.js +5 -3
- package/_cjs/chains/index.js.map +1 -1
- package/_cjs/chains/opStack/actions/estimateL1Fee.js +1 -10
- package/_cjs/chains/opStack/actions/estimateL1Fee.js.map +1 -1
- package/_cjs/chains/opStack/actions/estimateL1Gas.js +1 -10
- package/_cjs/chains/opStack/actions/estimateL1Gas.js.map +1 -1
- package/_cjs/chains/opStack/actions/finalizeWithdrawal.js +1 -1
- package/_cjs/chains/opStack/actions/finalizeWithdrawal.js.map +1 -1
- package/_cjs/chains/opStack/actions/proveWithdrawal.js +1 -1
- package/_cjs/chains/opStack/actions/proveWithdrawal.js.map +1 -1
- package/_cjs/chains/opStack/serializers.js +3 -3
- package/_cjs/chains/opStack/serializers.js.map +1 -1
- package/_cjs/chains/zksync/actions/sendTransaction.js.map +1 -1
- package/_cjs/chains/zksync/actions/signEip712Transaction.js.map +1 -1
- package/_cjs/chains/zksync/serializers.js +6 -6
- package/_cjs/chains/zksync/serializers.js.map +1 -1
- package/_cjs/clients/decorators/public.js.map +1 -1
- package/_cjs/clients/decorators/wallet.js.map +1 -1
- package/_cjs/constants/blob.js +11 -0
- package/_cjs/constants/blob.js.map +1 -0
- package/_cjs/constants/kzg.js +7 -0
- package/_cjs/constants/kzg.js.map +1 -0
- package/_cjs/errors/blob.js +63 -0
- package/_cjs/errors/blob.js.map +1 -0
- package/_cjs/errors/transaction.js +1 -0
- package/_cjs/errors/transaction.js.map +1 -1
- package/_cjs/errors/version.js +1 -1
- package/_cjs/errors/version.js.map +1 -1
- package/_cjs/index.js +22 -2
- package/_cjs/index.js.map +1 -1
- package/_cjs/node/index.js +3 -1
- package/_cjs/node/index.js.map +1 -1
- package/_cjs/node/trustedSetups.js +7 -0
- package/_cjs/node/trustedSetups.js.map +1 -0
- package/_cjs/types/eip4844.js +3 -0
- package/_cjs/types/eip4844.js.map +1 -0
- package/_cjs/types/kzg.js +3 -0
- package/_cjs/types/kzg.js.map +1 -0
- package/_cjs/utils/blob/blobsToCommitments.js +20 -0
- package/_cjs/utils/blob/blobsToCommitments.js.map +1 -0
- package/_cjs/utils/blob/blobsToProofs.js +26 -0
- package/_cjs/utils/blob/blobsToProofs.js.map +1 -0
- package/_cjs/utils/blob/commitmentToVersionedHash.js +14 -0
- package/_cjs/utils/blob/commitmentToVersionedHash.js.map +1 -0
- package/_cjs/utils/blob/commitmentsToVersionedHashes.js +19 -0
- package/_cjs/utils/blob/commitmentsToVersionedHashes.js.map +1 -0
- package/_cjs/utils/blob/fromBlobs.js +36 -0
- package/_cjs/utils/blob/fromBlobs.js.map +1 -0
- package/_cjs/utils/blob/sidecarsToVersionedHashes.js +19 -0
- package/_cjs/utils/blob/sidecarsToVersionedHashes.js.map +1 -0
- package/_cjs/utils/blob/toBlobSidecars.js +22 -0
- package/_cjs/utils/blob/toBlobSidecars.js.map +1 -0
- package/_cjs/utils/blob/toBlobs.js +48 -0
- package/_cjs/utils/blob/toBlobs.js.map +1 -0
- package/_cjs/utils/encoding/toRlp.js.map +1 -1
- package/_cjs/utils/formatters/transaction.js.map +1 -1
- package/_cjs/utils/formatters/transactionRequest.js +22 -25
- package/_cjs/utils/formatters/transactionRequest.js.map +1 -1
- package/_cjs/utils/kzg/defineKzg.js +11 -0
- package/_cjs/utils/kzg/defineKzg.js.map +1 -0
- package/_cjs/utils/kzg/setupKzg.js +17 -0
- package/_cjs/utils/kzg/setupKzg.js.map +1 -0
- package/_cjs/utils/signature/compactSignatureToSignature.js +3 -3
- package/_cjs/utils/signature/compactSignatureToSignature.js.map +1 -1
- package/_cjs/utils/signature/hexToSignature.js +6 -1
- package/_cjs/utils/signature/hexToSignature.js.map +1 -1
- package/_cjs/utils/signature/signatureToCompactSignature.js +3 -3
- package/_cjs/utils/signature/signatureToCompactSignature.js.map +1 -1
- package/_cjs/utils/signature/signatureToHex.js +9 -3
- package/_cjs/utils/signature/signatureToHex.js.map +1 -1
- package/_cjs/utils/transaction/assertTransaction.js +26 -1
- package/_cjs/utils/transaction/assertTransaction.js.map +1 -1
- package/_cjs/utils/transaction/getSerializedTransactionType.js +2 -0
- package/_cjs/utils/transaction/getSerializedTransactionType.js.map +1 -1
- package/_cjs/utils/transaction/getTransactionType.js +7 -1
- package/_cjs/utils/transaction/getTransactionType.js.map +1 -1
- package/_cjs/utils/transaction/parseTransaction.js +73 -0
- package/_cjs/utils/transaction/parseTransaction.js.map +1 -1
- package/_cjs/utils/transaction/serializeAccessList.js.map +1 -1
- package/_cjs/utils/transaction/serializeTransaction.js +84 -21
- package/_cjs/utils/transaction/serializeTransaction.js.map +1 -1
- package/_esm/accounts/utils/sign.js +1 -0
- package/_esm/accounts/utils/sign.js.map +1 -1
- package/_esm/accounts/utils/signTransaction.js +13 -2
- package/_esm/accounts/utils/signTransaction.js.map +1 -1
- package/_esm/actions/index.js +1 -0
- package/_esm/actions/index.js.map +1 -1
- package/_esm/actions/public/call.js +3 -1
- package/_esm/actions/public/call.js.map +1 -1
- package/_esm/actions/public/estimateGas.js +3 -1
- package/_esm/actions/public/estimateGas.js.map +1 -1
- package/_esm/actions/public/getBlobBaseFee.js +27 -0
- package/_esm/actions/public/getBlobBaseFee.js.map +1 -0
- package/_esm/actions/wallet/prepareTransactionRequest.js +12 -2
- package/_esm/actions/wallet/prepareTransactionRequest.js.map +1 -1
- package/_esm/actions/wallet/sendRawTransaction.js.map +1 -1
- package/_esm/actions/wallet/sendTransaction.js +7 -8
- package/_esm/actions/wallet/sendTransaction.js.map +1 -1
- package/_esm/actions/wallet/signTransaction.js +6 -5
- package/_esm/actions/wallet/signTransaction.js.map +1 -1
- package/_esm/chains/celo/serializers.js +10 -17
- package/_esm/chains/celo/serializers.js.map +1 -1
- package/_esm/chains/definitions/plumeTestnet.js +27 -0
- package/_esm/chains/definitions/plumeTestnet.js.map +1 -0
- package/_esm/chains/index.js +1 -0
- package/_esm/chains/index.js.map +1 -1
- package/_esm/chains/opStack/actions/estimateL1Fee.js +1 -10
- package/_esm/chains/opStack/actions/estimateL1Fee.js.map +1 -1
- package/_esm/chains/opStack/actions/estimateL1Gas.js +1 -10
- package/_esm/chains/opStack/actions/estimateL1Gas.js.map +1 -1
- package/_esm/chains/opStack/actions/finalizeWithdrawal.js +1 -1
- package/_esm/chains/opStack/actions/finalizeWithdrawal.js.map +1 -1
- package/_esm/chains/opStack/actions/proveWithdrawal.js +1 -1
- package/_esm/chains/opStack/actions/proveWithdrawal.js.map +1 -1
- package/_esm/chains/opStack/serializers.js +2 -2
- package/_esm/chains/opStack/serializers.js.map +1 -1
- package/_esm/chains/zksync/actions/sendTransaction.js.map +1 -1
- package/_esm/chains/zksync/actions/signEip712Transaction.js.map +1 -1
- package/_esm/chains/zksync/serializers.js +6 -6
- package/_esm/chains/zksync/serializers.js.map +1 -1
- package/_esm/clients/decorators/public.js.map +1 -1
- package/_esm/clients/decorators/wallet.js.map +1 -1
- package/_esm/constants/blob.js +16 -0
- package/_esm/constants/blob.js.map +1 -0
- package/_esm/constants/kzg.js +7 -0
- package/_esm/constants/kzg.js.map +1 -0
- package/_esm/errors/blob.js +56 -0
- package/_esm/errors/blob.js.map +1 -0
- package/_esm/errors/transaction.js +1 -0
- package/_esm/errors/transaction.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_esm/errors/version.js.map +1 -1
- package/_esm/index.js +10 -0
- package/_esm/index.js.map +1 -1
- package/_esm/node/index.js +1 -0
- package/_esm/node/index.js.map +1 -1
- package/_esm/node/trustedSetups.js +4 -0
- package/_esm/node/trustedSetups.js.map +1 -0
- package/_esm/types/eip4844.js +2 -0
- package/_esm/types/eip4844.js.map +1 -0
- package/_esm/types/kzg.js +2 -0
- package/_esm/types/kzg.js.map +1 -0
- package/_esm/utils/blob/blobsToCommitments.js +28 -0
- package/_esm/utils/blob/blobsToCommitments.js.map +1 -0
- package/_esm/utils/blob/blobsToProofs.js +38 -0
- package/_esm/utils/blob/blobsToProofs.js.map +1 -0
- package/_esm/utils/blob/commitmentToVersionedHash.js +27 -0
- package/_esm/utils/blob/commitmentToVersionedHash.js.map +1 -0
- package/_esm/utils/blob/commitmentsToVersionedHashes.js +32 -0
- package/_esm/utils/blob/commitmentsToVersionedHashes.js.map +1 -0
- package/_esm/utils/blob/fromBlobs.js +33 -0
- package/_esm/utils/blob/fromBlobs.js.map +1 -0
- package/_esm/utils/blob/sidecarsToVersionedHashes.js +26 -0
- package/_esm/utils/blob/sidecarsToVersionedHashes.js.map +1 -0
- package/_esm/utils/blob/toBlobSidecars.js +45 -0
- package/_esm/utils/blob/toBlobSidecars.js.map +1 -0
- package/_esm/utils/blob/toBlobs.js +58 -0
- package/_esm/utils/blob/toBlobs.js.map +1 -0
- package/_esm/utils/encoding/toRlp.js.map +1 -1
- package/_esm/utils/formatters/transaction.js.map +1 -1
- package/_esm/utils/formatters/transactionRequest.js +23 -26
- package/_esm/utils/formatters/transactionRequest.js.map +1 -1
- package/_esm/utils/kzg/defineKzg.js +21 -0
- package/_esm/utils/kzg/defineKzg.js.map +1 -0
- package/_esm/utils/kzg/setupKzg.js +25 -0
- package/_esm/utils/kzg/setupKzg.js.map +1 -0
- package/_esm/utils/signature/compactSignatureToSignature.js +3 -3
- package/_esm/utils/signature/compactSignatureToSignature.js.map +1 -1
- package/_esm/utils/signature/hexToSignature.js +6 -1
- package/_esm/utils/signature/hexToSignature.js.map +1 -1
- package/_esm/utils/signature/signatureToCompactSignature.js +4 -4
- package/_esm/utils/signature/signatureToCompactSignature.js.map +1 -1
- package/_esm/utils/signature/signatureToHex.js +11 -4
- package/_esm/utils/signature/signatureToHex.js.map +1 -1
- package/_esm/utils/transaction/assertTransaction.js +24 -0
- package/_esm/utils/transaction/assertTransaction.js.map +1 -1
- package/_esm/utils/transaction/getSerializedTransactionType.js +2 -0
- package/_esm/utils/transaction/getSerializedTransactionType.js.map +1 -1
- package/_esm/utils/transaction/getTransactionType.js +7 -1
- package/_esm/utils/transaction/getTransactionType.js.map +1 -1
- package/_esm/utils/transaction/parseTransaction.js +74 -1
- package/_esm/utils/transaction/parseTransaction.js.map +1 -1
- package/_esm/utils/transaction/serializeAccessList.js.map +1 -1
- package/_esm/utils/transaction/serializeTransaction.js +85 -22
- package/_esm/utils/transaction/serializeTransaction.js.map +1 -1
- package/_types/accounts/types.d.ts +3 -3
- package/_types/accounts/types.d.ts.map +1 -1
- package/_types/accounts/utils/sign.d.ts.map +1 -1
- package/_types/accounts/utils/signTransaction.d.ts +5 -5
- package/_types/accounts/utils/signTransaction.d.ts.map +1 -1
- package/_types/actions/index.d.ts +1 -0
- package/_types/actions/index.d.ts.map +1 -1
- package/_types/actions/public/call.d.ts.map +1 -1
- package/_types/actions/public/estimateGas.d.ts.map +1 -1
- package/_types/actions/public/getBlobBaseFee.d.ts +30 -0
- package/_types/actions/public/getBlobBaseFee.d.ts.map +1 -0
- package/_types/actions/wallet/prepareTransactionRequest.d.ts +27 -8
- package/_types/actions/wallet/prepareTransactionRequest.d.ts.map +1 -1
- package/_types/actions/wallet/sendRawTransaction.d.ts +3 -5
- package/_types/actions/wallet/sendRawTransaction.d.ts.map +1 -1
- package/_types/actions/wallet/sendTransaction.d.ts +4 -2
- package/_types/actions/wallet/sendTransaction.d.ts.map +1 -1
- package/_types/actions/wallet/signTransaction.d.ts +5 -2
- package/_types/actions/wallet/signTransaction.d.ts.map +1 -1
- package/_types/chains/celo/chainConfig.d.ts +1282 -376
- package/_types/chains/celo/chainConfig.d.ts.map +1 -1
- package/_types/chains/celo/formatters.d.ts +1282 -376
- package/_types/chains/celo/formatters.d.ts.map +1 -1
- package/_types/chains/celo/serializers.d.ts +3 -4
- package/_types/chains/celo/serializers.d.ts.map +1 -1
- package/_types/chains/celo/types.d.ts +3 -8
- package/_types/chains/celo/types.d.ts.map +1 -1
- package/_types/chains/definitions/ancient8.d.ts +452 -188
- package/_types/chains/definitions/ancient8.d.ts.map +1 -1
- package/_types/chains/definitions/ancient8Sepolia.d.ts +452 -188
- package/_types/chains/definitions/ancient8Sepolia.d.ts.map +1 -1
- package/_types/chains/definitions/base.d.ts +452 -188
- package/_types/chains/definitions/base.d.ts.map +1 -1
- package/_types/chains/definitions/baseGoerli.d.ts +452 -188
- package/_types/chains/definitions/baseGoerli.d.ts.map +1 -1
- package/_types/chains/definitions/baseSepolia.d.ts +452 -188
- package/_types/chains/definitions/baseSepolia.d.ts.map +1 -1
- package/_types/chains/definitions/celo.d.ts +1282 -376
- package/_types/chains/definitions/celo.d.ts.map +1 -1
- package/_types/chains/definitions/celoAlfajores.d.ts +1282 -376
- package/_types/chains/definitions/celoAlfajores.d.ts.map +1 -1
- package/_types/chains/definitions/fraxtal.d.ts +452 -188
- package/_types/chains/definitions/fraxtal.d.ts.map +1 -1
- package/_types/chains/definitions/fraxtalTestnet.d.ts +452 -188
- package/_types/chains/definitions/fraxtalTestnet.d.ts.map +1 -1
- package/_types/chains/definitions/liskSepolia.d.ts +452 -188
- package/_types/chains/definitions/liskSepolia.d.ts.map +1 -1
- package/_types/chains/definitions/optimism.d.ts +452 -188
- package/_types/chains/definitions/optimism.d.ts.map +1 -1
- package/_types/chains/definitions/optimismGoerli.d.ts +452 -188
- package/_types/chains/definitions/optimismGoerli.d.ts.map +1 -1
- package/_types/chains/definitions/optimismSepolia.d.ts +452 -188
- package/_types/chains/definitions/optimismSepolia.d.ts.map +1 -1
- package/_types/chains/definitions/pgn.d.ts +451 -187
- package/_types/chains/definitions/pgn.d.ts.map +1 -1
- package/_types/chains/definitions/pgnTestnet.d.ts +451 -187
- package/_types/chains/definitions/pgnTestnet.d.ts.map +1 -1
- package/_types/chains/definitions/plumeTestnet.d.ts +37 -0
- package/_types/chains/definitions/plumeTestnet.d.ts.map +1 -0
- package/_types/chains/definitions/zkSync.d.ts +692 -32
- package/_types/chains/definitions/zkSync.d.ts.map +1 -1
- package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +692 -32
- package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts.map +1 -1
- package/_types/chains/definitions/zkSyncTestnet.d.ts +692 -32
- package/_types/chains/definitions/zkSyncTestnet.d.ts.map +1 -1
- package/_types/chains/definitions/zora.d.ts +452 -188
- package/_types/chains/definitions/zora.d.ts.map +1 -1
- package/_types/chains/definitions/zoraSepolia.d.ts +452 -188
- package/_types/chains/definitions/zoraSepolia.d.ts.map +1 -1
- package/_types/chains/definitions/zoraTestnet.d.ts +452 -188
- package/_types/chains/definitions/zoraTestnet.d.ts.map +1 -1
- package/_types/chains/index.d.ts +2 -1
- package/_types/chains/index.d.ts.map +1 -1
- package/_types/chains/opStack/actions/estimateL1Fee.d.ts.map +1 -1
- package/_types/chains/opStack/actions/estimateL1Gas.d.ts.map +1 -1
- package/_types/chains/opStack/actions/finalizeWithdrawal.d.ts.map +1 -1
- package/_types/chains/opStack/actions/proveWithdrawal.d.ts.map +1 -1
- package/_types/chains/opStack/chainConfig.d.ts +452 -188
- package/_types/chains/opStack/chainConfig.d.ts.map +1 -1
- package/_types/chains/opStack/formatters.d.ts +451 -187
- package/_types/chains/opStack/formatters.d.ts.map +1 -1
- package/_types/chains/opStack/serializers.d.ts +4 -3
- package/_types/chains/opStack/serializers.d.ts.map +1 -1
- package/_types/chains/opStack/types/transaction.d.ts +4 -8
- package/_types/chains/opStack/types/transaction.d.ts.map +1 -1
- package/_types/chains/zksync/actions/sendTransaction.d.ts.map +1 -1
- package/_types/chains/zksync/chainConfig.d.ts +692 -32
- package/_types/chains/zksync/chainConfig.d.ts.map +1 -1
- package/_types/chains/zksync/formatters.d.ts +692 -32
- package/_types/chains/zksync/formatters.d.ts.map +1 -1
- package/_types/chains/zksync/serializers.d.ts +3 -3
- package/_types/chains/zksync/serializers.d.ts.map +1 -1
- package/_types/chains/zksync/types/chain.d.ts +2 -2
- package/_types/chains/zksync/types/chain.d.ts.map +1 -1
- package/_types/chains/zksync/types/eip712.d.ts +2 -2
- package/_types/chains/zksync/types/eip712.d.ts.map +1 -1
- 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 +4 -4
- package/_types/clients/decorators/wallet.d.ts.map +1 -1
- package/_types/constants/blob.d.ts +11 -0
- package/_types/constants/blob.d.ts.map +1 -0
- package/_types/constants/kzg.d.ts +6 -0
- package/_types/constants/kzg.d.ts.map +1 -0
- package/_types/errors/blob.d.ts +40 -0
- package/_types/errors/blob.d.ts.map +1 -0
- package/_types/errors/transaction.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 +11 -0
- package/_types/index.d.ts.map +1 -1
- package/_types/node/index.d.ts +1 -0
- package/_types/node/index.d.ts.map +1 -1
- package/_types/node/trustedSetups.d.ts +3 -0
- package/_types/node/trustedSetups.d.ts.map +1 -0
- package/_types/types/account.d.ts +3 -3
- package/_types/types/account.d.ts.map +1 -1
- package/_types/types/chain.d.ts +2 -2
- package/_types/types/chain.d.ts.map +1 -1
- package/_types/types/eip1193.d.ts +3 -3
- package/_types/types/eip1193.d.ts.map +1 -1
- package/_types/types/eip4844.d.ts +11 -0
- package/_types/types/eip4844.d.ts.map +1 -0
- package/_types/types/fee.d.ts +2 -2
- package/_types/types/fee.d.ts.map +1 -1
- package/_types/types/kzg.d.ts +24 -0
- package/_types/types/kzg.d.ts.map +1 -0
- package/_types/types/misc.d.ts +15 -1
- package/_types/types/misc.d.ts.map +1 -1
- package/_types/types/rpc.d.ts +4 -4
- package/_types/types/rpc.d.ts.map +1 -1
- package/_types/types/transaction.d.ts +44 -9
- package/_types/types/transaction.d.ts.map +1 -1
- package/_types/types/utils.d.ts +38 -2
- package/_types/types/utils.d.ts.map +1 -1
- package/_types/utils/blob/blobsToCommitments.d.ts +31 -0
- package/_types/utils/blob/blobsToCommitments.d.ts.map +1 -0
- package/_types/utils/blob/blobsToProofs.d.ts +37 -0
- package/_types/utils/blob/blobsToProofs.d.ts.map +1 -0
- package/_types/utils/blob/commitmentToVersionedHash.d.ts +35 -0
- package/_types/utils/blob/commitmentToVersionedHash.d.ts.map +1 -0
- package/_types/utils/blob/commitmentsToVersionedHashes.d.ts +34 -0
- package/_types/utils/blob/commitmentsToVersionedHashes.d.ts.map +1 -0
- package/_types/utils/blob/fromBlobs.d.ts +16 -0
- package/_types/utils/blob/fromBlobs.d.ts.map +1 -0
- package/_types/utils/blob/sidecarsToVersionedHashes.d.ts +29 -0
- package/_types/utils/blob/sidecarsToVersionedHashes.d.ts.map +1 -0
- package/_types/utils/blob/toBlobSidecars.d.ts +57 -0
- package/_types/utils/blob/toBlobSidecars.d.ts.map +1 -0
- package/_types/utils/blob/toBlobs.d.ts +28 -0
- package/_types/utils/blob/toBlobs.d.ts.map +1 -0
- package/_types/utils/encoding/toRlp.d.ts +1 -1
- package/_types/utils/encoding/toRlp.d.ts.map +1 -1
- package/_types/utils/formatters/transaction.d.ts +25 -25
- package/_types/utils/formatters/transaction.d.ts.map +1 -1
- package/_types/utils/formatters/transactionRequest.d.ts +227 -3
- package/_types/utils/formatters/transactionRequest.d.ts.map +1 -1
- package/_types/utils/kzg/defineKzg.d.ts +21 -0
- package/_types/utils/kzg/defineKzg.d.ts.map +1 -0
- package/_types/utils/kzg/setupKzg.d.ts +21 -0
- package/_types/utils/kzg/setupKzg.d.ts.map +1 -0
- package/_types/utils/signature/hexToSignature.d.ts.map +1 -1
- package/_types/utils/signature/signatureToCompactSignature.d.ts +1 -1
- package/_types/utils/signature/signatureToHex.d.ts +2 -2
- package/_types/utils/signature/signatureToHex.d.ts.map +1 -1
- package/_types/utils/transaction/assertTransaction.d.ts +4 -1
- package/_types/utils/transaction/assertTransaction.d.ts.map +1 -1
- package/_types/utils/transaction/getSerializedTransactionType.d.ts +5 -3
- package/_types/utils/transaction/getSerializedTransactionType.d.ts.map +1 -1
- package/_types/utils/transaction/getTransactionType.d.ts +34 -3
- package/_types/utils/transaction/getTransactionType.d.ts.map +1 -1
- package/_types/utils/transaction/parseTransaction.d.ts +7 -5
- package/_types/utils/transaction/parseTransaction.d.ts.map +1 -1
- package/_types/utils/transaction/serializeTransaction.d.ts +13 -6
- package/_types/utils/transaction/serializeTransaction.d.ts.map +1 -1
- package/accounts/types.ts +9 -5
- package/accounts/utils/sign.ts +1 -0
- package/accounts/utils/signTransaction.ts +37 -22
- package/actions/index.ts +5 -0
- package/actions/public/call.ts +4 -0
- package/actions/public/estimateGas.ts +4 -0
- package/actions/public/getBlobBaseFee.ts +42 -0
- package/actions/wallet/prepareTransactionRequest.ts +134 -61
- package/actions/wallet/sendRawTransaction.ts +3 -5
- package/actions/wallet/sendTransaction.ts +32 -21
- package/actions/wallet/signTransaction.ts +34 -18
- package/chains/celo/serializers.ts +12 -25
- package/chains/celo/types.ts +5 -10
- package/chains/definitions/plumeTestnet.ts +28 -0
- package/chains/index.ts +1 -1
- package/chains/opStack/actions/estimateL1Fee.ts +12 -16
- package/chains/opStack/actions/estimateL1Gas.ts +12 -16
- package/chains/opStack/actions/finalizeWithdrawal.ts +3 -2
- package/chains/opStack/actions/proveWithdrawal.ts +3 -2
- package/chains/opStack/serializers.ts +5 -5
- package/chains/opStack/types/transaction.ts +9 -11
- package/chains/zksync/actions/sendTransaction.ts +2 -1
- package/chains/zksync/actions/signEip712Transaction.ts +2 -2
- package/chains/zksync/serializers.ts +14 -10
- package/chains/zksync/types/chain.ts +4 -7
- package/chains/zksync/types/eip712.ts +2 -2
- package/clients/decorators/public.ts +8 -4
- package/clients/decorators/wallet.ts +14 -6
- package/constants/blob.ts +21 -0
- package/constants/kzg.ts +9 -0
- package/errors/blob.ts +67 -0
- package/errors/transaction.ts +1 -0
- package/errors/version.ts +1 -1
- package/index.ts +64 -0
- package/node/index.ts +2 -0
- package/node/trustedSetups.ts +11 -0
- package/package.json +1 -1
- package/trusted-setups/mainnet.json +8265 -0
- package/trusted-setups/minimal.json +8265 -0
- package/types/account.ts +3 -3
- package/types/chain.ts +3 -1
- package/types/eip1193.ts +3 -3
- package/types/eip4844.ts +12 -0
- package/types/fee.ts +3 -2
- package/types/kzg.ts +32 -0
- package/types/misc.ts +20 -1
- package/types/rpc.ts +11 -6
- package/types/transaction.ts +75 -17
- package/types/utils.ts +49 -1
- package/utils/blob/blobsToCommitments.ts +69 -0
- package/utils/blob/blobsToProofs.ts +93 -0
- package/utils/blob/commitmentToVersionedHash.ts +62 -0
- package/utils/blob/commitmentsToVersionedHashes.ts +71 -0
- package/utils/blob/fromBlobs.ts +73 -0
- package/utils/blob/sidecarsToVersionedHashes.ts +66 -0
- package/utils/blob/toBlobSidecars.ts +109 -0
- package/utils/blob/toBlobs.ts +113 -0
- package/utils/encoding/toRlp.ts +2 -2
- package/utils/formatters/transaction.ts +3 -2
- package/utils/formatters/transactionRequest.ts +28 -35
- package/utils/kzg/defineKzg.ts +30 -0
- package/utils/kzg/setupKzg.ts +38 -0
- package/utils/signature/compactSignatureToSignature.ts +3 -3
- package/utils/signature/hexToSignature.ts +6 -1
- package/utils/signature/signatureToCompactSignature.ts +4 -4
- package/utils/signature/signatureToHex.ts +9 -4
- package/utils/transaction/assertTransaction.ts +41 -0
- package/utils/transaction/getSerializedTransactionType.ts +34 -11
- package/utils/transaction/getTransactionType.ts +109 -26
- package/utils/transaction/parseTransaction.ts +128 -8
- package/utils/transaction/serializeAccessList.ts +1 -1
- package/utils/transaction/serializeTransaction.ts +172 -39
@@ -96,53 +96,77 @@ export declare const ancient8Sepolia: {
|
|
96
96
|
readonly transaction: {
|
97
97
|
exclude: [] | undefined;
|
98
98
|
format: (args: ({
|
99
|
-
|
100
|
-
|
101
|
-
|
99
|
+
r?: `0x${string}` | undefined;
|
100
|
+
s?: `0x${string}` | undefined;
|
101
|
+
v?: `0x${string}` | undefined;
|
102
|
+
yParity?: `0x${string}` | undefined;
|
102
103
|
gasPrice?: `0x${string}` | undefined;
|
103
104
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
104
105
|
maxFeePerGas?: `0x${string}` | undefined;
|
105
106
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
106
|
-
|
107
|
+
to?: `0x${string}` | null | undefined;
|
108
|
+
from?: `0x${string}` | undefined;
|
109
|
+
gas?: `0x${string}` | undefined;
|
110
|
+
nonce?: `0x${string}` | undefined;
|
111
|
+
value?: `0x${string}` | undefined;
|
112
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
113
|
+
accessList?: undefined;
|
107
114
|
blockHash?: `0x${string}` | null | undefined;
|
108
115
|
blockNumber?: `0x${string}` | null | undefined;
|
109
|
-
from?: `0x${string}` | undefined;
|
110
116
|
hash?: `0x${string}` | undefined;
|
111
117
|
input?: `0x${string}` | undefined;
|
112
|
-
nonce?: `0x${string}` | undefined;
|
113
|
-
r?: `0x${string}` | undefined;
|
114
|
-
s?: `0x${string}` | undefined;
|
115
|
-
to?: `0x${string}` | null | undefined;
|
116
118
|
transactionIndex?: `0x${string}` | null | undefined;
|
117
|
-
|
119
|
+
blobVersionedHashes?: undefined;
|
120
|
+
chainId?: `0x${string}` | undefined;
|
121
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
122
|
+
r: `0x${string}`;
|
123
|
+
s: `0x${string}`;
|
124
|
+
v: `0x${string}`;
|
125
|
+
to: `0x${string}` | null;
|
126
|
+
from: `0x${string}`;
|
127
|
+
gas: `0x${string}`;
|
128
|
+
nonce: `0x${string}`;
|
129
|
+
value: `0x${string}`;
|
130
|
+
blockHash: `0x${string}` | null;
|
131
|
+
blockNumber: `0x${string}` | null;
|
132
|
+
hash: `0x${string}`;
|
133
|
+
input: `0x${string}`;
|
134
|
+
transactionIndex: `0x${string}` | null;
|
135
|
+
typeHex: `0x${string}` | null;
|
136
|
+
gasPrice: `0x${string}`;
|
137
|
+
maxFeePerBlobGas?: undefined;
|
138
|
+
maxFeePerGas?: undefined;
|
139
|
+
maxPriorityFeePerGas?: undefined;
|
118
140
|
accessList?: undefined;
|
119
141
|
blobVersionedHashes?: undefined;
|
120
142
|
chainId?: `0x${string}` | undefined;
|
121
|
-
|
143
|
+
yParity?: undefined;
|
144
|
+
type: "0x0";
|
145
|
+
}, "yParity">, "typeHex"> & {
|
122
146
|
isSystemTx?: undefined;
|
123
147
|
mint?: undefined;
|
124
148
|
sourceHash?: undefined;
|
125
149
|
}) | ({
|
126
|
-
|
127
|
-
|
128
|
-
|
150
|
+
r?: `0x${string}` | undefined;
|
151
|
+
s?: `0x${string}` | undefined;
|
152
|
+
v?: `0x${string}` | undefined;
|
153
|
+
yParity?: `0x${string}` | undefined;
|
129
154
|
gasPrice?: `0x${string}` | undefined;
|
130
155
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
131
156
|
maxFeePerGas?: `0x${string}` | undefined;
|
132
157
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
133
|
-
|
158
|
+
to?: `0x${string}` | null | undefined;
|
159
|
+
from?: `0x${string}` | undefined;
|
160
|
+
gas?: `0x${string}` | undefined;
|
161
|
+
nonce?: `0x${string}` | undefined;
|
162
|
+
value?: `0x${string}` | undefined;
|
163
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
164
|
+
accessList?: undefined;
|
134
165
|
blockHash?: `0x${string}` | null | undefined;
|
135
166
|
blockNumber?: `0x${string}` | null | undefined;
|
136
|
-
from?: `0x${string}` | undefined;
|
137
167
|
hash?: `0x${string}` | undefined;
|
138
168
|
input?: `0x${string}` | undefined;
|
139
|
-
nonce?: `0x${string}` | undefined;
|
140
|
-
r?: `0x${string}` | undefined;
|
141
|
-
s?: `0x${string}` | undefined;
|
142
|
-
to?: `0x${string}` | null | undefined;
|
143
169
|
transactionIndex?: `0x${string}` | null | undefined;
|
144
|
-
v?: `0x${string}` | undefined;
|
145
|
-
accessList?: undefined;
|
146
170
|
blobVersionedHashes?: undefined;
|
147
171
|
chainId?: `0x${string}` | undefined;
|
148
172
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -151,107 +175,179 @@ export declare const ancient8Sepolia: {
|
|
151
175
|
sourceHash: `0x${string}`;
|
152
176
|
type: "0x7e";
|
153
177
|
}) | ({
|
154
|
-
|
155
|
-
|
156
|
-
|
178
|
+
r?: `0x${string}` | undefined;
|
179
|
+
s?: `0x${string}` | undefined;
|
180
|
+
v?: `0x${string}` | undefined;
|
181
|
+
yParity?: `0x${string}` | undefined;
|
157
182
|
gasPrice?: `0x${string}` | undefined;
|
158
183
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
159
184
|
maxFeePerGas?: `0x${string}` | undefined;
|
160
185
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
161
|
-
|
186
|
+
to?: `0x${string}` | null | undefined;
|
187
|
+
from?: `0x${string}` | undefined;
|
188
|
+
gas?: `0x${string}` | undefined;
|
189
|
+
nonce?: `0x${string}` | undefined;
|
190
|
+
value?: `0x${string}` | undefined;
|
191
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
192
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
162
193
|
blockHash?: `0x${string}` | null | undefined;
|
163
194
|
blockNumber?: `0x${string}` | null | undefined;
|
164
|
-
from?: `0x${string}` | undefined;
|
165
195
|
hash?: `0x${string}` | undefined;
|
166
196
|
input?: `0x${string}` | undefined;
|
167
|
-
nonce?: `0x${string}` | undefined;
|
168
|
-
r?: `0x${string}` | undefined;
|
169
|
-
s?: `0x${string}` | undefined;
|
170
|
-
to?: `0x${string}` | null | undefined;
|
171
197
|
transactionIndex?: `0x${string}` | null | undefined;
|
172
|
-
v?: `0x${string}` | undefined;
|
173
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
174
198
|
blobVersionedHashes?: undefined;
|
175
199
|
chainId?: `0x${string}` | undefined;
|
176
|
-
} & import("../index.js").Omit<import("../index.js").PartialBy<
|
200
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
201
|
+
r: `0x${string}`;
|
202
|
+
s: `0x${string}`;
|
203
|
+
v: `0x${string}`;
|
204
|
+
to: `0x${string}` | null;
|
205
|
+
from: `0x${string}`;
|
206
|
+
gas: `0x${string}`;
|
207
|
+
nonce: `0x${string}`;
|
208
|
+
value: `0x${string}`;
|
209
|
+
blockHash: `0x${string}` | null;
|
210
|
+
blockNumber: `0x${string}` | null;
|
211
|
+
hash: `0x${string}`;
|
212
|
+
input: `0x${string}`;
|
213
|
+
transactionIndex: `0x${string}` | null;
|
214
|
+
typeHex: `0x${string}` | null;
|
215
|
+
gasPrice: `0x${string}`;
|
216
|
+
maxFeePerBlobGas?: undefined;
|
217
|
+
maxFeePerGas?: undefined;
|
218
|
+
maxPriorityFeePerGas?: undefined;
|
219
|
+
accessList?: undefined;
|
220
|
+
blobVersionedHashes?: undefined;
|
221
|
+
chainId?: `0x${string}` | undefined;
|
222
|
+
yParity?: undefined;
|
223
|
+
type: "0x0";
|
224
|
+
}, "yParity">, "typeHex"> & {
|
177
225
|
isSystemTx?: undefined;
|
178
226
|
mint?: undefined;
|
179
227
|
sourceHash?: undefined;
|
180
228
|
}) | ({
|
181
|
-
|
182
|
-
|
183
|
-
|
229
|
+
r?: `0x${string}` | undefined;
|
230
|
+
s?: `0x${string}` | undefined;
|
231
|
+
v?: `0x${string}` | undefined;
|
232
|
+
yParity?: `0x${string}` | undefined;
|
184
233
|
gasPrice?: `0x${string}` | undefined;
|
185
234
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
186
235
|
maxFeePerGas?: `0x${string}` | undefined;
|
187
236
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
188
|
-
|
237
|
+
to?: `0x${string}` | null | undefined;
|
238
|
+
from?: `0x${string}` | undefined;
|
239
|
+
gas?: `0x${string}` | undefined;
|
240
|
+
nonce?: `0x${string}` | undefined;
|
241
|
+
value?: `0x${string}` | undefined;
|
242
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
243
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
189
244
|
blockHash?: `0x${string}` | null | undefined;
|
190
245
|
blockNumber?: `0x${string}` | null | undefined;
|
191
|
-
from?: `0x${string}` | undefined;
|
192
246
|
hash?: `0x${string}` | undefined;
|
193
247
|
input?: `0x${string}` | undefined;
|
194
|
-
nonce?: `0x${string}` | undefined;
|
195
|
-
r?: `0x${string}` | undefined;
|
196
|
-
s?: `0x${string}` | undefined;
|
197
|
-
to?: `0x${string}` | null | undefined;
|
198
248
|
transactionIndex?: `0x${string}` | null | undefined;
|
199
|
-
v?: `0x${string}` | undefined;
|
200
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
201
249
|
blobVersionedHashes?: undefined;
|
202
250
|
chainId?: `0x${string}` | undefined;
|
203
|
-
} & import("../index.js").Omit<import("../index.js").PartialBy<
|
251
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
252
|
+
blockHash: `0x${string}` | null;
|
253
|
+
blockNumber: `0x${string}` | null;
|
254
|
+
from: `0x${string}`;
|
255
|
+
gas: `0x${string}`;
|
256
|
+
hash: `0x${string}`;
|
257
|
+
input: `0x${string}`;
|
258
|
+
nonce: `0x${string}`;
|
259
|
+
r: `0x${string}`;
|
260
|
+
s: `0x${string}`;
|
261
|
+
to: `0x${string}` | null;
|
262
|
+
transactionIndex: `0x${string}` | null;
|
263
|
+
typeHex: `0x${string}` | null;
|
264
|
+
v: `0x${string}`;
|
265
|
+
value: `0x${string}`;
|
266
|
+
yParity: `0x${string}`;
|
267
|
+
gasPrice: `0x${string}`;
|
268
|
+
maxFeePerBlobGas?: undefined;
|
269
|
+
maxFeePerGas?: undefined;
|
270
|
+
maxPriorityFeePerGas?: undefined;
|
271
|
+
accessList: import("../../index.js").AccessList;
|
272
|
+
blobVersionedHashes?: undefined;
|
273
|
+
chainId: `0x${string}`;
|
274
|
+
type: "0x1";
|
275
|
+
}, "yParity">, "typeHex"> & {
|
204
276
|
isSystemTx?: undefined;
|
205
277
|
mint?: undefined;
|
206
278
|
sourceHash?: undefined;
|
207
279
|
}) | ({
|
208
|
-
|
209
|
-
|
210
|
-
|
280
|
+
r?: `0x${string}` | undefined;
|
281
|
+
s?: `0x${string}` | undefined;
|
282
|
+
v?: `0x${string}` | undefined;
|
283
|
+
yParity?: `0x${string}` | undefined;
|
211
284
|
gasPrice?: `0x${string}` | undefined;
|
212
285
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
213
286
|
maxFeePerGas?: `0x${string}` | undefined;
|
214
287
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
215
|
-
|
288
|
+
to?: `0x${string}` | null | undefined;
|
289
|
+
from?: `0x${string}` | undefined;
|
290
|
+
gas?: `0x${string}` | undefined;
|
291
|
+
nonce?: `0x${string}` | undefined;
|
292
|
+
value?: `0x${string}` | undefined;
|
293
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
294
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
216
295
|
blockHash?: `0x${string}` | null | undefined;
|
217
296
|
blockNumber?: `0x${string}` | null | undefined;
|
218
|
-
from?: `0x${string}` | undefined;
|
219
297
|
hash?: `0x${string}` | undefined;
|
220
298
|
input?: `0x${string}` | undefined;
|
221
|
-
nonce?: `0x${string}` | undefined;
|
222
|
-
r?: `0x${string}` | undefined;
|
223
|
-
s?: `0x${string}` | undefined;
|
224
|
-
to?: `0x${string}` | null | undefined;
|
225
299
|
transactionIndex?: `0x${string}` | null | undefined;
|
226
|
-
v?: `0x${string}` | undefined;
|
227
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
228
300
|
blobVersionedHashes?: undefined;
|
229
301
|
chainId?: `0x${string}` | undefined;
|
230
|
-
} & import("../index.js").Omit<import("../index.js").PartialBy<
|
302
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
303
|
+
blockHash: `0x${string}` | null;
|
304
|
+
blockNumber: `0x${string}` | null;
|
305
|
+
from: `0x${string}`;
|
306
|
+
gas: `0x${string}`;
|
307
|
+
hash: `0x${string}`;
|
308
|
+
input: `0x${string}`;
|
309
|
+
nonce: `0x${string}`;
|
310
|
+
r: `0x${string}`;
|
311
|
+
s: `0x${string}`;
|
312
|
+
to: `0x${string}` | null;
|
313
|
+
transactionIndex: `0x${string}` | null;
|
314
|
+
typeHex: `0x${string}` | null;
|
315
|
+
v: `0x${string}`;
|
316
|
+
value: `0x${string}`;
|
317
|
+
yParity: `0x${string}`;
|
318
|
+
gasPrice?: undefined;
|
319
|
+
maxFeePerBlobGas?: undefined;
|
320
|
+
maxFeePerGas: `0x${string}`;
|
321
|
+
maxPriorityFeePerGas: `0x${string}`;
|
322
|
+
accessList: import("../../index.js").AccessList;
|
323
|
+
blobVersionedHashes?: undefined;
|
324
|
+
chainId: `0x${string}`;
|
325
|
+
type: "0x2";
|
326
|
+
}, "yParity">, "typeHex"> & {
|
231
327
|
isSystemTx?: undefined;
|
232
328
|
mint?: undefined;
|
233
329
|
sourceHash?: undefined;
|
234
330
|
}) | ({
|
235
|
-
|
236
|
-
|
237
|
-
|
331
|
+
r?: `0x${string}` | undefined;
|
332
|
+
s?: `0x${string}` | undefined;
|
333
|
+
v?: `0x${string}` | undefined;
|
334
|
+
yParity?: `0x${string}` | undefined;
|
238
335
|
gasPrice?: `0x${string}` | undefined;
|
239
336
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
240
337
|
maxFeePerGas?: `0x${string}` | undefined;
|
241
338
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
242
|
-
|
339
|
+
to?: `0x${string}` | null | undefined;
|
340
|
+
from?: `0x${string}` | undefined;
|
341
|
+
gas?: `0x${string}` | undefined;
|
342
|
+
nonce?: `0x${string}` | undefined;
|
343
|
+
value?: `0x${string}` | undefined;
|
344
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
345
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
243
346
|
blockHash?: `0x${string}` | null | undefined;
|
244
347
|
blockNumber?: `0x${string}` | null | undefined;
|
245
|
-
from?: `0x${string}` | undefined;
|
246
348
|
hash?: `0x${string}` | undefined;
|
247
349
|
input?: `0x${string}` | undefined;
|
248
|
-
nonce?: `0x${string}` | undefined;
|
249
|
-
r?: `0x${string}` | undefined;
|
250
|
-
s?: `0x${string}` | undefined;
|
251
|
-
to?: `0x${string}` | null | undefined;
|
252
350
|
transactionIndex?: `0x${string}` | null | undefined;
|
253
|
-
v?: `0x${string}` | undefined;
|
254
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
255
351
|
blobVersionedHashes?: undefined;
|
256
352
|
chainId?: `0x${string}` | undefined;
|
257
353
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -260,107 +356,179 @@ export declare const ancient8Sepolia: {
|
|
260
356
|
sourceHash: `0x${string}`;
|
261
357
|
type: "0x7e";
|
262
358
|
}) | ({
|
263
|
-
|
264
|
-
|
265
|
-
|
359
|
+
r?: `0x${string}` | undefined;
|
360
|
+
s?: `0x${string}` | undefined;
|
361
|
+
v?: `0x${string}` | undefined;
|
362
|
+
yParity?: `0x${string}` | undefined;
|
266
363
|
gasPrice?: `0x${string}` | undefined;
|
267
364
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
268
365
|
maxFeePerGas?: `0x${string}` | undefined;
|
269
366
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
270
|
-
|
367
|
+
to?: `0x${string}` | null | undefined;
|
368
|
+
from?: `0x${string}` | undefined;
|
369
|
+
gas?: `0x${string}` | undefined;
|
370
|
+
nonce?: `0x${string}` | undefined;
|
371
|
+
value?: `0x${string}` | undefined;
|
372
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
373
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
271
374
|
blockHash?: `0x${string}` | null | undefined;
|
272
375
|
blockNumber?: `0x${string}` | null | undefined;
|
273
|
-
from?: `0x${string}` | undefined;
|
274
376
|
hash?: `0x${string}` | undefined;
|
275
377
|
input?: `0x${string}` | undefined;
|
276
|
-
nonce?: `0x${string}` | undefined;
|
277
|
-
r?: `0x${string}` | undefined;
|
278
|
-
s?: `0x${string}` | undefined;
|
279
|
-
to?: `0x${string}` | null | undefined;
|
280
378
|
transactionIndex?: `0x${string}` | null | undefined;
|
281
|
-
v?: `0x${string}` | undefined;
|
282
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
283
379
|
blobVersionedHashes?: undefined;
|
284
380
|
chainId?: `0x${string}` | undefined;
|
285
|
-
} & import("../index.js").Omit<import("../index.js").PartialBy<
|
381
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
382
|
+
r: `0x${string}`;
|
383
|
+
s: `0x${string}`;
|
384
|
+
v: `0x${string}`;
|
385
|
+
to: `0x${string}` | null;
|
386
|
+
from: `0x${string}`;
|
387
|
+
gas: `0x${string}`;
|
388
|
+
nonce: `0x${string}`;
|
389
|
+
value: `0x${string}`;
|
390
|
+
blockHash: `0x${string}` | null;
|
391
|
+
blockNumber: `0x${string}` | null;
|
392
|
+
hash: `0x${string}`;
|
393
|
+
input: `0x${string}`;
|
394
|
+
transactionIndex: `0x${string}` | null;
|
395
|
+
typeHex: `0x${string}` | null;
|
396
|
+
gasPrice: `0x${string}`;
|
397
|
+
maxFeePerBlobGas?: undefined;
|
398
|
+
maxFeePerGas?: undefined;
|
399
|
+
maxPriorityFeePerGas?: undefined;
|
400
|
+
accessList?: undefined;
|
401
|
+
blobVersionedHashes?: undefined;
|
402
|
+
chainId?: `0x${string}` | undefined;
|
403
|
+
yParity?: undefined;
|
404
|
+
type: "0x0";
|
405
|
+
}, "yParity">, "typeHex"> & {
|
286
406
|
isSystemTx?: undefined;
|
287
407
|
mint?: undefined;
|
288
408
|
sourceHash?: undefined;
|
289
409
|
}) | ({
|
290
|
-
|
291
|
-
|
292
|
-
|
410
|
+
r?: `0x${string}` | undefined;
|
411
|
+
s?: `0x${string}` | undefined;
|
412
|
+
v?: `0x${string}` | undefined;
|
413
|
+
yParity?: `0x${string}` | undefined;
|
293
414
|
gasPrice?: `0x${string}` | undefined;
|
294
415
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
295
416
|
maxFeePerGas?: `0x${string}` | undefined;
|
296
417
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
297
|
-
|
418
|
+
to?: `0x${string}` | null | undefined;
|
419
|
+
from?: `0x${string}` | undefined;
|
420
|
+
gas?: `0x${string}` | undefined;
|
421
|
+
nonce?: `0x${string}` | undefined;
|
422
|
+
value?: `0x${string}` | undefined;
|
423
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
424
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
298
425
|
blockHash?: `0x${string}` | null | undefined;
|
299
426
|
blockNumber?: `0x${string}` | null | undefined;
|
300
|
-
from?: `0x${string}` | undefined;
|
301
427
|
hash?: `0x${string}` | undefined;
|
302
428
|
input?: `0x${string}` | undefined;
|
303
|
-
nonce?: `0x${string}` | undefined;
|
304
|
-
r?: `0x${string}` | undefined;
|
305
|
-
s?: `0x${string}` | undefined;
|
306
|
-
to?: `0x${string}` | null | undefined;
|
307
429
|
transactionIndex?: `0x${string}` | null | undefined;
|
308
|
-
v?: `0x${string}` | undefined;
|
309
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
310
430
|
blobVersionedHashes?: undefined;
|
311
431
|
chainId?: `0x${string}` | undefined;
|
312
|
-
} & import("../index.js").Omit<import("../index.js").PartialBy<
|
432
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
433
|
+
blockHash: `0x${string}` | null;
|
434
|
+
blockNumber: `0x${string}` | null;
|
435
|
+
from: `0x${string}`;
|
436
|
+
gas: `0x${string}`;
|
437
|
+
hash: `0x${string}`;
|
438
|
+
input: `0x${string}`;
|
439
|
+
nonce: `0x${string}`;
|
440
|
+
r: `0x${string}`;
|
441
|
+
s: `0x${string}`;
|
442
|
+
to: `0x${string}` | null;
|
443
|
+
transactionIndex: `0x${string}` | null;
|
444
|
+
typeHex: `0x${string}` | null;
|
445
|
+
v: `0x${string}`;
|
446
|
+
value: `0x${string}`;
|
447
|
+
yParity: `0x${string}`;
|
448
|
+
gasPrice: `0x${string}`;
|
449
|
+
maxFeePerBlobGas?: undefined;
|
450
|
+
maxFeePerGas?: undefined;
|
451
|
+
maxPriorityFeePerGas?: undefined;
|
452
|
+
accessList: import("../../index.js").AccessList;
|
453
|
+
blobVersionedHashes?: undefined;
|
454
|
+
chainId: `0x${string}`;
|
455
|
+
type: "0x1";
|
456
|
+
}, "yParity">, "typeHex"> & {
|
313
457
|
isSystemTx?: undefined;
|
314
458
|
mint?: undefined;
|
315
459
|
sourceHash?: undefined;
|
316
460
|
}) | ({
|
317
|
-
|
318
|
-
|
319
|
-
|
461
|
+
r?: `0x${string}` | undefined;
|
462
|
+
s?: `0x${string}` | undefined;
|
463
|
+
v?: `0x${string}` | undefined;
|
464
|
+
yParity?: `0x${string}` | undefined;
|
320
465
|
gasPrice?: `0x${string}` | undefined;
|
321
466
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
322
467
|
maxFeePerGas?: `0x${string}` | undefined;
|
323
468
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
324
|
-
|
469
|
+
to?: `0x${string}` | null | undefined;
|
470
|
+
from?: `0x${string}` | undefined;
|
471
|
+
gas?: `0x${string}` | undefined;
|
472
|
+
nonce?: `0x${string}` | undefined;
|
473
|
+
value?: `0x${string}` | undefined;
|
474
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
475
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
325
476
|
blockHash?: `0x${string}` | null | undefined;
|
326
477
|
blockNumber?: `0x${string}` | null | undefined;
|
327
|
-
from?: `0x${string}` | undefined;
|
328
478
|
hash?: `0x${string}` | undefined;
|
329
479
|
input?: `0x${string}` | undefined;
|
330
|
-
nonce?: `0x${string}` | undefined;
|
331
|
-
r?: `0x${string}` | undefined;
|
332
|
-
s?: `0x${string}` | undefined;
|
333
|
-
to?: `0x${string}` | null | undefined;
|
334
480
|
transactionIndex?: `0x${string}` | null | undefined;
|
335
|
-
v?: `0x${string}` | undefined;
|
336
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
337
481
|
blobVersionedHashes?: undefined;
|
338
482
|
chainId?: `0x${string}` | undefined;
|
339
|
-
} & import("../index.js").Omit<import("../index.js").PartialBy<
|
483
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
484
|
+
blockHash: `0x${string}` | null;
|
485
|
+
blockNumber: `0x${string}` | null;
|
486
|
+
from: `0x${string}`;
|
487
|
+
gas: `0x${string}`;
|
488
|
+
hash: `0x${string}`;
|
489
|
+
input: `0x${string}`;
|
490
|
+
nonce: `0x${string}`;
|
491
|
+
r: `0x${string}`;
|
492
|
+
s: `0x${string}`;
|
493
|
+
to: `0x${string}` | null;
|
494
|
+
transactionIndex: `0x${string}` | null;
|
495
|
+
typeHex: `0x${string}` | null;
|
496
|
+
v: `0x${string}`;
|
497
|
+
value: `0x${string}`;
|
498
|
+
yParity: `0x${string}`;
|
499
|
+
gasPrice?: undefined;
|
500
|
+
maxFeePerBlobGas?: undefined;
|
501
|
+
maxFeePerGas: `0x${string}`;
|
502
|
+
maxPriorityFeePerGas: `0x${string}`;
|
503
|
+
accessList: import("../../index.js").AccessList;
|
504
|
+
blobVersionedHashes?: undefined;
|
505
|
+
chainId: `0x${string}`;
|
506
|
+
type: "0x2";
|
507
|
+
}, "yParity">, "typeHex"> & {
|
340
508
|
isSystemTx?: undefined;
|
341
509
|
mint?: undefined;
|
342
510
|
sourceHash?: undefined;
|
343
511
|
}) | ({
|
344
|
-
|
345
|
-
|
346
|
-
|
512
|
+
r?: `0x${string}` | undefined;
|
513
|
+
s?: `0x${string}` | undefined;
|
514
|
+
v?: `0x${string}` | undefined;
|
515
|
+
yParity?: `0x${string}` | undefined;
|
347
516
|
gasPrice?: `0x${string}` | undefined;
|
348
517
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
349
518
|
maxFeePerGas?: `0x${string}` | undefined;
|
350
519
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
351
|
-
|
520
|
+
to?: `0x${string}` | null | undefined;
|
521
|
+
from?: `0x${string}` | undefined;
|
522
|
+
gas?: `0x${string}` | undefined;
|
523
|
+
nonce?: `0x${string}` | undefined;
|
524
|
+
value?: `0x${string}` | undefined;
|
525
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
526
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
352
527
|
blockHash?: `0x${string}` | null | undefined;
|
353
528
|
blockNumber?: `0x${string}` | null | undefined;
|
354
|
-
from?: `0x${string}` | undefined;
|
355
529
|
hash?: `0x${string}` | undefined;
|
356
530
|
input?: `0x${string}` | undefined;
|
357
|
-
nonce?: `0x${string}` | undefined;
|
358
|
-
r?: `0x${string}` | undefined;
|
359
|
-
s?: `0x${string}` | undefined;
|
360
|
-
to?: `0x${string}` | null | undefined;
|
361
531
|
transactionIndex?: `0x${string}` | null | undefined;
|
362
|
-
v?: `0x${string}` | undefined;
|
363
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
364
532
|
blobVersionedHashes?: undefined;
|
365
533
|
chainId?: `0x${string}` | undefined;
|
366
534
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -369,134 +537,230 @@ export declare const ancient8Sepolia: {
|
|
369
537
|
sourceHash: `0x${string}`;
|
370
538
|
type: "0x7e";
|
371
539
|
}) | ({
|
372
|
-
|
373
|
-
|
374
|
-
|
540
|
+
r?: `0x${string}` | undefined;
|
541
|
+
s?: `0x${string}` | undefined;
|
542
|
+
v?: `0x${string}` | undefined;
|
543
|
+
yParity?: `0x${string}` | undefined;
|
375
544
|
gasPrice?: `0x${string}` | undefined;
|
376
545
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
377
546
|
maxFeePerGas?: `0x${string}` | undefined;
|
378
547
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
379
|
-
|
548
|
+
to?: `0x${string}` | null | undefined;
|
549
|
+
from?: `0x${string}` | undefined;
|
550
|
+
gas?: `0x${string}` | undefined;
|
551
|
+
nonce?: `0x${string}` | undefined;
|
552
|
+
value?: `0x${string}` | undefined;
|
553
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
554
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
380
555
|
blockHash?: `0x${string}` | null | undefined;
|
381
556
|
blockNumber?: `0x${string}` | null | undefined;
|
382
|
-
from?: `0x${string}` | undefined;
|
383
557
|
hash?: `0x${string}` | undefined;
|
384
558
|
input?: `0x${string}` | undefined;
|
385
|
-
nonce?: `0x${string}` | undefined;
|
386
|
-
r?: `0x${string}` | undefined;
|
387
|
-
s?: `0x${string}` | undefined;
|
388
|
-
to?: `0x${string}` | null | undefined;
|
389
559
|
transactionIndex?: `0x${string}` | null | undefined;
|
390
|
-
v?: `0x${string}` | undefined;
|
391
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
392
560
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
393
561
|
chainId?: `0x${string}` | undefined;
|
394
|
-
} & import("../index.js").Omit<import("../index.js").PartialBy<
|
562
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
563
|
+
r: `0x${string}`;
|
564
|
+
s: `0x${string}`;
|
565
|
+
v: `0x${string}`;
|
566
|
+
to: `0x${string}` | null;
|
567
|
+
from: `0x${string}`;
|
568
|
+
gas: `0x${string}`;
|
569
|
+
nonce: `0x${string}`;
|
570
|
+
value: `0x${string}`;
|
571
|
+
blockHash: `0x${string}` | null;
|
572
|
+
blockNumber: `0x${string}` | null;
|
573
|
+
hash: `0x${string}`;
|
574
|
+
input: `0x${string}`;
|
575
|
+
transactionIndex: `0x${string}` | null;
|
576
|
+
typeHex: `0x${string}` | null;
|
577
|
+
gasPrice: `0x${string}`;
|
578
|
+
maxFeePerBlobGas?: undefined;
|
579
|
+
maxFeePerGas?: undefined;
|
580
|
+
maxPriorityFeePerGas?: undefined;
|
581
|
+
accessList?: undefined;
|
582
|
+
blobVersionedHashes?: undefined;
|
583
|
+
chainId?: `0x${string}` | undefined;
|
584
|
+
yParity?: undefined;
|
585
|
+
type: "0x0";
|
586
|
+
}, "yParity">, "typeHex"> & {
|
395
587
|
isSystemTx?: undefined;
|
396
588
|
mint?: undefined;
|
397
589
|
sourceHash?: undefined;
|
398
590
|
}) | ({
|
399
|
-
|
400
|
-
|
401
|
-
|
591
|
+
r?: `0x${string}` | undefined;
|
592
|
+
s?: `0x${string}` | undefined;
|
593
|
+
v?: `0x${string}` | undefined;
|
594
|
+
yParity?: `0x${string}` | undefined;
|
402
595
|
gasPrice?: `0x${string}` | undefined;
|
403
596
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
404
597
|
maxFeePerGas?: `0x${string}` | undefined;
|
405
598
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
406
|
-
|
599
|
+
to?: `0x${string}` | null | undefined;
|
600
|
+
from?: `0x${string}` | undefined;
|
601
|
+
gas?: `0x${string}` | undefined;
|
602
|
+
nonce?: `0x${string}` | undefined;
|
603
|
+
value?: `0x${string}` | undefined;
|
604
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
605
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
407
606
|
blockHash?: `0x${string}` | null | undefined;
|
408
607
|
blockNumber?: `0x${string}` | null | undefined;
|
409
|
-
from?: `0x${string}` | undefined;
|
410
608
|
hash?: `0x${string}` | undefined;
|
411
609
|
input?: `0x${string}` | undefined;
|
412
|
-
nonce?: `0x${string}` | undefined;
|
413
|
-
r?: `0x${string}` | undefined;
|
414
|
-
s?: `0x${string}` | undefined;
|
415
|
-
to?: `0x${string}` | null | undefined;
|
416
610
|
transactionIndex?: `0x${string}` | null | undefined;
|
417
|
-
v?: `0x${string}` | undefined;
|
418
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
419
611
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
420
612
|
chainId?: `0x${string}` | undefined;
|
421
|
-
} & import("../index.js").Omit<import("../index.js").PartialBy<
|
613
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
614
|
+
blockHash: `0x${string}` | null;
|
615
|
+
blockNumber: `0x${string}` | null;
|
616
|
+
from: `0x${string}`;
|
617
|
+
gas: `0x${string}`;
|
618
|
+
hash: `0x${string}`;
|
619
|
+
input: `0x${string}`;
|
620
|
+
nonce: `0x${string}`;
|
621
|
+
r: `0x${string}`;
|
622
|
+
s: `0x${string}`;
|
623
|
+
to: `0x${string}` | null;
|
624
|
+
transactionIndex: `0x${string}` | null;
|
625
|
+
typeHex: `0x${string}` | null;
|
626
|
+
v: `0x${string}`;
|
627
|
+
value: `0x${string}`;
|
628
|
+
yParity: `0x${string}`;
|
629
|
+
gasPrice: `0x${string}`;
|
630
|
+
maxFeePerBlobGas?: undefined;
|
631
|
+
maxFeePerGas?: undefined;
|
632
|
+
maxPriorityFeePerGas?: undefined;
|
633
|
+
accessList: import("../../index.js").AccessList;
|
634
|
+
blobVersionedHashes?: undefined;
|
635
|
+
chainId: `0x${string}`;
|
636
|
+
type: "0x1";
|
637
|
+
}, "yParity">, "typeHex"> & {
|
422
638
|
isSystemTx?: undefined;
|
423
639
|
mint?: undefined;
|
424
640
|
sourceHash?: undefined;
|
425
641
|
}) | ({
|
426
|
-
|
427
|
-
|
428
|
-
|
642
|
+
r?: `0x${string}` | undefined;
|
643
|
+
s?: `0x${string}` | undefined;
|
644
|
+
v?: `0x${string}` | undefined;
|
645
|
+
yParity?: `0x${string}` | undefined;
|
429
646
|
gasPrice?: `0x${string}` | undefined;
|
430
647
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
431
648
|
maxFeePerGas?: `0x${string}` | undefined;
|
432
649
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
433
|
-
|
650
|
+
to?: `0x${string}` | null | undefined;
|
651
|
+
from?: `0x${string}` | undefined;
|
652
|
+
gas?: `0x${string}` | undefined;
|
653
|
+
nonce?: `0x${string}` | undefined;
|
654
|
+
value?: `0x${string}` | undefined;
|
655
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
656
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
434
657
|
blockHash?: `0x${string}` | null | undefined;
|
435
658
|
blockNumber?: `0x${string}` | null | undefined;
|
436
|
-
from?: `0x${string}` | undefined;
|
437
659
|
hash?: `0x${string}` | undefined;
|
438
660
|
input?: `0x${string}` | undefined;
|
439
|
-
nonce?: `0x${string}` | undefined;
|
440
|
-
r?: `0x${string}` | undefined;
|
441
|
-
s?: `0x${string}` | undefined;
|
442
|
-
to?: `0x${string}` | null | undefined;
|
443
661
|
transactionIndex?: `0x${string}` | null | undefined;
|
444
|
-
v?: `0x${string}` | undefined;
|
445
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
446
662
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
447
663
|
chainId?: `0x${string}` | undefined;
|
448
|
-
} & import("../index.js").Omit<import("../index.js").PartialBy<
|
664
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
665
|
+
blockHash: `0x${string}` | null;
|
666
|
+
blockNumber: `0x${string}` | null;
|
667
|
+
from: `0x${string}`;
|
668
|
+
gas: `0x${string}`;
|
669
|
+
hash: `0x${string}`;
|
670
|
+
input: `0x${string}`;
|
671
|
+
nonce: `0x${string}`;
|
672
|
+
r: `0x${string}`;
|
673
|
+
s: `0x${string}`;
|
674
|
+
to: `0x${string}` | null;
|
675
|
+
transactionIndex: `0x${string}` | null;
|
676
|
+
typeHex: `0x${string}` | null;
|
677
|
+
v: `0x${string}`;
|
678
|
+
value: `0x${string}`;
|
679
|
+
yParity: `0x${string}`;
|
680
|
+
gasPrice?: undefined;
|
681
|
+
maxFeePerBlobGas?: undefined;
|
682
|
+
maxFeePerGas: `0x${string}`;
|
683
|
+
maxPriorityFeePerGas: `0x${string}`;
|
684
|
+
accessList: import("../../index.js").AccessList;
|
685
|
+
blobVersionedHashes?: undefined;
|
686
|
+
chainId: `0x${string}`;
|
687
|
+
type: "0x2";
|
688
|
+
}, "yParity">, "typeHex"> & {
|
449
689
|
isSystemTx?: undefined;
|
450
690
|
mint?: undefined;
|
451
691
|
sourceHash?: undefined;
|
452
692
|
}) | ({
|
453
|
-
|
454
|
-
|
455
|
-
|
693
|
+
r?: `0x${string}` | undefined;
|
694
|
+
s?: `0x${string}` | undefined;
|
695
|
+
v?: `0x${string}` | undefined;
|
696
|
+
yParity?: `0x${string}` | undefined;
|
456
697
|
gasPrice?: `0x${string}` | undefined;
|
457
698
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
458
699
|
maxFeePerGas?: `0x${string}` | undefined;
|
459
700
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
460
|
-
|
701
|
+
to?: `0x${string}` | null | undefined;
|
702
|
+
from?: `0x${string}` | undefined;
|
703
|
+
gas?: `0x${string}` | undefined;
|
704
|
+
nonce?: `0x${string}` | undefined;
|
705
|
+
value?: `0x${string}` | undefined;
|
706
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
707
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
461
708
|
blockHash?: `0x${string}` | null | undefined;
|
462
709
|
blockNumber?: `0x${string}` | null | undefined;
|
463
|
-
from?: `0x${string}` | undefined;
|
464
710
|
hash?: `0x${string}` | undefined;
|
465
711
|
input?: `0x${string}` | undefined;
|
466
|
-
nonce?: `0x${string}` | undefined;
|
467
|
-
r?: `0x${string}` | undefined;
|
468
|
-
s?: `0x${string}` | undefined;
|
469
|
-
to?: `0x${string}` | null | undefined;
|
470
712
|
transactionIndex?: `0x${string}` | null | undefined;
|
471
|
-
v?: `0x${string}` | undefined;
|
472
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
473
713
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
474
714
|
chainId?: `0x${string}` | undefined;
|
475
|
-
} & import("../index.js").Omit<import("../index.js").PartialBy<
|
715
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
716
|
+
blockHash: `0x${string}` | null;
|
717
|
+
blockNumber: `0x${string}` | null;
|
718
|
+
from: `0x${string}`;
|
719
|
+
gas: `0x${string}`;
|
720
|
+
hash: `0x${string}`;
|
721
|
+
input: `0x${string}`;
|
722
|
+
nonce: `0x${string}`;
|
723
|
+
r: `0x${string}`;
|
724
|
+
s: `0x${string}`;
|
725
|
+
to: `0x${string}` | null;
|
726
|
+
transactionIndex: `0x${string}` | null;
|
727
|
+
typeHex: `0x${string}` | null;
|
728
|
+
v: `0x${string}`;
|
729
|
+
value: `0x${string}`;
|
730
|
+
yParity: `0x${string}`;
|
731
|
+
gasPrice?: undefined;
|
732
|
+
maxFeePerBlobGas: `0x${string}`;
|
733
|
+
maxFeePerGas: `0x${string}`;
|
734
|
+
maxPriorityFeePerGas: `0x${string}`;
|
735
|
+
accessList: import("../../index.js").AccessList;
|
736
|
+
blobVersionedHashes: `0x${string}`[];
|
737
|
+
chainId: `0x${string}`;
|
738
|
+
type: "0x3";
|
739
|
+
}, "yParity">, "typeHex"> & {
|
476
740
|
isSystemTx?: undefined;
|
477
741
|
mint?: undefined;
|
478
742
|
sourceHash?: undefined;
|
479
743
|
}) | ({
|
480
|
-
|
481
|
-
|
482
|
-
|
744
|
+
r?: `0x${string}` | undefined;
|
745
|
+
s?: `0x${string}` | undefined;
|
746
|
+
v?: `0x${string}` | undefined;
|
747
|
+
yParity?: `0x${string}` | undefined;
|
483
748
|
gasPrice?: `0x${string}` | undefined;
|
484
749
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
485
750
|
maxFeePerGas?: `0x${string}` | undefined;
|
486
751
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
487
|
-
|
752
|
+
to?: `0x${string}` | null | undefined;
|
753
|
+
from?: `0x${string}` | undefined;
|
754
|
+
gas?: `0x${string}` | undefined;
|
755
|
+
nonce?: `0x${string}` | undefined;
|
756
|
+
value?: `0x${string}` | undefined;
|
757
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
|
758
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
488
759
|
blockHash?: `0x${string}` | null | undefined;
|
489
760
|
blockNumber?: `0x${string}` | null | undefined;
|
490
|
-
from?: `0x${string}` | undefined;
|
491
761
|
hash?: `0x${string}` | undefined;
|
492
762
|
input?: `0x${string}` | undefined;
|
493
|
-
nonce?: `0x${string}` | undefined;
|
494
|
-
r?: `0x${string}` | undefined;
|
495
|
-
s?: `0x${string}` | undefined;
|
496
|
-
to?: `0x${string}` | null | undefined;
|
497
763
|
transactionIndex?: `0x${string}` | null | undefined;
|
498
|
-
v?: `0x${string}` | undefined;
|
499
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
500
764
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
501
765
|
chainId?: `0x${string}` | undefined;
|
502
766
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -505,20 +769,20 @@ export declare const ancient8Sepolia: {
|
|
505
769
|
sourceHash: `0x${string}`;
|
506
770
|
type: "0x7e";
|
507
771
|
})) => ({
|
772
|
+
r: `0x${string}`;
|
773
|
+
s: `0x${string}`;
|
774
|
+
v: bigint;
|
775
|
+
to: `0x${string}` | null;
|
776
|
+
from: `0x${string}`;
|
508
777
|
gas: bigint;
|
778
|
+
nonce: number;
|
509
779
|
value: bigint;
|
510
780
|
blockHash: `0x${string}` | null;
|
511
781
|
blockNumber: bigint | null;
|
512
|
-
from: `0x${string}`;
|
513
782
|
hash: `0x${string}`;
|
514
783
|
input: `0x${string}`;
|
515
|
-
nonce: number;
|
516
|
-
r: `0x${string}`;
|
517
|
-
s: `0x${string}`;
|
518
|
-
to: `0x${string}` | null;
|
519
784
|
transactionIndex: number | null;
|
520
785
|
typeHex: `0x${string}` | null;
|
521
|
-
v: bigint;
|
522
786
|
gasPrice: bigint;
|
523
787
|
maxFeePerBlobGas?: undefined;
|
524
788
|
maxFeePerGas?: undefined;
|
@@ -532,20 +796,20 @@ export declare const ancient8Sepolia: {
|
|
532
796
|
mint?: undefined;
|
533
797
|
sourceHash?: undefined;
|
534
798
|
} | {
|
799
|
+
r: `0x${string}`;
|
800
|
+
s: `0x${string}`;
|
801
|
+
v: bigint;
|
802
|
+
to: `0x${string}` | null;
|
803
|
+
from: `0x${string}`;
|
535
804
|
gas: bigint;
|
805
|
+
nonce: number;
|
536
806
|
value: bigint;
|
537
807
|
blockHash: `0x${string}` | null;
|
538
808
|
blockNumber: bigint | null;
|
539
|
-
from: `0x${string}`;
|
540
809
|
hash: `0x${string}`;
|
541
810
|
input: `0x${string}`;
|
542
|
-
nonce: number;
|
543
|
-
r: `0x${string}`;
|
544
|
-
s: `0x${string}`;
|
545
|
-
to: `0x${string}` | null;
|
546
811
|
transactionIndex: number | null;
|
547
812
|
typeHex: `0x${string}` | null;
|
548
|
-
v: bigint;
|
549
813
|
gasPrice: undefined;
|
550
814
|
maxFeePerBlobGas?: undefined;
|
551
815
|
maxFeePerGas: bigint;
|
@@ -806,7 +1070,7 @@ export declare const ancient8Sepolia: {
|
|
806
1070
|
};
|
807
1071
|
};
|
808
1072
|
serializers: {
|
809
|
-
readonly transaction: import("
|
1073
|
+
readonly transaction: typeof import("../opStack/serializers.js").serializeTransaction;
|
810
1074
|
};
|
811
1075
|
fees?: import("../../index.js").ChainFees<undefined> | undefined;
|
812
1076
|
};
|