viem 2.10.9 → 2.11.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 +28 -0
- package/_cjs/actions/public/call.js +3 -60
- package/_cjs/actions/public/call.js.map +1 -1
- package/_cjs/actions/public/estimateGas.js +8 -2
- package/_cjs/actions/public/estimateGas.js.map +1 -1
- package/_cjs/celo/formatters.js +1 -10
- package/_cjs/celo/formatters.js.map +1 -1
- package/_cjs/celo/serializers.js +0 -25
- package/_cjs/celo/serializers.js.map +1 -1
- package/_cjs/celo/utils.js +2 -15
- package/_cjs/celo/utils.js.map +1 -1
- package/_cjs/chains/definitions/bob.js +33 -0
- package/_cjs/chains/definitions/bob.js.map +1 -0
- package/_cjs/chains/definitions/funkiSepolia.js +34 -0
- package/_cjs/chains/definitions/funkiSepolia.js.map +1 -0
- package/_cjs/chains/definitions/lisk.js +34 -0
- package/_cjs/chains/definitions/lisk.js.map +1 -0
- package/_cjs/chains/definitions/metalL2.js +53 -0
- package/_cjs/chains/definitions/metalL2.js.map +1 -0
- package/_cjs/chains/index.js +14 -6
- package/_cjs/chains/index.js.map +1 -1
- package/_cjs/errors/version.js +1 -1
- package/_cjs/op-stack/chains.js +3 -1
- package/_cjs/op-stack/chains.js.map +1 -1
- package/_cjs/utils/stateOverride.js +63 -0
- package/_cjs/utils/stateOverride.js.map +1 -0
- package/_cjs/zksync/actions/estimateFee.js +26 -0
- package/_cjs/zksync/actions/estimateFee.js.map +1 -0
- package/_cjs/zksync/actions/estimateGasL1ToL2.js +20 -0
- package/_cjs/zksync/actions/estimateGasL1ToL2.js.map +1 -0
- package/_cjs/zksync/actions/getAllBalances.js +19 -0
- package/_cjs/zksync/actions/getAllBalances.js.map +1 -0
- package/_cjs/zksync/actions/getBaseTokenL1Address.js +9 -0
- package/_cjs/zksync/actions/getBaseTokenL1Address.js.map +1 -0
- package/_cjs/zksync/actions/getBlockDetails.js +12 -0
- package/_cjs/zksync/actions/getBlockDetails.js.map +1 -0
- package/_cjs/zksync/actions/getBridgehubContractAddress.js +9 -0
- package/_cjs/zksync/actions/getBridgehubContractAddress.js.map +1 -0
- package/_cjs/zksync/actions/getDefaultBridgeAddresses.js +13 -0
- package/_cjs/zksync/actions/getDefaultBridgeAddresses.js.map +1 -0
- package/_cjs/zksync/actions/getL1Allowance.js +19 -0
- package/_cjs/zksync/actions/getL1Allowance.js.map +1 -0
- package/_cjs/zksync/actions/getL1Balance.js +23 -0
- package/_cjs/zksync/actions/getL1Balance.js.map +1 -0
- package/_cjs/zksync/actions/getL1BatchBlockRange.js +13 -0
- package/_cjs/zksync/actions/getL1BatchBlockRange.js.map +1 -0
- package/_cjs/zksync/actions/getL1BatchDetails.js +12 -0
- package/_cjs/zksync/actions/getL1BatchDetails.js.map +1 -0
- package/_cjs/zksync/actions/getL1BatchNumber.js +9 -0
- package/_cjs/zksync/actions/getL1BatchNumber.js.map +1 -0
- package/_cjs/zksync/actions/getL1ChainId.js +9 -0
- package/_cjs/zksync/actions/getL1ChainId.js.map +1 -0
- package/_cjs/zksync/actions/getL1TokenBalance.js +24 -0
- package/_cjs/zksync/actions/getL1TokenBalance.js.map +1 -0
- package/_cjs/zksync/actions/getLogProof.js +12 -0
- package/_cjs/zksync/actions/getLogProof.js.map +1 -0
- package/_cjs/zksync/actions/getMainContractAddress.js +9 -0
- package/_cjs/zksync/actions/getMainContractAddress.js.map +1 -0
- package/_cjs/zksync/actions/getRawBlockTransactions.js +13 -0
- package/_cjs/zksync/actions/getRawBlockTransactions.js.map +1 -0
- package/_cjs/zksync/actions/getTestnetPaymasterAddress.js +9 -0
- package/_cjs/zksync/actions/getTestnetPaymasterAddress.js.map +1 -0
- package/_cjs/zksync/actions/getTransactionDetails.js +12 -0
- package/_cjs/zksync/actions/getTransactionDetails.js.map +1 -0
- package/_cjs/zksync/constants/address.js +4 -1
- package/_cjs/zksync/constants/address.js.map +1 -1
- package/_cjs/zksync/decorators/publicL1.js +15 -0
- package/_cjs/zksync/decorators/publicL1.js.map +1 -0
- package/_cjs/zksync/decorators/publicL2.js +43 -0
- package/_cjs/zksync/decorators/publicL2.js.map +1 -0
- package/_cjs/zksync/errors/token-is-eth.js +17 -0
- package/_cjs/zksync/errors/token-is-eth.js.map +1 -0
- package/_cjs/zksync/index.js +41 -3
- package/_cjs/zksync/index.js.map +1 -1
- package/_cjs/zksync/types/eip1193.js +3 -0
- package/_cjs/zksync/types/eip1193.js.map +1 -0
- package/_cjs/zksync/types/proof.js +3 -0
- package/_cjs/zksync/types/proof.js.map +1 -0
- package/_cjs/zksync/utils/camelCaseKeys.js +17 -0
- package/_cjs/zksync/utils/camelCaseKeys.js.map +1 -0
- package/_cjs/zksync/utils/isEth.js +17 -0
- package/_cjs/zksync/utils/isEth.js.map +1 -0
- package/_cjs/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js +4 -3
- package/_cjs/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js.map +1 -1
- package/_cjs/zksync/utils/paymaster/getGeneralPaymasterInput.js +4 -3
- package/_cjs/zksync/utils/paymaster/getGeneralPaymasterInput.js.map +1 -1
- package/_esm/actions/public/call.js +2 -56
- package/_esm/actions/public/call.js.map +1 -1
- package/_esm/actions/public/estimateGas.js +8 -2
- package/_esm/actions/public/estimateGas.js.map +1 -1
- package/_esm/celo/formatters.js +2 -11
- package/_esm/celo/formatters.js.map +1 -1
- package/_esm/celo/serializers.js +1 -29
- package/_esm/celo/serializers.js.map +1 -1
- package/_esm/celo/utils.js +1 -15
- package/_esm/celo/utils.js.map +1 -1
- package/_esm/chains/definitions/bob.js +30 -0
- package/_esm/chains/definitions/bob.js.map +1 -0
- package/_esm/chains/definitions/funkiSepolia.js +31 -0
- package/_esm/chains/definitions/funkiSepolia.js.map +1 -0
- package/_esm/chains/definitions/lisk.js +31 -0
- package/_esm/chains/definitions/lisk.js.map +1 -0
- package/_esm/chains/definitions/metalL2.js +50 -0
- package/_esm/chains/definitions/metalL2.js.map +1 -0
- package/_esm/chains/index.js +4 -0
- package/_esm/chains/index.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_esm/op-stack/chains.js +1 -0
- package/_esm/op-stack/chains.js.map +1 -1
- package/_esm/utils/stateOverride.js +57 -0
- package/_esm/utils/stateOverride.js.map +1 -0
- package/_esm/zksync/actions/estimateFee.js +22 -0
- package/_esm/zksync/actions/estimateFee.js.map +1 -0
- package/_esm/zksync/actions/estimateGasL1ToL2.js +16 -0
- package/_esm/zksync/actions/estimateGasL1ToL2.js.map +1 -0
- package/_esm/zksync/actions/getAllBalances.js +15 -0
- package/_esm/zksync/actions/getAllBalances.js.map +1 -0
- package/_esm/zksync/actions/getBaseTokenL1Address.js +5 -0
- package/_esm/zksync/actions/getBaseTokenL1Address.js.map +1 -0
- package/_esm/zksync/actions/getBlockDetails.js +8 -0
- package/_esm/zksync/actions/getBlockDetails.js.map +1 -0
- package/_esm/zksync/actions/getBridgehubContractAddress.js +5 -0
- package/_esm/zksync/actions/getBridgehubContractAddress.js.map +1 -0
- package/_esm/zksync/actions/getDefaultBridgeAddresses.js +9 -0
- package/_esm/zksync/actions/getDefaultBridgeAddresses.js.map +1 -0
- package/_esm/zksync/actions/getL1Allowance.js +15 -0
- package/_esm/zksync/actions/getL1Allowance.js.map +1 -0
- package/_esm/zksync/actions/getL1Balance.js +19 -0
- package/_esm/zksync/actions/getL1Balance.js.map +1 -0
- package/_esm/zksync/actions/getL1BatchBlockRange.js +9 -0
- package/_esm/zksync/actions/getL1BatchBlockRange.js.map +1 -0
- package/_esm/zksync/actions/getL1BatchDetails.js +8 -0
- package/_esm/zksync/actions/getL1BatchDetails.js.map +1 -0
- package/_esm/zksync/actions/getL1BatchNumber.js +5 -0
- package/_esm/zksync/actions/getL1BatchNumber.js.map +1 -0
- package/_esm/zksync/actions/getL1ChainId.js +5 -0
- package/_esm/zksync/actions/getL1ChainId.js.map +1 -0
- package/_esm/zksync/actions/getL1TokenBalance.js +20 -0
- package/_esm/zksync/actions/getL1TokenBalance.js.map +1 -0
- package/_esm/zksync/actions/getLogProof.js +8 -0
- package/_esm/zksync/actions/getLogProof.js.map +1 -0
- package/_esm/zksync/actions/getMainContractAddress.js +5 -0
- package/_esm/zksync/actions/getMainContractAddress.js.map +1 -0
- package/_esm/zksync/actions/getRawBlockTransactions.js +9 -0
- package/_esm/zksync/actions/getRawBlockTransactions.js.map +1 -0
- package/_esm/zksync/actions/getTestnetPaymasterAddress.js +5 -0
- package/_esm/zksync/actions/getTestnetPaymasterAddress.js.map +1 -0
- package/_esm/zksync/actions/getTransactionDetails.js +8 -0
- package/_esm/zksync/actions/getTransactionDetails.js.map +1 -0
- package/_esm/zksync/constants/address.js +3 -0
- package/_esm/zksync/constants/address.js.map +1 -1
- package/_esm/zksync/decorators/publicL1.js +12 -0
- package/_esm/zksync/decorators/publicL1.js.map +1 -0
- package/_esm/zksync/decorators/publicL2.js +39 -0
- package/_esm/zksync/decorators/publicL2.js.map +1 -0
- package/_esm/zksync/errors/token-is-eth.js +13 -0
- package/_esm/zksync/errors/token-is-eth.js.map +1 -0
- package/_esm/zksync/index.js +20 -1
- package/_esm/zksync/index.js.map +1 -1
- package/_esm/zksync/types/eip1193.js +2 -0
- package/_esm/zksync/types/eip1193.js.map +1 -0
- package/_esm/zksync/types/proof.js +2 -0
- package/_esm/zksync/types/proof.js.map +1 -0
- package/_esm/zksync/utils/camelCaseKeys.js +13 -0
- package/_esm/zksync/utils/camelCaseKeys.js.map +1 -0
- package/_esm/zksync/utils/isEth.js +13 -0
- package/_esm/zksync/utils/isEth.js.map +1 -0
- package/_esm/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js +2 -1
- package/_esm/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js.map +1 -1
- package/_esm/zksync/utils/paymaster/getGeneralPaymasterInput.js +2 -1
- package/_esm/zksync/utils/paymaster/getGeneralPaymasterInput.js.map +1 -1
- package/_types/actions/public/call.d.ts +3 -12
- package/_types/actions/public/call.d.ts.map +1 -1
- package/_types/actions/public/estimateGas.d.ts +2 -0
- package/_types/actions/public/estimateGas.d.ts.map +1 -1
- package/_types/celo/chainConfig.d.ts +58 -526
- package/_types/celo/chainConfig.d.ts.map +1 -1
- package/_types/celo/formatters.d.ts +29 -263
- package/_types/celo/formatters.d.ts.map +1 -1
- package/_types/celo/index.d.ts +1 -1
- package/_types/celo/index.d.ts.map +1 -1
- package/_types/celo/serializers.d.ts +2 -3
- package/_types/celo/serializers.d.ts.map +1 -1
- package/_types/celo/types.d.ts +7 -31
- package/_types/celo/types.d.ts.map +1 -1
- package/_types/celo/utils.d.ts +1 -2
- package/_types/celo/utils.d.ts.map +1 -1
- package/_types/chains/definitions/bob.d.ts +34 -0
- package/_types/chains/definitions/bob.d.ts.map +1 -0
- package/_types/chains/definitions/celo.d.ts +58 -526
- package/_types/chains/definitions/celo.d.ts.map +1 -1
- package/_types/chains/definitions/celoAlfajores.d.ts +58 -526
- package/_types/chains/definitions/celoAlfajores.d.ts.map +1 -1
- package/_types/chains/definitions/funkiSepolia.d.ts +1064 -0
- package/_types/chains/definitions/funkiSepolia.d.ts.map +1 -0
- package/_types/chains/definitions/lisk.d.ts +1453 -0
- package/_types/chains/definitions/lisk.d.ts.map +1 -0
- package/_types/chains/definitions/metalL2.d.ts +1080 -0
- package/_types/chains/definitions/metalL2.d.ts.map +1 -0
- package/_types/chains/definitions/playfiAlbireo.d.ts +8 -8
- package/_types/chains/definitions/zkSync.d.ts +8 -8
- package/_types/chains/definitions/zkSyncInMemoryNode.d.ts +8 -8
- package/_types/chains/definitions/zkSyncLocalNode.d.ts +8 -8
- package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +8 -8
- package/_types/chains/definitions/zkSyncTestnet.d.ts +8 -8
- package/_types/chains/index.d.ts +5 -1
- package/_types/chains/index.d.ts.map +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/_types/op-stack/chains.d.ts +1 -0
- package/_types/op-stack/chains.d.ts.map +1 -1
- package/_types/op-stack/types/transaction.d.ts +2 -2
- package/_types/op-stack/types/transaction.d.ts.map +1 -1
- package/_types/types/eip1193.d.ts +11 -3
- package/_types/types/eip1193.d.ts.map +1 -1
- package/_types/utils/stateOverride.d.ts +16 -0
- package/_types/utils/stateOverride.d.ts.map +1 -0
- package/_types/zksync/actions/estimateFee.d.ts +11 -0
- package/_types/zksync/actions/estimateFee.d.ts.map +1 -0
- package/_types/zksync/actions/estimateGasL1ToL2.d.ts +10 -0
- package/_types/zksync/actions/estimateGasL1ToL2.d.ts.map +1 -0
- package/_types/zksync/actions/getAllBalances.d.ts +12 -0
- package/_types/zksync/actions/getAllBalances.d.ts.map +1 -0
- package/_types/zksync/actions/getBaseTokenL1Address.d.ts +9 -0
- package/_types/zksync/actions/getBaseTokenL1Address.d.ts.map +1 -0
- package/_types/zksync/actions/getBlockDetails.d.ts +10 -0
- package/_types/zksync/actions/getBlockDetails.d.ts.map +1 -0
- package/_types/zksync/actions/getBridgehubContractAddress.d.ts +9 -0
- package/_types/zksync/actions/getBridgehubContractAddress.d.ts.map +1 -0
- package/_types/zksync/actions/getDefaultBridgeAddresses.d.ts +9 -0
- package/_types/zksync/actions/getDefaultBridgeAddresses.d.ts.map +1 -0
- package/_types/zksync/actions/getL1Allowance.d.ts +17 -0
- package/_types/zksync/actions/getL1Allowance.d.ts.map +1 -0
- package/_types/zksync/actions/getL1Balance.d.ts +23 -0
- package/_types/zksync/actions/getL1Balance.d.ts.map +1 -0
- package/_types/zksync/actions/getL1BatchBlockRange.d.ts +11 -0
- package/_types/zksync/actions/getL1BatchBlockRange.d.ts.map +1 -0
- package/_types/zksync/actions/getL1BatchDetails.d.ts +10 -0
- package/_types/zksync/actions/getL1BatchDetails.d.ts.map +1 -0
- package/_types/zksync/actions/getL1BatchNumber.d.ts +9 -0
- package/_types/zksync/actions/getL1BatchNumber.d.ts.map +1 -0
- package/_types/zksync/actions/getL1ChainId.d.ts +9 -0
- package/_types/zksync/actions/getL1ChainId.d.ts.map +1 -0
- package/_types/zksync/actions/getL1TokenBalance.d.ts +24 -0
- package/_types/zksync/actions/getL1TokenBalance.d.ts.map +1 -0
- package/_types/zksync/actions/getLogProof.d.ts +14 -0
- package/_types/zksync/actions/getLogProof.d.ts.map +1 -0
- package/_types/zksync/actions/getMainContractAddress.d.ts +9 -0
- package/_types/zksync/actions/getMainContractAddress.d.ts.map +1 -0
- package/_types/zksync/actions/getRawBlockTransactions.d.ts +11 -0
- package/_types/zksync/actions/getRawBlockTransactions.d.ts.map +1 -0
- package/_types/zksync/actions/getTestnetPaymasterAddress.d.ts +9 -0
- package/_types/zksync/actions/getTestnetPaymasterAddress.d.ts.map +1 -0
- package/_types/zksync/actions/getTransactionDetails.d.ts +13 -0
- package/_types/zksync/actions/getTransactionDetails.d.ts.map +1 -0
- package/_types/zksync/chainConfig.d.ts +8 -8
- package/_types/zksync/constants/address.d.ts +3 -0
- package/_types/zksync/constants/address.d.ts.map +1 -1
- package/_types/zksync/decorators/publicL1.d.ts +145 -0
- package/_types/zksync/decorators/publicL1.d.ts.map +1 -0
- package/_types/zksync/decorators/publicL2.d.ts +322 -0
- package/_types/zksync/decorators/publicL2.d.ts.map +1 -0
- package/_types/zksync/errors/token-is-eth.d.ts +9 -0
- package/_types/zksync/errors/token-is-eth.d.ts.map +1 -0
- package/_types/zksync/formatters.d.ts +8 -8
- package/_types/zksync/index.d.ts +21 -2
- package/_types/zksync/index.d.ts.map +1 -1
- package/_types/zksync/types/block.d.ts +30 -1
- package/_types/zksync/types/block.d.ts.map +1 -1
- package/_types/zksync/types/contract.d.ts +6 -0
- package/_types/zksync/types/contract.d.ts.map +1 -1
- package/_types/zksync/types/eip1193.d.ts +152 -0
- package/_types/zksync/types/eip1193.d.ts.map +1 -0
- package/_types/zksync/types/fee.d.ts +6 -0
- package/_types/zksync/types/fee.d.ts.map +1 -1
- package/_types/zksync/types/proof.d.ts +7 -0
- package/_types/zksync/types/proof.d.ts.map +1 -0
- package/_types/zksync/types/transaction.d.ts +66 -6
- package/_types/zksync/types/transaction.d.ts.map +1 -1
- package/_types/zksync/utils/camelCaseKeys.d.ts +2 -0
- package/_types/zksync/utils/camelCaseKeys.d.ts.map +1 -0
- package/_types/zksync/utils/isEth.d.ts +3 -0
- package/_types/zksync/utils/isEth.d.ts.map +1 -0
- package/_types/zksync/utils/paymaster/getApprovalBasedPaymasterInput.d.ts +1 -1
- package/_types/zksync/utils/paymaster/getApprovalBasedPaymasterInput.d.ts.map +1 -1
- package/_types/zksync/utils/paymaster/getGeneralPaymasterInput.d.ts +1 -1
- package/_types/zksync/utils/paymaster/getGeneralPaymasterInput.d.ts.map +1 -1
- package/actions/public/call.ts +8 -91
- package/actions/public/estimateGas.ts +11 -1
- package/celo/formatters.ts +3 -11
- package/celo/index.ts +0 -2
- package/celo/serializers.ts +2 -50
- package/celo/types.ts +6 -41
- package/celo/utils.ts +1 -24
- package/chains/definitions/bob.ts +30 -0
- package/chains/definitions/funkiSepolia.ts +32 -0
- package/chains/definitions/lisk.ts +31 -0
- package/chains/definitions/metalL2.ts +51 -0
- package/chains/index.ts +4 -2
- package/errors/version.ts +1 -1
- package/op-stack/chains.ts +1 -0
- package/op-stack/types/transaction.ts +2 -2
- package/package.json +1 -1
- package/types/eip1193.ts +11 -1
- package/utils/stateOverride.ts +98 -0
- package/zksync/actions/estimateFee.ts +46 -0
- package/zksync/actions/estimateGasL1ToL2.ts +38 -0
- package/zksync/actions/getAllBalances.ts +33 -0
- package/zksync/actions/getBaseTokenL1Address.ts +18 -0
- package/zksync/actions/getBlockDetails.ts +27 -0
- package/zksync/actions/getBridgehubContractAddress.ts +18 -0
- package/zksync/actions/getDefaultBridgeAddresses.ts +22 -0
- package/zksync/actions/getL1Allowance.ts +43 -0
- package/zksync/actions/getL1Balance.ts +68 -0
- package/zksync/actions/getL1BatchBlockRange.ts +26 -0
- package/zksync/actions/getL1BatchDetails.ts +27 -0
- package/zksync/actions/getL1BatchNumber.ts +18 -0
- package/zksync/actions/getL1ChainId.ts +18 -0
- package/zksync/actions/getL1TokenBalance.ts +63 -0
- package/zksync/actions/getLogProof.ts +28 -0
- package/zksync/actions/getMainContractAddress.ts +18 -0
- package/zksync/actions/getRawBlockTransactions.ts +26 -0
- package/zksync/actions/getTestnetPaymasterAddress.ts +18 -0
- package/zksync/actions/getTransactionDetails.ts +27 -0
- package/zksync/constants/address.ts +9 -0
- package/zksync/decorators/publicL1.ts +180 -0
- package/zksync/decorators/publicL2.ts +443 -0
- package/zksync/errors/token-is-eth.ts +16 -0
- package/zksync/index.ts +85 -6
- package/zksync/types/block.ts +37 -1
- package/zksync/types/contract.ts +8 -0
- package/zksync/types/eip1193.ts +155 -0
- package/zksync/types/fee.ts +7 -0
- package/zksync/types/proof.ts +7 -0
- package/zksync/types/transaction.ts +86 -12
- package/zksync/utils/camelCaseKeys.ts +11 -0
- package/zksync/utils/isEth.ts +20 -0
- package/zksync/utils/paymaster/getApprovalBasedPaymasterInput.ts +5 -2
- package/zksync/utils/paymaster/getGeneralPaymasterInput.ts +5 -2
@@ -0,0 +1,1453 @@
|
|
1
|
+
export declare const lisk: {
|
2
|
+
blockExplorers: {
|
3
|
+
readonly default: {
|
4
|
+
readonly name: "Blockscout";
|
5
|
+
readonly url: "https://blockscout.lisk.com";
|
6
|
+
readonly apiUrl: "https://blockscout.lisk.com/api";
|
7
|
+
};
|
8
|
+
};
|
9
|
+
contracts: {
|
10
|
+
readonly multicall3: {
|
11
|
+
readonly address: "0xA9d71E1dd7ca26F26e656E66d6AA81ed7f745bf0";
|
12
|
+
};
|
13
|
+
};
|
14
|
+
id: 1135;
|
15
|
+
name: "Lisk";
|
16
|
+
nativeCurrency: {
|
17
|
+
readonly decimals: 18;
|
18
|
+
readonly name: "Ether";
|
19
|
+
readonly symbol: "ETH";
|
20
|
+
};
|
21
|
+
rpcUrls: {
|
22
|
+
readonly default: {
|
23
|
+
readonly http: readonly ["https://rpc.api.lisk.com"];
|
24
|
+
};
|
25
|
+
};
|
26
|
+
sourceId?: number | undefined;
|
27
|
+
testnet?: boolean | undefined;
|
28
|
+
custom: {
|
29
|
+
readonly getEip712Domain: import("../../zksync/index.js").EIP712DomainFn<import("../index.js").ZkSyncTransactionSerializable, import("../index.js").ZkSyncEIP712TransactionSignable>;
|
30
|
+
};
|
31
|
+
formatters: {
|
32
|
+
readonly block: {
|
33
|
+
exclude: [] | undefined;
|
34
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").ZkSyncRpcBlockOverrides & {
|
35
|
+
transactions: `0x${string}`[] | import("../index.js").ZkSyncRpcTransaction[];
|
36
|
+
}>) => {
|
37
|
+
baseFeePerGas: bigint | null;
|
38
|
+
blobGasUsed: bigint;
|
39
|
+
difficulty: bigint;
|
40
|
+
excessBlobGas: bigint;
|
41
|
+
extraData: `0x${string}`;
|
42
|
+
gasLimit: bigint;
|
43
|
+
gasUsed: bigint;
|
44
|
+
hash: `0x${string}` | null;
|
45
|
+
logsBloom: `0x${string}` | null;
|
46
|
+
miner: `0x${string}`;
|
47
|
+
mixHash: `0x${string}`;
|
48
|
+
nonce: `0x${string}` | null;
|
49
|
+
number: bigint | null;
|
50
|
+
parentHash: `0x${string}`;
|
51
|
+
receiptsRoot: `0x${string}`;
|
52
|
+
sealFields: `0x${string}`[];
|
53
|
+
sha3Uncles: `0x${string}`;
|
54
|
+
size: bigint;
|
55
|
+
stateRoot: `0x${string}`;
|
56
|
+
timestamp: bigint;
|
57
|
+
totalDifficulty: bigint | null;
|
58
|
+
transactions: `0x${string}`[] | import("../index.js").ZkSyncTransaction[];
|
59
|
+
transactionsRoot: `0x${string}`;
|
60
|
+
uncles: `0x${string}`[];
|
61
|
+
withdrawals?: import("../../index.js").Withdrawal[] | undefined;
|
62
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
63
|
+
l1BatchNumber: bigint | null;
|
64
|
+
l1BatchTimestamp: bigint | null;
|
65
|
+
} & {};
|
66
|
+
type: "block";
|
67
|
+
};
|
68
|
+
readonly transaction: {
|
69
|
+
exclude: [] | undefined;
|
70
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransaction>, import("../index.js").ZkSyncRpcTransaction>) => ({
|
71
|
+
r: `0x${string}`;
|
72
|
+
s: `0x${string}`;
|
73
|
+
v: bigint;
|
74
|
+
to: `0x${string}` | null;
|
75
|
+
from: `0x${string}`;
|
76
|
+
gas: bigint;
|
77
|
+
nonce: number;
|
78
|
+
value: bigint;
|
79
|
+
blockHash: `0x${string}` | null;
|
80
|
+
blockNumber: bigint | null;
|
81
|
+
hash: `0x${string}`;
|
82
|
+
input: `0x${string}`;
|
83
|
+
transactionIndex: number | null;
|
84
|
+
typeHex: `0x${string}` | null;
|
85
|
+
gasPrice: bigint;
|
86
|
+
maxFeePerBlobGas?: undefined;
|
87
|
+
maxFeePerGas?: undefined;
|
88
|
+
maxPriorityFeePerGas?: undefined;
|
89
|
+
accessList?: undefined;
|
90
|
+
blobVersionedHashes?: undefined;
|
91
|
+
chainId?: number | undefined;
|
92
|
+
yParity?: undefined;
|
93
|
+
type: "legacy";
|
94
|
+
l1BatchNumber: bigint | null;
|
95
|
+
l1BatchTxIndex: bigint | null;
|
96
|
+
} | {
|
97
|
+
r: `0x${string}`;
|
98
|
+
s: `0x${string}`;
|
99
|
+
v: bigint;
|
100
|
+
to: `0x${string}` | null;
|
101
|
+
from: `0x${string}`;
|
102
|
+
gas: bigint;
|
103
|
+
nonce: number;
|
104
|
+
value: bigint;
|
105
|
+
blockHash: `0x${string}` | null;
|
106
|
+
blockNumber: bigint | null;
|
107
|
+
hash: `0x${string}`;
|
108
|
+
input: `0x${string}`;
|
109
|
+
transactionIndex: number | null;
|
110
|
+
typeHex: `0x${string}` | null;
|
111
|
+
gasPrice: undefined;
|
112
|
+
maxFeePerBlobGas?: undefined;
|
113
|
+
maxFeePerGas: bigint;
|
114
|
+
maxPriorityFeePerGas: bigint;
|
115
|
+
accessList?: undefined;
|
116
|
+
blobVersionedHashes?: undefined;
|
117
|
+
chainId?: number | undefined;
|
118
|
+
yParity: number;
|
119
|
+
type: "priority";
|
120
|
+
l1BatchNumber: bigint | null;
|
121
|
+
l1BatchTxIndex: bigint | null;
|
122
|
+
} | {
|
123
|
+
r: `0x${string}`;
|
124
|
+
s: `0x${string}`;
|
125
|
+
v: bigint;
|
126
|
+
to: `0x${string}` | null;
|
127
|
+
from: `0x${string}`;
|
128
|
+
gas: bigint;
|
129
|
+
nonce: number;
|
130
|
+
value: bigint;
|
131
|
+
blockHash: `0x${string}` | null;
|
132
|
+
blockNumber: bigint | null;
|
133
|
+
hash: `0x${string}`;
|
134
|
+
input: `0x${string}`;
|
135
|
+
transactionIndex: number | null;
|
136
|
+
typeHex: `0x${string}` | null;
|
137
|
+
gasPrice: undefined;
|
138
|
+
maxFeePerBlobGas?: undefined;
|
139
|
+
maxFeePerGas: bigint;
|
140
|
+
maxPriorityFeePerGas: bigint;
|
141
|
+
accessList?: undefined;
|
142
|
+
blobVersionedHashes?: undefined;
|
143
|
+
chainId?: number | undefined;
|
144
|
+
yParity: number;
|
145
|
+
type: "priority" | "eip712";
|
146
|
+
l1BatchNumber: bigint | null;
|
147
|
+
l1BatchTxIndex: bigint | null;
|
148
|
+
} | {
|
149
|
+
blockHash: `0x${string}` | null;
|
150
|
+
blockNumber: bigint | null;
|
151
|
+
from: `0x${string}`;
|
152
|
+
gas: bigint;
|
153
|
+
hash: `0x${string}`;
|
154
|
+
input: `0x${string}`;
|
155
|
+
nonce: number;
|
156
|
+
r: `0x${string}`;
|
157
|
+
s: `0x${string}`;
|
158
|
+
to: `0x${string}` | null;
|
159
|
+
transactionIndex: number | null;
|
160
|
+
typeHex: `0x${string}` | null;
|
161
|
+
v: bigint;
|
162
|
+
value: bigint;
|
163
|
+
yParity: number;
|
164
|
+
gasPrice: bigint;
|
165
|
+
maxFeePerBlobGas?: undefined;
|
166
|
+
maxFeePerGas?: undefined;
|
167
|
+
maxPriorityFeePerGas?: undefined;
|
168
|
+
accessList: import("../../index.js").AccessList;
|
169
|
+
blobVersionedHashes?: undefined;
|
170
|
+
chainId: number;
|
171
|
+
type: "eip2930";
|
172
|
+
l1BatchNumber: bigint | null;
|
173
|
+
l1BatchTxIndex: bigint | null;
|
174
|
+
} | {
|
175
|
+
blockHash: `0x${string}` | null;
|
176
|
+
blockNumber: bigint | null;
|
177
|
+
from: `0x${string}`;
|
178
|
+
gas: bigint;
|
179
|
+
hash: `0x${string}`;
|
180
|
+
input: `0x${string}`;
|
181
|
+
nonce: number;
|
182
|
+
r: `0x${string}`;
|
183
|
+
s: `0x${string}`;
|
184
|
+
to: `0x${string}` | null;
|
185
|
+
transactionIndex: number | null;
|
186
|
+
typeHex: `0x${string}` | null;
|
187
|
+
v: bigint;
|
188
|
+
value: bigint;
|
189
|
+
yParity: number;
|
190
|
+
gasPrice: undefined;
|
191
|
+
maxFeePerBlobGas?: undefined;
|
192
|
+
maxFeePerGas: bigint;
|
193
|
+
maxPriorityFeePerGas: bigint;
|
194
|
+
accessList: import("../../index.js").AccessList;
|
195
|
+
blobVersionedHashes?: undefined;
|
196
|
+
chainId: number;
|
197
|
+
type: "eip1559";
|
198
|
+
l1BatchNumber: bigint | null;
|
199
|
+
l1BatchTxIndex: bigint | null;
|
200
|
+
} | {
|
201
|
+
blockHash: `0x${string}` | null;
|
202
|
+
blockNumber: bigint | null;
|
203
|
+
from: `0x${string}`;
|
204
|
+
gas: bigint;
|
205
|
+
hash: `0x${string}`;
|
206
|
+
input: `0x${string}`;
|
207
|
+
nonce: number;
|
208
|
+
r: `0x${string}`;
|
209
|
+
s: `0x${string}`;
|
210
|
+
to: `0x${string}` | null;
|
211
|
+
transactionIndex: number | null;
|
212
|
+
typeHex: `0x${string}` | null;
|
213
|
+
v: bigint;
|
214
|
+
value: bigint;
|
215
|
+
yParity: number;
|
216
|
+
gasPrice: undefined;
|
217
|
+
maxFeePerBlobGas?: undefined;
|
218
|
+
maxFeePerGas: bigint;
|
219
|
+
maxPriorityFeePerGas: bigint;
|
220
|
+
accessList: import("../../index.js").AccessList;
|
221
|
+
blobVersionedHashes?: undefined;
|
222
|
+
chainId: number;
|
223
|
+
type: "priority";
|
224
|
+
l1BatchNumber: bigint | null;
|
225
|
+
l1BatchTxIndex: bigint | null;
|
226
|
+
} | {
|
227
|
+
blockHash: `0x${string}` | null;
|
228
|
+
blockNumber: bigint | null;
|
229
|
+
from: `0x${string}`;
|
230
|
+
gas: bigint;
|
231
|
+
hash: `0x${string}`;
|
232
|
+
input: `0x${string}`;
|
233
|
+
nonce: number;
|
234
|
+
r: `0x${string}`;
|
235
|
+
s: `0x${string}`;
|
236
|
+
to: `0x${string}` | null;
|
237
|
+
transactionIndex: number | null;
|
238
|
+
typeHex: `0x${string}` | null;
|
239
|
+
v: bigint;
|
240
|
+
value: bigint;
|
241
|
+
yParity: number;
|
242
|
+
gasPrice: undefined;
|
243
|
+
maxFeePerBlobGas?: undefined;
|
244
|
+
maxFeePerGas: bigint;
|
245
|
+
maxPriorityFeePerGas: bigint;
|
246
|
+
accessList: import("../../index.js").AccessList;
|
247
|
+
blobVersionedHashes?: undefined;
|
248
|
+
chainId: number;
|
249
|
+
type: "priority" | "eip712";
|
250
|
+
l1BatchNumber: bigint | null;
|
251
|
+
l1BatchTxIndex: bigint | null;
|
252
|
+
} | {
|
253
|
+
blockHash: `0x${string}` | null;
|
254
|
+
blockNumber: bigint | null;
|
255
|
+
from: `0x${string}`;
|
256
|
+
gas: bigint;
|
257
|
+
hash: `0x${string}`;
|
258
|
+
input: `0x${string}`;
|
259
|
+
nonce: number;
|
260
|
+
r: `0x${string}`;
|
261
|
+
s: `0x${string}`;
|
262
|
+
to: `0x${string}` | null;
|
263
|
+
transactionIndex: number | null;
|
264
|
+
typeHex: `0x${string}` | null;
|
265
|
+
v: bigint;
|
266
|
+
value: bigint;
|
267
|
+
yParity: number;
|
268
|
+
gasPrice: bigint;
|
269
|
+
maxFeePerBlobGas?: undefined;
|
270
|
+
maxFeePerGas: undefined;
|
271
|
+
maxPriorityFeePerGas: undefined;
|
272
|
+
accessList: import("../../index.js").AccessList;
|
273
|
+
blobVersionedHashes?: undefined;
|
274
|
+
chainId: number;
|
275
|
+
type: "eip2930";
|
276
|
+
l1BatchNumber: bigint | null;
|
277
|
+
l1BatchTxIndex: bigint | null;
|
278
|
+
} | {
|
279
|
+
blockHash: `0x${string}` | null;
|
280
|
+
blockNumber: bigint | null;
|
281
|
+
from: `0x${string}`;
|
282
|
+
gas: bigint;
|
283
|
+
hash: `0x${string}`;
|
284
|
+
input: `0x${string}`;
|
285
|
+
nonce: number;
|
286
|
+
r: `0x${string}`;
|
287
|
+
s: `0x${string}`;
|
288
|
+
to: `0x${string}` | null;
|
289
|
+
transactionIndex: number | null;
|
290
|
+
typeHex: `0x${string}` | null;
|
291
|
+
v: bigint;
|
292
|
+
value: bigint;
|
293
|
+
yParity: number;
|
294
|
+
gasPrice?: undefined;
|
295
|
+
maxFeePerBlobGas?: undefined;
|
296
|
+
maxFeePerGas: bigint;
|
297
|
+
maxPriorityFeePerGas: bigint;
|
298
|
+
accessList: import("../../index.js").AccessList;
|
299
|
+
blobVersionedHashes?: undefined;
|
300
|
+
chainId: number;
|
301
|
+
type: "eip1559";
|
302
|
+
l1BatchNumber: bigint | null;
|
303
|
+
l1BatchTxIndex: bigint | null;
|
304
|
+
} | {
|
305
|
+
blockHash: `0x${string}` | null;
|
306
|
+
blockNumber: bigint | null;
|
307
|
+
from: `0x${string}`;
|
308
|
+
gas: bigint;
|
309
|
+
hash: `0x${string}`;
|
310
|
+
input: `0x${string}`;
|
311
|
+
nonce: number;
|
312
|
+
r: `0x${string}`;
|
313
|
+
s: `0x${string}`;
|
314
|
+
to: `0x${string}` | null;
|
315
|
+
transactionIndex: number | null;
|
316
|
+
typeHex: `0x${string}` | null;
|
317
|
+
v: bigint;
|
318
|
+
value: bigint;
|
319
|
+
yParity: number;
|
320
|
+
gasPrice?: undefined;
|
321
|
+
maxFeePerBlobGas?: undefined;
|
322
|
+
maxFeePerGas: bigint;
|
323
|
+
maxPriorityFeePerGas: bigint;
|
324
|
+
accessList: import("../../index.js").AccessList;
|
325
|
+
blobVersionedHashes?: undefined;
|
326
|
+
chainId: number;
|
327
|
+
type: "priority";
|
328
|
+
l1BatchNumber: bigint | null;
|
329
|
+
l1BatchTxIndex: bigint | null;
|
330
|
+
} | {
|
331
|
+
blockHash: `0x${string}` | null;
|
332
|
+
blockNumber: bigint | null;
|
333
|
+
from: `0x${string}`;
|
334
|
+
gas: bigint;
|
335
|
+
hash: `0x${string}`;
|
336
|
+
input: `0x${string}`;
|
337
|
+
nonce: number;
|
338
|
+
r: `0x${string}`;
|
339
|
+
s: `0x${string}`;
|
340
|
+
to: `0x${string}` | null;
|
341
|
+
transactionIndex: number | null;
|
342
|
+
typeHex: `0x${string}` | null;
|
343
|
+
v: bigint;
|
344
|
+
value: bigint;
|
345
|
+
yParity: number;
|
346
|
+
gasPrice?: undefined;
|
347
|
+
maxFeePerBlobGas?: undefined;
|
348
|
+
maxFeePerGas: bigint;
|
349
|
+
maxPriorityFeePerGas: bigint;
|
350
|
+
accessList: import("../../index.js").AccessList;
|
351
|
+
blobVersionedHashes?: undefined;
|
352
|
+
chainId: number;
|
353
|
+
type: "priority" | "eip712";
|
354
|
+
l1BatchNumber: bigint | null;
|
355
|
+
l1BatchTxIndex: bigint | null;
|
356
|
+
} | {
|
357
|
+
blockHash: `0x${string}` | null;
|
358
|
+
blockNumber: bigint | null;
|
359
|
+
from: `0x${string}`;
|
360
|
+
gas: bigint;
|
361
|
+
hash: `0x${string}`;
|
362
|
+
input: `0x${string}`;
|
363
|
+
nonce: number;
|
364
|
+
r: `0x${string}`;
|
365
|
+
s: `0x${string}`;
|
366
|
+
to: `0x${string}` | null;
|
367
|
+
transactionIndex: number | null;
|
368
|
+
typeHex: `0x${string}` | null;
|
369
|
+
v: bigint;
|
370
|
+
value: bigint;
|
371
|
+
yParity: number;
|
372
|
+
gasPrice?: undefined;
|
373
|
+
maxFeePerBlobGas: bigint;
|
374
|
+
maxFeePerGas: bigint;
|
375
|
+
maxPriorityFeePerGas: bigint;
|
376
|
+
accessList: import("../../index.js").AccessList;
|
377
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
378
|
+
chainId: number;
|
379
|
+
type: "eip4844";
|
380
|
+
l1BatchNumber: bigint | null;
|
381
|
+
l1BatchTxIndex: bigint | null;
|
382
|
+
} | {
|
383
|
+
blockHash: `0x${string}` | null;
|
384
|
+
blockNumber: bigint | null;
|
385
|
+
from: `0x${string}`;
|
386
|
+
gas: bigint;
|
387
|
+
hash: `0x${string}`;
|
388
|
+
input: `0x${string}`;
|
389
|
+
nonce: number;
|
390
|
+
r: `0x${string}`;
|
391
|
+
s: `0x${string}`;
|
392
|
+
to: `0x${string}` | null;
|
393
|
+
transactionIndex: number | null;
|
394
|
+
typeHex: `0x${string}` | null;
|
395
|
+
v: bigint;
|
396
|
+
value: bigint;
|
397
|
+
yParity: number;
|
398
|
+
gasPrice?: undefined;
|
399
|
+
maxFeePerBlobGas: undefined;
|
400
|
+
maxFeePerGas: bigint;
|
401
|
+
maxPriorityFeePerGas: bigint;
|
402
|
+
accessList: import("../../index.js").AccessList;
|
403
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
404
|
+
chainId: number;
|
405
|
+
type: "priority";
|
406
|
+
l1BatchNumber: bigint | null;
|
407
|
+
l1BatchTxIndex: bigint | null;
|
408
|
+
} | {
|
409
|
+
blockHash: `0x${string}` | null;
|
410
|
+
blockNumber: bigint | null;
|
411
|
+
from: `0x${string}`;
|
412
|
+
gas: bigint;
|
413
|
+
hash: `0x${string}`;
|
414
|
+
input: `0x${string}`;
|
415
|
+
nonce: number;
|
416
|
+
r: `0x${string}`;
|
417
|
+
s: `0x${string}`;
|
418
|
+
to: `0x${string}` | null;
|
419
|
+
transactionIndex: number | null;
|
420
|
+
typeHex: `0x${string}` | null;
|
421
|
+
v: bigint;
|
422
|
+
value: bigint;
|
423
|
+
yParity: number;
|
424
|
+
gasPrice?: undefined;
|
425
|
+
maxFeePerBlobGas: undefined;
|
426
|
+
maxFeePerGas: bigint;
|
427
|
+
maxPriorityFeePerGas: bigint;
|
428
|
+
accessList: import("../../index.js").AccessList;
|
429
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
430
|
+
chainId: number;
|
431
|
+
type: "priority" | "eip712";
|
432
|
+
l1BatchNumber: bigint | null;
|
433
|
+
l1BatchTxIndex: bigint | null;
|
434
|
+
}) & {};
|
435
|
+
type: "transaction";
|
436
|
+
};
|
437
|
+
readonly transactionReceipt: {
|
438
|
+
exclude: [] | undefined;
|
439
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").ZkSyncRpcTransactionReceiptOverrides>) => {
|
440
|
+
blobGasPrice?: bigint | undefined;
|
441
|
+
blobGasUsed?: bigint | undefined;
|
442
|
+
blockHash: `0x${string}`;
|
443
|
+
blockNumber: bigint;
|
444
|
+
contractAddress: `0x${string}` | null | undefined;
|
445
|
+
cumulativeGasUsed: bigint;
|
446
|
+
effectiveGasPrice: bigint;
|
447
|
+
from: `0x${string}`;
|
448
|
+
gasUsed: bigint;
|
449
|
+
logs: import("../index.js").ZkSyncLog[];
|
450
|
+
logsBloom: `0x${string}`;
|
451
|
+
root?: `0x${string}` | undefined;
|
452
|
+
status: "success" | "reverted";
|
453
|
+
to: `0x${string}` | null;
|
454
|
+
transactionHash: `0x${string}`;
|
455
|
+
transactionIndex: number;
|
456
|
+
type: import("../index.js").ZkSyncTransactionType;
|
457
|
+
l1BatchNumber: bigint | null;
|
458
|
+
l1BatchTxIndex: bigint | null;
|
459
|
+
l2ToL1Logs: import("../index.js").ZkSyncL2ToL1Log[];
|
460
|
+
} & {};
|
461
|
+
type: "transactionReceipt";
|
462
|
+
};
|
463
|
+
readonly transactionRequest: {
|
464
|
+
exclude: ("gasPerPubdata" | "paymaster" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
|
465
|
+
format: (args: ({
|
466
|
+
data?: `0x${string}` | undefined;
|
467
|
+
from?: `0x${string}`;
|
468
|
+
gas?: bigint | undefined;
|
469
|
+
nonce?: number | undefined;
|
470
|
+
to?: `0x${string}` | null | undefined;
|
471
|
+
value?: bigint | undefined;
|
472
|
+
gasPrice?: bigint | undefined;
|
473
|
+
maxFeePerBlobGas?: bigint | undefined;
|
474
|
+
maxFeePerGas?: bigint | undefined;
|
475
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
476
|
+
accessList?: undefined;
|
477
|
+
blobs?: undefined;
|
478
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
479
|
+
blobVersionedHashes?: undefined;
|
480
|
+
kzg?: undefined;
|
481
|
+
sidecars?: undefined;
|
482
|
+
} & {
|
483
|
+
data?: `0x${string}` | undefined;
|
484
|
+
from: `0x${string}`;
|
485
|
+
gas?: bigint | undefined;
|
486
|
+
nonce?: number | undefined;
|
487
|
+
to?: `0x${string}` | null | undefined;
|
488
|
+
value?: bigint | undefined;
|
489
|
+
gasPrice?: bigint | undefined;
|
490
|
+
maxFeePerBlobGas?: undefined;
|
491
|
+
maxFeePerGas?: undefined;
|
492
|
+
maxPriorityFeePerGas?: undefined;
|
493
|
+
accessList?: undefined;
|
494
|
+
blobs?: undefined;
|
495
|
+
type?: "legacy" | undefined;
|
496
|
+
blobVersionedHashes?: undefined;
|
497
|
+
kzg?: undefined;
|
498
|
+
sidecars?: undefined;
|
499
|
+
} & {
|
500
|
+
gasPerPubdata?: undefined;
|
501
|
+
customSignature?: undefined;
|
502
|
+
paymaster?: undefined;
|
503
|
+
paymasterInput?: undefined;
|
504
|
+
factoryDeps?: undefined;
|
505
|
+
}) | ({
|
506
|
+
data?: `0x${string}` | undefined;
|
507
|
+
from?: `0x${string}`;
|
508
|
+
gas?: bigint | undefined;
|
509
|
+
nonce?: number | undefined;
|
510
|
+
to?: `0x${string}` | null | undefined;
|
511
|
+
value?: bigint | undefined;
|
512
|
+
gasPrice?: bigint | undefined;
|
513
|
+
maxFeePerBlobGas?: bigint | undefined;
|
514
|
+
maxFeePerGas?: bigint | undefined;
|
515
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
516
|
+
accessList?: undefined;
|
517
|
+
blobs?: undefined;
|
518
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
519
|
+
blobVersionedHashes?: undefined;
|
520
|
+
kzg?: undefined;
|
521
|
+
sidecars?: undefined;
|
522
|
+
} & {
|
523
|
+
data?: `0x${string}` | undefined;
|
524
|
+
from: `0x${string}`;
|
525
|
+
gas?: bigint | undefined;
|
526
|
+
nonce?: number | undefined;
|
527
|
+
to?: `0x${string}` | null | undefined;
|
528
|
+
value?: bigint | undefined;
|
529
|
+
gasPrice?: bigint | undefined;
|
530
|
+
maxFeePerBlobGas?: undefined;
|
531
|
+
maxFeePerGas?: undefined;
|
532
|
+
maxPriorityFeePerGas?: undefined;
|
533
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
534
|
+
blobs?: undefined;
|
535
|
+
type?: "eip2930" | undefined;
|
536
|
+
blobVersionedHashes?: undefined;
|
537
|
+
kzg?: undefined;
|
538
|
+
sidecars?: undefined;
|
539
|
+
} & {
|
540
|
+
gasPerPubdata?: undefined;
|
541
|
+
customSignature?: undefined;
|
542
|
+
paymaster?: undefined;
|
543
|
+
paymasterInput?: undefined;
|
544
|
+
factoryDeps?: undefined;
|
545
|
+
}) | ({
|
546
|
+
data?: `0x${string}` | undefined;
|
547
|
+
from?: `0x${string}`;
|
548
|
+
gas?: bigint | undefined;
|
549
|
+
nonce?: number | undefined;
|
550
|
+
to?: `0x${string}` | null | undefined;
|
551
|
+
value?: bigint | undefined;
|
552
|
+
gasPrice?: bigint | undefined;
|
553
|
+
maxFeePerBlobGas?: bigint | undefined;
|
554
|
+
maxFeePerGas?: bigint | undefined;
|
555
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
556
|
+
accessList?: undefined;
|
557
|
+
blobs?: undefined;
|
558
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
559
|
+
blobVersionedHashes?: undefined;
|
560
|
+
kzg?: undefined;
|
561
|
+
sidecars?: undefined;
|
562
|
+
} & {
|
563
|
+
data?: `0x${string}` | undefined;
|
564
|
+
from: `0x${string}`;
|
565
|
+
gas?: bigint | undefined;
|
566
|
+
nonce?: number | undefined;
|
567
|
+
to?: `0x${string}` | null | undefined;
|
568
|
+
value?: bigint | undefined;
|
569
|
+
gasPrice?: undefined;
|
570
|
+
maxFeePerBlobGas?: undefined;
|
571
|
+
maxFeePerGas?: bigint | undefined;
|
572
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
573
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
574
|
+
blobs?: undefined;
|
575
|
+
type?: "eip1559" | undefined;
|
576
|
+
blobVersionedHashes?: undefined;
|
577
|
+
kzg?: undefined;
|
578
|
+
sidecars?: undefined;
|
579
|
+
} & {
|
580
|
+
gasPerPubdata?: undefined;
|
581
|
+
customSignature?: undefined;
|
582
|
+
paymaster?: undefined;
|
583
|
+
paymasterInput?: undefined;
|
584
|
+
factoryDeps?: undefined;
|
585
|
+
}) | ({
|
586
|
+
data?: `0x${string}` | undefined;
|
587
|
+
from?: `0x${string}`;
|
588
|
+
gas?: bigint | undefined;
|
589
|
+
nonce?: number | undefined;
|
590
|
+
to?: `0x${string}` | null | undefined;
|
591
|
+
value?: bigint | undefined;
|
592
|
+
gasPrice?: bigint | undefined;
|
593
|
+
maxFeePerBlobGas?: bigint | undefined;
|
594
|
+
maxFeePerGas?: bigint | undefined;
|
595
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
596
|
+
accessList?: undefined;
|
597
|
+
blobs?: undefined;
|
598
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
599
|
+
blobVersionedHashes?: undefined;
|
600
|
+
kzg?: undefined;
|
601
|
+
sidecars?: undefined;
|
602
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
603
|
+
gasPerPubdata?: bigint | undefined;
|
604
|
+
customSignature?: `0x${string}` | undefined;
|
605
|
+
factoryDeps?: `0x${string}`[] | undefined;
|
606
|
+
type?: "priority" | "eip712" | undefined;
|
607
|
+
} & {
|
608
|
+
paymaster: `0x${string}`;
|
609
|
+
paymasterInput: `0x${string}`;
|
610
|
+
}) | ({
|
611
|
+
data?: `0x${string}` | undefined;
|
612
|
+
from?: `0x${string}`;
|
613
|
+
gas?: bigint | undefined;
|
614
|
+
nonce?: number | undefined;
|
615
|
+
to?: `0x${string}` | null | undefined;
|
616
|
+
value?: bigint | undefined;
|
617
|
+
gasPrice?: bigint | undefined;
|
618
|
+
maxFeePerBlobGas?: bigint | undefined;
|
619
|
+
maxFeePerGas?: bigint | undefined;
|
620
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
621
|
+
accessList?: undefined;
|
622
|
+
blobs?: undefined;
|
623
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
624
|
+
blobVersionedHashes?: undefined;
|
625
|
+
kzg?: undefined;
|
626
|
+
sidecars?: undefined;
|
627
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
628
|
+
gasPerPubdata?: bigint | undefined;
|
629
|
+
customSignature?: `0x${string}` | undefined;
|
630
|
+
factoryDeps?: `0x${string}`[] | undefined;
|
631
|
+
type?: "priority" | "eip712" | undefined;
|
632
|
+
} & {
|
633
|
+
paymaster?: undefined;
|
634
|
+
paymasterInput?: undefined;
|
635
|
+
}) | ({
|
636
|
+
data?: `0x${string}` | undefined;
|
637
|
+
from?: `0x${string}`;
|
638
|
+
gas?: bigint | undefined;
|
639
|
+
nonce?: number | undefined;
|
640
|
+
to?: `0x${string}` | null | undefined;
|
641
|
+
value?: bigint | undefined;
|
642
|
+
gasPrice?: bigint | undefined;
|
643
|
+
maxFeePerBlobGas?: bigint | undefined;
|
644
|
+
maxFeePerGas?: bigint | undefined;
|
645
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
646
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
647
|
+
blobs?: undefined;
|
648
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
649
|
+
blobVersionedHashes?: undefined;
|
650
|
+
kzg?: undefined;
|
651
|
+
sidecars?: undefined;
|
652
|
+
} & {
|
653
|
+
data?: `0x${string}` | undefined;
|
654
|
+
from: `0x${string}`;
|
655
|
+
gas?: bigint | undefined;
|
656
|
+
nonce?: number | undefined;
|
657
|
+
to?: `0x${string}` | null | undefined;
|
658
|
+
value?: bigint | undefined;
|
659
|
+
gasPrice?: bigint | undefined;
|
660
|
+
maxFeePerBlobGas?: undefined;
|
661
|
+
maxFeePerGas?: undefined;
|
662
|
+
maxPriorityFeePerGas?: undefined;
|
663
|
+
accessList?: undefined;
|
664
|
+
blobs?: undefined;
|
665
|
+
type?: "legacy" | undefined;
|
666
|
+
blobVersionedHashes?: undefined;
|
667
|
+
kzg?: undefined;
|
668
|
+
sidecars?: undefined;
|
669
|
+
} & {
|
670
|
+
gasPerPubdata?: undefined;
|
671
|
+
customSignature?: undefined;
|
672
|
+
paymaster?: undefined;
|
673
|
+
paymasterInput?: undefined;
|
674
|
+
factoryDeps?: undefined;
|
675
|
+
}) | ({
|
676
|
+
data?: `0x${string}` | undefined;
|
677
|
+
from?: `0x${string}`;
|
678
|
+
gas?: bigint | undefined;
|
679
|
+
nonce?: number | undefined;
|
680
|
+
to?: `0x${string}` | null | undefined;
|
681
|
+
value?: bigint | undefined;
|
682
|
+
gasPrice?: bigint | undefined;
|
683
|
+
maxFeePerBlobGas?: bigint | undefined;
|
684
|
+
maxFeePerGas?: bigint | undefined;
|
685
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
686
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
687
|
+
blobs?: undefined;
|
688
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
689
|
+
blobVersionedHashes?: undefined;
|
690
|
+
kzg?: undefined;
|
691
|
+
sidecars?: undefined;
|
692
|
+
} & {
|
693
|
+
data?: `0x${string}` | undefined;
|
694
|
+
from: `0x${string}`;
|
695
|
+
gas?: bigint | undefined;
|
696
|
+
nonce?: number | undefined;
|
697
|
+
to?: `0x${string}` | null | undefined;
|
698
|
+
value?: bigint | undefined;
|
699
|
+
gasPrice?: bigint | undefined;
|
700
|
+
maxFeePerBlobGas?: undefined;
|
701
|
+
maxFeePerGas?: undefined;
|
702
|
+
maxPriorityFeePerGas?: undefined;
|
703
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
704
|
+
blobs?: undefined;
|
705
|
+
type?: "eip2930" | undefined;
|
706
|
+
blobVersionedHashes?: undefined;
|
707
|
+
kzg?: undefined;
|
708
|
+
sidecars?: undefined;
|
709
|
+
} & {
|
710
|
+
gasPerPubdata?: undefined;
|
711
|
+
customSignature?: undefined;
|
712
|
+
paymaster?: undefined;
|
713
|
+
paymasterInput?: undefined;
|
714
|
+
factoryDeps?: undefined;
|
715
|
+
}) | ({
|
716
|
+
data?: `0x${string}` | undefined;
|
717
|
+
from?: `0x${string}`;
|
718
|
+
gas?: bigint | undefined;
|
719
|
+
nonce?: number | undefined;
|
720
|
+
to?: `0x${string}` | null | undefined;
|
721
|
+
value?: bigint | undefined;
|
722
|
+
gasPrice?: bigint | undefined;
|
723
|
+
maxFeePerBlobGas?: bigint | undefined;
|
724
|
+
maxFeePerGas?: bigint | undefined;
|
725
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
726
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
727
|
+
blobs?: undefined;
|
728
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
729
|
+
blobVersionedHashes?: undefined;
|
730
|
+
kzg?: undefined;
|
731
|
+
sidecars?: undefined;
|
732
|
+
} & {
|
733
|
+
data?: `0x${string}` | undefined;
|
734
|
+
from: `0x${string}`;
|
735
|
+
gas?: bigint | undefined;
|
736
|
+
nonce?: number | undefined;
|
737
|
+
to?: `0x${string}` | null | undefined;
|
738
|
+
value?: bigint | undefined;
|
739
|
+
gasPrice?: undefined;
|
740
|
+
maxFeePerBlobGas?: undefined;
|
741
|
+
maxFeePerGas?: bigint | undefined;
|
742
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
743
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
744
|
+
blobs?: undefined;
|
745
|
+
type?: "eip1559" | undefined;
|
746
|
+
blobVersionedHashes?: undefined;
|
747
|
+
kzg?: undefined;
|
748
|
+
sidecars?: undefined;
|
749
|
+
} & {
|
750
|
+
gasPerPubdata?: undefined;
|
751
|
+
customSignature?: undefined;
|
752
|
+
paymaster?: undefined;
|
753
|
+
paymasterInput?: undefined;
|
754
|
+
factoryDeps?: undefined;
|
755
|
+
}) | ({
|
756
|
+
data?: `0x${string}` | undefined;
|
757
|
+
from?: `0x${string}`;
|
758
|
+
gas?: bigint | undefined;
|
759
|
+
nonce?: number | undefined;
|
760
|
+
to?: `0x${string}` | null | undefined;
|
761
|
+
value?: bigint | undefined;
|
762
|
+
gasPrice?: bigint | undefined;
|
763
|
+
maxFeePerBlobGas?: bigint | undefined;
|
764
|
+
maxFeePerGas?: bigint | undefined;
|
765
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
766
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
767
|
+
blobs?: undefined;
|
768
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
769
|
+
blobVersionedHashes?: undefined;
|
770
|
+
kzg?: undefined;
|
771
|
+
sidecars?: undefined;
|
772
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
773
|
+
gasPerPubdata?: bigint | undefined;
|
774
|
+
customSignature?: `0x${string}` | undefined;
|
775
|
+
factoryDeps?: `0x${string}`[] | undefined;
|
776
|
+
type?: "priority" | "eip712" | undefined;
|
777
|
+
} & {
|
778
|
+
paymaster: `0x${string}`;
|
779
|
+
paymasterInput: `0x${string}`;
|
780
|
+
}) | ({
|
781
|
+
data?: `0x${string}` | undefined;
|
782
|
+
from?: `0x${string}`;
|
783
|
+
gas?: bigint | undefined;
|
784
|
+
nonce?: number | undefined;
|
785
|
+
to?: `0x${string}` | null | undefined;
|
786
|
+
value?: bigint | undefined;
|
787
|
+
gasPrice?: bigint | undefined;
|
788
|
+
maxFeePerBlobGas?: bigint | undefined;
|
789
|
+
maxFeePerGas?: bigint | undefined;
|
790
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
791
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
792
|
+
blobs?: undefined;
|
793
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
794
|
+
blobVersionedHashes?: undefined;
|
795
|
+
kzg?: undefined;
|
796
|
+
sidecars?: undefined;
|
797
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
798
|
+
gasPerPubdata?: bigint | undefined;
|
799
|
+
customSignature?: `0x${string}` | undefined;
|
800
|
+
factoryDeps?: `0x${string}`[] | undefined;
|
801
|
+
type?: "priority" | "eip712" | undefined;
|
802
|
+
} & {
|
803
|
+
paymaster?: undefined;
|
804
|
+
paymasterInput?: undefined;
|
805
|
+
}) | ({
|
806
|
+
data?: `0x${string}` | undefined;
|
807
|
+
from?: `0x${string}`;
|
808
|
+
gas?: bigint | undefined;
|
809
|
+
nonce?: number | undefined;
|
810
|
+
to?: `0x${string}` | null | undefined;
|
811
|
+
value?: bigint | undefined;
|
812
|
+
gasPrice?: bigint | undefined;
|
813
|
+
maxFeePerBlobGas?: bigint | undefined;
|
814
|
+
maxFeePerGas?: bigint | undefined;
|
815
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
816
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
817
|
+
blobs?: undefined;
|
818
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
819
|
+
blobVersionedHashes?: undefined;
|
820
|
+
kzg?: undefined;
|
821
|
+
sidecars?: undefined;
|
822
|
+
} & {
|
823
|
+
data?: `0x${string}` | undefined;
|
824
|
+
from: `0x${string}`;
|
825
|
+
gas?: bigint | undefined;
|
826
|
+
nonce?: number | undefined;
|
827
|
+
to?: `0x${string}` | null | undefined;
|
828
|
+
value?: bigint | undefined;
|
829
|
+
gasPrice?: bigint | undefined;
|
830
|
+
maxFeePerBlobGas?: undefined;
|
831
|
+
maxFeePerGas?: undefined;
|
832
|
+
maxPriorityFeePerGas?: undefined;
|
833
|
+
accessList?: undefined;
|
834
|
+
blobs?: undefined;
|
835
|
+
type?: "legacy" | undefined;
|
836
|
+
blobVersionedHashes?: undefined;
|
837
|
+
kzg?: undefined;
|
838
|
+
sidecars?: undefined;
|
839
|
+
} & {
|
840
|
+
gasPerPubdata?: undefined;
|
841
|
+
customSignature?: undefined;
|
842
|
+
paymaster?: undefined;
|
843
|
+
paymasterInput?: undefined;
|
844
|
+
factoryDeps?: undefined;
|
845
|
+
}) | ({
|
846
|
+
data?: `0x${string}` | undefined;
|
847
|
+
from?: `0x${string}`;
|
848
|
+
gas?: bigint | undefined;
|
849
|
+
nonce?: number | undefined;
|
850
|
+
to?: `0x${string}` | null | undefined;
|
851
|
+
value?: bigint | undefined;
|
852
|
+
gasPrice?: bigint | undefined;
|
853
|
+
maxFeePerBlobGas?: bigint | undefined;
|
854
|
+
maxFeePerGas?: bigint | undefined;
|
855
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
856
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
857
|
+
blobs?: undefined;
|
858
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
859
|
+
blobVersionedHashes?: undefined;
|
860
|
+
kzg?: undefined;
|
861
|
+
sidecars?: undefined;
|
862
|
+
} & {
|
863
|
+
data?: `0x${string}` | undefined;
|
864
|
+
from: `0x${string}`;
|
865
|
+
gas?: bigint | undefined;
|
866
|
+
nonce?: number | undefined;
|
867
|
+
to?: `0x${string}` | null | undefined;
|
868
|
+
value?: bigint | undefined;
|
869
|
+
gasPrice?: bigint | undefined;
|
870
|
+
maxFeePerBlobGas?: undefined;
|
871
|
+
maxFeePerGas?: undefined;
|
872
|
+
maxPriorityFeePerGas?: undefined;
|
873
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
874
|
+
blobs?: undefined;
|
875
|
+
type?: "eip2930" | undefined;
|
876
|
+
blobVersionedHashes?: undefined;
|
877
|
+
kzg?: undefined;
|
878
|
+
sidecars?: undefined;
|
879
|
+
} & {
|
880
|
+
gasPerPubdata?: undefined;
|
881
|
+
customSignature?: undefined;
|
882
|
+
paymaster?: undefined;
|
883
|
+
paymasterInput?: undefined;
|
884
|
+
factoryDeps?: undefined;
|
885
|
+
}) | ({
|
886
|
+
data?: `0x${string}` | undefined;
|
887
|
+
from?: `0x${string}`;
|
888
|
+
gas?: bigint | undefined;
|
889
|
+
nonce?: number | undefined;
|
890
|
+
to?: `0x${string}` | null | undefined;
|
891
|
+
value?: bigint | undefined;
|
892
|
+
gasPrice?: bigint | undefined;
|
893
|
+
maxFeePerBlobGas?: bigint | undefined;
|
894
|
+
maxFeePerGas?: bigint | undefined;
|
895
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
896
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
897
|
+
blobs?: undefined;
|
898
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
899
|
+
blobVersionedHashes?: undefined;
|
900
|
+
kzg?: undefined;
|
901
|
+
sidecars?: undefined;
|
902
|
+
} & {
|
903
|
+
data?: `0x${string}` | undefined;
|
904
|
+
from: `0x${string}`;
|
905
|
+
gas?: bigint | undefined;
|
906
|
+
nonce?: number | undefined;
|
907
|
+
to?: `0x${string}` | null | undefined;
|
908
|
+
value?: bigint | undefined;
|
909
|
+
gasPrice?: undefined;
|
910
|
+
maxFeePerBlobGas?: undefined;
|
911
|
+
maxFeePerGas?: bigint | undefined;
|
912
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
913
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
914
|
+
blobs?: undefined;
|
915
|
+
type?: "eip1559" | undefined;
|
916
|
+
blobVersionedHashes?: undefined;
|
917
|
+
kzg?: undefined;
|
918
|
+
sidecars?: undefined;
|
919
|
+
} & {
|
920
|
+
gasPerPubdata?: undefined;
|
921
|
+
customSignature?: undefined;
|
922
|
+
paymaster?: undefined;
|
923
|
+
paymasterInput?: undefined;
|
924
|
+
factoryDeps?: undefined;
|
925
|
+
}) | ({
|
926
|
+
data?: `0x${string}` | undefined;
|
927
|
+
from?: `0x${string}`;
|
928
|
+
gas?: bigint | undefined;
|
929
|
+
nonce?: number | undefined;
|
930
|
+
to?: `0x${string}` | null | undefined;
|
931
|
+
value?: bigint | undefined;
|
932
|
+
gasPrice?: bigint | undefined;
|
933
|
+
maxFeePerBlobGas?: bigint | undefined;
|
934
|
+
maxFeePerGas?: bigint | undefined;
|
935
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
936
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
937
|
+
blobs?: undefined;
|
938
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
939
|
+
blobVersionedHashes?: undefined;
|
940
|
+
kzg?: undefined;
|
941
|
+
sidecars?: undefined;
|
942
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
943
|
+
gasPerPubdata?: bigint | undefined;
|
944
|
+
customSignature?: `0x${string}` | undefined;
|
945
|
+
factoryDeps?: `0x${string}`[] | undefined;
|
946
|
+
type?: "priority" | "eip712" | undefined;
|
947
|
+
} & {
|
948
|
+
paymaster: `0x${string}`;
|
949
|
+
paymasterInput: `0x${string}`;
|
950
|
+
}) | ({
|
951
|
+
data?: `0x${string}` | undefined;
|
952
|
+
from?: `0x${string}`;
|
953
|
+
gas?: bigint | undefined;
|
954
|
+
nonce?: number | undefined;
|
955
|
+
to?: `0x${string}` | null | undefined;
|
956
|
+
value?: bigint | undefined;
|
957
|
+
gasPrice?: bigint | undefined;
|
958
|
+
maxFeePerBlobGas?: bigint | undefined;
|
959
|
+
maxFeePerGas?: bigint | undefined;
|
960
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
961
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
962
|
+
blobs?: undefined;
|
963
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
964
|
+
blobVersionedHashes?: undefined;
|
965
|
+
kzg?: undefined;
|
966
|
+
sidecars?: undefined;
|
967
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
968
|
+
gasPerPubdata?: bigint | undefined;
|
969
|
+
customSignature?: `0x${string}` | undefined;
|
970
|
+
factoryDeps?: `0x${string}`[] | undefined;
|
971
|
+
type?: "priority" | "eip712" | undefined;
|
972
|
+
} & {
|
973
|
+
paymaster?: undefined;
|
974
|
+
paymasterInput?: undefined;
|
975
|
+
}) | ({
|
976
|
+
data?: `0x${string}` | undefined;
|
977
|
+
from?: `0x${string}`;
|
978
|
+
gas?: bigint | undefined;
|
979
|
+
nonce?: number | undefined;
|
980
|
+
value?: bigint | undefined;
|
981
|
+
to?: `0x${string}` | null | undefined;
|
982
|
+
gasPrice?: bigint | undefined;
|
983
|
+
maxFeePerGas?: bigint | undefined;
|
984
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
985
|
+
maxFeePerBlobGas?: bigint | undefined;
|
986
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
987
|
+
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
988
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
989
|
+
kzg?: import("../../index.js").Kzg | undefined;
|
990
|
+
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
991
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
992
|
+
} & {
|
993
|
+
data?: `0x${string}` | undefined;
|
994
|
+
from: `0x${string}`;
|
995
|
+
gas?: bigint | undefined;
|
996
|
+
nonce?: number | undefined;
|
997
|
+
to?: `0x${string}` | null | undefined;
|
998
|
+
value?: bigint | undefined;
|
999
|
+
gasPrice?: bigint | undefined;
|
1000
|
+
maxFeePerBlobGas?: undefined;
|
1001
|
+
maxFeePerGas?: undefined;
|
1002
|
+
maxPriorityFeePerGas?: undefined;
|
1003
|
+
accessList?: undefined;
|
1004
|
+
blobs?: undefined;
|
1005
|
+
type?: "legacy" | undefined;
|
1006
|
+
blobVersionedHashes?: undefined;
|
1007
|
+
kzg?: undefined;
|
1008
|
+
sidecars?: undefined;
|
1009
|
+
} & {
|
1010
|
+
gasPerPubdata?: undefined;
|
1011
|
+
customSignature?: undefined;
|
1012
|
+
paymaster?: undefined;
|
1013
|
+
paymasterInput?: undefined;
|
1014
|
+
factoryDeps?: undefined;
|
1015
|
+
}) | ({
|
1016
|
+
data?: `0x${string}` | undefined;
|
1017
|
+
from?: `0x${string}`;
|
1018
|
+
gas?: bigint | undefined;
|
1019
|
+
nonce?: number | undefined;
|
1020
|
+
value?: bigint | undefined;
|
1021
|
+
to?: `0x${string}` | null | undefined;
|
1022
|
+
gasPrice?: bigint | undefined;
|
1023
|
+
maxFeePerGas?: bigint | undefined;
|
1024
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
1025
|
+
maxFeePerBlobGas?: bigint | undefined;
|
1026
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1027
|
+
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
1028
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
1029
|
+
kzg?: import("../../index.js").Kzg | undefined;
|
1030
|
+
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1031
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1032
|
+
} & {
|
1033
|
+
data?: `0x${string}` | undefined;
|
1034
|
+
from: `0x${string}`;
|
1035
|
+
gas?: bigint | undefined;
|
1036
|
+
nonce?: number | undefined;
|
1037
|
+
to?: `0x${string}` | null | undefined;
|
1038
|
+
value?: bigint | undefined;
|
1039
|
+
gasPrice?: bigint | undefined;
|
1040
|
+
maxFeePerBlobGas?: undefined;
|
1041
|
+
maxFeePerGas?: undefined;
|
1042
|
+
maxPriorityFeePerGas?: undefined;
|
1043
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1044
|
+
blobs?: undefined;
|
1045
|
+
type?: "eip2930" | undefined;
|
1046
|
+
blobVersionedHashes?: undefined;
|
1047
|
+
kzg?: undefined;
|
1048
|
+
sidecars?: undefined;
|
1049
|
+
} & {
|
1050
|
+
gasPerPubdata?: undefined;
|
1051
|
+
customSignature?: undefined;
|
1052
|
+
paymaster?: undefined;
|
1053
|
+
paymasterInput?: undefined;
|
1054
|
+
factoryDeps?: undefined;
|
1055
|
+
}) | ({
|
1056
|
+
data?: `0x${string}` | undefined;
|
1057
|
+
from?: `0x${string}`;
|
1058
|
+
gas?: bigint | undefined;
|
1059
|
+
nonce?: number | undefined;
|
1060
|
+
value?: bigint | undefined;
|
1061
|
+
to?: `0x${string}` | null | undefined;
|
1062
|
+
gasPrice?: bigint | undefined;
|
1063
|
+
maxFeePerGas?: bigint | undefined;
|
1064
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
1065
|
+
maxFeePerBlobGas?: bigint | undefined;
|
1066
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1067
|
+
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
1068
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
1069
|
+
kzg?: import("../../index.js").Kzg | undefined;
|
1070
|
+
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1071
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1072
|
+
} & {
|
1073
|
+
data?: `0x${string}` | undefined;
|
1074
|
+
from: `0x${string}`;
|
1075
|
+
gas?: bigint | undefined;
|
1076
|
+
nonce?: number | undefined;
|
1077
|
+
to?: `0x${string}` | null | undefined;
|
1078
|
+
value?: bigint | undefined;
|
1079
|
+
gasPrice?: undefined;
|
1080
|
+
maxFeePerBlobGas?: undefined;
|
1081
|
+
maxFeePerGas?: bigint | undefined;
|
1082
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
1083
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1084
|
+
blobs?: undefined;
|
1085
|
+
type?: "eip1559" | undefined;
|
1086
|
+
blobVersionedHashes?: undefined;
|
1087
|
+
kzg?: undefined;
|
1088
|
+
sidecars?: undefined;
|
1089
|
+
} & {
|
1090
|
+
gasPerPubdata?: undefined;
|
1091
|
+
customSignature?: undefined;
|
1092
|
+
paymaster?: undefined;
|
1093
|
+
paymasterInput?: undefined;
|
1094
|
+
factoryDeps?: undefined;
|
1095
|
+
}) | ({
|
1096
|
+
data?: `0x${string}` | undefined;
|
1097
|
+
from?: `0x${string}`;
|
1098
|
+
gas?: bigint | undefined;
|
1099
|
+
nonce?: number | undefined;
|
1100
|
+
value?: bigint | undefined;
|
1101
|
+
to?: `0x${string}` | null | undefined;
|
1102
|
+
gasPrice?: bigint | undefined;
|
1103
|
+
maxFeePerGas?: bigint | undefined;
|
1104
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
1105
|
+
maxFeePerBlobGas?: bigint | undefined;
|
1106
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1107
|
+
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
1108
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
1109
|
+
kzg?: import("../../index.js").Kzg | undefined;
|
1110
|
+
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1111
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1112
|
+
} & {
|
1113
|
+
data?: `0x${string}` | undefined;
|
1114
|
+
from: `0x${string}`;
|
1115
|
+
gas?: bigint | undefined;
|
1116
|
+
nonce?: number | undefined;
|
1117
|
+
value?: bigint | undefined;
|
1118
|
+
to: `0x${string}` | null;
|
1119
|
+
gasPrice?: undefined;
|
1120
|
+
maxFeePerGas?: bigint | undefined;
|
1121
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
1122
|
+
maxFeePerBlobGas: bigint;
|
1123
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1124
|
+
blobs: readonly `0x${string}`[] | readonly Uint8Array[];
|
1125
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
1126
|
+
kzg?: import("../../index.js").Kzg | undefined;
|
1127
|
+
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1128
|
+
type?: "eip4844" | undefined;
|
1129
|
+
} & {
|
1130
|
+
gasPerPubdata?: undefined;
|
1131
|
+
customSignature?: undefined;
|
1132
|
+
paymaster?: undefined;
|
1133
|
+
paymasterInput?: undefined;
|
1134
|
+
factoryDeps?: undefined;
|
1135
|
+
}) | ({
|
1136
|
+
data?: `0x${string}` | undefined;
|
1137
|
+
from?: `0x${string}`;
|
1138
|
+
gas?: bigint | undefined;
|
1139
|
+
nonce?: number | undefined;
|
1140
|
+
value?: bigint | undefined;
|
1141
|
+
to?: `0x${string}` | null | undefined;
|
1142
|
+
gasPrice?: bigint | undefined;
|
1143
|
+
maxFeePerGas?: bigint | undefined;
|
1144
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
1145
|
+
maxFeePerBlobGas?: bigint | undefined;
|
1146
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1147
|
+
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
1148
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
1149
|
+
kzg?: import("../../index.js").Kzg | undefined;
|
1150
|
+
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1151
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1152
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1153
|
+
gasPerPubdata?: bigint | undefined;
|
1154
|
+
customSignature?: `0x${string}` | undefined;
|
1155
|
+
factoryDeps?: `0x${string}`[] | undefined;
|
1156
|
+
type?: "priority" | "eip712" | undefined;
|
1157
|
+
} & {
|
1158
|
+
paymaster: `0x${string}`;
|
1159
|
+
paymasterInput: `0x${string}`;
|
1160
|
+
}) | ({
|
1161
|
+
data?: `0x${string}` | undefined;
|
1162
|
+
from?: `0x${string}`;
|
1163
|
+
gas?: bigint | undefined;
|
1164
|
+
nonce?: number | undefined;
|
1165
|
+
value?: bigint | undefined;
|
1166
|
+
to?: `0x${string}` | null | undefined;
|
1167
|
+
gasPrice?: bigint | undefined;
|
1168
|
+
maxFeePerGas?: bigint | undefined;
|
1169
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
1170
|
+
maxFeePerBlobGas?: bigint | undefined;
|
1171
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1172
|
+
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
1173
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
1174
|
+
kzg?: import("../../index.js").Kzg | undefined;
|
1175
|
+
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1176
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1177
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1178
|
+
gasPerPubdata?: bigint | undefined;
|
1179
|
+
customSignature?: `0x${string}` | undefined;
|
1180
|
+
factoryDeps?: `0x${string}`[] | undefined;
|
1181
|
+
type?: "priority" | "eip712" | undefined;
|
1182
|
+
} & {
|
1183
|
+
paymaster?: undefined;
|
1184
|
+
paymasterInput?: undefined;
|
1185
|
+
})) => ({
|
1186
|
+
data?: `0x${string}` | undefined;
|
1187
|
+
from: `0x${string}`;
|
1188
|
+
gas?: `0x${string}` | undefined;
|
1189
|
+
nonce?: `0x${string}` | undefined;
|
1190
|
+
to?: `0x${string}` | null | undefined;
|
1191
|
+
value?: `0x${string}` | undefined;
|
1192
|
+
gasPrice?: `0x${string}` | undefined;
|
1193
|
+
maxFeePerBlobGas?: undefined;
|
1194
|
+
maxFeePerGas?: undefined;
|
1195
|
+
maxPriorityFeePerGas?: undefined;
|
1196
|
+
accessList?: undefined;
|
1197
|
+
blobs?: undefined;
|
1198
|
+
type?: "0x0" | undefined;
|
1199
|
+
blobVersionedHashes?: undefined;
|
1200
|
+
kzg?: undefined;
|
1201
|
+
sidecars?: undefined;
|
1202
|
+
eip712Meta?: undefined;
|
1203
|
+
} | {
|
1204
|
+
data?: `0x${string}` | undefined;
|
1205
|
+
from: `0x${string}`;
|
1206
|
+
gas?: `0x${string}` | undefined;
|
1207
|
+
nonce?: `0x${string}` | undefined;
|
1208
|
+
to?: `0x${string}` | null | undefined;
|
1209
|
+
value?: `0x${string}` | undefined;
|
1210
|
+
gasPrice?: `0x${string}` | undefined;
|
1211
|
+
maxFeePerBlobGas?: undefined;
|
1212
|
+
maxFeePerGas?: undefined;
|
1213
|
+
maxPriorityFeePerGas?: undefined;
|
1214
|
+
accessList?: undefined;
|
1215
|
+
blobs?: undefined;
|
1216
|
+
type?: "0x1" | undefined;
|
1217
|
+
blobVersionedHashes?: undefined;
|
1218
|
+
kzg?: undefined;
|
1219
|
+
sidecars?: undefined;
|
1220
|
+
eip712Meta?: undefined;
|
1221
|
+
} | {
|
1222
|
+
data?: `0x${string}` | undefined;
|
1223
|
+
from: `0x${string}`;
|
1224
|
+
gas?: `0x${string}` | undefined;
|
1225
|
+
nonce?: `0x${string}` | undefined;
|
1226
|
+
to?: `0x${string}` | null | undefined;
|
1227
|
+
value?: `0x${string}` | undefined;
|
1228
|
+
gasPrice?: undefined;
|
1229
|
+
maxFeePerBlobGas?: undefined;
|
1230
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
1231
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1232
|
+
accessList?: undefined;
|
1233
|
+
blobs?: undefined;
|
1234
|
+
type?: "0x2" | undefined;
|
1235
|
+
blobVersionedHashes?: undefined;
|
1236
|
+
kzg?: undefined;
|
1237
|
+
sidecars?: undefined;
|
1238
|
+
eip712Meta?: undefined;
|
1239
|
+
} | {
|
1240
|
+
data?: `0x${string}` | undefined;
|
1241
|
+
from: `0x${string}`;
|
1242
|
+
gas?: `0x${string}` | undefined;
|
1243
|
+
nonce?: `0x${string}` | undefined;
|
1244
|
+
to?: `0x${string}` | null | undefined;
|
1245
|
+
value?: `0x${string}` | undefined;
|
1246
|
+
gasPrice?: undefined;
|
1247
|
+
maxFeePerBlobGas?: undefined;
|
1248
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
1249
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1250
|
+
accessList?: undefined;
|
1251
|
+
blobs?: undefined;
|
1252
|
+
type: "0xff" | "0x71";
|
1253
|
+
blobVersionedHashes?: undefined;
|
1254
|
+
kzg?: undefined;
|
1255
|
+
sidecars?: undefined;
|
1256
|
+
eip712Meta: import("../index.js").ZkSyncEip712Meta;
|
1257
|
+
} | {
|
1258
|
+
data?: `0x${string}` | undefined;
|
1259
|
+
from: `0x${string}`;
|
1260
|
+
gas?: `0x${string}` | undefined;
|
1261
|
+
nonce?: `0x${string}` | undefined;
|
1262
|
+
to?: `0x${string}` | null | undefined;
|
1263
|
+
value?: `0x${string}` | undefined;
|
1264
|
+
gasPrice?: `0x${string}` | undefined;
|
1265
|
+
maxFeePerBlobGas?: undefined;
|
1266
|
+
maxFeePerGas?: undefined;
|
1267
|
+
maxPriorityFeePerGas?: undefined;
|
1268
|
+
accessList?: undefined;
|
1269
|
+
blobs?: undefined;
|
1270
|
+
type?: "0x0" | undefined;
|
1271
|
+
blobVersionedHashes?: undefined;
|
1272
|
+
kzg?: undefined;
|
1273
|
+
sidecars?: undefined;
|
1274
|
+
eip712Meta?: undefined;
|
1275
|
+
} | {
|
1276
|
+
data?: `0x${string}` | undefined;
|
1277
|
+
from: `0x${string}`;
|
1278
|
+
gas?: `0x${string}` | undefined;
|
1279
|
+
nonce?: `0x${string}` | undefined;
|
1280
|
+
to?: `0x${string}` | null | undefined;
|
1281
|
+
value?: `0x${string}` | undefined;
|
1282
|
+
gasPrice?: `0x${string}` | undefined;
|
1283
|
+
maxFeePerBlobGas?: undefined;
|
1284
|
+
maxFeePerGas?: undefined;
|
1285
|
+
maxPriorityFeePerGas?: undefined;
|
1286
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1287
|
+
blobs?: undefined;
|
1288
|
+
type?: "0x1" | undefined;
|
1289
|
+
blobVersionedHashes?: undefined;
|
1290
|
+
kzg?: undefined;
|
1291
|
+
sidecars?: undefined;
|
1292
|
+
eip712Meta?: undefined;
|
1293
|
+
} | {
|
1294
|
+
data?: `0x${string}` | undefined;
|
1295
|
+
from: `0x${string}`;
|
1296
|
+
gas?: `0x${string}` | undefined;
|
1297
|
+
nonce?: `0x${string}` | undefined;
|
1298
|
+
to?: `0x${string}` | null | undefined;
|
1299
|
+
value?: `0x${string}` | undefined;
|
1300
|
+
gasPrice?: undefined;
|
1301
|
+
maxFeePerBlobGas?: undefined;
|
1302
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
1303
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1304
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1305
|
+
blobs?: undefined;
|
1306
|
+
type?: "0x2" | undefined;
|
1307
|
+
blobVersionedHashes?: undefined;
|
1308
|
+
kzg?: undefined;
|
1309
|
+
sidecars?: undefined;
|
1310
|
+
eip712Meta?: undefined;
|
1311
|
+
} | {
|
1312
|
+
data?: `0x${string}` | undefined;
|
1313
|
+
from: `0x${string}`;
|
1314
|
+
gas?: `0x${string}` | undefined;
|
1315
|
+
nonce?: `0x${string}` | undefined;
|
1316
|
+
to?: `0x${string}` | null | undefined;
|
1317
|
+
value?: `0x${string}` | undefined;
|
1318
|
+
gasPrice?: undefined;
|
1319
|
+
maxFeePerBlobGas?: undefined;
|
1320
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
1321
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1322
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1323
|
+
blobs?: undefined;
|
1324
|
+
type: "0xff" | "0x71";
|
1325
|
+
blobVersionedHashes?: undefined;
|
1326
|
+
kzg?: undefined;
|
1327
|
+
sidecars?: undefined;
|
1328
|
+
eip712Meta: import("../index.js").ZkSyncEip712Meta;
|
1329
|
+
} | {
|
1330
|
+
data?: `0x${string}` | undefined;
|
1331
|
+
from: `0x${string}`;
|
1332
|
+
gas?: `0x${string}` | undefined;
|
1333
|
+
nonce?: `0x${string}` | undefined;
|
1334
|
+
to?: `0x${string}` | null | undefined;
|
1335
|
+
value?: `0x${string}` | undefined;
|
1336
|
+
gasPrice?: `0x${string}` | undefined;
|
1337
|
+
maxFeePerBlobGas?: undefined;
|
1338
|
+
maxFeePerGas?: undefined;
|
1339
|
+
maxPriorityFeePerGas?: undefined;
|
1340
|
+
accessList?: undefined;
|
1341
|
+
blobs?: undefined;
|
1342
|
+
type?: "0x0" | undefined;
|
1343
|
+
blobVersionedHashes?: undefined;
|
1344
|
+
kzg?: undefined;
|
1345
|
+
sidecars?: undefined;
|
1346
|
+
eip712Meta?: undefined;
|
1347
|
+
} | {
|
1348
|
+
data?: `0x${string}` | undefined;
|
1349
|
+
from: `0x${string}`;
|
1350
|
+
gas?: `0x${string}` | undefined;
|
1351
|
+
nonce?: `0x${string}` | undefined;
|
1352
|
+
to?: `0x${string}` | null | undefined;
|
1353
|
+
value?: `0x${string}` | undefined;
|
1354
|
+
gasPrice?: `0x${string}` | undefined;
|
1355
|
+
maxFeePerBlobGas?: undefined;
|
1356
|
+
maxFeePerGas?: undefined;
|
1357
|
+
maxPriorityFeePerGas?: undefined;
|
1358
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1359
|
+
blobs?: undefined;
|
1360
|
+
type?: "0x1" | undefined;
|
1361
|
+
blobVersionedHashes?: undefined;
|
1362
|
+
kzg?: undefined;
|
1363
|
+
sidecars?: undefined;
|
1364
|
+
eip712Meta?: undefined;
|
1365
|
+
} | {
|
1366
|
+
data?: `0x${string}` | undefined;
|
1367
|
+
from: `0x${string}`;
|
1368
|
+
gas?: `0x${string}` | undefined;
|
1369
|
+
nonce?: `0x${string}` | undefined;
|
1370
|
+
to?: `0x${string}` | null | undefined;
|
1371
|
+
value?: `0x${string}` | undefined;
|
1372
|
+
gasPrice?: undefined;
|
1373
|
+
maxFeePerBlobGas?: undefined;
|
1374
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
1375
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1376
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1377
|
+
blobs?: undefined;
|
1378
|
+
type?: "0x2" | undefined;
|
1379
|
+
blobVersionedHashes?: undefined;
|
1380
|
+
kzg?: undefined;
|
1381
|
+
sidecars?: undefined;
|
1382
|
+
eip712Meta?: undefined;
|
1383
|
+
} | {
|
1384
|
+
data?: `0x${string}` | undefined;
|
1385
|
+
from: `0x${string}`;
|
1386
|
+
gas?: `0x${string}` | undefined;
|
1387
|
+
nonce?: `0x${string}` | undefined;
|
1388
|
+
to?: `0x${string}` | null | undefined;
|
1389
|
+
value?: `0x${string}` | undefined;
|
1390
|
+
gasPrice?: undefined;
|
1391
|
+
maxFeePerBlobGas?: undefined;
|
1392
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
1393
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1394
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1395
|
+
blobs?: undefined;
|
1396
|
+
type: "0xff" | "0x71";
|
1397
|
+
blobVersionedHashes?: undefined;
|
1398
|
+
kzg?: undefined;
|
1399
|
+
sidecars?: undefined;
|
1400
|
+
eip712Meta: import("../index.js").ZkSyncEip712Meta;
|
1401
|
+
} | {
|
1402
|
+
data?: `0x${string}` | undefined;
|
1403
|
+
from: `0x${string}`;
|
1404
|
+
gas?: `0x${string}` | undefined;
|
1405
|
+
nonce?: `0x${string}` | undefined;
|
1406
|
+
value?: `0x${string}` | undefined;
|
1407
|
+
to: `0x${string}` | null;
|
1408
|
+
gasPrice?: undefined;
|
1409
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
1410
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1411
|
+
maxFeePerBlobGas: `0x${string}`;
|
1412
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1413
|
+
blobs: readonly `0x${string}`[] | readonly Uint8Array[];
|
1414
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
1415
|
+
kzg?: import("../../index.js").Kzg | undefined;
|
1416
|
+
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1417
|
+
type?: "0x3" | undefined;
|
1418
|
+
eip712Meta?: undefined;
|
1419
|
+
} | {
|
1420
|
+
data?: `0x${string}` | undefined;
|
1421
|
+
from: `0x${string}`;
|
1422
|
+
gas?: `0x${string}` | undefined;
|
1423
|
+
nonce?: `0x${string}` | undefined;
|
1424
|
+
value?: `0x${string}` | undefined;
|
1425
|
+
to: `0x${string}` | null | undefined;
|
1426
|
+
gasPrice?: undefined;
|
1427
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
1428
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1429
|
+
maxFeePerBlobGas: undefined;
|
1430
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
1431
|
+
blobs: readonly `0x${string}`[] | readonly Uint8Array[];
|
1432
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
1433
|
+
kzg?: import("../../index.js").Kzg | undefined;
|
1434
|
+
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1435
|
+
type: "0xff" | "0x71";
|
1436
|
+
eip712Meta: import("../index.js").ZkSyncEip712Meta;
|
1437
|
+
}) & {
|
1438
|
+
gasPerPubdata: never;
|
1439
|
+
paymaster: never;
|
1440
|
+
factoryDeps: never;
|
1441
|
+
paymasterInput: never;
|
1442
|
+
customSignature: never;
|
1443
|
+
};
|
1444
|
+
type: "transactionRequest";
|
1445
|
+
};
|
1446
|
+
};
|
1447
|
+
serializers: {
|
1448
|
+
readonly transaction: typeof import("../../zksync/serializers.js").serializeTransaction;
|
1449
|
+
};
|
1450
|
+
fees?: import("../../index.js").ChainFees<undefined> | undefined;
|
1451
|
+
readonly network: "lisk";
|
1452
|
+
};
|
1453
|
+
//# sourceMappingURL=lisk.d.ts.map
|