ox 1.0.0-beta.8 → 1.0.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 +1143 -0
- package/dist/core/Abi.d.ts +6 -2
- package/dist/core/Abi.d.ts.map +1 -1
- package/dist/core/Abi.js +6 -3
- package/dist/core/Abi.js.map +1 -1
- package/dist/core/AbiConstructor.d.ts +2 -1
- package/dist/core/AbiConstructor.d.ts.map +1 -1
- package/dist/core/AbiConstructor.js +2 -2
- package/dist/core/AbiConstructor.js.map +1 -1
- package/dist/core/AbiError.d.ts +3 -1
- package/dist/core/AbiError.d.ts.map +1 -1
- package/dist/core/AbiError.js +2 -2
- package/dist/core/AbiError.js.map +1 -1
- package/dist/core/AbiEvent.d.ts +3 -1
- package/dist/core/AbiEvent.d.ts.map +1 -1
- package/dist/core/AbiEvent.js +2 -2
- package/dist/core/AbiEvent.js.map +1 -1
- package/dist/core/AbiFunction.d.ts +3 -1
- package/dist/core/AbiFunction.d.ts.map +1 -1
- package/dist/core/AbiFunction.js +2 -2
- package/dist/core/AbiFunction.js.map +1 -1
- package/dist/core/AbiItem.d.ts +6 -3
- package/dist/core/AbiItem.d.ts.map +1 -1
- package/dist/core/AbiItem.js +9 -7
- package/dist/core/AbiItem.js.map +1 -1
- package/dist/core/AbiParameter.d.ts +88 -0
- package/dist/core/AbiParameter.d.ts.map +1 -0
- package/dist/core/AbiParameter.js +82 -0
- package/dist/core/AbiParameter.js.map +1 -0
- package/dist/core/AbiParameters.d.ts +58 -2
- package/dist/core/AbiParameters.d.ts.map +1 -1
- package/dist/core/AbiParameters.js +60 -6
- package/dist/core/AbiParameters.js.map +1 -1
- package/dist/core/Rlp.d.ts +27 -5
- package/dist/core/Rlp.d.ts.map +1 -1
- package/dist/core/Rlp.js +40 -4
- package/dist/core/Rlp.js.map +1 -1
- package/dist/core/RpcSchema.d.ts +2 -2
- package/dist/core/internal/abiParameters.d.ts.map +1 -1
- package/dist/core/internal/abiParameters.js +21 -3
- package/dist/core/internal/abiParameters.js.map +1 -1
- package/dist/core/internal/human-readable/errors.d.ts +103 -0
- package/dist/core/internal/human-readable/errors.d.ts.map +1 -0
- package/dist/core/internal/human-readable/errors.js +142 -0
- package/dist/core/internal/human-readable/errors.js.map +1 -0
- package/dist/core/internal/human-readable/formatAbi.d.ts +19 -0
- package/dist/core/internal/human-readable/formatAbi.d.ts.map +1 -0
- package/dist/core/internal/human-readable/formatAbi.js +18 -0
- package/dist/core/internal/human-readable/formatAbi.js.map +1 -0
- package/dist/core/internal/human-readable/formatAbiItem.d.ts +23 -0
- package/dist/core/internal/human-readable/formatAbiItem.d.ts.map +1 -0
- package/dist/core/internal/human-readable/formatAbiItem.js +25 -0
- package/dist/core/internal/human-readable/formatAbiItem.js.map +1 -0
- package/dist/core/internal/human-readable/formatAbiParameter.d.ts +41 -0
- package/dist/core/internal/human-readable/formatAbiParameter.d.ts.map +1 -0
- package/dist/core/internal/human-readable/formatAbiParameter.js +36 -0
- package/dist/core/internal/human-readable/formatAbiParameter.js.map +1 -0
- package/dist/core/internal/human-readable/formatAbiParameters.d.ts +26 -0
- package/dist/core/internal/human-readable/formatAbiParameters.d.ts.map +1 -0
- package/dist/core/internal/human-readable/formatAbiParameters.js +19 -0
- package/dist/core/internal/human-readable/formatAbiParameters.js.map +1 -0
- package/dist/core/internal/human-readable/parseAbi.d.ts +22 -0
- package/dist/core/internal/human-readable/parseAbi.d.ts.map +1 -0
- package/dist/core/internal/human-readable/parseAbi.js +22 -0
- package/dist/core/internal/human-readable/parseAbi.js.map +1 -0
- package/dist/core/internal/human-readable/parseAbiItem.d.ts +23 -0
- package/dist/core/internal/human-readable/parseAbiItem.d.ts.map +1 -0
- package/dist/core/internal/human-readable/parseAbiItem.js +30 -0
- package/dist/core/internal/human-readable/parseAbiItem.js.map +1 -0
- package/dist/core/internal/human-readable/parseAbiParameter.d.ts +28 -0
- package/dist/core/internal/human-readable/parseAbiParameter.d.ts.map +1 -0
- package/dist/core/internal/human-readable/parseAbiParameter.js +32 -0
- package/dist/core/internal/human-readable/parseAbiParameter.js.map +1 -0
- package/dist/core/internal/human-readable/parseAbiParameters.d.ts +38 -0
- package/dist/core/internal/human-readable/parseAbiParameters.d.ts.map +1 -0
- package/dist/core/internal/human-readable/parseAbiParameters.js +39 -0
- package/dist/core/internal/human-readable/parseAbiParameters.js.map +1 -0
- package/dist/core/internal/human-readable/regex.d.ts +9 -0
- package/dist/core/internal/human-readable/regex.d.ts.map +1 -0
- package/dist/core/internal/human-readable/regex.js +12 -0
- package/dist/core/internal/human-readable/regex.js.map +1 -0
- package/dist/core/internal/human-readable/runtime/cache.d.ts +22 -0
- package/dist/core/internal/human-readable/runtime/cache.d.ts.map +1 -0
- package/dist/core/internal/human-readable/runtime/cache.js +86 -0
- package/dist/core/internal/human-readable/runtime/cache.js.map +1 -0
- package/dist/core/internal/human-readable/runtime/signatures.d.ts +39 -0
- package/dist/core/internal/human-readable/runtime/signatures.d.ts.map +1 -0
- package/dist/core/internal/human-readable/runtime/signatures.js +67 -0
- package/dist/core/internal/human-readable/runtime/signatures.js.map +1 -0
- package/dist/core/internal/human-readable/runtime/structs.d.ts +3 -0
- package/dist/core/internal/human-readable/runtime/structs.d.ts.map +1 -0
- package/dist/core/internal/human-readable/runtime/structs.js +79 -0
- package/dist/core/internal/human-readable/runtime/structs.js.map +1 -0
- package/dist/core/internal/human-readable/runtime/utils.d.ts +205 -0
- package/dist/core/internal/human-readable/runtime/utils.d.ts.map +1 -0
- package/dist/core/internal/human-readable/runtime/utils.js +232 -0
- package/dist/core/internal/human-readable/runtime/utils.js.map +1 -0
- package/dist/core/internal/human-readable/types/signatures.d.ts +38 -0
- package/dist/core/internal/human-readable/types/signatures.d.ts.map +1 -0
- package/dist/core/internal/human-readable/types/signatures.js +2 -0
- package/dist/core/internal/human-readable/types/signatures.js.map +1 -0
- package/dist/core/internal/human-readable/types/structs.d.ts +48 -0
- package/dist/core/internal/human-readable/types/structs.d.ts.map +1 -0
- package/dist/core/internal/human-readable/types/structs.js +2 -0
- package/dist/core/internal/human-readable/types/structs.js.map +1 -0
- package/dist/core/internal/human-readable/types/utils.d.ts +163 -0
- package/dist/core/internal/human-readable/types/utils.d.ts.map +1 -0
- package/dist/core/internal/human-readable/types/utils.js +2 -0
- package/dist/core/internal/human-readable/types/utils.js.map +1 -0
- package/dist/core/internal/human-readable/types.d.ts +29 -0
- package/dist/core/internal/human-readable/types.d.ts.map +1 -0
- package/dist/core/internal/human-readable/types.js +2 -0
- package/dist/core/internal/human-readable/types.js.map +1 -0
- package/dist/core/internal/rpcSchemas/eth.d.ts +36 -0
- package/dist/core/internal/rpcSchemas/eth.d.ts.map +1 -1
- package/dist/erc4337/EntryPoint.d.ts +1072 -1
- package/dist/erc4337/EntryPoint.d.ts.map +1 -1
- package/dist/erc4337/EntryPoint.js +872 -0
- package/dist/erc4337/EntryPoint.js.map +1 -1
- package/dist/erc4337/RpcSchema.d.ts +2 -2
- package/dist/erc4337/RpcSchema.d.ts.map +1 -1
- package/dist/erc4337/UserOperation.d.ts +39 -10
- package/dist/erc4337/UserOperation.d.ts.map +1 -1
- package/dist/erc4337/UserOperation.js +62 -48
- package/dist/erc4337/UserOperation.js.map +1 -1
- package/dist/erc4337/UserOperationGas.d.ts +9 -5
- package/dist/erc4337/UserOperationGas.d.ts.map +1 -1
- package/dist/erc4337/UserOperationGas.js +17 -15
- package/dist/erc4337/UserOperationGas.js.map +1 -1
- package/dist/erc4337/UserOperationReceipt.d.ts +4 -4
- package/dist/erc4337/UserOperationReceipt.d.ts.map +1 -1
- package/dist/erc4337/UserOperationReceipt.js.map +1 -1
- package/dist/index.d.ts +37 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +37 -0
- package/dist/index.js.map +1 -1
- package/dist/tempo/Channel.d.ts +8 -14
- package/dist/tempo/Channel.d.ts.map +1 -1
- package/dist/tempo/Channel.js +4 -8
- package/dist/tempo/Channel.js.map +1 -1
- package/dist/tempo/KeyAuthorization.d.ts +5 -5
- package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/tempo/KeyAuthorization.js +4 -4
- package/dist/tempo/KeyAuthorization.js.map +1 -1
- package/dist/tempo/MultisigConfig.d.ts +37 -85
- package/dist/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.js +39 -83
- package/dist/tempo/MultisigConfig.js.map +1 -1
- package/dist/tempo/PoolId.d.ts +8 -7
- package/dist/tempo/PoolId.d.ts.map +1 -1
- package/dist/tempo/PoolId.js +10 -6
- package/dist/tempo/PoolId.js.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +32 -30
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +56 -51
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/Transaction.d.ts +16 -5
- package/dist/tempo/Transaction.d.ts.map +1 -1
- package/dist/tempo/Transaction.js +34 -7
- package/dist/tempo/Transaction.js.map +1 -1
- package/dist/tempo/TransactionReceipt.d.ts +3 -3
- package/dist/tempo/TransactionReceipt.d.ts.map +1 -1
- package/dist/tempo/TransactionReceipt.js +8 -1
- package/dist/tempo/TransactionReceipt.js.map +1 -1
- package/dist/tempo/TransactionRequest.d.ts +15 -2
- package/dist/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/tempo/TransactionRequest.js +65 -29
- package/dist/tempo/TransactionRequest.js.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.d.ts +2 -3
- package/dist/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.js +5 -6
- package/dist/tempo/TxEnvelopeTempo.js.map +1 -1
- package/dist/tempo/index.d.ts +6 -26
- package/dist/tempo/index.d.ts.map +1 -1
- package/dist/tempo/index.js +6 -26
- package/dist/tempo/index.js.map +1 -1
- package/dist/zod/Abi.d.ts +214 -0
- package/dist/zod/Abi.d.ts.map +1 -0
- package/dist/zod/Abi.js +5 -0
- package/dist/zod/Abi.js.map +1 -0
- package/dist/zod/AbiConstructor.d.ts +58 -0
- package/dist/zod/AbiConstructor.d.ts.map +1 -0
- package/dist/zod/AbiConstructor.js +18 -0
- package/dist/zod/AbiConstructor.js.map +1 -0
- package/dist/zod/AbiError.d.ts +20 -0
- package/dist/zod/AbiError.d.ts.map +1 -0
- package/dist/zod/AbiError.js +9 -0
- package/dist/zod/AbiError.js.map +1 -0
- package/dist/zod/AbiEvent.d.ts +23 -0
- package/dist/zod/AbiEvent.d.ts.map +1 -0
- package/dist/zod/AbiEvent.js +11 -0
- package/dist/zod/AbiEvent.js.map +1 -0
- package/dist/zod/AbiFallback.d.ts +16 -0
- package/dist/zod/AbiFallback.d.ts.map +1 -0
- package/dist/zod/AbiFallback.js +16 -0
- package/dist/zod/AbiFallback.js.map +1 -0
- package/dist/zod/AbiFunction.d.ts +109 -0
- package/dist/zod/AbiFunction.d.ts.map +1 -0
- package/dist/zod/AbiFunction.js +26 -0
- package/dist/zod/AbiFunction.js.map +1 -0
- package/dist/zod/AbiItem.d.ts +216 -0
- package/dist/zod/AbiItem.d.ts.map +1 -0
- package/dist/zod/AbiItem.js +26 -0
- package/dist/zod/AbiItem.js.map +1 -0
- package/dist/zod/AbiParameter.d.ts +32 -0
- package/dist/zod/AbiParameter.d.ts.map +1 -0
- package/dist/zod/AbiParameter.js +28 -0
- package/dist/zod/AbiParameter.js.map +1 -0
- package/dist/zod/AbiParameters.d.ts +30 -0
- package/dist/zod/AbiParameters.d.ts.map +1 -0
- package/dist/zod/AbiParameters.js +6 -0
- package/dist/zod/AbiParameters.js.map +1 -0
- package/dist/zod/AbiReceive.d.ts +6 -0
- package/dist/zod/AbiReceive.d.ts.map +1 -0
- package/dist/zod/AbiReceive.js +7 -0
- package/dist/zod/AbiReceive.js.map +1 -0
- package/dist/zod/RpcSchema.d.ts +6 -5
- package/dist/zod/RpcSchema.d.ts.map +1 -1
- package/dist/zod/Solidity.d.ts +15 -0
- package/dist/zod/Solidity.d.ts.map +1 -0
- package/dist/zod/Solidity.js +41 -0
- package/dist/zod/Solidity.js.map +1 -0
- package/dist/zod/TypedData.d.ts +226 -0
- package/dist/zod/TypedData.d.ts.map +1 -0
- package/dist/zod/TypedData.js +84 -0
- package/dist/zod/TypedData.js.map +1 -0
- package/dist/zod/internal/rpcSchemas/Eth.d.ts +1 -0
- package/dist/zod/internal/rpcSchemas/Eth.d.ts.map +1 -1
- package/dist/zod/internal/rpcSchemas/Eth.js +5 -0
- package/dist/zod/internal/rpcSchemas/Eth.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +0 -20
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +503 -67
- package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.js +32 -15
- package/dist/zod/tempo/KeyAuthorization.js.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +216 -34
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +0 -6
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +0 -2
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +1479 -333
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/Transaction.js +65 -16
- package/dist/zod/tempo/Transaction.js.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +410 -57
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.js +81 -18
- package/dist/zod/tempo/TransactionRequest.js.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts +225 -18
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.js +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.js.map +1 -1
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +0 -3
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
- package/dist/zod/tempo/z.d.ts +0 -1
- package/dist/zod/tempo/z.d.ts.map +1 -1
- package/dist/zod/tempo/z.js +0 -1
- package/dist/zod/tempo/z.js.map +1 -1
- package/dist/zod/z.d.ts +12 -0
- package/dist/zod/z.d.ts.map +1 -1
- package/dist/zod/z.js +12 -0
- package/dist/zod/z.js.map +1 -1
- package/package.json +67 -11
- package/src/core/Abi.bench.ts +30 -0
- package/src/core/Abi.ts +13 -4
- package/src/core/AbiConstructor.ts +3 -2
- package/src/core/AbiError.ts +6 -2
- package/src/core/AbiEvent.ts +6 -2
- package/src/core/AbiFunction.ts +6 -2
- package/src/core/AbiItem.bench.ts +19 -0
- package/src/core/AbiItem.ts +20 -10
- package/src/core/AbiParameter.bench.ts +35 -0
- package/src/core/AbiParameter.ts +126 -0
- package/src/core/AbiParameters.bench.ts +22 -0
- package/src/core/AbiParameters.ts +77 -8
- package/src/core/Rlp.ts +66 -3
- package/src/core/RpcSchema.ts +2 -2
- package/src/core/_test/Abi.test.ts +4 -0
- package/src/core/_test/AbiItem.test.ts +3 -0
- package/src/core/_test/AbiParameter.test-d.ts +41 -0
- package/src/core/_test/AbiParameter.test.ts +84 -0
- package/src/core/_test/AbiParameters.decode.test.ts +88 -12
- package/src/core/_test/AbiParameters.encode.test.ts +68 -0
- package/src/core/_test/AbiParameters.test.ts +7 -0
- package/src/core/_test/Rlp.test.ts +101 -0
- package/src/core/_test/index.test.ts +1 -0
- package/src/core/internal/abiParameters.ts +21 -3
- package/src/core/internal/human-readable/_snap/formatAbi.test.ts.snap +74 -0
- package/src/core/internal/human-readable/_snap/parseAbi.test.ts.snap +2353 -0
- package/src/core/internal/human-readable/errors.test.ts +258 -0
- package/src/core/internal/human-readable/errors.ts +205 -0
- package/src/core/internal/human-readable/formatAbi.test-d.ts +144 -0
- package/src/core/internal/human-readable/formatAbi.test.ts +23 -0
- package/src/core/internal/human-readable/formatAbi.ts +37 -0
- package/src/core/internal/human-readable/formatAbiItem.test-d.ts +115 -0
- package/src/core/internal/human-readable/formatAbiItem.test.ts +102 -0
- package/src/core/internal/human-readable/formatAbiItem.ts +136 -0
- package/src/core/internal/human-readable/formatAbiParameter.test-d.ts +125 -0
- package/src/core/internal/human-readable/formatAbiParameter.test.ts +126 -0
- package/src/core/internal/human-readable/formatAbiParameter.ts +86 -0
- package/src/core/internal/human-readable/formatAbiParameters.test-d.ts +92 -0
- package/src/core/internal/human-readable/formatAbiParameters.test.ts +32 -0
- package/src/core/internal/human-readable/formatAbiParameters.ts +46 -0
- package/src/core/internal/human-readable/human-readable.bench-d.ts +58 -0
- package/src/core/internal/human-readable/integration.test.ts +68 -0
- package/src/core/internal/human-readable/parseAbi.test-d.ts +188 -0
- package/src/core/internal/human-readable/parseAbi.test.ts +82 -0
- package/src/core/internal/human-readable/parseAbi.ts +59 -0
- package/src/core/internal/human-readable/parseAbiItem.test-d.ts +183 -0
- package/src/core/internal/human-readable/parseAbiItem.test.ts +264 -0
- package/src/core/internal/human-readable/parseAbiItem.ts +91 -0
- package/src/core/internal/human-readable/parseAbiParameter.test-d.ts +68 -0
- package/src/core/internal/human-readable/parseAbiParameter.test.ts +207 -0
- package/src/core/internal/human-readable/parseAbiParameter.ts +95 -0
- package/src/core/internal/human-readable/parseAbiParameters.test-d.ts +160 -0
- package/src/core/internal/human-readable/parseAbiParameters.test.ts +80 -0
- package/src/core/internal/human-readable/parseAbiParameters.ts +123 -0
- package/src/core/internal/human-readable/regex.ts +15 -0
- package/src/core/internal/human-readable/runtime/cache.ts +96 -0
- package/src/core/internal/human-readable/runtime/signatures.test.ts +236 -0
- package/src/core/internal/human-readable/runtime/signatures.ts +106 -0
- package/src/core/internal/human-readable/runtime/structs.test.ts +210 -0
- package/src/core/internal/human-readable/runtime/structs.ts +97 -0
- package/src/core/internal/human-readable/runtime/utils.test.ts +717 -0
- package/src/core/internal/human-readable/runtime/utils.ts +344 -0
- package/src/core/internal/human-readable/types/signatures.test-d.ts +255 -0
- package/src/core/internal/human-readable/types/signatures.ts +369 -0
- package/src/core/internal/human-readable/types/structs.test-d.ts +221 -0
- package/src/core/internal/human-readable/types/structs.ts +88 -0
- package/src/core/internal/human-readable/types/utils.test-d.ts +1029 -0
- package/src/core/internal/human-readable/types/utils.ts +392 -0
- package/src/core/internal/human-readable/types.ts +69 -0
- package/src/core/internal/rpcSchemas/eth.ts +36 -0
- package/src/erc4337/EntryPoint.ts +875 -1
- package/src/erc4337/RpcSchema.ts +4 -2
- package/src/erc4337/UserOperation.ts +130 -60
- package/src/erc4337/UserOperationGas.ts +36 -28
- package/src/erc4337/UserOperationReceipt.ts +15 -7
- package/src/erc4337/_test/EntryPoint.test.ts +48 -0
- package/src/erc4337/_test/RpcSchema.test-d.ts +56 -0
- package/src/erc4337/_test/UserOperation.snap-d.ts +31 -0
- package/src/erc4337/_test/UserOperation.test.ts +221 -5
- package/src/erc4337/_test/UserOperationGas.test.ts +30 -1
- package/src/index.ts +38 -0
- package/src/tempo/Channel.test.ts +2 -23
- package/src/tempo/Channel.ts +10 -22
- package/src/tempo/KeyAuthorization.test.ts +22 -0
- package/src/tempo/KeyAuthorization.ts +9 -9
- package/src/tempo/MultisigConfig.test.ts +54 -37
- package/src/tempo/MultisigConfig.ts +59 -134
- package/src/tempo/PoolId.test.ts +7 -41
- package/src/tempo/PoolId.ts +15 -10
- package/src/tempo/SignatureEnvelope.test.ts +118 -17
- package/src/tempo/SignatureEnvelope.ts +77 -72
- package/src/tempo/Transaction.test.ts +0 -15
- package/src/tempo/Transaction.ts +63 -12
- package/src/tempo/TransactionReceipt.test.ts +76 -0
- package/src/tempo/TransactionReceipt.ts +11 -5
- package/src/tempo/TransactionRequest.test.ts +174 -1
- package/src/tempo/TransactionRequest.ts +84 -32
- package/src/tempo/TxEnvelopeTempo.test.ts +2 -2
- package/src/tempo/TxEnvelopeTempo.ts +7 -7
- package/src/tempo/e2e.test.ts +228 -50
- package/src/tempo/index.ts +6 -26
- package/src/version.ts +1 -1
- package/src/zod/Abi.ts +5 -0
- package/src/zod/AbiConstructor.ts +24 -0
- package/src/zod/AbiError.ts +9 -0
- package/src/zod/AbiEvent.ts +11 -0
- package/src/zod/AbiFallback.ts +22 -0
- package/src/zod/AbiFunction.ts +32 -0
- package/src/zod/AbiItem.ts +28 -0
- package/src/zod/AbiParameter.ts +36 -0
- package/src/zod/AbiParameters.ts +7 -0
- package/src/zod/AbiReceive.ts +7 -0
- package/src/zod/RpcSchema.ts +5 -5
- package/src/zod/Solidity.ts +83 -0
- package/src/zod/TypedData.ts +111 -0
- package/src/zod/_test/Abi.test-d.ts +46 -0
- package/src/zod/_test/Abi.test.ts +163 -0
- package/src/zod/_test/TypedData.test-d.ts +20 -0
- package/src/zod/_test/TypedData.test.ts +87 -0
- package/src/zod/_test/z.test-d.ts +6 -0
- package/src/zod/_test/z.test.ts +17 -0
- package/src/zod/internal/rpcSchemas/Eth.ts +6 -0
- package/src/zod/tempo/KeyAuthorization.ts +34 -15
- package/src/zod/tempo/SignatureEnvelope.ts +0 -2
- package/src/zod/tempo/Transaction.ts +84 -22
- package/src/zod/tempo/TransactionRequest.ts +86 -20
- package/src/zod/tempo/TxEnvelopeTempo.ts +1 -1
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +53 -0
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +0 -2
- package/src/zod/tempo/_test/Transaction.test.ts +155 -0
- package/src/zod/tempo/_test/TransactionRequest.test.ts +44 -0
- package/src/zod/tempo/z.ts +0 -1
- package/src/zod/z.ts +12 -0
- package/dist/tempo/TokenId.d.ts +0 -87
- package/dist/tempo/TokenId.d.ts.map +0 -1
- package/dist/tempo/TokenId.js +0 -123
- package/dist/tempo/TokenId.js.map +0 -1
- package/dist/zod/tempo/TokenId.d.ts +0 -6
- package/dist/zod/tempo/TokenId.d.ts.map +0 -1
- package/dist/zod/tempo/TokenId.js +0 -14
- package/dist/zod/tempo/TokenId.js.map +0 -1
- package/src/CHANGELOG.md +0 -820
- package/src/tempo/TokenId.bench.ts +0 -36
- package/src/tempo/TokenId.test.ts +0 -79
- package/src/tempo/TokenId.ts +0 -141
- package/src/zod/tempo/TokenId.ts +0 -15
- package/src/zod/tempo/_test/TokenId.test-d.ts +0 -17
- package/src/zod/tempo/_test/TokenId.test.ts +0 -21
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as z from 'zod/mini';
|
|
2
2
|
/** Tempo transaction schema (type `0x76`). */
|
|
3
|
-
export declare const Tempo: z.ZodMiniObject<{
|
|
3
|
+
export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
4
|
+
type: z.ZodMiniLiteral<"0x76">;
|
|
5
|
+
}, z.core.$loose>, z.ZodMiniObject<{
|
|
4
6
|
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
5
7
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
6
8
|
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -37,7 +39,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
37
39
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
38
40
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
39
41
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
40
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
41
42
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
42
43
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
43
44
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -90,7 +91,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
90
91
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
91
92
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
92
93
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
93
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
94
94
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
95
95
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
96
96
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -107,9 +107,10 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
107
107
|
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
108
108
|
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
109
109
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
110
|
+
data: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
111
|
+
input: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
112
|
+
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
113
|
+
value: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
113
114
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
114
115
|
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
115
116
|
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -129,22 +130,24 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
129
130
|
gasPrice: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
130
131
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
131
132
|
keyAuthorization: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
133
|
+
account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
134
|
+
allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
135
|
+
selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
136
|
+
recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
|
|
135
137
|
selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
136
|
-
}, z.core.$strip
|
|
138
|
+
}, z.core.$strip>>>>>;
|
|
137
139
|
target: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
138
|
-
}, z.core.$strip
|
|
140
|
+
}, z.core.$strip>>>>>;
|
|
139
141
|
chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
140
142
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
143
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
141
144
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
142
145
|
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
143
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
146
|
+
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
144
147
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
145
|
-
period: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}
|
|
148
|
+
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
146
149
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
147
|
-
}, z.core.$strip
|
|
150
|
+
}, z.core.$strip>>>>>;
|
|
148
151
|
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
149
152
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
150
153
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -173,7 +176,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
173
176
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
174
177
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
175
178
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
176
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
177
179
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
178
180
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
179
181
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -185,6 +187,78 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
185
187
|
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
186
188
|
type: z.ZodMiniLiteral<"multisig">;
|
|
187
189
|
}, z.core.$strip>]>;
|
|
190
|
+
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
191
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
192
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
193
|
+
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
194
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
195
|
+
chainId: z.ZodMiniBigInt<bigint>;
|
|
196
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
197
|
+
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
198
|
+
limit: z.ZodMiniBigInt<bigint>;
|
|
199
|
+
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
200
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
201
|
+
}, z.core.$strip>>>>;
|
|
202
|
+
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
203
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
204
|
+
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
205
|
+
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
206
|
+
}, z.core.$strip>>>>;
|
|
207
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
208
|
+
signature: z.ZodMiniObject<{
|
|
209
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
210
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
211
|
+
yParity: z.ZodMiniNumber<number>;
|
|
212
|
+
}, z.core.$strip>;
|
|
213
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
214
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
215
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
216
|
+
publicKey: z.ZodMiniObject<{
|
|
217
|
+
prefix: z.ZodMiniNumber<number>;
|
|
218
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
219
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
220
|
+
}, z.core.$strip>;
|
|
221
|
+
signature: z.ZodMiniObject<{
|
|
222
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
223
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
224
|
+
}, z.core.$strip>;
|
|
225
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
226
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
227
|
+
metadata: z.ZodMiniObject<{
|
|
228
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
229
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
230
|
+
}, z.core.$strip>;
|
|
231
|
+
publicKey: z.ZodMiniObject<{
|
|
232
|
+
prefix: z.ZodMiniNumber<number>;
|
|
233
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
234
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
235
|
+
}, z.core.$strip>;
|
|
236
|
+
signature: z.ZodMiniObject<{
|
|
237
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
238
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
239
|
+
}, z.core.$strip>;
|
|
240
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
241
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
242
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
243
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
244
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
245
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
246
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
247
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
248
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
249
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
250
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
251
|
+
threshold: z.ZodMiniNumber<number>;
|
|
252
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
253
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
254
|
+
weight: z.ZodMiniNumber<number>;
|
|
255
|
+
}, z.core.$strip>>>;
|
|
256
|
+
}, z.core.$strip>>;
|
|
257
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
258
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
259
|
+
}, z.core.$strip>]>;
|
|
260
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
261
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
188
262
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
189
263
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
190
264
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
@@ -241,7 +315,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
241
315
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
242
316
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
243
317
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
244
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
245
318
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
246
319
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
247
320
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -254,7 +327,8 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
254
327
|
type: z.ZodMiniLiteral<"multisig">;
|
|
255
328
|
}, z.core.$strip>]>;
|
|
256
329
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
257
|
-
|
|
330
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
331
|
+
}, z.core.$strip>]>>>;
|
|
258
332
|
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
259
333
|
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
260
334
|
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
@@ -287,7 +361,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
287
361
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
288
362
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
289
363
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
290
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
291
364
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
292
365
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
293
366
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -340,7 +413,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
340
413
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
341
414
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
342
415
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
343
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
344
416
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
345
417
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
346
418
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -356,9 +428,11 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
356
428
|
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x76">, z.ZodMiniLiteral<"tempo">>;
|
|
357
429
|
validAfter: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
358
430
|
validBefore: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
359
|
-
}, z.core.$strip
|
|
431
|
+
}, z.core.$strip>>;
|
|
360
432
|
/** Encode-only tempo transaction schema accepting numberish `toRpc` inputs. */
|
|
361
|
-
export declare const TempoToRpc: z.ZodMiniObject<{
|
|
433
|
+
export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
434
|
+
type: z.ZodMiniLiteral<"0x76">;
|
|
435
|
+
}, z.core.$loose>, z.ZodMiniObject<{
|
|
362
436
|
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
363
437
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
364
438
|
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -395,7 +469,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
395
469
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
396
470
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
397
471
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
398
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
399
472
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
400
473
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
401
474
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -448,7 +521,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
448
521
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
449
522
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
450
523
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
451
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
452
524
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
453
525
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
454
526
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -465,9 +537,10 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
465
537
|
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
466
538
|
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
467
539
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
540
|
+
data: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
541
|
+
input: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
542
|
+
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
543
|
+
value: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
471
544
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
472
545
|
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
473
546
|
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -487,22 +560,24 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
487
560
|
gasPrice: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
488
561
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
489
562
|
keyAuthorization: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
563
|
+
account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
564
|
+
allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
565
|
+
selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
566
|
+
recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
|
|
493
567
|
selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
494
|
-
}, z.core.$strip
|
|
568
|
+
}, z.core.$strip>>>>>;
|
|
495
569
|
target: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
496
|
-
}, z.core.$strip
|
|
570
|
+
}, z.core.$strip>>>>>;
|
|
497
571
|
chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
498
572
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
573
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
499
574
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
500
575
|
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
501
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
576
|
+
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
502
577
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
503
|
-
period: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}
|
|
578
|
+
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
504
579
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
505
|
-
}, z.core.$strip
|
|
580
|
+
}, z.core.$strip>>>>>;
|
|
506
581
|
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
507
582
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
508
583
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -531,7 +606,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
531
606
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
532
607
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
533
608
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
534
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
535
609
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
536
610
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
537
611
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -543,6 +617,78 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
543
617
|
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
544
618
|
type: z.ZodMiniLiteral<"multisig">;
|
|
545
619
|
}, z.core.$strip>]>;
|
|
620
|
+
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
621
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
622
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
623
|
+
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
624
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
625
|
+
chainId: z.ZodMiniBigInt<bigint>;
|
|
626
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
627
|
+
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
628
|
+
limit: z.ZodMiniBigInt<bigint>;
|
|
629
|
+
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
630
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
631
|
+
}, z.core.$strip>>>>;
|
|
632
|
+
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
633
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
634
|
+
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
635
|
+
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
636
|
+
}, z.core.$strip>>>>;
|
|
637
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
638
|
+
signature: z.ZodMiniObject<{
|
|
639
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
640
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
641
|
+
yParity: z.ZodMiniNumber<number>;
|
|
642
|
+
}, z.core.$strip>;
|
|
643
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
644
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
645
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
646
|
+
publicKey: z.ZodMiniObject<{
|
|
647
|
+
prefix: z.ZodMiniNumber<number>;
|
|
648
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
649
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
650
|
+
}, z.core.$strip>;
|
|
651
|
+
signature: z.ZodMiniObject<{
|
|
652
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
653
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
654
|
+
}, z.core.$strip>;
|
|
655
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
656
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
657
|
+
metadata: z.ZodMiniObject<{
|
|
658
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
659
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
660
|
+
}, z.core.$strip>;
|
|
661
|
+
publicKey: z.ZodMiniObject<{
|
|
662
|
+
prefix: z.ZodMiniNumber<number>;
|
|
663
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
664
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
665
|
+
}, z.core.$strip>;
|
|
666
|
+
signature: z.ZodMiniObject<{
|
|
667
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
668
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
669
|
+
}, z.core.$strip>;
|
|
670
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
671
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
672
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
673
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
674
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
675
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
676
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
677
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
678
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
679
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
680
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
681
|
+
threshold: z.ZodMiniNumber<number>;
|
|
682
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
683
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
684
|
+
weight: z.ZodMiniNumber<number>;
|
|
685
|
+
}, z.core.$strip>>>;
|
|
686
|
+
}, z.core.$strip>>;
|
|
687
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
688
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
689
|
+
}, z.core.$strip>]>;
|
|
690
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
691
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
546
692
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
547
693
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
548
694
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
@@ -599,7 +745,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
599
745
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
600
746
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
601
747
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
602
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
603
748
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
604
749
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
605
750
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -612,7 +757,8 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
612
757
|
type: z.ZodMiniLiteral<"multisig">;
|
|
613
758
|
}, z.core.$strip>]>;
|
|
614
759
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
615
|
-
|
|
760
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
761
|
+
}, z.core.$strip>]>>>;
|
|
616
762
|
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
617
763
|
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
618
764
|
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
@@ -645,7 +791,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
645
791
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
646
792
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
647
793
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
648
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
649
794
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
650
795
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
651
796
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -698,7 +843,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
698
843
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
699
844
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
700
845
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
701
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
702
846
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
703
847
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
704
848
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -714,9 +858,15 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
714
858
|
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x76">, z.ZodMiniLiteral<"tempo">>;
|
|
715
859
|
validAfter: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
716
860
|
validBefore: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
717
|
-
}, z.core.$strip
|
|
718
|
-
/**
|
|
719
|
-
export declare const
|
|
861
|
+
}, z.core.$strip>>;
|
|
862
|
+
/** Pending tempo transaction schema (type `0x76`, not yet included in a block). */
|
|
863
|
+
export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
864
|
+
type: z.ZodMiniLiteral<"0x76">;
|
|
865
|
+
}, z.core.$loose>, z.ZodMiniObject<{
|
|
866
|
+
blockHash: z.ZodMiniNull;
|
|
867
|
+
blockNumber: z.ZodMiniNull;
|
|
868
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniNull>;
|
|
869
|
+
transactionIndex: z.ZodMiniNull;
|
|
720
870
|
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
721
871
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
722
872
|
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -753,7 +903,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
753
903
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
754
904
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
755
905
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
756
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
757
906
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
758
907
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
759
908
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -806,7 +955,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
806
955
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
807
956
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
808
957
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
809
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
810
958
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
811
959
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
812
960
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -819,13 +967,11 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
819
967
|
type: z.ZodMiniLiteral<"multisig">;
|
|
820
968
|
}, z.core.$strip>]>>;
|
|
821
969
|
}, z.core.$strip>>>>;
|
|
822
|
-
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
823
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
824
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
825
970
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
971
|
+
data: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
972
|
+
input: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
973
|
+
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
974
|
+
value: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
829
975
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
830
976
|
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
831
977
|
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -845,22 +991,24 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
845
991
|
gasPrice: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
846
992
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
847
993
|
keyAuthorization: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
994
|
+
account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
995
|
+
allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
996
|
+
selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
997
|
+
recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
|
|
851
998
|
selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
852
|
-
}, z.core.$strip
|
|
999
|
+
}, z.core.$strip>>>>>;
|
|
853
1000
|
target: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
854
|
-
}, z.core.$strip
|
|
1001
|
+
}, z.core.$strip>>>>>;
|
|
855
1002
|
chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
856
1003
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1004
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
857
1005
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
858
1006
|
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
859
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1007
|
+
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
860
1008
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
861
|
-
period: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}
|
|
1009
|
+
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
862
1010
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
863
|
-
}, z.core.$strip
|
|
1011
|
+
}, z.core.$strip>>>>>;
|
|
864
1012
|
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
865
1013
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
866
1014
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -889,7 +1037,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
889
1037
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
890
1038
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
891
1039
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
892
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
893
1040
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
894
1041
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
895
1042
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -901,6 +1048,78 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
901
1048
|
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
902
1049
|
type: z.ZodMiniLiteral<"multisig">;
|
|
903
1050
|
}, z.core.$strip>]>;
|
|
1051
|
+
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1052
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1053
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1054
|
+
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
1055
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1056
|
+
chainId: z.ZodMiniBigInt<bigint>;
|
|
1057
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1058
|
+
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1059
|
+
limit: z.ZodMiniBigInt<bigint>;
|
|
1060
|
+
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1061
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1062
|
+
}, z.core.$strip>>>>;
|
|
1063
|
+
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1064
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1065
|
+
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1066
|
+
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1067
|
+
}, z.core.$strip>>>>;
|
|
1068
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1069
|
+
signature: z.ZodMiniObject<{
|
|
1070
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1071
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1072
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1073
|
+
}, z.core.$strip>;
|
|
1074
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1075
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1076
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1077
|
+
publicKey: z.ZodMiniObject<{
|
|
1078
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1079
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1080
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1081
|
+
}, z.core.$strip>;
|
|
1082
|
+
signature: z.ZodMiniObject<{
|
|
1083
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1084
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1085
|
+
}, z.core.$strip>;
|
|
1086
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1087
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1088
|
+
metadata: z.ZodMiniObject<{
|
|
1089
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1090
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1091
|
+
}, z.core.$strip>;
|
|
1092
|
+
publicKey: z.ZodMiniObject<{
|
|
1093
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1094
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1095
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1096
|
+
}, z.core.$strip>;
|
|
1097
|
+
signature: z.ZodMiniObject<{
|
|
1098
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1099
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1100
|
+
}, z.core.$strip>;
|
|
1101
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1102
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1103
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1104
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1105
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
1106
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1107
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1108
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1109
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1110
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1111
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1112
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1113
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1114
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1115
|
+
weight: z.ZodMiniNumber<number>;
|
|
1116
|
+
}, z.core.$strip>>>;
|
|
1117
|
+
}, z.core.$strip>>;
|
|
1118
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1119
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1120
|
+
}, z.core.$strip>]>;
|
|
1121
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1122
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
904
1123
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
905
1124
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
906
1125
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
@@ -957,7 +1176,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
957
1176
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
958
1177
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
959
1178
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
960
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
961
1179
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
962
1180
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
963
1181
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -970,7 +1188,8 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
970
1188
|
type: z.ZodMiniLiteral<"multisig">;
|
|
971
1189
|
}, z.core.$strip>]>;
|
|
972
1190
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
973
|
-
|
|
1191
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1192
|
+
}, z.core.$strip>]>>>;
|
|
974
1193
|
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
975
1194
|
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
976
1195
|
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
@@ -1003,7 +1222,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
1003
1222
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1004
1223
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1005
1224
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1006
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1007
1225
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1008
1226
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1009
1227
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1056,7 +1274,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
1056
1274
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1057
1275
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1058
1276
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1059
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1060
1277
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1061
1278
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1062
1279
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1068,107 +1285,1115 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
1068
1285
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1069
1286
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1070
1287
|
}, z.core.$strip>]>>;
|
|
1071
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1072
1288
|
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x76">, z.ZodMiniLiteral<"tempo">>;
|
|
1073
1289
|
validAfter: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1074
1290
|
validBefore: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1075
|
-
}, z.core.$strip
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1081
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1082
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1083
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1084
|
-
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1085
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1086
|
-
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1087
|
-
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1088
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1089
|
-
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1090
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1091
|
-
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x0">, z.ZodMiniLiteral<"legacy">>;
|
|
1092
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1093
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1094
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1095
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1291
|
+
}, z.core.$strip>>;
|
|
1292
|
+
/** Tempo transaction schema (union of tempo + standard transaction types). */
|
|
1293
|
+
export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniObject<{
|
|
1294
|
+
type: z.ZodMiniLiteral<"0x76">;
|
|
1295
|
+
}, z.core.$loose>, z.ZodMiniObject<{
|
|
1096
1296
|
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1097
1297
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1098
1298
|
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1099
1299
|
}, z.core.$strip>>>;
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1300
|
+
authorizationList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1301
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1302
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1303
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1304
|
+
signature: z.ZodMiniCodec<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1305
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1306
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1307
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1308
|
+
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1309
|
+
yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1310
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1311
|
+
preHash: z.ZodMiniBoolean<boolean>;
|
|
1312
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1313
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1314
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1315
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1316
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1317
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1318
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1319
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1320
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1321
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1322
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1323
|
+
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1324
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1325
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1326
|
+
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
1327
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
1328
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1329
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1330
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1331
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1332
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1333
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1334
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1335
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1336
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1337
|
+
weight: z.ZodMiniNumber<number>;
|
|
1338
|
+
}, z.core.$strip>>>;
|
|
1339
|
+
}, z.core.$strip>>;
|
|
1340
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1341
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1342
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1343
|
+
signature: z.ZodMiniObject<{
|
|
1344
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1345
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1346
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1347
|
+
}, z.core.$strip>;
|
|
1348
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1349
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1350
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1351
|
+
publicKey: z.ZodMiniObject<{
|
|
1352
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1353
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1354
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1355
|
+
}, z.core.$strip>;
|
|
1356
|
+
signature: z.ZodMiniObject<{
|
|
1357
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1358
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1359
|
+
}, z.core.$strip>;
|
|
1360
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1361
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1362
|
+
metadata: z.ZodMiniObject<{
|
|
1363
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1364
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1365
|
+
}, z.core.$strip>;
|
|
1366
|
+
publicKey: z.ZodMiniObject<{
|
|
1367
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1368
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1369
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1370
|
+
}, z.core.$strip>;
|
|
1371
|
+
signature: z.ZodMiniObject<{
|
|
1372
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1373
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1374
|
+
}, z.core.$strip>;
|
|
1375
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1376
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1377
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1378
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1379
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
1380
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1381
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1382
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1383
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1384
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1385
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1386
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1387
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1388
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1389
|
+
weight: z.ZodMiniNumber<number>;
|
|
1390
|
+
}, z.core.$strip>>>;
|
|
1391
|
+
}, z.core.$strip>>;
|
|
1392
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1393
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1394
|
+
}, z.core.$strip>]>>;
|
|
1395
|
+
}, z.core.$strip>>>>;
|
|
1396
|
+
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1397
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1398
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1399
|
+
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
1400
|
+
data: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1401
|
+
input: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1402
|
+
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1403
|
+
value: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1404
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1405
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1406
|
+
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1407
|
+
value: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1408
|
+
}, z.core.$strip>>>>;
|
|
1409
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1410
|
+
feePayer: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1411
|
+
feePayerSignature: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1412
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1413
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1414
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1415
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1416
|
+
}, z.core.$strip>>;
|
|
1417
|
+
feeToken: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1418
|
+
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1419
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1420
|
+
gasPrice: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1421
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1422
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
1423
|
+
account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1424
|
+
allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1425
|
+
selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1426
|
+
recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
|
|
1427
|
+
selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1428
|
+
}, z.core.$strip>>>>>;
|
|
1429
|
+
target: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1430
|
+
}, z.core.$strip>>>>>;
|
|
1431
|
+
chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1432
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1433
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
1434
|
+
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1435
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1436
|
+
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1437
|
+
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1438
|
+
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1439
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1440
|
+
}, z.core.$strip>>>>>;
|
|
1441
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1442
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1443
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1444
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1445
|
+
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1446
|
+
yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1447
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1448
|
+
preHash: z.ZodMiniBoolean<boolean>;
|
|
1449
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1450
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1451
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1452
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1453
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1454
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1455
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1456
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1457
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1458
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1459
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1460
|
+
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1461
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1462
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1463
|
+
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
1464
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
1465
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1466
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1467
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1468
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1469
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1470
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1471
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1472
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1473
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1474
|
+
weight: z.ZodMiniNumber<number>;
|
|
1475
|
+
}, z.core.$strip>>>;
|
|
1476
|
+
}, z.core.$strip>>;
|
|
1477
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1478
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1479
|
+
}, z.core.$strip>]>;
|
|
1480
|
+
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1481
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1482
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1483
|
+
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
1484
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1485
|
+
chainId: z.ZodMiniBigInt<bigint>;
|
|
1486
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1487
|
+
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1488
|
+
limit: z.ZodMiniBigInt<bigint>;
|
|
1489
|
+
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1490
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1491
|
+
}, z.core.$strip>>>>;
|
|
1492
|
+
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1493
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1494
|
+
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1495
|
+
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1496
|
+
}, z.core.$strip>>>>;
|
|
1497
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1498
|
+
signature: z.ZodMiniObject<{
|
|
1499
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1500
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1501
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1502
|
+
}, z.core.$strip>;
|
|
1503
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1504
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1505
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1506
|
+
publicKey: z.ZodMiniObject<{
|
|
1507
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1508
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1509
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1510
|
+
}, z.core.$strip>;
|
|
1511
|
+
signature: z.ZodMiniObject<{
|
|
1512
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1513
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1514
|
+
}, z.core.$strip>;
|
|
1515
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1516
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1517
|
+
metadata: z.ZodMiniObject<{
|
|
1518
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1519
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1520
|
+
}, z.core.$strip>;
|
|
1521
|
+
publicKey: z.ZodMiniObject<{
|
|
1522
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1523
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1524
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1525
|
+
}, z.core.$strip>;
|
|
1526
|
+
signature: z.ZodMiniObject<{
|
|
1527
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1528
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1529
|
+
}, z.core.$strip>;
|
|
1530
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1531
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1532
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1533
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1534
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
1535
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1536
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1537
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1538
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1539
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1540
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1541
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1542
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1543
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1544
|
+
weight: z.ZodMiniNumber<number>;
|
|
1545
|
+
}, z.core.$strip>>>;
|
|
1546
|
+
}, z.core.$strip>>;
|
|
1547
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1548
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1549
|
+
}, z.core.$strip>]>;
|
|
1550
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1551
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1552
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1553
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1554
|
+
chainId: z.ZodMiniBigInt<bigint>;
|
|
1555
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1556
|
+
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1557
|
+
limit: z.ZodMiniBigInt<bigint>;
|
|
1558
|
+
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1559
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1560
|
+
}, z.core.$strip>>>>;
|
|
1561
|
+
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1562
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1563
|
+
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1564
|
+
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1565
|
+
}, z.core.$strip>>>>;
|
|
1566
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1567
|
+
signature: z.ZodMiniObject<{
|
|
1568
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1569
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1570
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1571
|
+
}, z.core.$strip>;
|
|
1572
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1573
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1574
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1575
|
+
publicKey: z.ZodMiniObject<{
|
|
1576
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1577
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1578
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1579
|
+
}, z.core.$strip>;
|
|
1580
|
+
signature: z.ZodMiniObject<{
|
|
1581
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1582
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1583
|
+
}, z.core.$strip>;
|
|
1584
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1585
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1586
|
+
metadata: z.ZodMiniObject<{
|
|
1587
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1588
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1589
|
+
}, z.core.$strip>;
|
|
1590
|
+
publicKey: z.ZodMiniObject<{
|
|
1591
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1592
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1593
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1594
|
+
}, z.core.$strip>;
|
|
1595
|
+
signature: z.ZodMiniObject<{
|
|
1596
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1597
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1598
|
+
}, z.core.$strip>;
|
|
1599
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1600
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1601
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1602
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1603
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
1604
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1605
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1606
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1607
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1608
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1609
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1610
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1611
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1612
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1613
|
+
weight: z.ZodMiniNumber<number>;
|
|
1614
|
+
}, z.core.$strip>>>;
|
|
1615
|
+
}, z.core.$strip>>;
|
|
1616
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1617
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1618
|
+
}, z.core.$strip>]>;
|
|
1619
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1620
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1621
|
+
}, z.core.$strip>]>>>;
|
|
1622
|
+
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1623
|
+
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1624
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1625
|
+
nonceKey: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1626
|
+
signature: z.ZodMiniCodec<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1627
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1628
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1629
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1630
|
+
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1631
|
+
yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1632
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1633
|
+
preHash: z.ZodMiniBoolean<boolean>;
|
|
1634
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1635
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1636
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1637
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1638
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1639
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1640
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1641
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1642
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1643
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1644
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1645
|
+
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1646
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1647
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1648
|
+
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
1649
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
1650
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1651
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1652
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1653
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1654
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1655
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1656
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1657
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1658
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1659
|
+
weight: z.ZodMiniNumber<number>;
|
|
1660
|
+
}, z.core.$strip>>>;
|
|
1661
|
+
}, z.core.$strip>>;
|
|
1662
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1663
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1664
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1665
|
+
signature: z.ZodMiniObject<{
|
|
1666
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1667
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1668
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1669
|
+
}, z.core.$strip>;
|
|
1670
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1671
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1672
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1673
|
+
publicKey: z.ZodMiniObject<{
|
|
1674
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1675
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1676
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1677
|
+
}, z.core.$strip>;
|
|
1678
|
+
signature: z.ZodMiniObject<{
|
|
1679
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1680
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1681
|
+
}, z.core.$strip>;
|
|
1682
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1683
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1684
|
+
metadata: z.ZodMiniObject<{
|
|
1685
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1686
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1687
|
+
}, z.core.$strip>;
|
|
1688
|
+
publicKey: z.ZodMiniObject<{
|
|
1689
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1690
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1691
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1692
|
+
}, z.core.$strip>;
|
|
1693
|
+
signature: z.ZodMiniObject<{
|
|
1694
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1695
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1696
|
+
}, z.core.$strip>;
|
|
1697
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1698
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1699
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1700
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1701
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
1702
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1703
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1704
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1705
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1706
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1707
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1708
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1709
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1710
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1711
|
+
weight: z.ZodMiniNumber<number>;
|
|
1712
|
+
}, z.core.$strip>>>;
|
|
1713
|
+
}, z.core.$strip>>;
|
|
1714
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1715
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1716
|
+
}, z.core.$strip>]>>;
|
|
1717
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1718
|
+
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x76">, z.ZodMiniLiteral<"tempo">>;
|
|
1719
|
+
validAfter: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1720
|
+
validBefore: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1721
|
+
}, z.core.$strip>>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1722
|
+
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1723
|
+
gasPrice: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1724
|
+
v: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1725
|
+
yParity: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1726
|
+
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1727
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1728
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1729
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1730
|
+
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1731
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1732
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1733
|
+
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1734
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1735
|
+
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1736
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1737
|
+
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x0">, z.ZodMiniLiteral<"legacy">>;
|
|
1738
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1739
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1740
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1741
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1742
|
+
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1743
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1744
|
+
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1745
|
+
}, z.core.$strip>>>;
|
|
1746
|
+
gasPrice: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1747
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1748
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1749
|
+
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1750
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1751
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1752
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1753
|
+
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1754
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1755
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1756
|
+
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1757
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1758
|
+
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1759
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1760
|
+
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x1">, z.ZodMiniLiteral<"eip2930">>;
|
|
1761
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1762
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1763
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1764
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1765
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1766
|
+
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1767
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1768
|
+
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1769
|
+
}, z.core.$strip>>>;
|
|
1770
|
+
gasPrice: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1771
|
+
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1772
|
+
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1773
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1774
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1775
|
+
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1776
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1777
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1778
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1779
|
+
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1780
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1781
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1782
|
+
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1783
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1784
|
+
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1785
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1786
|
+
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x2">, z.ZodMiniLiteral<"eip1559">>;
|
|
1787
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1788
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1789
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1790
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1791
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1792
|
+
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1793
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1794
|
+
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1795
|
+
}, z.core.$strip>>>;
|
|
1796
|
+
blobVersionedHashes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1797
|
+
maxFeePerBlobGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1798
|
+
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1799
|
+
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1800
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1801
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1802
|
+
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1803
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1804
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1805
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1806
|
+
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1807
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1808
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1809
|
+
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1810
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1811
|
+
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1812
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1813
|
+
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x3">, z.ZodMiniLiteral<"eip4844">>;
|
|
1814
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1815
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1816
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1817
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1818
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1819
|
+
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1820
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1821
|
+
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1822
|
+
}, z.core.$strip>>>;
|
|
1823
|
+
authorizationList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1824
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1825
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1826
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1827
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1828
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1829
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1830
|
+
}, z.core.$strip>>>;
|
|
1831
|
+
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1832
|
+
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1833
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1834
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1835
|
+
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1836
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1837
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1838
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1839
|
+
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1840
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1841
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1842
|
+
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1843
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1844
|
+
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1845
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1846
|
+
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x4">, z.ZodMiniLiteral<"eip7702">>;
|
|
1847
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1848
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1849
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1850
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1851
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1852
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1853
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1854
|
+
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1855
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1856
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1857
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1858
|
+
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1859
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1860
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1861
|
+
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1862
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1863
|
+
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1864
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1865
|
+
type: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1866
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1867
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1868
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1869
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1870
|
+
}, z.core.$strip>]>]>;
|
|
1871
|
+
/** Encode-only tempo transaction schema accepting numberish `toRpc` inputs. */
|
|
1872
|
+
export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniObject<{
|
|
1873
|
+
type: z.ZodMiniLiteral<"0x76">;
|
|
1874
|
+
}, z.core.$loose>, z.ZodMiniObject<{
|
|
1875
|
+
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1876
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1877
|
+
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1878
|
+
}, z.core.$strip>>>;
|
|
1879
|
+
authorizationList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1880
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1881
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1882
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1883
|
+
signature: z.ZodMiniCodec<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1884
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1885
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1886
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1887
|
+
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1888
|
+
yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1889
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1890
|
+
preHash: z.ZodMiniBoolean<boolean>;
|
|
1891
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1892
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1893
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1894
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1895
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1896
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1897
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1898
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1899
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1900
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1901
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1902
|
+
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1903
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1904
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1905
|
+
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
1906
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
1907
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1908
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1909
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1910
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1911
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1912
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1913
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1914
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1915
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1916
|
+
weight: z.ZodMiniNumber<number>;
|
|
1917
|
+
}, z.core.$strip>>>;
|
|
1918
|
+
}, z.core.$strip>>;
|
|
1919
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1920
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1921
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1922
|
+
signature: z.ZodMiniObject<{
|
|
1923
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1924
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1925
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1926
|
+
}, z.core.$strip>;
|
|
1927
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1928
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1929
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1930
|
+
publicKey: z.ZodMiniObject<{
|
|
1931
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1932
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1933
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1934
|
+
}, z.core.$strip>;
|
|
1935
|
+
signature: z.ZodMiniObject<{
|
|
1936
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1937
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1938
|
+
}, z.core.$strip>;
|
|
1939
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1940
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1941
|
+
metadata: z.ZodMiniObject<{
|
|
1942
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1943
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1944
|
+
}, z.core.$strip>;
|
|
1945
|
+
publicKey: z.ZodMiniObject<{
|
|
1946
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1947
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1948
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1949
|
+
}, z.core.$strip>;
|
|
1950
|
+
signature: z.ZodMiniObject<{
|
|
1951
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1952
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1953
|
+
}, z.core.$strip>;
|
|
1954
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1955
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1956
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1957
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1958
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
1959
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1960
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1961
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1962
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1963
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1964
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1965
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1966
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1967
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1968
|
+
weight: z.ZodMiniNumber<number>;
|
|
1969
|
+
}, z.core.$strip>>>;
|
|
1970
|
+
}, z.core.$strip>>;
|
|
1971
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1972
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1973
|
+
}, z.core.$strip>]>>;
|
|
1974
|
+
}, z.core.$strip>>>>;
|
|
1975
|
+
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1976
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1977
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1978
|
+
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
1979
|
+
data: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1980
|
+
input: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1981
|
+
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1982
|
+
value: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1983
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1984
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1985
|
+
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1986
|
+
value: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1987
|
+
}, z.core.$strip>>>>;
|
|
1988
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1989
|
+
feePayer: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1990
|
+
feePayerSignature: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1991
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1992
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1993
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1994
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1995
|
+
}, z.core.$strip>>;
|
|
1996
|
+
feeToken: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1997
|
+
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1998
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1999
|
+
gasPrice: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
2000
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2001
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2002
|
+
account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2003
|
+
allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2004
|
+
selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2005
|
+
recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
|
|
2006
|
+
selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2007
|
+
}, z.core.$strip>>>>>;
|
|
2008
|
+
target: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2009
|
+
}, z.core.$strip>>>>>;
|
|
2010
|
+
chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2011
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2012
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
2013
|
+
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2014
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2015
|
+
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2016
|
+
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2017
|
+
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2018
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2019
|
+
}, z.core.$strip>>>>>;
|
|
2020
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2021
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2022
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2023
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2024
|
+
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2025
|
+
yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2026
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2027
|
+
preHash: z.ZodMiniBoolean<boolean>;
|
|
2028
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2029
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2030
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2031
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2032
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2033
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2034
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2035
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2036
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2037
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2038
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2039
|
+
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2040
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2041
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2042
|
+
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
2043
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
2044
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2045
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2046
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2047
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2048
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2049
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2050
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2051
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2052
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2053
|
+
weight: z.ZodMiniNumber<number>;
|
|
2054
|
+
}, z.core.$strip>>>;
|
|
2055
|
+
}, z.core.$strip>>;
|
|
2056
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2057
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
2058
|
+
}, z.core.$strip>]>;
|
|
2059
|
+
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2060
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2061
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2062
|
+
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
2063
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2064
|
+
chainId: z.ZodMiniBigInt<bigint>;
|
|
2065
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2066
|
+
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2067
|
+
limit: z.ZodMiniBigInt<bigint>;
|
|
2068
|
+
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2069
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2070
|
+
}, z.core.$strip>>>>;
|
|
2071
|
+
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2072
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2073
|
+
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
2074
|
+
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
2075
|
+
}, z.core.$strip>>>>;
|
|
2076
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2077
|
+
signature: z.ZodMiniObject<{
|
|
2078
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2079
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2080
|
+
yParity: z.ZodMiniNumber<number>;
|
|
2081
|
+
}, z.core.$strip>;
|
|
2082
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2083
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2084
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
2085
|
+
publicKey: z.ZodMiniObject<{
|
|
2086
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2087
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2088
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2089
|
+
}, z.core.$strip>;
|
|
2090
|
+
signature: z.ZodMiniObject<{
|
|
2091
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2092
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2093
|
+
}, z.core.$strip>;
|
|
2094
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2095
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2096
|
+
metadata: z.ZodMiniObject<{
|
|
2097
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2098
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
2099
|
+
}, z.core.$strip>;
|
|
2100
|
+
publicKey: z.ZodMiniObject<{
|
|
2101
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2102
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2103
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2104
|
+
}, z.core.$strip>;
|
|
2105
|
+
signature: z.ZodMiniObject<{
|
|
2106
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2107
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2108
|
+
}, z.core.$strip>;
|
|
2109
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2110
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2111
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
2112
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2113
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
2114
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2115
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2116
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2117
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2118
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2119
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2120
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2121
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2122
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2123
|
+
weight: z.ZodMiniNumber<number>;
|
|
2124
|
+
}, z.core.$strip>>>;
|
|
2125
|
+
}, z.core.$strip>>;
|
|
2126
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2127
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
2128
|
+
}, z.core.$strip>]>;
|
|
2129
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2130
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2131
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2132
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2133
|
+
chainId: z.ZodMiniBigInt<bigint>;
|
|
2134
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2135
|
+
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2136
|
+
limit: z.ZodMiniBigInt<bigint>;
|
|
2137
|
+
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2138
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2139
|
+
}, z.core.$strip>>>>;
|
|
2140
|
+
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2141
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2142
|
+
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
2143
|
+
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
2144
|
+
}, z.core.$strip>>>>;
|
|
2145
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2146
|
+
signature: z.ZodMiniObject<{
|
|
2147
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2148
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2149
|
+
yParity: z.ZodMiniNumber<number>;
|
|
2150
|
+
}, z.core.$strip>;
|
|
2151
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2152
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2153
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
2154
|
+
publicKey: z.ZodMiniObject<{
|
|
2155
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2156
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2157
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2158
|
+
}, z.core.$strip>;
|
|
2159
|
+
signature: z.ZodMiniObject<{
|
|
2160
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2161
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2162
|
+
}, z.core.$strip>;
|
|
2163
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2164
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2165
|
+
metadata: z.ZodMiniObject<{
|
|
2166
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2167
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
2168
|
+
}, z.core.$strip>;
|
|
2169
|
+
publicKey: z.ZodMiniObject<{
|
|
2170
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2171
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2172
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2173
|
+
}, z.core.$strip>;
|
|
2174
|
+
signature: z.ZodMiniObject<{
|
|
2175
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2176
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2177
|
+
}, z.core.$strip>;
|
|
2178
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2179
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2180
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
2181
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2182
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
2183
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2184
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2185
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2186
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2187
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2188
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2189
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2190
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2191
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2192
|
+
weight: z.ZodMiniNumber<number>;
|
|
2193
|
+
}, z.core.$strip>>>;
|
|
2194
|
+
}, z.core.$strip>>;
|
|
2195
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2196
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
2197
|
+
}, z.core.$strip>]>;
|
|
2198
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2199
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2200
|
+
}, z.core.$strip>]>>>;
|
|
2201
|
+
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2202
|
+
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2203
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2204
|
+
nonceKey: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
2205
|
+
signature: z.ZodMiniCodec<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2206
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2207
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2208
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2209
|
+
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2210
|
+
yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2211
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2212
|
+
preHash: z.ZodMiniBoolean<boolean>;
|
|
2213
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2214
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2215
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2216
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2217
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2218
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2219
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2220
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2221
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2222
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2223
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2224
|
+
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2225
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2226
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2227
|
+
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
2228
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
2229
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2230
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2231
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2232
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2233
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2234
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2235
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2236
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2237
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2238
|
+
weight: z.ZodMiniNumber<number>;
|
|
2239
|
+
}, z.core.$strip>>>;
|
|
2240
|
+
}, z.core.$strip>>;
|
|
2241
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2242
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
2243
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2244
|
+
signature: z.ZodMiniObject<{
|
|
2245
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2246
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2247
|
+
yParity: z.ZodMiniNumber<number>;
|
|
2248
|
+
}, z.core.$strip>;
|
|
2249
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2250
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2251
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
2252
|
+
publicKey: z.ZodMiniObject<{
|
|
2253
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2254
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2255
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2256
|
+
}, z.core.$strip>;
|
|
2257
|
+
signature: z.ZodMiniObject<{
|
|
2258
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2259
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2260
|
+
}, z.core.$strip>;
|
|
2261
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2262
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2263
|
+
metadata: z.ZodMiniObject<{
|
|
2264
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2265
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
2266
|
+
}, z.core.$strip>;
|
|
2267
|
+
publicKey: z.ZodMiniObject<{
|
|
2268
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2269
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2270
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2271
|
+
}, z.core.$strip>;
|
|
2272
|
+
signature: z.ZodMiniObject<{
|
|
2273
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2274
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2275
|
+
}, z.core.$strip>;
|
|
2276
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2277
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2278
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
2279
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2280
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
2281
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2282
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2283
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2284
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2285
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2286
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2287
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2288
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2289
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2290
|
+
weight: z.ZodMiniNumber<number>;
|
|
2291
|
+
}, z.core.$strip>>>;
|
|
2292
|
+
}, z.core.$strip>>;
|
|
2293
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2294
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
2295
|
+
}, z.core.$strip>]>>;
|
|
2296
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
2297
|
+
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x76">, z.ZodMiniLiteral<"tempo">>;
|
|
2298
|
+
validAfter: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
2299
|
+
validBefore: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
2300
|
+
}, z.core.$strip>>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2301
|
+
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
2302
|
+
gasPrice: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2303
|
+
v: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
2304
|
+
yParity: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
2305
|
+
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2306
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2307
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
2308
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1107
2309
|
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1108
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2310
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1109
2311
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1110
2312
|
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1111
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2313
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1112
2314
|
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1113
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2315
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
2316
|
+
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x0">, z.ZodMiniLiteral<"legacy">>;
|
|
2317
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2318
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2319
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2320
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2321
|
+
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2322
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2323
|
+
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2324
|
+
}, z.core.$strip>>>;
|
|
2325
|
+
gasPrice: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2326
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
2327
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
2328
|
+
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2329
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2330
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
2331
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2332
|
+
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2333
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2334
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2335
|
+
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2336
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2337
|
+
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
2338
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1114
2339
|
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x1">, z.ZodMiniLiteral<"eip2930">>;
|
|
1115
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2340
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1116
2341
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1117
2342
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1118
|
-
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2343
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1119
2344
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1120
2345
|
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1121
2346
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1122
2347
|
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1123
2348
|
}, z.core.$strip>>>;
|
|
1124
|
-
gasPrice: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1125
|
-
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1126
|
-
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1127
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
1128
|
-
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2349
|
+
gasPrice: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
2350
|
+
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2351
|
+
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2352
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
2353
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1129
2354
|
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1130
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1131
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
2355
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2356
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1132
2357
|
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1133
2358
|
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1134
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2359
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1135
2360
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1136
2361
|
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1137
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2362
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1138
2363
|
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1139
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2364
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1140
2365
|
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x2">, z.ZodMiniLiteral<"eip1559">>;
|
|
1141
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2366
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1142
2367
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1143
2368
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1144
|
-
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2369
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1145
2370
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1146
2371
|
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1147
2372
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1148
2373
|
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1149
2374
|
}, z.core.$strip>>>;
|
|
1150
2375
|
blobVersionedHashes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1151
|
-
maxFeePerBlobGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1152
|
-
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1153
|
-
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1154
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
1155
|
-
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2376
|
+
maxFeePerBlobGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2377
|
+
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2378
|
+
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2379
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
2380
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1156
2381
|
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1157
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1158
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
2382
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2383
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1159
2384
|
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1160
2385
|
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1161
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2386
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1162
2387
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1163
2388
|
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1164
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2389
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1165
2390
|
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1166
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2391
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1167
2392
|
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x3">, z.ZodMiniLiteral<"eip4844">>;
|
|
1168
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2393
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1169
2394
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1170
2395
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1171
|
-
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2396
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1172
2397
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1173
2398
|
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1174
2399
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1176,62 +2401,68 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
1176
2401
|
}, z.core.$strip>>>;
|
|
1177
2402
|
authorizationList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1178
2403
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1179
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
1180
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2404
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
2405
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1181
2406
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1182
2407
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1183
|
-
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2408
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1184
2409
|
}, z.core.$strip>>>;
|
|
1185
|
-
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1186
|
-
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1187
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
1188
|
-
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2410
|
+
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2411
|
+
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2412
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
2413
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1189
2414
|
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1190
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1191
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
2415
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2416
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1192
2417
|
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1193
2418
|
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1194
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2419
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1195
2420
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1196
2421
|
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1197
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2422
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1198
2423
|
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1199
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2424
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1200
2425
|
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x4">, z.ZodMiniLiteral<"eip7702">>;
|
|
1201
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2426
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1202
2427
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1203
2428
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1204
|
-
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2429
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1205
2430
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1206
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
1207
|
-
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2431
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
2432
|
+
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1208
2433
|
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1209
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1210
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
2434
|
+
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2435
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1211
2436
|
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1212
2437
|
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1213
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2438
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1214
2439
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1215
2440
|
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1216
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2441
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1217
2442
|
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1218
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2443
|
+
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1219
2444
|
type: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1220
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2445
|
+
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1221
2446
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1222
2447
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1223
|
-
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat
|
|
2448
|
+
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1224
2449
|
}, z.core.$strip>]>]>;
|
|
1225
|
-
/**
|
|
1226
|
-
export declare const
|
|
2450
|
+
/** Pending tempo transaction schema (union of tempo + standard transaction types). */
|
|
2451
|
+
export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2452
|
+
type: z.ZodMiniLiteral<"0x76">;
|
|
2453
|
+
}, z.core.$loose>, z.ZodMiniObject<{
|
|
2454
|
+
blockHash: z.ZodMiniNull;
|
|
2455
|
+
blockNumber: z.ZodMiniNull;
|
|
2456
|
+
blockTimestamp: z.ZodMiniOptional<z.ZodMiniNull>;
|
|
2457
|
+
transactionIndex: z.ZodMiniNull;
|
|
1227
2458
|
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1228
2459
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1229
2460
|
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1230
2461
|
}, z.core.$strip>>>;
|
|
1231
2462
|
authorizationList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1232
2463
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1233
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.
|
|
1234
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.
|
|
2464
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
2465
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1235
2466
|
signature: z.ZodMiniCodec<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1236
2467
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1237
2468
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1260,7 +2491,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1260
2491
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1261
2492
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1262
2493
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1263
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1264
2494
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1265
2495
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1266
2496
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1313,7 +2543,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1313
2543
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1314
2544
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1315
2545
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1316
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1317
2546
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1318
2547
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1319
2548
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1326,19 +2555,17 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1326
2555
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1327
2556
|
}, z.core.$strip>]>>;
|
|
1328
2557
|
}, z.core.$strip>>>>;
|
|
1329
|
-
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1330
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1331
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1332
2558
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
2559
|
+
data: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
2560
|
+
input: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
2561
|
+
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
2562
|
+
value: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1336
2563
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1337
2564
|
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1338
2565
|
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1339
|
-
value: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.
|
|
2566
|
+
value: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1340
2567
|
}, z.core.$strip>>>>;
|
|
1341
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.
|
|
2568
|
+
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
1342
2569
|
feePayer: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1343
2570
|
feePayerSignature: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1344
2571
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1348,26 +2575,28 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1348
2575
|
}, z.core.$strip>>;
|
|
1349
2576
|
feeToken: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1350
2577
|
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1351
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.
|
|
1352
|
-
gasPrice: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.
|
|
2578
|
+
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2579
|
+
gasPrice: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1353
2580
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1354
2581
|
keyAuthorization: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniObject<{
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
2582
|
+
account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2583
|
+
allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2584
|
+
selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2585
|
+
recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
|
|
1358
2586
|
selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1359
|
-
}, z.core.$strip
|
|
2587
|
+
}, z.core.$strip>>>>>;
|
|
1360
2588
|
target: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1361
|
-
}, z.core.$strip
|
|
2589
|
+
}, z.core.$strip>>>>>;
|
|
1362
2590
|
chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1363
2591
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2592
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
1364
2593
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1365
2594
|
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1366
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2595
|
+
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1367
2596
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1368
|
-
period: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}
|
|
2597
|
+
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1369
2598
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1370
|
-
}, z.core.$strip
|
|
2599
|
+
}, z.core.$strip>>>>>;
|
|
1371
2600
|
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1372
2601
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1373
2602
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1396,7 +2625,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1396
2625
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1397
2626
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1398
2627
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1399
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1400
2628
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1401
2629
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1402
2630
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1408,6 +2636,78 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1408
2636
|
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1409
2637
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1410
2638
|
}, z.core.$strip>]>;
|
|
2639
|
+
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2640
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2641
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2642
|
+
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
2643
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2644
|
+
chainId: z.ZodMiniBigInt<bigint>;
|
|
2645
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2646
|
+
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2647
|
+
limit: z.ZodMiniBigInt<bigint>;
|
|
2648
|
+
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2649
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2650
|
+
}, z.core.$strip>>>>;
|
|
2651
|
+
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2652
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2653
|
+
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
2654
|
+
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
2655
|
+
}, z.core.$strip>>>>;
|
|
2656
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2657
|
+
signature: z.ZodMiniObject<{
|
|
2658
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2659
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2660
|
+
yParity: z.ZodMiniNumber<number>;
|
|
2661
|
+
}, z.core.$strip>;
|
|
2662
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2663
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2664
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
2665
|
+
publicKey: z.ZodMiniObject<{
|
|
2666
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2667
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2668
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2669
|
+
}, z.core.$strip>;
|
|
2670
|
+
signature: z.ZodMiniObject<{
|
|
2671
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2672
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2673
|
+
}, z.core.$strip>;
|
|
2674
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2675
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2676
|
+
metadata: z.ZodMiniObject<{
|
|
2677
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2678
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
2679
|
+
}, z.core.$strip>;
|
|
2680
|
+
publicKey: z.ZodMiniObject<{
|
|
2681
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2682
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2683
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2684
|
+
}, z.core.$strip>;
|
|
2685
|
+
signature: z.ZodMiniObject<{
|
|
2686
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2687
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2688
|
+
}, z.core.$strip>;
|
|
2689
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2690
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2691
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
2692
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2693
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
2694
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2695
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2696
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2697
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2698
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2699
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2700
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2701
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2702
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2703
|
+
weight: z.ZodMiniNumber<number>;
|
|
2704
|
+
}, z.core.$strip>>>;
|
|
2705
|
+
}, z.core.$strip>>;
|
|
2706
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2707
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
2708
|
+
}, z.core.$strip>]>;
|
|
2709
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2710
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1411
2711
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1412
2712
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1413
2713
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
@@ -1464,7 +2764,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1464
2764
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1465
2765
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1466
2766
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1467
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1468
2767
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1469
2768
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1470
2769
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1477,11 +2776,12 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1477
2776
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1478
2777
|
}, z.core.$strip>]>;
|
|
1479
2778
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
2779
|
+
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2780
|
+
}, z.core.$strip>]>>>;
|
|
2781
|
+
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2782
|
+
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2783
|
+
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2784
|
+
nonceKey: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
1485
2785
|
signature: z.ZodMiniCodec<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1486
2786
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1487
2787
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1510,7 +2810,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1510
2810
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1511
2811
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1512
2812
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1513
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1514
2813
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1515
2814
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1516
2815
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1563,7 +2862,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1563
2862
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1564
2863
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1565
2864
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1566
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1567
2865
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1568
2866
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1569
2867
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1575,162 +2873,10 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1575
2873
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1576
2874
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1577
2875
|
}, z.core.$strip>]>>;
|
|
1578
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1579
2876
|
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x76">, z.ZodMiniLiteral<"tempo">>;
|
|
1580
|
-
validAfter: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.
|
|
1581
|
-
validBefore: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.
|
|
1582
|
-
}, z.core.$strip
|
|
1583
|
-
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1584
|
-
gasPrice: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1585
|
-
v: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1586
|
-
yParity: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1587
|
-
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1588
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1589
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1590
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1591
|
-
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1592
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1593
|
-
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1594
|
-
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1595
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1596
|
-
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1597
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1598
|
-
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x0">, z.ZodMiniLiteral<"legacy">>;
|
|
1599
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1600
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1601
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1602
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1603
|
-
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1604
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1605
|
-
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1606
|
-
}, z.core.$strip>>>;
|
|
1607
|
-
gasPrice: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1608
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1609
|
-
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1610
|
-
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1611
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1612
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1613
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1614
|
-
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1615
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1616
|
-
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1617
|
-
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1618
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1619
|
-
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1620
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1621
|
-
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x1">, z.ZodMiniLiteral<"eip2930">>;
|
|
1622
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1623
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1624
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1625
|
-
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1626
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1627
|
-
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1628
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1629
|
-
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1630
|
-
}, z.core.$strip>>>;
|
|
1631
|
-
gasPrice: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1632
|
-
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1633
|
-
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1634
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1635
|
-
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1636
|
-
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1637
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1638
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1639
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1640
|
-
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1641
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1642
|
-
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1643
|
-
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1644
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1645
|
-
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1646
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1647
|
-
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x2">, z.ZodMiniLiteral<"eip1559">>;
|
|
1648
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1649
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1650
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1651
|
-
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1652
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1653
|
-
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1654
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1655
|
-
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1656
|
-
}, z.core.$strip>>>;
|
|
1657
|
-
blobVersionedHashes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1658
|
-
maxFeePerBlobGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1659
|
-
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1660
|
-
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1661
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1662
|
-
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1663
|
-
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1664
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1665
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1666
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1667
|
-
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1668
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1669
|
-
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1670
|
-
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1671
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1672
|
-
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1673
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1674
|
-
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x3">, z.ZodMiniLiteral<"eip4844">>;
|
|
1675
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1676
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1677
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1678
|
-
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1679
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1680
|
-
accessList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1681
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1682
|
-
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1683
|
-
}, z.core.$strip>>>;
|
|
1684
|
-
authorizationList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1685
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1686
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1687
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1688
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1689
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1690
|
-
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1691
|
-
}, z.core.$strip>>>;
|
|
1692
|
-
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1693
|
-
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1694
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1695
|
-
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1696
|
-
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1697
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1698
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1699
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1700
|
-
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1701
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1702
|
-
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1703
|
-
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1704
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1705
|
-
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1706
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1707
|
-
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x4">, z.ZodMiniLiteral<"eip7702">>;
|
|
1708
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1709
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1710
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1711
|
-
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1712
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1713
|
-
chainId: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1714
|
-
yParity: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1715
|
-
blockHash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1716
|
-
blockNumber: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1717
|
-
blockTimestamp: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>>;
|
|
1718
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1719
|
-
from: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1720
|
-
gas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1721
|
-
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1722
|
-
input: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1723
|
-
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1724
|
-
to: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>;
|
|
1725
|
-
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1726
|
-
type: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1727
|
-
value: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1728
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1729
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1730
|
-
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>>;
|
|
1731
|
-
}, z.core.$strip>]>]>;
|
|
1732
|
-
/** Pending tempo transaction schema. */
|
|
1733
|
-
export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2877
|
+
validAfter: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
2878
|
+
validBefore: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
2879
|
+
}, z.core.$strip>>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1734
2880
|
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1735
2881
|
gasPrice: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1736
2882
|
v: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
@@ -1879,5 +3025,5 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
1879
3025
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1880
3026
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1881
3027
|
v: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>>;
|
|
1882
|
-
}, z.core.$strip>]>;
|
|
3028
|
+
}, z.core.$strip>]>]>;
|
|
1883
3029
|
//# sourceMappingURL=Transaction.d.ts.map
|