viem 2.10.11 → 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 +10 -0
- 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/errors/version.js +1 -1
- package/_cjs/errors/version.js.map +1 -1
- 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/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/errors/version.js +1 -1
- package/_esm/errors/version.js.map +1 -1
- 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/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 +5 -29
- 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/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/lisk.d.ts +8 -8
- 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 +1 -1
- package/_types/chains/index.d.ts.map +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/_types/errors/version.d.ts.map +1 -1
- 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 +65 -5
- 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/celo/formatters.ts +3 -11
- package/celo/index.ts +0 -2
- package/celo/serializers.ts +2 -50
- package/celo/types.ts +3 -38
- package/celo/utils.ts +1 -24
- package/chains/index.ts +0 -2
- package/errors/version.ts +1 -1
- package/package.json +1 -1
- 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 +84 -10
- 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
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"celoAlfajores.d.ts","sourceRoot":"","sources":["../../../chains/definitions/celoAlfajores.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,aAAa
|
1
|
+
{"version":3,"file":"celoAlfajores.d.ts","sourceRoot":"","sources":["../../../chains/definitions/celoAlfajores.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BxB,CAAA"}
|
@@ -599,7 +599,7 @@ export declare const lisk: {
|
|
599
599
|
blobVersionedHashes?: undefined;
|
600
600
|
kzg?: undefined;
|
601
601
|
sidecars?: undefined;
|
602
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
602
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
603
603
|
gasPerPubdata?: bigint | undefined;
|
604
604
|
customSignature?: `0x${string}` | undefined;
|
605
605
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -624,7 +624,7 @@ export declare const lisk: {
|
|
624
624
|
blobVersionedHashes?: undefined;
|
625
625
|
kzg?: undefined;
|
626
626
|
sidecars?: undefined;
|
627
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
627
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
628
628
|
gasPerPubdata?: bigint | undefined;
|
629
629
|
customSignature?: `0x${string}` | undefined;
|
630
630
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -769,7 +769,7 @@ export declare const lisk: {
|
|
769
769
|
blobVersionedHashes?: undefined;
|
770
770
|
kzg?: undefined;
|
771
771
|
sidecars?: undefined;
|
772
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
772
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
773
773
|
gasPerPubdata?: bigint | undefined;
|
774
774
|
customSignature?: `0x${string}` | undefined;
|
775
775
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -794,7 +794,7 @@ export declare const lisk: {
|
|
794
794
|
blobVersionedHashes?: undefined;
|
795
795
|
kzg?: undefined;
|
796
796
|
sidecars?: undefined;
|
797
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
797
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
798
798
|
gasPerPubdata?: bigint | undefined;
|
799
799
|
customSignature?: `0x${string}` | undefined;
|
800
800
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -939,7 +939,7 @@ export declare const lisk: {
|
|
939
939
|
blobVersionedHashes?: undefined;
|
940
940
|
kzg?: undefined;
|
941
941
|
sidecars?: undefined;
|
942
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
942
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
943
943
|
gasPerPubdata?: bigint | undefined;
|
944
944
|
customSignature?: `0x${string}` | undefined;
|
945
945
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -964,7 +964,7 @@ export declare const lisk: {
|
|
964
964
|
blobVersionedHashes?: undefined;
|
965
965
|
kzg?: undefined;
|
966
966
|
sidecars?: undefined;
|
967
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
967
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
968
968
|
gasPerPubdata?: bigint | undefined;
|
969
969
|
customSignature?: `0x${string}` | undefined;
|
970
970
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1149,7 +1149,7 @@ export declare const lisk: {
|
|
1149
1149
|
kzg?: import("../../index.js").Kzg | undefined;
|
1150
1150
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1151
1151
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1152
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1152
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1153
1153
|
gasPerPubdata?: bigint | undefined;
|
1154
1154
|
customSignature?: `0x${string}` | undefined;
|
1155
1155
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1174,7 +1174,7 @@ export declare const lisk: {
|
|
1174
1174
|
kzg?: import("../../index.js").Kzg | undefined;
|
1175
1175
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1176
1176
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1177
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1177
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1178
1178
|
gasPerPubdata?: bigint | undefined;
|
1179
1179
|
customSignature?: `0x${string}` | undefined;
|
1180
1180
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -599,7 +599,7 @@ export declare const playfiAlbireo: {
|
|
599
599
|
blobVersionedHashes?: undefined;
|
600
600
|
kzg?: undefined;
|
601
601
|
sidecars?: undefined;
|
602
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
602
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
603
603
|
gasPerPubdata?: bigint | undefined;
|
604
604
|
customSignature?: `0x${string}` | undefined;
|
605
605
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -624,7 +624,7 @@ export declare const playfiAlbireo: {
|
|
624
624
|
blobVersionedHashes?: undefined;
|
625
625
|
kzg?: undefined;
|
626
626
|
sidecars?: undefined;
|
627
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
627
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
628
628
|
gasPerPubdata?: bigint | undefined;
|
629
629
|
customSignature?: `0x${string}` | undefined;
|
630
630
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -769,7 +769,7 @@ export declare const playfiAlbireo: {
|
|
769
769
|
blobVersionedHashes?: undefined;
|
770
770
|
kzg?: undefined;
|
771
771
|
sidecars?: undefined;
|
772
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
772
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
773
773
|
gasPerPubdata?: bigint | undefined;
|
774
774
|
customSignature?: `0x${string}` | undefined;
|
775
775
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -794,7 +794,7 @@ export declare const playfiAlbireo: {
|
|
794
794
|
blobVersionedHashes?: undefined;
|
795
795
|
kzg?: undefined;
|
796
796
|
sidecars?: undefined;
|
797
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
797
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
798
798
|
gasPerPubdata?: bigint | undefined;
|
799
799
|
customSignature?: `0x${string}` | undefined;
|
800
800
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -939,7 +939,7 @@ export declare const playfiAlbireo: {
|
|
939
939
|
blobVersionedHashes?: undefined;
|
940
940
|
kzg?: undefined;
|
941
941
|
sidecars?: undefined;
|
942
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
942
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
943
943
|
gasPerPubdata?: bigint | undefined;
|
944
944
|
customSignature?: `0x${string}` | undefined;
|
945
945
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -964,7 +964,7 @@ export declare const playfiAlbireo: {
|
|
964
964
|
blobVersionedHashes?: undefined;
|
965
965
|
kzg?: undefined;
|
966
966
|
sidecars?: undefined;
|
967
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
967
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
968
968
|
gasPerPubdata?: bigint | undefined;
|
969
969
|
customSignature?: `0x${string}` | undefined;
|
970
970
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1149,7 +1149,7 @@ export declare const playfiAlbireo: {
|
|
1149
1149
|
kzg?: import("../../index.js").Kzg | undefined;
|
1150
1150
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1151
1151
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1152
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1152
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1153
1153
|
gasPerPubdata?: bigint | undefined;
|
1154
1154
|
customSignature?: `0x${string}` | undefined;
|
1155
1155
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1174,7 +1174,7 @@ export declare const playfiAlbireo: {
|
|
1174
1174
|
kzg?: import("../../index.js").Kzg | undefined;
|
1175
1175
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1176
1176
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1177
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1177
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1178
1178
|
gasPerPubdata?: bigint | undefined;
|
1179
1179
|
customSignature?: `0x${string}` | undefined;
|
1180
1180
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -600,7 +600,7 @@ export declare const zkSync: {
|
|
600
600
|
blobVersionedHashes?: undefined;
|
601
601
|
kzg?: undefined;
|
602
602
|
sidecars?: undefined;
|
603
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
603
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
604
604
|
gasPerPubdata?: bigint | undefined;
|
605
605
|
customSignature?: `0x${string}` | undefined;
|
606
606
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -625,7 +625,7 @@ export declare const zkSync: {
|
|
625
625
|
blobVersionedHashes?: undefined;
|
626
626
|
kzg?: undefined;
|
627
627
|
sidecars?: undefined;
|
628
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
628
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
629
629
|
gasPerPubdata?: bigint | undefined;
|
630
630
|
customSignature?: `0x${string}` | undefined;
|
631
631
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -770,7 +770,7 @@ export declare const zkSync: {
|
|
770
770
|
blobVersionedHashes?: undefined;
|
771
771
|
kzg?: undefined;
|
772
772
|
sidecars?: undefined;
|
773
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
773
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
774
774
|
gasPerPubdata?: bigint | undefined;
|
775
775
|
customSignature?: `0x${string}` | undefined;
|
776
776
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -795,7 +795,7 @@ export declare const zkSync: {
|
|
795
795
|
blobVersionedHashes?: undefined;
|
796
796
|
kzg?: undefined;
|
797
797
|
sidecars?: undefined;
|
798
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
798
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
799
799
|
gasPerPubdata?: bigint | undefined;
|
800
800
|
customSignature?: `0x${string}` | undefined;
|
801
801
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -940,7 +940,7 @@ export declare const zkSync: {
|
|
940
940
|
blobVersionedHashes?: undefined;
|
941
941
|
kzg?: undefined;
|
942
942
|
sidecars?: undefined;
|
943
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
943
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
944
944
|
gasPerPubdata?: bigint | undefined;
|
945
945
|
customSignature?: `0x${string}` | undefined;
|
946
946
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -965,7 +965,7 @@ export declare const zkSync: {
|
|
965
965
|
blobVersionedHashes?: undefined;
|
966
966
|
kzg?: undefined;
|
967
967
|
sidecars?: undefined;
|
968
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
968
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
969
969
|
gasPerPubdata?: bigint | undefined;
|
970
970
|
customSignature?: `0x${string}` | undefined;
|
971
971
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1150,7 +1150,7 @@ export declare const zkSync: {
|
|
1150
1150
|
kzg?: import("../../index.js").Kzg | undefined;
|
1151
1151
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1152
1152
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1153
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1153
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1154
1154
|
gasPerPubdata?: bigint | undefined;
|
1155
1155
|
customSignature?: `0x${string}` | undefined;
|
1156
1156
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1175,7 +1175,7 @@ export declare const zkSync: {
|
|
1175
1175
|
kzg?: import("../../index.js").Kzg | undefined;
|
1176
1176
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1177
1177
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1178
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1178
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1179
1179
|
gasPerPubdata?: bigint | undefined;
|
1180
1180
|
customSignature?: `0x${string}` | undefined;
|
1181
1181
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -607,7 +607,7 @@ export declare const zkSyncInMemoryNode: {
|
|
607
607
|
blobVersionedHashes?: undefined;
|
608
608
|
kzg?: undefined;
|
609
609
|
sidecars?: undefined;
|
610
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
610
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
611
611
|
gasPerPubdata?: bigint | undefined;
|
612
612
|
customSignature?: `0x${string}` | undefined;
|
613
613
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -632,7 +632,7 @@ export declare const zkSyncInMemoryNode: {
|
|
632
632
|
blobVersionedHashes?: undefined;
|
633
633
|
kzg?: undefined;
|
634
634
|
sidecars?: undefined;
|
635
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
635
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
636
636
|
gasPerPubdata?: bigint | undefined;
|
637
637
|
customSignature?: `0x${string}` | undefined;
|
638
638
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -777,7 +777,7 @@ export declare const zkSyncInMemoryNode: {
|
|
777
777
|
blobVersionedHashes?: undefined;
|
778
778
|
kzg?: undefined;
|
779
779
|
sidecars?: undefined;
|
780
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
780
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
781
781
|
gasPerPubdata?: bigint | undefined;
|
782
782
|
customSignature?: `0x${string}` | undefined;
|
783
783
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -802,7 +802,7 @@ export declare const zkSyncInMemoryNode: {
|
|
802
802
|
blobVersionedHashes?: undefined;
|
803
803
|
kzg?: undefined;
|
804
804
|
sidecars?: undefined;
|
805
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
805
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
806
806
|
gasPerPubdata?: bigint | undefined;
|
807
807
|
customSignature?: `0x${string}` | undefined;
|
808
808
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -947,7 +947,7 @@ export declare const zkSyncInMemoryNode: {
|
|
947
947
|
blobVersionedHashes?: undefined;
|
948
948
|
kzg?: undefined;
|
949
949
|
sidecars?: undefined;
|
950
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
950
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
951
951
|
gasPerPubdata?: bigint | undefined;
|
952
952
|
customSignature?: `0x${string}` | undefined;
|
953
953
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -972,7 +972,7 @@ export declare const zkSyncInMemoryNode: {
|
|
972
972
|
blobVersionedHashes?: undefined;
|
973
973
|
kzg?: undefined;
|
974
974
|
sidecars?: undefined;
|
975
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
975
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
976
976
|
gasPerPubdata?: bigint | undefined;
|
977
977
|
customSignature?: `0x${string}` | undefined;
|
978
978
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1157,7 +1157,7 @@ export declare const zkSyncInMemoryNode: {
|
|
1157
1157
|
kzg?: import("../../index.js").Kzg | undefined;
|
1158
1158
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1159
1159
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1160
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1160
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1161
1161
|
gasPerPubdata?: bigint | undefined;
|
1162
1162
|
customSignature?: `0x${string}` | undefined;
|
1163
1163
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1182,7 +1182,7 @@ export declare const zkSyncInMemoryNode: {
|
|
1182
1182
|
kzg?: import("../../index.js").Kzg | undefined;
|
1183
1183
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1184
1184
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1185
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1185
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1186
1186
|
gasPerPubdata?: bigint | undefined;
|
1187
1187
|
customSignature?: `0x${string}` | undefined;
|
1188
1188
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -607,7 +607,7 @@ export declare const zkSyncLocalNode: {
|
|
607
607
|
blobVersionedHashes?: undefined;
|
608
608
|
kzg?: undefined;
|
609
609
|
sidecars?: undefined;
|
610
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
610
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
611
611
|
gasPerPubdata?: bigint | undefined;
|
612
612
|
customSignature?: `0x${string}` | undefined;
|
613
613
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -632,7 +632,7 @@ export declare const zkSyncLocalNode: {
|
|
632
632
|
blobVersionedHashes?: undefined;
|
633
633
|
kzg?: undefined;
|
634
634
|
sidecars?: undefined;
|
635
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
635
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
636
636
|
gasPerPubdata?: bigint | undefined;
|
637
637
|
customSignature?: `0x${string}` | undefined;
|
638
638
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -777,7 +777,7 @@ export declare const zkSyncLocalNode: {
|
|
777
777
|
blobVersionedHashes?: undefined;
|
778
778
|
kzg?: undefined;
|
779
779
|
sidecars?: undefined;
|
780
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
780
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
781
781
|
gasPerPubdata?: bigint | undefined;
|
782
782
|
customSignature?: `0x${string}` | undefined;
|
783
783
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -802,7 +802,7 @@ export declare const zkSyncLocalNode: {
|
|
802
802
|
blobVersionedHashes?: undefined;
|
803
803
|
kzg?: undefined;
|
804
804
|
sidecars?: undefined;
|
805
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
805
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
806
806
|
gasPerPubdata?: bigint | undefined;
|
807
807
|
customSignature?: `0x${string}` | undefined;
|
808
808
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -947,7 +947,7 @@ export declare const zkSyncLocalNode: {
|
|
947
947
|
blobVersionedHashes?: undefined;
|
948
948
|
kzg?: undefined;
|
949
949
|
sidecars?: undefined;
|
950
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
950
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
951
951
|
gasPerPubdata?: bigint | undefined;
|
952
952
|
customSignature?: `0x${string}` | undefined;
|
953
953
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -972,7 +972,7 @@ export declare const zkSyncLocalNode: {
|
|
972
972
|
blobVersionedHashes?: undefined;
|
973
973
|
kzg?: undefined;
|
974
974
|
sidecars?: undefined;
|
975
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
975
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
976
976
|
gasPerPubdata?: bigint | undefined;
|
977
977
|
customSignature?: `0x${string}` | undefined;
|
978
978
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1157,7 +1157,7 @@ export declare const zkSyncLocalNode: {
|
|
1157
1157
|
kzg?: import("../../index.js").Kzg | undefined;
|
1158
1158
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1159
1159
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1160
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1160
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1161
1161
|
gasPerPubdata?: bigint | undefined;
|
1162
1162
|
customSignature?: `0x${string}` | undefined;
|
1163
1163
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1182,7 +1182,7 @@ export declare const zkSyncLocalNode: {
|
|
1182
1182
|
kzg?: import("../../index.js").Kzg | undefined;
|
1183
1183
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1184
1184
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1185
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1185
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1186
1186
|
gasPerPubdata?: bigint | undefined;
|
1187
1187
|
customSignature?: `0x${string}` | undefined;
|
1188
1188
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -599,7 +599,7 @@ export declare const zkSyncSepoliaTestnet: {
|
|
599
599
|
blobVersionedHashes?: undefined;
|
600
600
|
kzg?: undefined;
|
601
601
|
sidecars?: undefined;
|
602
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
602
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
603
603
|
gasPerPubdata?: bigint | undefined;
|
604
604
|
customSignature?: `0x${string}` | undefined;
|
605
605
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -624,7 +624,7 @@ export declare const zkSyncSepoliaTestnet: {
|
|
624
624
|
blobVersionedHashes?: undefined;
|
625
625
|
kzg?: undefined;
|
626
626
|
sidecars?: undefined;
|
627
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
627
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
628
628
|
gasPerPubdata?: bigint | undefined;
|
629
629
|
customSignature?: `0x${string}` | undefined;
|
630
630
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -769,7 +769,7 @@ export declare const zkSyncSepoliaTestnet: {
|
|
769
769
|
blobVersionedHashes?: undefined;
|
770
770
|
kzg?: undefined;
|
771
771
|
sidecars?: undefined;
|
772
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
772
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
773
773
|
gasPerPubdata?: bigint | undefined;
|
774
774
|
customSignature?: `0x${string}` | undefined;
|
775
775
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -794,7 +794,7 @@ export declare const zkSyncSepoliaTestnet: {
|
|
794
794
|
blobVersionedHashes?: undefined;
|
795
795
|
kzg?: undefined;
|
796
796
|
sidecars?: undefined;
|
797
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
797
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
798
798
|
gasPerPubdata?: bigint | undefined;
|
799
799
|
customSignature?: `0x${string}` | undefined;
|
800
800
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -939,7 +939,7 @@ export declare const zkSyncSepoliaTestnet: {
|
|
939
939
|
blobVersionedHashes?: undefined;
|
940
940
|
kzg?: undefined;
|
941
941
|
sidecars?: undefined;
|
942
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
942
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
943
943
|
gasPerPubdata?: bigint | undefined;
|
944
944
|
customSignature?: `0x${string}` | undefined;
|
945
945
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -964,7 +964,7 @@ export declare const zkSyncSepoliaTestnet: {
|
|
964
964
|
blobVersionedHashes?: undefined;
|
965
965
|
kzg?: undefined;
|
966
966
|
sidecars?: undefined;
|
967
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
967
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
968
968
|
gasPerPubdata?: bigint | undefined;
|
969
969
|
customSignature?: `0x${string}` | undefined;
|
970
970
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1149,7 +1149,7 @@ export declare const zkSyncSepoliaTestnet: {
|
|
1149
1149
|
kzg?: import("../../index.js").Kzg | undefined;
|
1150
1150
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1151
1151
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1152
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1152
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1153
1153
|
gasPerPubdata?: bigint | undefined;
|
1154
1154
|
customSignature?: `0x${string}` | undefined;
|
1155
1155
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1174,7 +1174,7 @@ export declare const zkSyncSepoliaTestnet: {
|
|
1174
1174
|
kzg?: import("../../index.js").Kzg | undefined;
|
1175
1175
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1176
1176
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1177
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1177
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1178
1178
|
gasPerPubdata?: bigint | undefined;
|
1179
1179
|
customSignature?: `0x${string}` | undefined;
|
1180
1180
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -600,7 +600,7 @@ export declare const zkSyncTestnet: {
|
|
600
600
|
blobVersionedHashes?: undefined;
|
601
601
|
kzg?: undefined;
|
602
602
|
sidecars?: undefined;
|
603
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
603
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
604
604
|
gasPerPubdata?: bigint | undefined;
|
605
605
|
customSignature?: `0x${string}` | undefined;
|
606
606
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -625,7 +625,7 @@ export declare const zkSyncTestnet: {
|
|
625
625
|
blobVersionedHashes?: undefined;
|
626
626
|
kzg?: undefined;
|
627
627
|
sidecars?: undefined;
|
628
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
628
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
629
629
|
gasPerPubdata?: bigint | undefined;
|
630
630
|
customSignature?: `0x${string}` | undefined;
|
631
631
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -770,7 +770,7 @@ export declare const zkSyncTestnet: {
|
|
770
770
|
blobVersionedHashes?: undefined;
|
771
771
|
kzg?: undefined;
|
772
772
|
sidecars?: undefined;
|
773
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
773
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
774
774
|
gasPerPubdata?: bigint | undefined;
|
775
775
|
customSignature?: `0x${string}` | undefined;
|
776
776
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -795,7 +795,7 @@ export declare const zkSyncTestnet: {
|
|
795
795
|
blobVersionedHashes?: undefined;
|
796
796
|
kzg?: undefined;
|
797
797
|
sidecars?: undefined;
|
798
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
798
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
799
799
|
gasPerPubdata?: bigint | undefined;
|
800
800
|
customSignature?: `0x${string}` | undefined;
|
801
801
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -940,7 +940,7 @@ export declare const zkSyncTestnet: {
|
|
940
940
|
blobVersionedHashes?: undefined;
|
941
941
|
kzg?: undefined;
|
942
942
|
sidecars?: undefined;
|
943
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
943
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
944
944
|
gasPerPubdata?: bigint | undefined;
|
945
945
|
customSignature?: `0x${string}` | undefined;
|
946
946
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -965,7 +965,7 @@ export declare const zkSyncTestnet: {
|
|
965
965
|
blobVersionedHashes?: undefined;
|
966
966
|
kzg?: undefined;
|
967
967
|
sidecars?: undefined;
|
968
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
968
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
969
969
|
gasPerPubdata?: bigint | undefined;
|
970
970
|
customSignature?: `0x${string}` | undefined;
|
971
971
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1150,7 +1150,7 @@ export declare const zkSyncTestnet: {
|
|
1150
1150
|
kzg?: import("../../index.js").Kzg | undefined;
|
1151
1151
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1152
1152
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1153
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1153
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1154
1154
|
gasPerPubdata?: bigint | undefined;
|
1155
1155
|
customSignature?: `0x${string}` | undefined;
|
1156
1156
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1175,7 +1175,7 @@ export declare const zkSyncTestnet: {
|
|
1175
1175
|
kzg?: import("../../index.js").Kzg | undefined;
|
1176
1176
|
sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
|
1177
1177
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1178
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1178
|
+
} & Omit<import("../../index.js").TransactionRequestBase<bigint, number>, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1179
1179
|
gasPerPubdata?: bigint | undefined;
|
1180
1180
|
customSignature?: `0x${string}` | undefined;
|
1181
1181
|
factoryDeps?: `0x${string}`[] | undefined;
|
package/_types/chains/index.d.ts
CHANGED
@@ -275,7 +275,7 @@ export { zora } from './definitions/zora.js';
|
|
275
275
|
export { zoraSepolia } from './definitions/zoraSepolia.js';
|
276
276
|
export { zoraTestnet } from './definitions/zoraTestnet.js';
|
277
277
|
export type { Assign, Omit, PartialBy, Prettify, UnionLooseOmit, } from '../types/utils.js';
|
278
|
-
export type { CeloBlock, CeloBlockOverrides, CeloRpcBlock, CeloRpcBlockOverrides, CeloRpcTransaction, CeloRpcTransactionRequest, CeloTransaction, CeloTransactionRequest, CeloTransactionType, CeloTransactionSerializable, CeloTransactionSerialized, RpcTransactionCIP42, RpcTransactionCIP64,
|
278
|
+
export type { CeloBlock, CeloBlockOverrides, CeloRpcBlock, CeloRpcBlockOverrides, CeloRpcTransaction, CeloRpcTransactionRequest, CeloTransaction, CeloTransactionRequest, CeloTransactionType, CeloTransactionSerializable, CeloTransactionSerialized, RpcTransactionCIP42, RpcTransactionCIP64, RpcTransactionRequestCIP64, TransactionCIP42, TransactionCIP64, TransactionRequestCIP64, TransactionSerializableCIP42, TransactionSerializableCIP64, TransactionSerializedCIP42, TransactionSerializedCIP64, } from '../celo/types.js';
|
279
279
|
export type { OpStackBlock, OpStackBlockOverrides, OpStackRpcBlock, OpStackRpcBlockOverrides, } from '../op-stack/types/block.js';
|
280
280
|
export type { SerializeTransactionDepositReturnType, SerializeTransactionErrorType, SerializeTransactionReturnType, serializeTransaction as serializeTransactionOpStack, assertTransactionDeposit as assertTransactionDepositOpStack, serializers as serializersOpStack, } from '../op-stack/serializers.js';
|
281
281
|
export type { OpStackDepositTransaction, OpStackRpcDepositTransaction, OpStackRpcTransaction, OpStackRpcTransactionReceipt, OpStackRpcTransactionReceiptOverrides, OpStackTransaction, OpStackTransactionReceipt, OpStackTransactionReceiptOverrides, OpStackTransactionSerializable, OpStackTransactionSerialized, OpStackTransactionType, TransactionSerializableDeposit, TransactionSerializedDeposit, } from '../op-stack/types/transaction.js';
|