@edgeandnode/graph-auth-kit 7.5.0-menu-1762443101417-d96e29030077c50c8ea13867e86997753a1dae42 → 7.5.0-remove-geo-wonderland-1764687102562-fe0a000a54dab5ac804f63f028448130b8140456
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/dist/{GraphAuthKitInner.context-4tahCZlU.js → GraphAuthKitInner.context-BO9AWGN6.js} +3 -2
- package/dist/client.d.ts +3813 -102
- package/dist/client.d.ts.map +1 -1
- package/dist/constants.d.ts +2 -2
- package/dist/ens/index.js +1 -1
- package/dist/{hooks-CW9U91xq.js → hooks-CyChKJkx.js} +2 -1
- package/dist/index.js +6 -6
- package/dist/inner/hooks.d.ts.map +1 -1
- package/dist/safe/SafeEthersSigner.d.ts.map +1 -1
- package/dist/safe/index.js +3 -3
- package/dist/safe/utils.d.ts.map +1 -1
- package/dist/test-harness/index.js +1 -1
- package/dist/test-harness/utils.d.ts +2 -2
- package/dist/{useGraphAuthKitEnsNames-DSfxgVd2.js → useGraphAuthKitEnsNames-D9Yn-OnO.js} +2 -2
- package/dist/{useWaitForSafeTransaction-qzXyQLlA.js → useWaitForSafeTransaction-DnrHaXbJ.js} +2 -2
- package/dist/{utils-DhU0bGPc.js → utils-BhLWRLN_.js} +4 -4
- package/package.json +17 -17
package/dist/client.d.ts
CHANGED
|
@@ -81,7 +81,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
81
81
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
82
82
|
rpcUrls: {
|
|
83
83
|
readonly default: {
|
|
84
|
-
readonly http: readonly ["https://
|
|
84
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
87
|
sourceId?: number | undefined | undefined;
|
|
@@ -237,7 +237,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
237
237
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
238
238
|
rpcUrls: {
|
|
239
239
|
readonly default: {
|
|
240
|
-
readonly http: readonly ["https://
|
|
240
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
241
241
|
};
|
|
242
242
|
};
|
|
243
243
|
sourceId?: number | undefined | undefined;
|
|
@@ -406,7 +406,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
406
406
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
407
407
|
rpcUrls: {
|
|
408
408
|
readonly default: {
|
|
409
|
-
readonly http: readonly ["https://
|
|
409
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
410
410
|
};
|
|
411
411
|
};
|
|
412
412
|
sourceId?: number | undefined | undefined;
|
|
@@ -574,7 +574,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
574
574
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
575
575
|
rpcUrls: {
|
|
576
576
|
readonly default: {
|
|
577
|
-
readonly http: readonly ["https://
|
|
577
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
578
578
|
};
|
|
579
579
|
};
|
|
580
580
|
sourceId?: number | undefined | undefined;
|
|
@@ -731,7 +731,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
731
731
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
732
732
|
rpcUrls: {
|
|
733
733
|
readonly default: {
|
|
734
|
-
readonly http: readonly ["https://
|
|
734
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
735
735
|
};
|
|
736
736
|
};
|
|
737
737
|
sourceId?: number | undefined | undefined;
|
|
@@ -819,10 +819,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
819
819
|
gasUsed: bigint;
|
|
820
820
|
}>;
|
|
821
821
|
createBlockFilter: () => Promise<import('viem').CreateBlockFilterReturnType>;
|
|
822
|
-
createContractEventFilter: <const abi extends import('
|
|
823
|
-
createEventFilter: <const abiEvent extends import('
|
|
822
|
+
createContractEventFilter: <const abi extends import('abitype').Abi | readonly unknown[], eventName extends import('viem').ContractEventName<abi> | undefined, args extends import('viem').MaybeExtractEventArgsFromAbi<abi, eventName> | undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args: import('viem').CreateContractEventFilterParameters<abi, eventName, args, strict, fromBlock, toBlock>) => Promise<import('viem').CreateContractEventFilterReturnType<abi, eventName, args, strict, fromBlock, toBlock>>;
|
|
823
|
+
createEventFilter: <const abiEvent extends import('abitype').AbiEvent | undefined = undefined, const abiEvents extends readonly import('abitype').AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import('abitype').AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, _EventName extends string | undefined = import('viem').MaybeAbiEventName<abiEvent>, _Args extends import('viem').MaybeExtractEventArgsFromAbi<abiEvents, _EventName> | undefined = undefined>(args?: import('viem').CreateEventFilterParameters<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args> | undefined) => Promise<import('viem').CreateEventFilterReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args>>;
|
|
824
824
|
createPendingTransactionFilter: () => Promise<import('viem').CreatePendingTransactionFilterReturnType>;
|
|
825
|
-
estimateContractGas: <chain extends import('viem').Chain | undefined, const abi extends import('
|
|
825
|
+
estimateContractGas: <chain extends import('viem').Chain | undefined, const abi extends import('abitype').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, args extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>>(args: import('viem').EstimateContractGasParameters<abi, functionName, args, chain>) => Promise<import('viem').EstimateContractGasReturnType>;
|
|
826
826
|
estimateGas: (args: import('viem').EstimateGasParameters<{
|
|
827
827
|
graphCliName: string;
|
|
828
828
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
@@ -896,7 +896,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
896
896
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
897
897
|
rpcUrls: {
|
|
898
898
|
readonly default: {
|
|
899
|
-
readonly http: readonly ["https://
|
|
899
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
900
900
|
};
|
|
901
901
|
};
|
|
902
902
|
sourceId?: number | undefined | undefined;
|
|
@@ -994,7 +994,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
994
994
|
extraData: import('viem').Hex;
|
|
995
995
|
gasLimit: bigint;
|
|
996
996
|
gasUsed: bigint;
|
|
997
|
-
miner: import('
|
|
997
|
+
miner: import('abitype').Address;
|
|
998
998
|
mixHash: import('viem').Hash;
|
|
999
999
|
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1000
1000
|
parentHash: import('viem').Hash;
|
|
@@ -1010,10 +1010,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1010
1010
|
withdrawals?: import('viem').Withdrawal[] | undefined | undefined;
|
|
1011
1011
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1012
1012
|
transactions: includeTransactions extends true ? ({
|
|
1013
|
-
from: import('
|
|
1013
|
+
from: import('abitype').Address;
|
|
1014
1014
|
gas: bigint;
|
|
1015
1015
|
nonce: number;
|
|
1016
|
-
to: import('
|
|
1016
|
+
to: import('abitype').Address | null;
|
|
1017
1017
|
type: "legacy";
|
|
1018
1018
|
value: bigint;
|
|
1019
1019
|
r: import('viem').Hex;
|
|
@@ -1035,10 +1035,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1035
1035
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
|
|
1036
1036
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
1037
1037
|
} | {
|
|
1038
|
-
from: import('
|
|
1038
|
+
from: import('abitype').Address;
|
|
1039
1039
|
gas: bigint;
|
|
1040
1040
|
nonce: number;
|
|
1041
|
-
to: import('
|
|
1041
|
+
to: import('abitype').Address | null;
|
|
1042
1042
|
type: "eip2930";
|
|
1043
1043
|
value: bigint;
|
|
1044
1044
|
r: import('viem').Hex;
|
|
@@ -1060,10 +1060,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1060
1060
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
|
|
1061
1061
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
1062
1062
|
} | {
|
|
1063
|
-
from: import('
|
|
1063
|
+
from: import('abitype').Address;
|
|
1064
1064
|
gas: bigint;
|
|
1065
1065
|
nonce: number;
|
|
1066
|
-
to: import('
|
|
1066
|
+
to: import('abitype').Address | null;
|
|
1067
1067
|
type: "eip1559";
|
|
1068
1068
|
value: bigint;
|
|
1069
1069
|
r: import('viem').Hex;
|
|
@@ -1085,10 +1085,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1085
1085
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
|
|
1086
1086
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
1087
1087
|
} | {
|
|
1088
|
-
from: import('
|
|
1088
|
+
from: import('abitype').Address;
|
|
1089
1089
|
gas: bigint;
|
|
1090
1090
|
nonce: number;
|
|
1091
|
-
to: import('
|
|
1091
|
+
to: import('abitype').Address | null;
|
|
1092
1092
|
type: "eip4844";
|
|
1093
1093
|
value: bigint;
|
|
1094
1094
|
r: import('viem').Hex;
|
|
@@ -1110,10 +1110,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1110
1110
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
|
|
1111
1111
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
1112
1112
|
} | {
|
|
1113
|
-
from: import('
|
|
1113
|
+
from: import('abitype').Address;
|
|
1114
1114
|
gas: bigint;
|
|
1115
1115
|
nonce: number;
|
|
1116
|
-
to: import('
|
|
1116
|
+
to: import('abitype').Address | null;
|
|
1117
1117
|
type: "eip7702";
|
|
1118
1118
|
value: bigint;
|
|
1119
1119
|
r: import('viem').Hex;
|
|
@@ -1141,7 +1141,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1141
1141
|
getBytecode: (args: import('viem').GetBytecodeParameters) => Promise<import('viem').GetBytecodeReturnType>;
|
|
1142
1142
|
getChainId: () => Promise<import('viem').GetChainIdReturnType>;
|
|
1143
1143
|
getCode: (args: import('viem').GetBytecodeParameters) => Promise<import('viem').GetBytecodeReturnType>;
|
|
1144
|
-
getContractEvents: <const abi extends import('
|
|
1144
|
+
getContractEvents: <const abi extends import('abitype').Abi | readonly unknown[], eventName extends import('viem').ContractEventName<abi> | undefined = undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args: import('viem').GetContractEventsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import('viem').GetContractEventsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
1145
1145
|
getEip712Domain: (args: import('viem').GetEip712DomainParameters) => Promise<import('viem').GetEip712DomainReturnType>;
|
|
1146
1146
|
getEnsAddress: (args: import('viem').GetEnsAddressParameters) => Promise<import('viem').GetEnsAddressReturnType>;
|
|
1147
1147
|
getEnsAvatar: (args: import('viem').GetEnsAvatarParameters) => Promise<import('viem').GetEnsAvatarReturnType>;
|
|
@@ -1222,7 +1222,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1222
1222
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1223
1223
|
rpcUrls: {
|
|
1224
1224
|
readonly default: {
|
|
1225
|
-
readonly http: readonly ["https://
|
|
1225
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
1226
1226
|
};
|
|
1227
1227
|
};
|
|
1228
1228
|
sourceId?: number | undefined | undefined;
|
|
@@ -1306,20 +1306,20 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1306
1306
|
formatters?: undefined;
|
|
1307
1307
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1308
1308
|
}, chainOverride, type> | undefined) => Promise<import('viem').EstimateFeesPerGasReturnType<type>>;
|
|
1309
|
-
getFilterChanges: <filterType extends import('viem').FilterType, const abi extends import('
|
|
1310
|
-
getFilterLogs: <const abi extends import('
|
|
1309
|
+
getFilterChanges: <filterType extends import('viem').FilterType, const abi extends import('abitype').Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args: import('viem').GetFilterChangesParameters<filterType, abi, eventName, strict, fromBlock, toBlock>) => Promise<import('viem').GetFilterChangesReturnType<filterType, abi, eventName, strict, fromBlock, toBlock>>;
|
|
1310
|
+
getFilterLogs: <const abi extends import('abitype').Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args: import('viem').GetFilterLogsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import('viem').GetFilterLogsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
1311
1311
|
getGasPrice: () => Promise<import('viem').GetGasPriceReturnType>;
|
|
1312
|
-
getLogs: <const abiEvent extends import('
|
|
1312
|
+
getLogs: <const abiEvent extends import('abitype').AbiEvent | undefined = undefined, const abiEvents extends readonly import('abitype').AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import('abitype').AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args?: import('viem').GetLogsParameters<abiEvent, abiEvents, strict, fromBlock, toBlock> | undefined) => Promise<import('viem').GetLogsReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock>>;
|
|
1313
1313
|
getProof: (args: import('viem').GetProofParameters) => Promise<import('viem').GetProofReturnType>;
|
|
1314
1314
|
estimateMaxPriorityFeePerGas: <chainOverride extends import('viem').Chain | undefined = undefined>(args?: {
|
|
1315
1315
|
chain?: chainOverride | null | undefined;
|
|
1316
1316
|
} | undefined) => Promise<import('viem').EstimateMaxPriorityFeePerGasReturnType>;
|
|
1317
1317
|
getStorageAt: (args: import('viem').GetStorageAtParameters) => Promise<import('viem').GetStorageAtReturnType>;
|
|
1318
1318
|
getTransaction: <blockTag extends import('viem').BlockTag = "latest">(args: import('viem').GetTransactionParameters<blockTag>) => Promise<{
|
|
1319
|
-
from: import('
|
|
1319
|
+
from: import('abitype').Address;
|
|
1320
1320
|
gas: bigint;
|
|
1321
1321
|
nonce: number;
|
|
1322
|
-
to: import('
|
|
1322
|
+
to: import('abitype').Address | null;
|
|
1323
1323
|
type: "legacy";
|
|
1324
1324
|
value: bigint;
|
|
1325
1325
|
r: import('viem').Hex;
|
|
@@ -1341,10 +1341,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1341
1341
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
|
|
1342
1342
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
1343
1343
|
} | {
|
|
1344
|
-
from: import('
|
|
1344
|
+
from: import('abitype').Address;
|
|
1345
1345
|
gas: bigint;
|
|
1346
1346
|
nonce: number;
|
|
1347
|
-
to: import('
|
|
1347
|
+
to: import('abitype').Address | null;
|
|
1348
1348
|
type: "eip2930";
|
|
1349
1349
|
value: bigint;
|
|
1350
1350
|
r: import('viem').Hex;
|
|
@@ -1366,10 +1366,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1366
1366
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
|
|
1367
1367
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
1368
1368
|
} | {
|
|
1369
|
-
from: import('
|
|
1369
|
+
from: import('abitype').Address;
|
|
1370
1370
|
gas: bigint;
|
|
1371
1371
|
nonce: number;
|
|
1372
|
-
to: import('
|
|
1372
|
+
to: import('abitype').Address | null;
|
|
1373
1373
|
type: "eip1559";
|
|
1374
1374
|
value: bigint;
|
|
1375
1375
|
r: import('viem').Hex;
|
|
@@ -1391,10 +1391,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1391
1391
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
|
|
1392
1392
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
1393
1393
|
} | {
|
|
1394
|
-
from: import('
|
|
1394
|
+
from: import('abitype').Address;
|
|
1395
1395
|
gas: bigint;
|
|
1396
1396
|
nonce: number;
|
|
1397
|
-
to: import('
|
|
1397
|
+
to: import('abitype').Address | null;
|
|
1398
1398
|
type: "eip4844";
|
|
1399
1399
|
value: bigint;
|
|
1400
1400
|
r: import('viem').Hex;
|
|
@@ -1416,10 +1416,10 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1416
1416
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
|
|
1417
1417
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
1418
1418
|
} | {
|
|
1419
|
-
from: import('
|
|
1419
|
+
from: import('abitype').Address;
|
|
1420
1420
|
gas: bigint;
|
|
1421
1421
|
nonce: number;
|
|
1422
|
-
to: import('
|
|
1422
|
+
to: import('abitype').Address | null;
|
|
1423
1423
|
type: "eip7702";
|
|
1424
1424
|
value: bigint;
|
|
1425
1425
|
r: import('viem').Hex;
|
|
@@ -1514,7 +1514,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1514
1514
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1515
1515
|
rpcUrls: {
|
|
1516
1516
|
readonly default: {
|
|
1517
|
-
readonly http: readonly ["https://
|
|
1517
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
1518
1518
|
};
|
|
1519
1519
|
};
|
|
1520
1520
|
sourceId?: number | undefined | undefined;
|
|
@@ -1674,7 +1674,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1674
1674
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1675
1675
|
rpcUrls: {
|
|
1676
1676
|
readonly default: {
|
|
1677
|
-
readonly http: readonly ["https://
|
|
1677
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
1678
1678
|
};
|
|
1679
1679
|
};
|
|
1680
1680
|
sourceId?: number | undefined | undefined;
|
|
@@ -1757,7 +1757,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1757
1757
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
1758
1758
|
formatters?: undefined;
|
|
1759
1759
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1760
|
-
}, chainOverride>, chainOverride extends import('viem').Chain | undefined = undefined, accountOverride extends import('viem').Account | import('
|
|
1760
|
+
}, chainOverride>, chainOverride extends import('viem').Chain | undefined = undefined, accountOverride extends import('viem').Account | import('abitype').Address | undefined = undefined>(args: import('viem').PrepareTransactionRequestParameters<{
|
|
1761
1761
|
graphCliName: string;
|
|
1762
1762
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
1763
1763
|
blockExplorers: {
|
|
@@ -1830,7 +1830,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1830
1830
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1831
1831
|
rpcUrls: {
|
|
1832
1832
|
readonly default: {
|
|
1833
|
-
readonly http: readonly ["https://
|
|
1833
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
1834
1834
|
};
|
|
1835
1835
|
};
|
|
1836
1836
|
sourceId?: number | undefined | undefined;
|
|
@@ -1986,7 +1986,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1986
1986
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1987
1987
|
rpcUrls: {
|
|
1988
1988
|
readonly default: {
|
|
1989
|
-
readonly http: readonly ["https://
|
|
1989
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
1990
1990
|
};
|
|
1991
1991
|
};
|
|
1992
1992
|
sourceId?: number | undefined | undefined;
|
|
@@ -2142,7 +2142,3727 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2142
2142
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2143
2143
|
rpcUrls: {
|
|
2144
2144
|
readonly default: {
|
|
2145
|
-
readonly http: readonly ["https://
|
|
2145
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
2146
|
+
};
|
|
2147
|
+
};
|
|
2148
|
+
sourceId?: number | undefined | undefined;
|
|
2149
|
+
testnet: true;
|
|
2150
|
+
custom?: Record<string, unknown> | undefined;
|
|
2151
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2152
|
+
formatters?: undefined;
|
|
2153
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2154
|
+
} | {
|
|
2155
|
+
graphCliName: string;
|
|
2156
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2157
|
+
blockExplorers: {
|
|
2158
|
+
readonly default: {
|
|
2159
|
+
readonly name: "Arbiscan";
|
|
2160
|
+
readonly url: "https://arbiscan.io";
|
|
2161
|
+
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
2162
|
+
};
|
|
2163
|
+
};
|
|
2164
|
+
blockTime: 250;
|
|
2165
|
+
contracts: {
|
|
2166
|
+
readonly multicall3: {
|
|
2167
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2168
|
+
readonly blockCreated: 7654707;
|
|
2169
|
+
};
|
|
2170
|
+
};
|
|
2171
|
+
ensTlds?: readonly string[] | undefined;
|
|
2172
|
+
id: 42161;
|
|
2173
|
+
name: "Arbitrum One";
|
|
2174
|
+
nativeCurrency: {
|
|
2175
|
+
readonly name: "Ether";
|
|
2176
|
+
readonly symbol: "ETH";
|
|
2177
|
+
readonly decimals: 18;
|
|
2178
|
+
};
|
|
2179
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2180
|
+
rpcUrls: {
|
|
2181
|
+
readonly default: {
|
|
2182
|
+
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
2183
|
+
};
|
|
2184
|
+
};
|
|
2185
|
+
sourceId?: number | undefined | undefined;
|
|
2186
|
+
testnet?: boolean | undefined | undefined;
|
|
2187
|
+
custom?: Record<string, unknown> | undefined;
|
|
2188
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2189
|
+
formatters?: undefined;
|
|
2190
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2191
|
+
} | {
|
|
2192
|
+
graphCliName: string;
|
|
2193
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2194
|
+
blockExplorers: {
|
|
2195
|
+
readonly default: {
|
|
2196
|
+
readonly name: "Arbiscan";
|
|
2197
|
+
readonly url: "https://sepolia.arbiscan.io";
|
|
2198
|
+
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
2199
|
+
};
|
|
2200
|
+
};
|
|
2201
|
+
blockTime: 250;
|
|
2202
|
+
contracts: {
|
|
2203
|
+
readonly multicall3: {
|
|
2204
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2205
|
+
readonly blockCreated: 81930;
|
|
2206
|
+
};
|
|
2207
|
+
};
|
|
2208
|
+
ensTlds?: readonly string[] | undefined;
|
|
2209
|
+
id: 421614;
|
|
2210
|
+
name: "Arbitrum Sepolia";
|
|
2211
|
+
nativeCurrency: {
|
|
2212
|
+
readonly name: "Arbitrum Sepolia Ether";
|
|
2213
|
+
readonly symbol: "ETH";
|
|
2214
|
+
readonly decimals: 18;
|
|
2215
|
+
};
|
|
2216
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2217
|
+
rpcUrls: {
|
|
2218
|
+
readonly default: {
|
|
2219
|
+
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
2220
|
+
};
|
|
2221
|
+
};
|
|
2222
|
+
sourceId?: number | undefined | undefined;
|
|
2223
|
+
testnet: true;
|
|
2224
|
+
custom?: Record<string, unknown> | undefined;
|
|
2225
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2226
|
+
formatters?: undefined;
|
|
2227
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2228
|
+
}, chainOverride> extends infer T_14 ? T_14 extends import('viem').DeriveChain<{
|
|
2229
|
+
graphCliName: string;
|
|
2230
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2231
|
+
blockExplorers: {
|
|
2232
|
+
readonly default: {
|
|
2233
|
+
readonly name: "Etherscan";
|
|
2234
|
+
readonly url: "https://etherscan.io";
|
|
2235
|
+
readonly apiUrl: "https://api.etherscan.io/api";
|
|
2236
|
+
};
|
|
2237
|
+
};
|
|
2238
|
+
blockTime: 12000;
|
|
2239
|
+
contracts: {
|
|
2240
|
+
readonly ensUniversalResolver: {
|
|
2241
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2242
|
+
readonly blockCreated: 23085558;
|
|
2243
|
+
};
|
|
2244
|
+
readonly multicall3: {
|
|
2245
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2246
|
+
readonly blockCreated: 14353601;
|
|
2247
|
+
};
|
|
2248
|
+
};
|
|
2249
|
+
ensTlds?: readonly string[] | undefined;
|
|
2250
|
+
id: 1;
|
|
2251
|
+
name: "Ethereum";
|
|
2252
|
+
nativeCurrency: {
|
|
2253
|
+
readonly name: "Ether";
|
|
2254
|
+
readonly symbol: "ETH";
|
|
2255
|
+
readonly decimals: 18;
|
|
2256
|
+
};
|
|
2257
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2258
|
+
rpcUrls: {
|
|
2259
|
+
readonly default: {
|
|
2260
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
2261
|
+
};
|
|
2262
|
+
};
|
|
2263
|
+
sourceId?: number | undefined | undefined;
|
|
2264
|
+
testnet?: boolean | undefined | undefined;
|
|
2265
|
+
custom?: Record<string, unknown> | undefined;
|
|
2266
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2267
|
+
formatters?: undefined;
|
|
2268
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2269
|
+
} | {
|
|
2270
|
+
graphCliName: string;
|
|
2271
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2272
|
+
blockExplorers: {
|
|
2273
|
+
readonly default: {
|
|
2274
|
+
readonly name: "Etherscan";
|
|
2275
|
+
readonly url: "https://sepolia.etherscan.io";
|
|
2276
|
+
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
2277
|
+
};
|
|
2278
|
+
};
|
|
2279
|
+
blockTime?: number | undefined | undefined;
|
|
2280
|
+
contracts: {
|
|
2281
|
+
readonly multicall3: {
|
|
2282
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2283
|
+
readonly blockCreated: 751532;
|
|
2284
|
+
};
|
|
2285
|
+
readonly ensUniversalResolver: {
|
|
2286
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2287
|
+
readonly blockCreated: 8928790;
|
|
2288
|
+
};
|
|
2289
|
+
};
|
|
2290
|
+
ensTlds?: readonly string[] | undefined;
|
|
2291
|
+
id: 11155111;
|
|
2292
|
+
name: "Sepolia";
|
|
2293
|
+
nativeCurrency: {
|
|
2294
|
+
readonly name: "Sepolia Ether";
|
|
2295
|
+
readonly symbol: "ETH";
|
|
2296
|
+
readonly decimals: 18;
|
|
2297
|
+
};
|
|
2298
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2299
|
+
rpcUrls: {
|
|
2300
|
+
readonly default: {
|
|
2301
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
2302
|
+
};
|
|
2303
|
+
};
|
|
2304
|
+
sourceId?: number | undefined | undefined;
|
|
2305
|
+
testnet: true;
|
|
2306
|
+
custom?: Record<string, unknown> | undefined;
|
|
2307
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2308
|
+
formatters?: undefined;
|
|
2309
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2310
|
+
} | {
|
|
2311
|
+
graphCliName: string;
|
|
2312
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2313
|
+
blockExplorers: {
|
|
2314
|
+
readonly default: {
|
|
2315
|
+
readonly name: "Arbiscan";
|
|
2316
|
+
readonly url: "https://arbiscan.io";
|
|
2317
|
+
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
2318
|
+
};
|
|
2319
|
+
};
|
|
2320
|
+
blockTime: 250;
|
|
2321
|
+
contracts: {
|
|
2322
|
+
readonly multicall3: {
|
|
2323
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2324
|
+
readonly blockCreated: 7654707;
|
|
2325
|
+
};
|
|
2326
|
+
};
|
|
2327
|
+
ensTlds?: readonly string[] | undefined;
|
|
2328
|
+
id: 42161;
|
|
2329
|
+
name: "Arbitrum One";
|
|
2330
|
+
nativeCurrency: {
|
|
2331
|
+
readonly name: "Ether";
|
|
2332
|
+
readonly symbol: "ETH";
|
|
2333
|
+
readonly decimals: 18;
|
|
2334
|
+
};
|
|
2335
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2336
|
+
rpcUrls: {
|
|
2337
|
+
readonly default: {
|
|
2338
|
+
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
2339
|
+
};
|
|
2340
|
+
};
|
|
2341
|
+
sourceId?: number | undefined | undefined;
|
|
2342
|
+
testnet?: boolean | undefined | undefined;
|
|
2343
|
+
custom?: Record<string, unknown> | undefined;
|
|
2344
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2345
|
+
formatters?: undefined;
|
|
2346
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2347
|
+
} | {
|
|
2348
|
+
graphCliName: string;
|
|
2349
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2350
|
+
blockExplorers: {
|
|
2351
|
+
readonly default: {
|
|
2352
|
+
readonly name: "Arbiscan";
|
|
2353
|
+
readonly url: "https://sepolia.arbiscan.io";
|
|
2354
|
+
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
2355
|
+
};
|
|
2356
|
+
};
|
|
2357
|
+
blockTime: 250;
|
|
2358
|
+
contracts: {
|
|
2359
|
+
readonly multicall3: {
|
|
2360
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2361
|
+
readonly blockCreated: 81930;
|
|
2362
|
+
};
|
|
2363
|
+
};
|
|
2364
|
+
ensTlds?: readonly string[] | undefined;
|
|
2365
|
+
id: 421614;
|
|
2366
|
+
name: "Arbitrum Sepolia";
|
|
2367
|
+
nativeCurrency: {
|
|
2368
|
+
readonly name: "Arbitrum Sepolia Ether";
|
|
2369
|
+
readonly symbol: "ETH";
|
|
2370
|
+
readonly decimals: 18;
|
|
2371
|
+
};
|
|
2372
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2373
|
+
rpcUrls: {
|
|
2374
|
+
readonly default: {
|
|
2375
|
+
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
2376
|
+
};
|
|
2377
|
+
};
|
|
2378
|
+
sourceId?: number | undefined | undefined;
|
|
2379
|
+
testnet: true;
|
|
2380
|
+
custom?: Record<string, unknown> | undefined;
|
|
2381
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2382
|
+
formatters?: undefined;
|
|
2383
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2384
|
+
}, chainOverride> ? T_14 extends import('viem').Chain ? {
|
|
2385
|
+
chain: T_14;
|
|
2386
|
+
} : {
|
|
2387
|
+
chain?: undefined;
|
|
2388
|
+
} : never : never) & (import('viem').DeriveAccount<import('viem').Account | undefined, accountOverride> extends infer T_15 ? T_15 extends import('viem').DeriveAccount<import('viem').Account | undefined, accountOverride> ? T_15 extends import('viem').Account ? {
|
|
2389
|
+
account: T_15;
|
|
2390
|
+
from: import('abitype').Address;
|
|
2391
|
+
} : {
|
|
2392
|
+
account?: undefined;
|
|
2393
|
+
from?: undefined;
|
|
2394
|
+
} : never : never), import('viem').IsNever<((request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
2395
|
+
accessList?: undefined | undefined;
|
|
2396
|
+
authorizationList?: undefined | undefined;
|
|
2397
|
+
blobs?: undefined | undefined;
|
|
2398
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2399
|
+
gasPrice?: bigint | undefined;
|
|
2400
|
+
sidecars?: undefined | undefined;
|
|
2401
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2402
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2403
|
+
authorizationList?: undefined | undefined;
|
|
2404
|
+
blobs?: undefined | undefined;
|
|
2405
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2406
|
+
gasPrice?: undefined | undefined;
|
|
2407
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2408
|
+
maxFeePerGas?: bigint | undefined;
|
|
2409
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2410
|
+
sidecars?: undefined | undefined;
|
|
2411
|
+
} & (import('viem').OneOf<{
|
|
2412
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
2413
|
+
} | {
|
|
2414
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2415
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
2416
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2417
|
+
}) ? "eip1559" : never) | (request extends {
|
|
2418
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2419
|
+
authorizationList?: undefined | undefined;
|
|
2420
|
+
blobs?: undefined | undefined;
|
|
2421
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2422
|
+
gasPrice?: bigint | undefined;
|
|
2423
|
+
sidecars?: undefined | undefined;
|
|
2424
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2425
|
+
maxFeePerGas?: undefined | undefined;
|
|
2426
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2427
|
+
} & {
|
|
2428
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
2429
|
+
} ? "eip2930" : never) | (request extends ({
|
|
2430
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2431
|
+
authorizationList?: undefined | undefined;
|
|
2432
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2433
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2434
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2435
|
+
maxFeePerGas?: bigint | undefined;
|
|
2436
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2437
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2438
|
+
} | {
|
|
2439
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2440
|
+
authorizationList?: undefined | undefined;
|
|
2441
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2442
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2443
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2444
|
+
maxFeePerGas?: bigint | undefined;
|
|
2445
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2446
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2447
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
2448
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
2449
|
+
} | {
|
|
2450
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2451
|
+
} | {
|
|
2452
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
2453
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2454
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2455
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2456
|
+
blobs?: undefined | undefined;
|
|
2457
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2458
|
+
gasPrice?: undefined | undefined;
|
|
2459
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2460
|
+
maxFeePerGas?: bigint | undefined;
|
|
2461
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2462
|
+
sidecars?: undefined | undefined;
|
|
2463
|
+
} | {
|
|
2464
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2465
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2466
|
+
blobs?: undefined | undefined;
|
|
2467
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2468
|
+
gasPrice?: undefined | undefined;
|
|
2469
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2470
|
+
maxFeePerGas?: bigint | undefined;
|
|
2471
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2472
|
+
sidecars?: undefined | undefined;
|
|
2473
|
+
}) & {
|
|
2474
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
2475
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
2476
|
+
accessList?: undefined | undefined;
|
|
2477
|
+
authorizationList?: undefined | undefined;
|
|
2478
|
+
blobs?: undefined | undefined;
|
|
2479
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2480
|
+
gasPrice?: bigint | undefined;
|
|
2481
|
+
sidecars?: undefined | undefined;
|
|
2482
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2483
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2484
|
+
authorizationList?: undefined | undefined;
|
|
2485
|
+
blobs?: undefined | undefined;
|
|
2486
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2487
|
+
gasPrice?: undefined | undefined;
|
|
2488
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2489
|
+
maxFeePerGas?: bigint | undefined;
|
|
2490
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2491
|
+
sidecars?: undefined | undefined;
|
|
2492
|
+
} & (import('viem').OneOf<{
|
|
2493
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
2494
|
+
} | {
|
|
2495
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2496
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
2497
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2498
|
+
}) ? "eip1559" : never) | (request extends {
|
|
2499
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2500
|
+
authorizationList?: undefined | undefined;
|
|
2501
|
+
blobs?: undefined | undefined;
|
|
2502
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2503
|
+
gasPrice?: bigint | undefined;
|
|
2504
|
+
sidecars?: undefined | undefined;
|
|
2505
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2506
|
+
maxFeePerGas?: undefined | undefined;
|
|
2507
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2508
|
+
} & {
|
|
2509
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
2510
|
+
} ? "eip2930" : never) | (request extends ({
|
|
2511
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2512
|
+
authorizationList?: undefined | undefined;
|
|
2513
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2514
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2515
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2516
|
+
maxFeePerGas?: bigint | undefined;
|
|
2517
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2518
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2519
|
+
} | {
|
|
2520
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2521
|
+
authorizationList?: undefined | undefined;
|
|
2522
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2523
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2524
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2525
|
+
maxFeePerGas?: bigint | undefined;
|
|
2526
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2527
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2528
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
2529
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
2530
|
+
} | {
|
|
2531
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2532
|
+
} | {
|
|
2533
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
2534
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2535
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2536
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2537
|
+
blobs?: undefined | undefined;
|
|
2538
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2539
|
+
gasPrice?: undefined | undefined;
|
|
2540
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2541
|
+
maxFeePerGas?: bigint | undefined;
|
|
2542
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2543
|
+
sidecars?: undefined | undefined;
|
|
2544
|
+
} | {
|
|
2545
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2546
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2547
|
+
blobs?: undefined | undefined;
|
|
2548
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2549
|
+
gasPrice?: undefined | undefined;
|
|
2550
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2551
|
+
maxFeePerGas?: bigint | undefined;
|
|
2552
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2553
|
+
sidecars?: undefined | undefined;
|
|
2554
|
+
}) & {
|
|
2555
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
2556
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_16 ? T_16 extends (request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
2557
|
+
accessList?: undefined | undefined;
|
|
2558
|
+
authorizationList?: undefined | undefined;
|
|
2559
|
+
blobs?: undefined | undefined;
|
|
2560
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2561
|
+
gasPrice?: bigint | undefined;
|
|
2562
|
+
sidecars?: undefined | undefined;
|
|
2563
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2564
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2565
|
+
authorizationList?: undefined | undefined;
|
|
2566
|
+
blobs?: undefined | undefined;
|
|
2567
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2568
|
+
gasPrice?: undefined | undefined;
|
|
2569
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2570
|
+
maxFeePerGas?: bigint | undefined;
|
|
2571
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2572
|
+
sidecars?: undefined | undefined;
|
|
2573
|
+
} & (import('viem').OneOf<{
|
|
2574
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
2575
|
+
} | {
|
|
2576
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2577
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
2578
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2579
|
+
}) ? "eip1559" : never) | (request extends {
|
|
2580
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2581
|
+
authorizationList?: undefined | undefined;
|
|
2582
|
+
blobs?: undefined | undefined;
|
|
2583
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2584
|
+
gasPrice?: bigint | undefined;
|
|
2585
|
+
sidecars?: undefined | undefined;
|
|
2586
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2587
|
+
maxFeePerGas?: undefined | undefined;
|
|
2588
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2589
|
+
} & {
|
|
2590
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
2591
|
+
} ? "eip2930" : never) | (request extends ({
|
|
2592
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2593
|
+
authorizationList?: undefined | undefined;
|
|
2594
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2595
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2596
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2597
|
+
maxFeePerGas?: bigint | undefined;
|
|
2598
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2599
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2600
|
+
} | {
|
|
2601
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2602
|
+
authorizationList?: undefined | undefined;
|
|
2603
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2604
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2605
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2606
|
+
maxFeePerGas?: bigint | undefined;
|
|
2607
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2608
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2609
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
2610
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
2611
|
+
} | {
|
|
2612
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2613
|
+
} | {
|
|
2614
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
2615
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2616
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2617
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2618
|
+
blobs?: undefined | undefined;
|
|
2619
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2620
|
+
gasPrice?: undefined | undefined;
|
|
2621
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2622
|
+
maxFeePerGas?: bigint | undefined;
|
|
2623
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2624
|
+
sidecars?: undefined | undefined;
|
|
2625
|
+
} | {
|
|
2626
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2627
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2628
|
+
blobs?: undefined | undefined;
|
|
2629
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2630
|
+
gasPrice?: undefined | undefined;
|
|
2631
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2632
|
+
maxFeePerGas?: bigint | undefined;
|
|
2633
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2634
|
+
sidecars?: undefined | undefined;
|
|
2635
|
+
}) & {
|
|
2636
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
2637
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
2638
|
+
accessList?: undefined | undefined;
|
|
2639
|
+
authorizationList?: undefined | undefined;
|
|
2640
|
+
blobs?: undefined | undefined;
|
|
2641
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2642
|
+
gasPrice?: bigint | undefined;
|
|
2643
|
+
sidecars?: undefined | undefined;
|
|
2644
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2645
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2646
|
+
authorizationList?: undefined | undefined;
|
|
2647
|
+
blobs?: undefined | undefined;
|
|
2648
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2649
|
+
gasPrice?: undefined | undefined;
|
|
2650
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2651
|
+
maxFeePerGas?: bigint | undefined;
|
|
2652
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2653
|
+
sidecars?: undefined | undefined;
|
|
2654
|
+
} & (import('viem').OneOf<{
|
|
2655
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
2656
|
+
} | {
|
|
2657
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2658
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
2659
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2660
|
+
}) ? "eip1559" : never) | (request extends {
|
|
2661
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2662
|
+
authorizationList?: undefined | undefined;
|
|
2663
|
+
blobs?: undefined | undefined;
|
|
2664
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2665
|
+
gasPrice?: bigint | undefined;
|
|
2666
|
+
sidecars?: undefined | undefined;
|
|
2667
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2668
|
+
maxFeePerGas?: undefined | undefined;
|
|
2669
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2670
|
+
} & {
|
|
2671
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
2672
|
+
} ? "eip2930" : never) | (request extends ({
|
|
2673
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2674
|
+
authorizationList?: undefined | undefined;
|
|
2675
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2676
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2677
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2678
|
+
maxFeePerGas?: bigint | undefined;
|
|
2679
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2680
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2681
|
+
} | {
|
|
2682
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2683
|
+
authorizationList?: undefined | undefined;
|
|
2684
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2685
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2686
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2687
|
+
maxFeePerGas?: bigint | undefined;
|
|
2688
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2689
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2690
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
2691
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
2692
|
+
} | {
|
|
2693
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2694
|
+
} | {
|
|
2695
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
2696
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2697
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2698
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2699
|
+
blobs?: undefined | undefined;
|
|
2700
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2701
|
+
gasPrice?: undefined | undefined;
|
|
2702
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2703
|
+
maxFeePerGas?: bigint | undefined;
|
|
2704
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2705
|
+
sidecars?: undefined | undefined;
|
|
2706
|
+
} | {
|
|
2707
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2708
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2709
|
+
blobs?: undefined | undefined;
|
|
2710
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2711
|
+
gasPrice?: undefined | undefined;
|
|
2712
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2713
|
+
maxFeePerGas?: bigint | undefined;
|
|
2714
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2715
|
+
sidecars?: undefined | undefined;
|
|
2716
|
+
}) & {
|
|
2717
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
2718
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_16 extends "legacy" ? import('viem').TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
2719
|
+
accessList?: undefined | undefined;
|
|
2720
|
+
authorizationList?: undefined | undefined;
|
|
2721
|
+
blobs?: undefined | undefined;
|
|
2722
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2723
|
+
gasPrice?: bigint | undefined;
|
|
2724
|
+
sidecars?: undefined | undefined;
|
|
2725
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2726
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2727
|
+
authorizationList?: undefined | undefined;
|
|
2728
|
+
blobs?: undefined | undefined;
|
|
2729
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2730
|
+
gasPrice?: undefined | undefined;
|
|
2731
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2732
|
+
maxFeePerGas?: bigint | undefined;
|
|
2733
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2734
|
+
sidecars?: undefined | undefined;
|
|
2735
|
+
} & (import('viem').OneOf<{
|
|
2736
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
2737
|
+
} | {
|
|
2738
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2739
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
2740
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2741
|
+
}) ? "eip1559" : never) | (request extends {
|
|
2742
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2743
|
+
authorizationList?: undefined | undefined;
|
|
2744
|
+
blobs?: undefined | undefined;
|
|
2745
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2746
|
+
gasPrice?: bigint | undefined;
|
|
2747
|
+
sidecars?: undefined | undefined;
|
|
2748
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2749
|
+
maxFeePerGas?: undefined | undefined;
|
|
2750
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2751
|
+
} & {
|
|
2752
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
2753
|
+
} ? "eip2930" : never) | (request extends ({
|
|
2754
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2755
|
+
authorizationList?: undefined | undefined;
|
|
2756
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2757
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2758
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2759
|
+
maxFeePerGas?: bigint | undefined;
|
|
2760
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2761
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2762
|
+
} | {
|
|
2763
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2764
|
+
authorizationList?: undefined | undefined;
|
|
2765
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2766
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2767
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2768
|
+
maxFeePerGas?: bigint | undefined;
|
|
2769
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2770
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2771
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
2772
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
2773
|
+
} | {
|
|
2774
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2775
|
+
} | {
|
|
2776
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
2777
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2778
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2779
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2780
|
+
blobs?: undefined | undefined;
|
|
2781
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2782
|
+
gasPrice?: undefined | undefined;
|
|
2783
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2784
|
+
maxFeePerGas?: bigint | undefined;
|
|
2785
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2786
|
+
sidecars?: undefined | undefined;
|
|
2787
|
+
} | {
|
|
2788
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2789
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2790
|
+
blobs?: undefined | undefined;
|
|
2791
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2792
|
+
gasPrice?: undefined | undefined;
|
|
2793
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2794
|
+
maxFeePerGas?: bigint | undefined;
|
|
2795
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2796
|
+
sidecars?: undefined | undefined;
|
|
2797
|
+
}) & {
|
|
2798
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
2799
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
2800
|
+
accessList?: undefined | undefined;
|
|
2801
|
+
authorizationList?: undefined | undefined;
|
|
2802
|
+
blobs?: undefined | undefined;
|
|
2803
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2804
|
+
gasPrice?: bigint | undefined;
|
|
2805
|
+
sidecars?: undefined | undefined;
|
|
2806
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2807
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2808
|
+
authorizationList?: undefined | undefined;
|
|
2809
|
+
blobs?: undefined | undefined;
|
|
2810
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2811
|
+
gasPrice?: undefined | undefined;
|
|
2812
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2813
|
+
maxFeePerGas?: bigint | undefined;
|
|
2814
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2815
|
+
sidecars?: undefined | undefined;
|
|
2816
|
+
} & (import('viem').OneOf<{
|
|
2817
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
2818
|
+
} | {
|
|
2819
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2820
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
2821
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2822
|
+
}) ? "eip1559" : never) | (request extends {
|
|
2823
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2824
|
+
authorizationList?: undefined | undefined;
|
|
2825
|
+
blobs?: undefined | undefined;
|
|
2826
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2827
|
+
gasPrice?: bigint | undefined;
|
|
2828
|
+
sidecars?: undefined | undefined;
|
|
2829
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2830
|
+
maxFeePerGas?: undefined | undefined;
|
|
2831
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2832
|
+
} & {
|
|
2833
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
2834
|
+
} ? "eip2930" : never) | (request extends ({
|
|
2835
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2836
|
+
authorizationList?: undefined | undefined;
|
|
2837
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2838
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2839
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2840
|
+
maxFeePerGas?: bigint | undefined;
|
|
2841
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2842
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2843
|
+
} | {
|
|
2844
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2845
|
+
authorizationList?: undefined | undefined;
|
|
2846
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2847
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2848
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2849
|
+
maxFeePerGas?: bigint | undefined;
|
|
2850
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2851
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2852
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
2853
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
2854
|
+
} | {
|
|
2855
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2856
|
+
} | {
|
|
2857
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
2858
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2859
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2860
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2861
|
+
blobs?: undefined | undefined;
|
|
2862
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2863
|
+
gasPrice?: undefined | undefined;
|
|
2864
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2865
|
+
maxFeePerGas?: bigint | undefined;
|
|
2866
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2867
|
+
sidecars?: undefined | undefined;
|
|
2868
|
+
} | {
|
|
2869
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2870
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2871
|
+
blobs?: undefined | undefined;
|
|
2872
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2873
|
+
gasPrice?: undefined | undefined;
|
|
2874
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2875
|
+
maxFeePerGas?: bigint | undefined;
|
|
2876
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2877
|
+
sidecars?: undefined | undefined;
|
|
2878
|
+
}) & {
|
|
2879
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
2880
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_17 ? T_17 extends (request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
2881
|
+
accessList?: undefined | undefined;
|
|
2882
|
+
authorizationList?: undefined | undefined;
|
|
2883
|
+
blobs?: undefined | undefined;
|
|
2884
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2885
|
+
gasPrice?: bigint | undefined;
|
|
2886
|
+
sidecars?: undefined | undefined;
|
|
2887
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2888
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2889
|
+
authorizationList?: undefined | undefined;
|
|
2890
|
+
blobs?: undefined | undefined;
|
|
2891
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2892
|
+
gasPrice?: undefined | undefined;
|
|
2893
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2894
|
+
maxFeePerGas?: bigint | undefined;
|
|
2895
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2896
|
+
sidecars?: undefined | undefined;
|
|
2897
|
+
} & (import('viem').OneOf<{
|
|
2898
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
2899
|
+
} | {
|
|
2900
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2901
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
2902
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2903
|
+
}) ? "eip1559" : never) | (request extends {
|
|
2904
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2905
|
+
authorizationList?: undefined | undefined;
|
|
2906
|
+
blobs?: undefined | undefined;
|
|
2907
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2908
|
+
gasPrice?: bigint | undefined;
|
|
2909
|
+
sidecars?: undefined | undefined;
|
|
2910
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2911
|
+
maxFeePerGas?: undefined | undefined;
|
|
2912
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2913
|
+
} & {
|
|
2914
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
2915
|
+
} ? "eip2930" : never) | (request extends ({
|
|
2916
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2917
|
+
authorizationList?: undefined | undefined;
|
|
2918
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2919
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2920
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2921
|
+
maxFeePerGas?: bigint | undefined;
|
|
2922
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2923
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2924
|
+
} | {
|
|
2925
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2926
|
+
authorizationList?: undefined | undefined;
|
|
2927
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
2928
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2929
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2930
|
+
maxFeePerGas?: bigint | undefined;
|
|
2931
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2932
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
2933
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
2934
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
2935
|
+
} | {
|
|
2936
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2937
|
+
} | {
|
|
2938
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
2939
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2940
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2941
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2942
|
+
blobs?: undefined | undefined;
|
|
2943
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2944
|
+
gasPrice?: undefined | undefined;
|
|
2945
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2946
|
+
maxFeePerGas?: bigint | undefined;
|
|
2947
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2948
|
+
sidecars?: undefined | undefined;
|
|
2949
|
+
} | {
|
|
2950
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2951
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
2952
|
+
blobs?: undefined | undefined;
|
|
2953
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2954
|
+
gasPrice?: undefined | undefined;
|
|
2955
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2956
|
+
maxFeePerGas?: bigint | undefined;
|
|
2957
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2958
|
+
sidecars?: undefined | undefined;
|
|
2959
|
+
}) & {
|
|
2960
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
2961
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
2962
|
+
accessList?: undefined | undefined;
|
|
2963
|
+
authorizationList?: undefined | undefined;
|
|
2964
|
+
blobs?: undefined | undefined;
|
|
2965
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2966
|
+
gasPrice?: bigint | undefined;
|
|
2967
|
+
sidecars?: undefined | undefined;
|
|
2968
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2969
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2970
|
+
authorizationList?: undefined | undefined;
|
|
2971
|
+
blobs?: undefined | undefined;
|
|
2972
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2973
|
+
gasPrice?: undefined | undefined;
|
|
2974
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2975
|
+
maxFeePerGas?: bigint | undefined;
|
|
2976
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2977
|
+
sidecars?: undefined | undefined;
|
|
2978
|
+
} & (import('viem').OneOf<{
|
|
2979
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
2980
|
+
} | {
|
|
2981
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2982
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
2983
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2984
|
+
}) ? "eip1559" : never) | (request extends {
|
|
2985
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2986
|
+
authorizationList?: undefined | undefined;
|
|
2987
|
+
blobs?: undefined | undefined;
|
|
2988
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2989
|
+
gasPrice?: bigint | undefined;
|
|
2990
|
+
sidecars?: undefined | undefined;
|
|
2991
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2992
|
+
maxFeePerGas?: undefined | undefined;
|
|
2993
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2994
|
+
} & {
|
|
2995
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
2996
|
+
} ? "eip2930" : never) | (request extends ({
|
|
2997
|
+
accessList?: import('viem').AccessList | undefined;
|
|
2998
|
+
authorizationList?: undefined | undefined;
|
|
2999
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3000
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3001
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3002
|
+
maxFeePerGas?: bigint | undefined;
|
|
3003
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3004
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3005
|
+
} | {
|
|
3006
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3007
|
+
authorizationList?: undefined | undefined;
|
|
3008
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3009
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3010
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3011
|
+
maxFeePerGas?: bigint | undefined;
|
|
3012
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3013
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3014
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3015
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3016
|
+
} | {
|
|
3017
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3018
|
+
} | {
|
|
3019
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3020
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3021
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3022
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3023
|
+
blobs?: undefined | undefined;
|
|
3024
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3025
|
+
gasPrice?: undefined | undefined;
|
|
3026
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3027
|
+
maxFeePerGas?: bigint | undefined;
|
|
3028
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3029
|
+
sidecars?: undefined | undefined;
|
|
3030
|
+
} | {
|
|
3031
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3032
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3033
|
+
blobs?: undefined | undefined;
|
|
3034
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3035
|
+
gasPrice?: undefined | undefined;
|
|
3036
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3037
|
+
maxFeePerGas?: bigint | undefined;
|
|
3038
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3039
|
+
sidecars?: undefined | undefined;
|
|
3040
|
+
}) & {
|
|
3041
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3042
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_17 extends "eip1559" ? import('viem').TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
3043
|
+
accessList?: undefined | undefined;
|
|
3044
|
+
authorizationList?: undefined | undefined;
|
|
3045
|
+
blobs?: undefined | undefined;
|
|
3046
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3047
|
+
gasPrice?: bigint | undefined;
|
|
3048
|
+
sidecars?: undefined | undefined;
|
|
3049
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3050
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3051
|
+
authorizationList?: undefined | undefined;
|
|
3052
|
+
blobs?: undefined | undefined;
|
|
3053
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3054
|
+
gasPrice?: undefined | undefined;
|
|
3055
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3056
|
+
maxFeePerGas?: bigint | undefined;
|
|
3057
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3058
|
+
sidecars?: undefined | undefined;
|
|
3059
|
+
} & (import('viem').OneOf<{
|
|
3060
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3061
|
+
} | {
|
|
3062
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3063
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3064
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3065
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3066
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3067
|
+
authorizationList?: undefined | undefined;
|
|
3068
|
+
blobs?: undefined | undefined;
|
|
3069
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3070
|
+
gasPrice?: bigint | undefined;
|
|
3071
|
+
sidecars?: undefined | undefined;
|
|
3072
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3073
|
+
maxFeePerGas?: undefined | undefined;
|
|
3074
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3075
|
+
} & {
|
|
3076
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3077
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3078
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3079
|
+
authorizationList?: undefined | undefined;
|
|
3080
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3081
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3082
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3083
|
+
maxFeePerGas?: bigint | undefined;
|
|
3084
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3085
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3086
|
+
} | {
|
|
3087
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3088
|
+
authorizationList?: undefined | undefined;
|
|
3089
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3090
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3091
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3092
|
+
maxFeePerGas?: bigint | undefined;
|
|
3093
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3094
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3095
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3096
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3097
|
+
} | {
|
|
3098
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3099
|
+
} | {
|
|
3100
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3101
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3102
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3103
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3104
|
+
blobs?: undefined | undefined;
|
|
3105
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3106
|
+
gasPrice?: undefined | undefined;
|
|
3107
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3108
|
+
maxFeePerGas?: bigint | undefined;
|
|
3109
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3110
|
+
sidecars?: undefined | undefined;
|
|
3111
|
+
} | {
|
|
3112
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3113
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3114
|
+
blobs?: undefined | undefined;
|
|
3115
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3116
|
+
gasPrice?: undefined | undefined;
|
|
3117
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3118
|
+
maxFeePerGas?: bigint | undefined;
|
|
3119
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3120
|
+
sidecars?: undefined | undefined;
|
|
3121
|
+
}) & {
|
|
3122
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3123
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
3124
|
+
accessList?: undefined | undefined;
|
|
3125
|
+
authorizationList?: undefined | undefined;
|
|
3126
|
+
blobs?: undefined | undefined;
|
|
3127
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3128
|
+
gasPrice?: bigint | undefined;
|
|
3129
|
+
sidecars?: undefined | undefined;
|
|
3130
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3131
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3132
|
+
authorizationList?: undefined | undefined;
|
|
3133
|
+
blobs?: undefined | undefined;
|
|
3134
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3135
|
+
gasPrice?: undefined | undefined;
|
|
3136
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3137
|
+
maxFeePerGas?: bigint | undefined;
|
|
3138
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3139
|
+
sidecars?: undefined | undefined;
|
|
3140
|
+
} & (import('viem').OneOf<{
|
|
3141
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3142
|
+
} | {
|
|
3143
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3144
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3145
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3146
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3147
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3148
|
+
authorizationList?: undefined | undefined;
|
|
3149
|
+
blobs?: undefined | undefined;
|
|
3150
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3151
|
+
gasPrice?: bigint | undefined;
|
|
3152
|
+
sidecars?: undefined | undefined;
|
|
3153
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3154
|
+
maxFeePerGas?: undefined | undefined;
|
|
3155
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3156
|
+
} & {
|
|
3157
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3158
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3159
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3160
|
+
authorizationList?: undefined | undefined;
|
|
3161
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3162
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3163
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3164
|
+
maxFeePerGas?: bigint | undefined;
|
|
3165
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3166
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3167
|
+
} | {
|
|
3168
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3169
|
+
authorizationList?: undefined | undefined;
|
|
3170
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3171
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3172
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3173
|
+
maxFeePerGas?: bigint | undefined;
|
|
3174
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3175
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3176
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3177
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3178
|
+
} | {
|
|
3179
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3180
|
+
} | {
|
|
3181
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3182
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3183
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3184
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3185
|
+
blobs?: undefined | undefined;
|
|
3186
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3187
|
+
gasPrice?: undefined | undefined;
|
|
3188
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3189
|
+
maxFeePerGas?: bigint | undefined;
|
|
3190
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3191
|
+
sidecars?: undefined | undefined;
|
|
3192
|
+
} | {
|
|
3193
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3194
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3195
|
+
blobs?: undefined | undefined;
|
|
3196
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3197
|
+
gasPrice?: undefined | undefined;
|
|
3198
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3199
|
+
maxFeePerGas?: bigint | undefined;
|
|
3200
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3201
|
+
sidecars?: undefined | undefined;
|
|
3202
|
+
}) & {
|
|
3203
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3204
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_18 ? T_18 extends (request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
3205
|
+
accessList?: undefined | undefined;
|
|
3206
|
+
authorizationList?: undefined | undefined;
|
|
3207
|
+
blobs?: undefined | undefined;
|
|
3208
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3209
|
+
gasPrice?: bigint | undefined;
|
|
3210
|
+
sidecars?: undefined | undefined;
|
|
3211
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3212
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3213
|
+
authorizationList?: undefined | undefined;
|
|
3214
|
+
blobs?: undefined | undefined;
|
|
3215
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3216
|
+
gasPrice?: undefined | undefined;
|
|
3217
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3218
|
+
maxFeePerGas?: bigint | undefined;
|
|
3219
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3220
|
+
sidecars?: undefined | undefined;
|
|
3221
|
+
} & (import('viem').OneOf<{
|
|
3222
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3223
|
+
} | {
|
|
3224
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3225
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3226
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3227
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3228
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3229
|
+
authorizationList?: undefined | undefined;
|
|
3230
|
+
blobs?: undefined | undefined;
|
|
3231
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3232
|
+
gasPrice?: bigint | undefined;
|
|
3233
|
+
sidecars?: undefined | undefined;
|
|
3234
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3235
|
+
maxFeePerGas?: undefined | undefined;
|
|
3236
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3237
|
+
} & {
|
|
3238
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3239
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3240
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3241
|
+
authorizationList?: undefined | undefined;
|
|
3242
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3243
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3244
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3245
|
+
maxFeePerGas?: bigint | undefined;
|
|
3246
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3247
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3248
|
+
} | {
|
|
3249
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3250
|
+
authorizationList?: undefined | undefined;
|
|
3251
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3252
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3253
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3254
|
+
maxFeePerGas?: bigint | undefined;
|
|
3255
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3256
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3257
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3258
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3259
|
+
} | {
|
|
3260
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3261
|
+
} | {
|
|
3262
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3263
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3264
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3265
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3266
|
+
blobs?: undefined | undefined;
|
|
3267
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3268
|
+
gasPrice?: undefined | undefined;
|
|
3269
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3270
|
+
maxFeePerGas?: bigint | undefined;
|
|
3271
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3272
|
+
sidecars?: undefined | undefined;
|
|
3273
|
+
} | {
|
|
3274
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3275
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3276
|
+
blobs?: undefined | undefined;
|
|
3277
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3278
|
+
gasPrice?: undefined | undefined;
|
|
3279
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3280
|
+
maxFeePerGas?: bigint | undefined;
|
|
3281
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3282
|
+
sidecars?: undefined | undefined;
|
|
3283
|
+
}) & {
|
|
3284
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3285
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
3286
|
+
accessList?: undefined | undefined;
|
|
3287
|
+
authorizationList?: undefined | undefined;
|
|
3288
|
+
blobs?: undefined | undefined;
|
|
3289
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3290
|
+
gasPrice?: bigint | undefined;
|
|
3291
|
+
sidecars?: undefined | undefined;
|
|
3292
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3293
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3294
|
+
authorizationList?: undefined | undefined;
|
|
3295
|
+
blobs?: undefined | undefined;
|
|
3296
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3297
|
+
gasPrice?: undefined | undefined;
|
|
3298
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3299
|
+
maxFeePerGas?: bigint | undefined;
|
|
3300
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3301
|
+
sidecars?: undefined | undefined;
|
|
3302
|
+
} & (import('viem').OneOf<{
|
|
3303
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3304
|
+
} | {
|
|
3305
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3306
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3307
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3308
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3309
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3310
|
+
authorizationList?: undefined | undefined;
|
|
3311
|
+
blobs?: undefined | undefined;
|
|
3312
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3313
|
+
gasPrice?: bigint | undefined;
|
|
3314
|
+
sidecars?: undefined | undefined;
|
|
3315
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3316
|
+
maxFeePerGas?: undefined | undefined;
|
|
3317
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3318
|
+
} & {
|
|
3319
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3320
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3321
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3322
|
+
authorizationList?: undefined | undefined;
|
|
3323
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3324
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3325
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3326
|
+
maxFeePerGas?: bigint | undefined;
|
|
3327
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3328
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3329
|
+
} | {
|
|
3330
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3331
|
+
authorizationList?: undefined | undefined;
|
|
3332
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3333
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3334
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3335
|
+
maxFeePerGas?: bigint | undefined;
|
|
3336
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3337
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3338
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3339
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3340
|
+
} | {
|
|
3341
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3342
|
+
} | {
|
|
3343
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3344
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3345
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3346
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3347
|
+
blobs?: undefined | undefined;
|
|
3348
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3349
|
+
gasPrice?: undefined | undefined;
|
|
3350
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3351
|
+
maxFeePerGas?: bigint | undefined;
|
|
3352
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3353
|
+
sidecars?: undefined | undefined;
|
|
3354
|
+
} | {
|
|
3355
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3356
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3357
|
+
blobs?: undefined | undefined;
|
|
3358
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3359
|
+
gasPrice?: undefined | undefined;
|
|
3360
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3361
|
+
maxFeePerGas?: bigint | undefined;
|
|
3362
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3363
|
+
sidecars?: undefined | undefined;
|
|
3364
|
+
}) & {
|
|
3365
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3366
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_18 extends "eip2930" ? import('viem').TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
3367
|
+
accessList?: undefined | undefined;
|
|
3368
|
+
authorizationList?: undefined | undefined;
|
|
3369
|
+
blobs?: undefined | undefined;
|
|
3370
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3371
|
+
gasPrice?: bigint | undefined;
|
|
3372
|
+
sidecars?: undefined | undefined;
|
|
3373
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3374
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3375
|
+
authorizationList?: undefined | undefined;
|
|
3376
|
+
blobs?: undefined | undefined;
|
|
3377
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3378
|
+
gasPrice?: undefined | undefined;
|
|
3379
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3380
|
+
maxFeePerGas?: bigint | undefined;
|
|
3381
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3382
|
+
sidecars?: undefined | undefined;
|
|
3383
|
+
} & (import('viem').OneOf<{
|
|
3384
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3385
|
+
} | {
|
|
3386
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3387
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3388
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3389
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3390
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3391
|
+
authorizationList?: undefined | undefined;
|
|
3392
|
+
blobs?: undefined | undefined;
|
|
3393
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3394
|
+
gasPrice?: bigint | undefined;
|
|
3395
|
+
sidecars?: undefined | undefined;
|
|
3396
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3397
|
+
maxFeePerGas?: undefined | undefined;
|
|
3398
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3399
|
+
} & {
|
|
3400
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3401
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3402
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3403
|
+
authorizationList?: undefined | undefined;
|
|
3404
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3405
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3406
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3407
|
+
maxFeePerGas?: bigint | undefined;
|
|
3408
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3409
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3410
|
+
} | {
|
|
3411
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3412
|
+
authorizationList?: undefined | undefined;
|
|
3413
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3414
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3415
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3416
|
+
maxFeePerGas?: bigint | undefined;
|
|
3417
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3418
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3419
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3420
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3421
|
+
} | {
|
|
3422
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3423
|
+
} | {
|
|
3424
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3425
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3426
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3427
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3428
|
+
blobs?: undefined | undefined;
|
|
3429
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3430
|
+
gasPrice?: undefined | undefined;
|
|
3431
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3432
|
+
maxFeePerGas?: bigint | undefined;
|
|
3433
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3434
|
+
sidecars?: undefined | undefined;
|
|
3435
|
+
} | {
|
|
3436
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3437
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3438
|
+
blobs?: undefined | undefined;
|
|
3439
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3440
|
+
gasPrice?: undefined | undefined;
|
|
3441
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3442
|
+
maxFeePerGas?: bigint | undefined;
|
|
3443
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3444
|
+
sidecars?: undefined | undefined;
|
|
3445
|
+
}) & {
|
|
3446
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3447
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
3448
|
+
accessList?: undefined | undefined;
|
|
3449
|
+
authorizationList?: undefined | undefined;
|
|
3450
|
+
blobs?: undefined | undefined;
|
|
3451
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3452
|
+
gasPrice?: bigint | undefined;
|
|
3453
|
+
sidecars?: undefined | undefined;
|
|
3454
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3455
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3456
|
+
authorizationList?: undefined | undefined;
|
|
3457
|
+
blobs?: undefined | undefined;
|
|
3458
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3459
|
+
gasPrice?: undefined | undefined;
|
|
3460
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3461
|
+
maxFeePerGas?: bigint | undefined;
|
|
3462
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3463
|
+
sidecars?: undefined | undefined;
|
|
3464
|
+
} & (import('viem').OneOf<{
|
|
3465
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3466
|
+
} | {
|
|
3467
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3468
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3469
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3470
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3471
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3472
|
+
authorizationList?: undefined | undefined;
|
|
3473
|
+
blobs?: undefined | undefined;
|
|
3474
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3475
|
+
gasPrice?: bigint | undefined;
|
|
3476
|
+
sidecars?: undefined | undefined;
|
|
3477
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3478
|
+
maxFeePerGas?: undefined | undefined;
|
|
3479
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3480
|
+
} & {
|
|
3481
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3482
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3483
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3484
|
+
authorizationList?: undefined | undefined;
|
|
3485
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3486
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3487
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3488
|
+
maxFeePerGas?: bigint | undefined;
|
|
3489
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3490
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3491
|
+
} | {
|
|
3492
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3493
|
+
authorizationList?: undefined | undefined;
|
|
3494
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3495
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3496
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3497
|
+
maxFeePerGas?: bigint | undefined;
|
|
3498
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3499
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3500
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3501
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3502
|
+
} | {
|
|
3503
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3504
|
+
} | {
|
|
3505
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3506
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3507
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3508
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3509
|
+
blobs?: undefined | undefined;
|
|
3510
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3511
|
+
gasPrice?: undefined | undefined;
|
|
3512
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3513
|
+
maxFeePerGas?: bigint | undefined;
|
|
3514
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3515
|
+
sidecars?: undefined | undefined;
|
|
3516
|
+
} | {
|
|
3517
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3518
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3519
|
+
blobs?: undefined | undefined;
|
|
3520
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3521
|
+
gasPrice?: undefined | undefined;
|
|
3522
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3523
|
+
maxFeePerGas?: bigint | undefined;
|
|
3524
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3525
|
+
sidecars?: undefined | undefined;
|
|
3526
|
+
}) & {
|
|
3527
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3528
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_19 ? T_19 extends (request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
3529
|
+
accessList?: undefined | undefined;
|
|
3530
|
+
authorizationList?: undefined | undefined;
|
|
3531
|
+
blobs?: undefined | undefined;
|
|
3532
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3533
|
+
gasPrice?: bigint | undefined;
|
|
3534
|
+
sidecars?: undefined | undefined;
|
|
3535
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3536
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3537
|
+
authorizationList?: undefined | undefined;
|
|
3538
|
+
blobs?: undefined | undefined;
|
|
3539
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3540
|
+
gasPrice?: undefined | undefined;
|
|
3541
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3542
|
+
maxFeePerGas?: bigint | undefined;
|
|
3543
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3544
|
+
sidecars?: undefined | undefined;
|
|
3545
|
+
} & (import('viem').OneOf<{
|
|
3546
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3547
|
+
} | {
|
|
3548
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3549
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3550
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3551
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3552
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3553
|
+
authorizationList?: undefined | undefined;
|
|
3554
|
+
blobs?: undefined | undefined;
|
|
3555
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3556
|
+
gasPrice?: bigint | undefined;
|
|
3557
|
+
sidecars?: undefined | undefined;
|
|
3558
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3559
|
+
maxFeePerGas?: undefined | undefined;
|
|
3560
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3561
|
+
} & {
|
|
3562
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3563
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3564
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3565
|
+
authorizationList?: undefined | undefined;
|
|
3566
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3567
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3568
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3569
|
+
maxFeePerGas?: bigint | undefined;
|
|
3570
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3571
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3572
|
+
} | {
|
|
3573
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3574
|
+
authorizationList?: undefined | undefined;
|
|
3575
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3576
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3577
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3578
|
+
maxFeePerGas?: bigint | undefined;
|
|
3579
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3580
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3581
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3582
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3583
|
+
} | {
|
|
3584
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3585
|
+
} | {
|
|
3586
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3587
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3588
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3589
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3590
|
+
blobs?: undefined | undefined;
|
|
3591
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3592
|
+
gasPrice?: undefined | undefined;
|
|
3593
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3594
|
+
maxFeePerGas?: bigint | undefined;
|
|
3595
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3596
|
+
sidecars?: undefined | undefined;
|
|
3597
|
+
} | {
|
|
3598
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3599
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3600
|
+
blobs?: undefined | undefined;
|
|
3601
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3602
|
+
gasPrice?: undefined | undefined;
|
|
3603
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3604
|
+
maxFeePerGas?: bigint | undefined;
|
|
3605
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3606
|
+
sidecars?: undefined | undefined;
|
|
3607
|
+
}) & {
|
|
3608
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3609
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
3610
|
+
accessList?: undefined | undefined;
|
|
3611
|
+
authorizationList?: undefined | undefined;
|
|
3612
|
+
blobs?: undefined | undefined;
|
|
3613
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3614
|
+
gasPrice?: bigint | undefined;
|
|
3615
|
+
sidecars?: undefined | undefined;
|
|
3616
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3617
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3618
|
+
authorizationList?: undefined | undefined;
|
|
3619
|
+
blobs?: undefined | undefined;
|
|
3620
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3621
|
+
gasPrice?: undefined | undefined;
|
|
3622
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3623
|
+
maxFeePerGas?: bigint | undefined;
|
|
3624
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3625
|
+
sidecars?: undefined | undefined;
|
|
3626
|
+
} & (import('viem').OneOf<{
|
|
3627
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3628
|
+
} | {
|
|
3629
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3630
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3631
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3632
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3633
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3634
|
+
authorizationList?: undefined | undefined;
|
|
3635
|
+
blobs?: undefined | undefined;
|
|
3636
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3637
|
+
gasPrice?: bigint | undefined;
|
|
3638
|
+
sidecars?: undefined | undefined;
|
|
3639
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3640
|
+
maxFeePerGas?: undefined | undefined;
|
|
3641
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3642
|
+
} & {
|
|
3643
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3644
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3645
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3646
|
+
authorizationList?: undefined | undefined;
|
|
3647
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3648
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3649
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3650
|
+
maxFeePerGas?: bigint | undefined;
|
|
3651
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3652
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3653
|
+
} | {
|
|
3654
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3655
|
+
authorizationList?: undefined | undefined;
|
|
3656
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3657
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3658
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3659
|
+
maxFeePerGas?: bigint | undefined;
|
|
3660
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3661
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3662
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3663
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3664
|
+
} | {
|
|
3665
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3666
|
+
} | {
|
|
3667
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3668
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3669
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3670
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3671
|
+
blobs?: undefined | undefined;
|
|
3672
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3673
|
+
gasPrice?: undefined | undefined;
|
|
3674
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3675
|
+
maxFeePerGas?: bigint | undefined;
|
|
3676
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3677
|
+
sidecars?: undefined | undefined;
|
|
3678
|
+
} | {
|
|
3679
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3680
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3681
|
+
blobs?: undefined | undefined;
|
|
3682
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3683
|
+
gasPrice?: undefined | undefined;
|
|
3684
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3685
|
+
maxFeePerGas?: bigint | undefined;
|
|
3686
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3687
|
+
sidecars?: undefined | undefined;
|
|
3688
|
+
}) & {
|
|
3689
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3690
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_19 extends "eip4844" ? import('viem').TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
3691
|
+
accessList?: undefined | undefined;
|
|
3692
|
+
authorizationList?: undefined | undefined;
|
|
3693
|
+
blobs?: undefined | undefined;
|
|
3694
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3695
|
+
gasPrice?: bigint | undefined;
|
|
3696
|
+
sidecars?: undefined | undefined;
|
|
3697
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3698
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3699
|
+
authorizationList?: undefined | undefined;
|
|
3700
|
+
blobs?: undefined | undefined;
|
|
3701
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3702
|
+
gasPrice?: undefined | undefined;
|
|
3703
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3704
|
+
maxFeePerGas?: bigint | undefined;
|
|
3705
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3706
|
+
sidecars?: undefined | undefined;
|
|
3707
|
+
} & (import('viem').OneOf<{
|
|
3708
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3709
|
+
} | {
|
|
3710
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3711
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3712
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3713
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3714
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3715
|
+
authorizationList?: undefined | undefined;
|
|
3716
|
+
blobs?: undefined | undefined;
|
|
3717
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3718
|
+
gasPrice?: bigint | undefined;
|
|
3719
|
+
sidecars?: undefined | undefined;
|
|
3720
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3721
|
+
maxFeePerGas?: undefined | undefined;
|
|
3722
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3723
|
+
} & {
|
|
3724
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3725
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3726
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3727
|
+
authorizationList?: undefined | undefined;
|
|
3728
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3729
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3730
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3731
|
+
maxFeePerGas?: bigint | undefined;
|
|
3732
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3733
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3734
|
+
} | {
|
|
3735
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3736
|
+
authorizationList?: undefined | undefined;
|
|
3737
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3738
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3739
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3740
|
+
maxFeePerGas?: bigint | undefined;
|
|
3741
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3742
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3743
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3744
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3745
|
+
} | {
|
|
3746
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3747
|
+
} | {
|
|
3748
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3749
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3750
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3751
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3752
|
+
blobs?: undefined | undefined;
|
|
3753
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3754
|
+
gasPrice?: undefined | undefined;
|
|
3755
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3756
|
+
maxFeePerGas?: bigint | undefined;
|
|
3757
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3758
|
+
sidecars?: undefined | undefined;
|
|
3759
|
+
} | {
|
|
3760
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3761
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3762
|
+
blobs?: undefined | undefined;
|
|
3763
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3764
|
+
gasPrice?: undefined | undefined;
|
|
3765
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3766
|
+
maxFeePerGas?: bigint | undefined;
|
|
3767
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3768
|
+
sidecars?: undefined | undefined;
|
|
3769
|
+
}) & {
|
|
3770
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3771
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
3772
|
+
accessList?: undefined | undefined;
|
|
3773
|
+
authorizationList?: undefined | undefined;
|
|
3774
|
+
blobs?: undefined | undefined;
|
|
3775
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3776
|
+
gasPrice?: bigint | undefined;
|
|
3777
|
+
sidecars?: undefined | undefined;
|
|
3778
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3779
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3780
|
+
authorizationList?: undefined | undefined;
|
|
3781
|
+
blobs?: undefined | undefined;
|
|
3782
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3783
|
+
gasPrice?: undefined | undefined;
|
|
3784
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3785
|
+
maxFeePerGas?: bigint | undefined;
|
|
3786
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3787
|
+
sidecars?: undefined | undefined;
|
|
3788
|
+
} & (import('viem').OneOf<{
|
|
3789
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3790
|
+
} | {
|
|
3791
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3792
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3793
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3794
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3795
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3796
|
+
authorizationList?: undefined | undefined;
|
|
3797
|
+
blobs?: undefined | undefined;
|
|
3798
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3799
|
+
gasPrice?: bigint | undefined;
|
|
3800
|
+
sidecars?: undefined | undefined;
|
|
3801
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3802
|
+
maxFeePerGas?: undefined | undefined;
|
|
3803
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3804
|
+
} & {
|
|
3805
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3806
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3807
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3808
|
+
authorizationList?: undefined | undefined;
|
|
3809
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3810
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3811
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3812
|
+
maxFeePerGas?: bigint | undefined;
|
|
3813
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3814
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3815
|
+
} | {
|
|
3816
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3817
|
+
authorizationList?: undefined | undefined;
|
|
3818
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3819
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3820
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3821
|
+
maxFeePerGas?: bigint | undefined;
|
|
3822
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3823
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3824
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3825
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3826
|
+
} | {
|
|
3827
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3828
|
+
} | {
|
|
3829
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3830
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3831
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3832
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3833
|
+
blobs?: undefined | undefined;
|
|
3834
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3835
|
+
gasPrice?: undefined | undefined;
|
|
3836
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3837
|
+
maxFeePerGas?: bigint | undefined;
|
|
3838
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3839
|
+
sidecars?: undefined | undefined;
|
|
3840
|
+
} | {
|
|
3841
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3842
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3843
|
+
blobs?: undefined | undefined;
|
|
3844
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3845
|
+
gasPrice?: undefined | undefined;
|
|
3846
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3847
|
+
maxFeePerGas?: bigint | undefined;
|
|
3848
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3849
|
+
sidecars?: undefined | undefined;
|
|
3850
|
+
}) & {
|
|
3851
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3852
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_20 ? T_20 extends (request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
3853
|
+
accessList?: undefined | undefined;
|
|
3854
|
+
authorizationList?: undefined | undefined;
|
|
3855
|
+
blobs?: undefined | undefined;
|
|
3856
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3857
|
+
gasPrice?: bigint | undefined;
|
|
3858
|
+
sidecars?: undefined | undefined;
|
|
3859
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3860
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3861
|
+
authorizationList?: undefined | undefined;
|
|
3862
|
+
blobs?: undefined | undefined;
|
|
3863
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3864
|
+
gasPrice?: undefined | undefined;
|
|
3865
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3866
|
+
maxFeePerGas?: bigint | undefined;
|
|
3867
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3868
|
+
sidecars?: undefined | undefined;
|
|
3869
|
+
} & (import('viem').OneOf<{
|
|
3870
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3871
|
+
} | {
|
|
3872
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3873
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3874
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3875
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3876
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3877
|
+
authorizationList?: undefined | undefined;
|
|
3878
|
+
blobs?: undefined | undefined;
|
|
3879
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3880
|
+
gasPrice?: bigint | undefined;
|
|
3881
|
+
sidecars?: undefined | undefined;
|
|
3882
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3883
|
+
maxFeePerGas?: undefined | undefined;
|
|
3884
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3885
|
+
} & {
|
|
3886
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3887
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3888
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3889
|
+
authorizationList?: undefined | undefined;
|
|
3890
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3891
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3892
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3893
|
+
maxFeePerGas?: bigint | undefined;
|
|
3894
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3895
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3896
|
+
} | {
|
|
3897
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3898
|
+
authorizationList?: undefined | undefined;
|
|
3899
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3900
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3901
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3902
|
+
maxFeePerGas?: bigint | undefined;
|
|
3903
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3904
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3905
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3906
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3907
|
+
} | {
|
|
3908
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3909
|
+
} | {
|
|
3910
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3911
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3912
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3913
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3914
|
+
blobs?: undefined | undefined;
|
|
3915
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3916
|
+
gasPrice?: undefined | undefined;
|
|
3917
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3918
|
+
maxFeePerGas?: bigint | undefined;
|
|
3919
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3920
|
+
sidecars?: undefined | undefined;
|
|
3921
|
+
} | {
|
|
3922
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3923
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3924
|
+
blobs?: undefined | undefined;
|
|
3925
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3926
|
+
gasPrice?: undefined | undefined;
|
|
3927
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3928
|
+
maxFeePerGas?: bigint | undefined;
|
|
3929
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3930
|
+
sidecars?: undefined | undefined;
|
|
3931
|
+
}) & {
|
|
3932
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
3933
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
3934
|
+
accessList?: undefined | undefined;
|
|
3935
|
+
authorizationList?: undefined | undefined;
|
|
3936
|
+
blobs?: undefined | undefined;
|
|
3937
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3938
|
+
gasPrice?: bigint | undefined;
|
|
3939
|
+
sidecars?: undefined | undefined;
|
|
3940
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3941
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3942
|
+
authorizationList?: undefined | undefined;
|
|
3943
|
+
blobs?: undefined | undefined;
|
|
3944
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3945
|
+
gasPrice?: undefined | undefined;
|
|
3946
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3947
|
+
maxFeePerGas?: bigint | undefined;
|
|
3948
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3949
|
+
sidecars?: undefined | undefined;
|
|
3950
|
+
} & (import('viem').OneOf<{
|
|
3951
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
3952
|
+
} | {
|
|
3953
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3954
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
3955
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3956
|
+
}) ? "eip1559" : never) | (request extends {
|
|
3957
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3958
|
+
authorizationList?: undefined | undefined;
|
|
3959
|
+
blobs?: undefined | undefined;
|
|
3960
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3961
|
+
gasPrice?: bigint | undefined;
|
|
3962
|
+
sidecars?: undefined | undefined;
|
|
3963
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3964
|
+
maxFeePerGas?: undefined | undefined;
|
|
3965
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3966
|
+
} & {
|
|
3967
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
3968
|
+
} ? "eip2930" : never) | (request extends ({
|
|
3969
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3970
|
+
authorizationList?: undefined | undefined;
|
|
3971
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3972
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3973
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3974
|
+
maxFeePerGas?: bigint | undefined;
|
|
3975
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3976
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3977
|
+
} | {
|
|
3978
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3979
|
+
authorizationList?: undefined | undefined;
|
|
3980
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
3981
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3982
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
3983
|
+
maxFeePerGas?: bigint | undefined;
|
|
3984
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
3985
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
3986
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
3987
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
3988
|
+
} | {
|
|
3989
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3990
|
+
} | {
|
|
3991
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
3992
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3993
|
+
accessList?: import('viem').AccessList | undefined;
|
|
3994
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
3995
|
+
blobs?: undefined | undefined;
|
|
3996
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3997
|
+
gasPrice?: undefined | undefined;
|
|
3998
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3999
|
+
maxFeePerGas?: bigint | undefined;
|
|
4000
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4001
|
+
sidecars?: undefined | undefined;
|
|
4002
|
+
} | {
|
|
4003
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4004
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4005
|
+
blobs?: undefined | undefined;
|
|
4006
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4007
|
+
gasPrice?: undefined | undefined;
|
|
4008
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4009
|
+
maxFeePerGas?: bigint | undefined;
|
|
4010
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4011
|
+
sidecars?: undefined | undefined;
|
|
4012
|
+
}) & {
|
|
4013
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4014
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_20 extends "eip7702" ? import('viem').TransactionRequestEIP7702 : never : never : never)> extends true ? unknown : import('viem').ExactPartial<((request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
4015
|
+
accessList?: undefined | undefined;
|
|
4016
|
+
authorizationList?: undefined | undefined;
|
|
4017
|
+
blobs?: undefined | undefined;
|
|
4018
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4019
|
+
gasPrice?: bigint | undefined;
|
|
4020
|
+
sidecars?: undefined | undefined;
|
|
4021
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4022
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4023
|
+
authorizationList?: undefined | undefined;
|
|
4024
|
+
blobs?: undefined | undefined;
|
|
4025
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4026
|
+
gasPrice?: undefined | undefined;
|
|
4027
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4028
|
+
maxFeePerGas?: bigint | undefined;
|
|
4029
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4030
|
+
sidecars?: undefined | undefined;
|
|
4031
|
+
} & (import('viem').OneOf<{
|
|
4032
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4033
|
+
} | {
|
|
4034
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4035
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4036
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4037
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4038
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4039
|
+
authorizationList?: undefined | undefined;
|
|
4040
|
+
blobs?: undefined | undefined;
|
|
4041
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4042
|
+
gasPrice?: bigint | undefined;
|
|
4043
|
+
sidecars?: undefined | undefined;
|
|
4044
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4045
|
+
maxFeePerGas?: undefined | undefined;
|
|
4046
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4047
|
+
} & {
|
|
4048
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4049
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4050
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4051
|
+
authorizationList?: undefined | undefined;
|
|
4052
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4053
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4054
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4055
|
+
maxFeePerGas?: bigint | undefined;
|
|
4056
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4057
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4058
|
+
} | {
|
|
4059
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4060
|
+
authorizationList?: undefined | undefined;
|
|
4061
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4062
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4063
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4064
|
+
maxFeePerGas?: bigint | undefined;
|
|
4065
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4066
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4067
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4068
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4069
|
+
} | {
|
|
4070
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4071
|
+
} | {
|
|
4072
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4073
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4074
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4075
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4076
|
+
blobs?: undefined | undefined;
|
|
4077
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4078
|
+
gasPrice?: undefined | undefined;
|
|
4079
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4080
|
+
maxFeePerGas?: bigint | undefined;
|
|
4081
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4082
|
+
sidecars?: undefined | undefined;
|
|
4083
|
+
} | {
|
|
4084
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4085
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4086
|
+
blobs?: undefined | undefined;
|
|
4087
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4088
|
+
gasPrice?: undefined | undefined;
|
|
4089
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4090
|
+
maxFeePerGas?: bigint | undefined;
|
|
4091
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4092
|
+
sidecars?: undefined | undefined;
|
|
4093
|
+
}) & {
|
|
4094
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4095
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
4096
|
+
accessList?: undefined | undefined;
|
|
4097
|
+
authorizationList?: undefined | undefined;
|
|
4098
|
+
blobs?: undefined | undefined;
|
|
4099
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4100
|
+
gasPrice?: bigint | undefined;
|
|
4101
|
+
sidecars?: undefined | undefined;
|
|
4102
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4103
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4104
|
+
authorizationList?: undefined | undefined;
|
|
4105
|
+
blobs?: undefined | undefined;
|
|
4106
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4107
|
+
gasPrice?: undefined | undefined;
|
|
4108
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4109
|
+
maxFeePerGas?: bigint | undefined;
|
|
4110
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4111
|
+
sidecars?: undefined | undefined;
|
|
4112
|
+
} & (import('viem').OneOf<{
|
|
4113
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4114
|
+
} | {
|
|
4115
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4116
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4117
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4118
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4119
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4120
|
+
authorizationList?: undefined | undefined;
|
|
4121
|
+
blobs?: undefined | undefined;
|
|
4122
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4123
|
+
gasPrice?: bigint | undefined;
|
|
4124
|
+
sidecars?: undefined | undefined;
|
|
4125
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4126
|
+
maxFeePerGas?: undefined | undefined;
|
|
4127
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4128
|
+
} & {
|
|
4129
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4130
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4131
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4132
|
+
authorizationList?: undefined | undefined;
|
|
4133
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4134
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4135
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4136
|
+
maxFeePerGas?: bigint | undefined;
|
|
4137
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4138
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4139
|
+
} | {
|
|
4140
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4141
|
+
authorizationList?: undefined | undefined;
|
|
4142
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4143
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4144
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4145
|
+
maxFeePerGas?: bigint | undefined;
|
|
4146
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4147
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4148
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4149
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4150
|
+
} | {
|
|
4151
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4152
|
+
} | {
|
|
4153
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4154
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4155
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4156
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4157
|
+
blobs?: undefined | undefined;
|
|
4158
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4159
|
+
gasPrice?: undefined | undefined;
|
|
4160
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4161
|
+
maxFeePerGas?: bigint | undefined;
|
|
4162
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4163
|
+
sidecars?: undefined | undefined;
|
|
4164
|
+
} | {
|
|
4165
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4166
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4167
|
+
blobs?: undefined | undefined;
|
|
4168
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4169
|
+
gasPrice?: undefined | undefined;
|
|
4170
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4171
|
+
maxFeePerGas?: bigint | undefined;
|
|
4172
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4173
|
+
sidecars?: undefined | undefined;
|
|
4174
|
+
}) & {
|
|
4175
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4176
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_21 ? T_21 extends (request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
4177
|
+
accessList?: undefined | undefined;
|
|
4178
|
+
authorizationList?: undefined | undefined;
|
|
4179
|
+
blobs?: undefined | undefined;
|
|
4180
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4181
|
+
gasPrice?: bigint | undefined;
|
|
4182
|
+
sidecars?: undefined | undefined;
|
|
4183
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4184
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4185
|
+
authorizationList?: undefined | undefined;
|
|
4186
|
+
blobs?: undefined | undefined;
|
|
4187
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4188
|
+
gasPrice?: undefined | undefined;
|
|
4189
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4190
|
+
maxFeePerGas?: bigint | undefined;
|
|
4191
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4192
|
+
sidecars?: undefined | undefined;
|
|
4193
|
+
} & (import('viem').OneOf<{
|
|
4194
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4195
|
+
} | {
|
|
4196
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4197
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4198
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4199
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4200
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4201
|
+
authorizationList?: undefined | undefined;
|
|
4202
|
+
blobs?: undefined | undefined;
|
|
4203
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4204
|
+
gasPrice?: bigint | undefined;
|
|
4205
|
+
sidecars?: undefined | undefined;
|
|
4206
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4207
|
+
maxFeePerGas?: undefined | undefined;
|
|
4208
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4209
|
+
} & {
|
|
4210
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4211
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4212
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4213
|
+
authorizationList?: undefined | undefined;
|
|
4214
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4215
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4216
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4217
|
+
maxFeePerGas?: bigint | undefined;
|
|
4218
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4219
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4220
|
+
} | {
|
|
4221
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4222
|
+
authorizationList?: undefined | undefined;
|
|
4223
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4224
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4225
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4226
|
+
maxFeePerGas?: bigint | undefined;
|
|
4227
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4228
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4229
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4230
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4231
|
+
} | {
|
|
4232
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4233
|
+
} | {
|
|
4234
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4235
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4236
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4237
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4238
|
+
blobs?: undefined | undefined;
|
|
4239
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4240
|
+
gasPrice?: undefined | undefined;
|
|
4241
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4242
|
+
maxFeePerGas?: bigint | undefined;
|
|
4243
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4244
|
+
sidecars?: undefined | undefined;
|
|
4245
|
+
} | {
|
|
4246
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4247
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4248
|
+
blobs?: undefined | undefined;
|
|
4249
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4250
|
+
gasPrice?: undefined | undefined;
|
|
4251
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4252
|
+
maxFeePerGas?: bigint | undefined;
|
|
4253
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4254
|
+
sidecars?: undefined | undefined;
|
|
4255
|
+
}) & {
|
|
4256
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4257
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
4258
|
+
accessList?: undefined | undefined;
|
|
4259
|
+
authorizationList?: undefined | undefined;
|
|
4260
|
+
blobs?: undefined | undefined;
|
|
4261
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4262
|
+
gasPrice?: bigint | undefined;
|
|
4263
|
+
sidecars?: undefined | undefined;
|
|
4264
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4265
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4266
|
+
authorizationList?: undefined | undefined;
|
|
4267
|
+
blobs?: undefined | undefined;
|
|
4268
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4269
|
+
gasPrice?: undefined | undefined;
|
|
4270
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4271
|
+
maxFeePerGas?: bigint | undefined;
|
|
4272
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4273
|
+
sidecars?: undefined | undefined;
|
|
4274
|
+
} & (import('viem').OneOf<{
|
|
4275
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4276
|
+
} | {
|
|
4277
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4278
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4279
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4280
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4281
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4282
|
+
authorizationList?: undefined | undefined;
|
|
4283
|
+
blobs?: undefined | undefined;
|
|
4284
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4285
|
+
gasPrice?: bigint | undefined;
|
|
4286
|
+
sidecars?: undefined | undefined;
|
|
4287
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4288
|
+
maxFeePerGas?: undefined | undefined;
|
|
4289
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4290
|
+
} & {
|
|
4291
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4292
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4293
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4294
|
+
authorizationList?: undefined | undefined;
|
|
4295
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4296
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4297
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4298
|
+
maxFeePerGas?: bigint | undefined;
|
|
4299
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4300
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4301
|
+
} | {
|
|
4302
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4303
|
+
authorizationList?: undefined | undefined;
|
|
4304
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4305
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4306
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4307
|
+
maxFeePerGas?: bigint | undefined;
|
|
4308
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4309
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4310
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4311
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4312
|
+
} | {
|
|
4313
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4314
|
+
} | {
|
|
4315
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4316
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4317
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4318
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4319
|
+
blobs?: undefined | undefined;
|
|
4320
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4321
|
+
gasPrice?: undefined | undefined;
|
|
4322
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4323
|
+
maxFeePerGas?: bigint | undefined;
|
|
4324
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4325
|
+
sidecars?: undefined | undefined;
|
|
4326
|
+
} | {
|
|
4327
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4328
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4329
|
+
blobs?: undefined | undefined;
|
|
4330
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4331
|
+
gasPrice?: undefined | undefined;
|
|
4332
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4333
|
+
maxFeePerGas?: bigint | undefined;
|
|
4334
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4335
|
+
sidecars?: undefined | undefined;
|
|
4336
|
+
}) & {
|
|
4337
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4338
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_21 extends "legacy" ? import('viem').TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
4339
|
+
accessList?: undefined | undefined;
|
|
4340
|
+
authorizationList?: undefined | undefined;
|
|
4341
|
+
blobs?: undefined | undefined;
|
|
4342
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4343
|
+
gasPrice?: bigint | undefined;
|
|
4344
|
+
sidecars?: undefined | undefined;
|
|
4345
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4346
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4347
|
+
authorizationList?: undefined | undefined;
|
|
4348
|
+
blobs?: undefined | undefined;
|
|
4349
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4350
|
+
gasPrice?: undefined | undefined;
|
|
4351
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4352
|
+
maxFeePerGas?: bigint | undefined;
|
|
4353
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4354
|
+
sidecars?: undefined | undefined;
|
|
4355
|
+
} & (import('viem').OneOf<{
|
|
4356
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4357
|
+
} | {
|
|
4358
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4359
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4360
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4361
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4362
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4363
|
+
authorizationList?: undefined | undefined;
|
|
4364
|
+
blobs?: undefined | undefined;
|
|
4365
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4366
|
+
gasPrice?: bigint | undefined;
|
|
4367
|
+
sidecars?: undefined | undefined;
|
|
4368
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4369
|
+
maxFeePerGas?: undefined | undefined;
|
|
4370
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4371
|
+
} & {
|
|
4372
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4373
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4374
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4375
|
+
authorizationList?: undefined | undefined;
|
|
4376
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4377
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4378
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4379
|
+
maxFeePerGas?: bigint | undefined;
|
|
4380
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4381
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4382
|
+
} | {
|
|
4383
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4384
|
+
authorizationList?: undefined | undefined;
|
|
4385
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4386
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4387
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4388
|
+
maxFeePerGas?: bigint | undefined;
|
|
4389
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4390
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4391
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4392
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4393
|
+
} | {
|
|
4394
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4395
|
+
} | {
|
|
4396
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4397
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4398
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4399
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4400
|
+
blobs?: undefined | undefined;
|
|
4401
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4402
|
+
gasPrice?: undefined | undefined;
|
|
4403
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4404
|
+
maxFeePerGas?: bigint | undefined;
|
|
4405
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4406
|
+
sidecars?: undefined | undefined;
|
|
4407
|
+
} | {
|
|
4408
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4409
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4410
|
+
blobs?: undefined | undefined;
|
|
4411
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4412
|
+
gasPrice?: undefined | undefined;
|
|
4413
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4414
|
+
maxFeePerGas?: bigint | undefined;
|
|
4415
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4416
|
+
sidecars?: undefined | undefined;
|
|
4417
|
+
}) & {
|
|
4418
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4419
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
4420
|
+
accessList?: undefined | undefined;
|
|
4421
|
+
authorizationList?: undefined | undefined;
|
|
4422
|
+
blobs?: undefined | undefined;
|
|
4423
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4424
|
+
gasPrice?: bigint | undefined;
|
|
4425
|
+
sidecars?: undefined | undefined;
|
|
4426
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4427
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4428
|
+
authorizationList?: undefined | undefined;
|
|
4429
|
+
blobs?: undefined | undefined;
|
|
4430
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4431
|
+
gasPrice?: undefined | undefined;
|
|
4432
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4433
|
+
maxFeePerGas?: bigint | undefined;
|
|
4434
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4435
|
+
sidecars?: undefined | undefined;
|
|
4436
|
+
} & (import('viem').OneOf<{
|
|
4437
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4438
|
+
} | {
|
|
4439
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4440
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4441
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4442
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4443
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4444
|
+
authorizationList?: undefined | undefined;
|
|
4445
|
+
blobs?: undefined | undefined;
|
|
4446
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4447
|
+
gasPrice?: bigint | undefined;
|
|
4448
|
+
sidecars?: undefined | undefined;
|
|
4449
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4450
|
+
maxFeePerGas?: undefined | undefined;
|
|
4451
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4452
|
+
} & {
|
|
4453
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4454
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4455
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4456
|
+
authorizationList?: undefined | undefined;
|
|
4457
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4458
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4459
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4460
|
+
maxFeePerGas?: bigint | undefined;
|
|
4461
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4462
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4463
|
+
} | {
|
|
4464
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4465
|
+
authorizationList?: undefined | undefined;
|
|
4466
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4467
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4468
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4469
|
+
maxFeePerGas?: bigint | undefined;
|
|
4470
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4471
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4472
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4473
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4474
|
+
} | {
|
|
4475
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4476
|
+
} | {
|
|
4477
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4478
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4479
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4480
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4481
|
+
blobs?: undefined | undefined;
|
|
4482
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4483
|
+
gasPrice?: undefined | undefined;
|
|
4484
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4485
|
+
maxFeePerGas?: bigint | undefined;
|
|
4486
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4487
|
+
sidecars?: undefined | undefined;
|
|
4488
|
+
} | {
|
|
4489
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4490
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4491
|
+
blobs?: undefined | undefined;
|
|
4492
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4493
|
+
gasPrice?: undefined | undefined;
|
|
4494
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4495
|
+
maxFeePerGas?: bigint | undefined;
|
|
4496
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4497
|
+
sidecars?: undefined | undefined;
|
|
4498
|
+
}) & {
|
|
4499
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4500
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_22 ? T_22 extends (request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
4501
|
+
accessList?: undefined | undefined;
|
|
4502
|
+
authorizationList?: undefined | undefined;
|
|
4503
|
+
blobs?: undefined | undefined;
|
|
4504
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4505
|
+
gasPrice?: bigint | undefined;
|
|
4506
|
+
sidecars?: undefined | undefined;
|
|
4507
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4508
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4509
|
+
authorizationList?: undefined | undefined;
|
|
4510
|
+
blobs?: undefined | undefined;
|
|
4511
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4512
|
+
gasPrice?: undefined | undefined;
|
|
4513
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4514
|
+
maxFeePerGas?: bigint | undefined;
|
|
4515
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4516
|
+
sidecars?: undefined | undefined;
|
|
4517
|
+
} & (import('viem').OneOf<{
|
|
4518
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4519
|
+
} | {
|
|
4520
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4521
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4522
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4523
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4524
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4525
|
+
authorizationList?: undefined | undefined;
|
|
4526
|
+
blobs?: undefined | undefined;
|
|
4527
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4528
|
+
gasPrice?: bigint | undefined;
|
|
4529
|
+
sidecars?: undefined | undefined;
|
|
4530
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4531
|
+
maxFeePerGas?: undefined | undefined;
|
|
4532
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4533
|
+
} & {
|
|
4534
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4535
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4536
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4537
|
+
authorizationList?: undefined | undefined;
|
|
4538
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4539
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4540
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4541
|
+
maxFeePerGas?: bigint | undefined;
|
|
4542
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4543
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4544
|
+
} | {
|
|
4545
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4546
|
+
authorizationList?: undefined | undefined;
|
|
4547
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4548
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4549
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4550
|
+
maxFeePerGas?: bigint | undefined;
|
|
4551
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4552
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4553
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4554
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4555
|
+
} | {
|
|
4556
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4557
|
+
} | {
|
|
4558
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4559
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4560
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4561
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4562
|
+
blobs?: undefined | undefined;
|
|
4563
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4564
|
+
gasPrice?: undefined | undefined;
|
|
4565
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4566
|
+
maxFeePerGas?: bigint | undefined;
|
|
4567
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4568
|
+
sidecars?: undefined | undefined;
|
|
4569
|
+
} | {
|
|
4570
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4571
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4572
|
+
blobs?: undefined | undefined;
|
|
4573
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4574
|
+
gasPrice?: undefined | undefined;
|
|
4575
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4576
|
+
maxFeePerGas?: bigint | undefined;
|
|
4577
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4578
|
+
sidecars?: undefined | undefined;
|
|
4579
|
+
}) & {
|
|
4580
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4581
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
4582
|
+
accessList?: undefined | undefined;
|
|
4583
|
+
authorizationList?: undefined | undefined;
|
|
4584
|
+
blobs?: undefined | undefined;
|
|
4585
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4586
|
+
gasPrice?: bigint | undefined;
|
|
4587
|
+
sidecars?: undefined | undefined;
|
|
4588
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4589
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4590
|
+
authorizationList?: undefined | undefined;
|
|
4591
|
+
blobs?: undefined | undefined;
|
|
4592
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4593
|
+
gasPrice?: undefined | undefined;
|
|
4594
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4595
|
+
maxFeePerGas?: bigint | undefined;
|
|
4596
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4597
|
+
sidecars?: undefined | undefined;
|
|
4598
|
+
} & (import('viem').OneOf<{
|
|
4599
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4600
|
+
} | {
|
|
4601
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4602
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4603
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4604
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4605
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4606
|
+
authorizationList?: undefined | undefined;
|
|
4607
|
+
blobs?: undefined | undefined;
|
|
4608
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4609
|
+
gasPrice?: bigint | undefined;
|
|
4610
|
+
sidecars?: undefined | undefined;
|
|
4611
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4612
|
+
maxFeePerGas?: undefined | undefined;
|
|
4613
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4614
|
+
} & {
|
|
4615
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4616
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4617
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4618
|
+
authorizationList?: undefined | undefined;
|
|
4619
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4620
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4621
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4622
|
+
maxFeePerGas?: bigint | undefined;
|
|
4623
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4624
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4625
|
+
} | {
|
|
4626
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4627
|
+
authorizationList?: undefined | undefined;
|
|
4628
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4629
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4630
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4631
|
+
maxFeePerGas?: bigint | undefined;
|
|
4632
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4633
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4634
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4635
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4636
|
+
} | {
|
|
4637
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4638
|
+
} | {
|
|
4639
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4640
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4641
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4642
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4643
|
+
blobs?: undefined | undefined;
|
|
4644
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4645
|
+
gasPrice?: undefined | undefined;
|
|
4646
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4647
|
+
maxFeePerGas?: bigint | undefined;
|
|
4648
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4649
|
+
sidecars?: undefined | undefined;
|
|
4650
|
+
} | {
|
|
4651
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4652
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4653
|
+
blobs?: undefined | undefined;
|
|
4654
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4655
|
+
gasPrice?: undefined | undefined;
|
|
4656
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4657
|
+
maxFeePerGas?: bigint | undefined;
|
|
4658
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4659
|
+
sidecars?: undefined | undefined;
|
|
4660
|
+
}) & {
|
|
4661
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4662
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_22 extends "eip1559" ? import('viem').TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
4663
|
+
accessList?: undefined | undefined;
|
|
4664
|
+
authorizationList?: undefined | undefined;
|
|
4665
|
+
blobs?: undefined | undefined;
|
|
4666
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4667
|
+
gasPrice?: bigint | undefined;
|
|
4668
|
+
sidecars?: undefined | undefined;
|
|
4669
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4670
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4671
|
+
authorizationList?: undefined | undefined;
|
|
4672
|
+
blobs?: undefined | undefined;
|
|
4673
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4674
|
+
gasPrice?: undefined | undefined;
|
|
4675
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4676
|
+
maxFeePerGas?: bigint | undefined;
|
|
4677
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4678
|
+
sidecars?: undefined | undefined;
|
|
4679
|
+
} & (import('viem').OneOf<{
|
|
4680
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4681
|
+
} | {
|
|
4682
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4683
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4684
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4685
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4686
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4687
|
+
authorizationList?: undefined | undefined;
|
|
4688
|
+
blobs?: undefined | undefined;
|
|
4689
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4690
|
+
gasPrice?: bigint | undefined;
|
|
4691
|
+
sidecars?: undefined | undefined;
|
|
4692
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4693
|
+
maxFeePerGas?: undefined | undefined;
|
|
4694
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4695
|
+
} & {
|
|
4696
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4697
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4698
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4699
|
+
authorizationList?: undefined | undefined;
|
|
4700
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4701
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4702
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4703
|
+
maxFeePerGas?: bigint | undefined;
|
|
4704
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4705
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4706
|
+
} | {
|
|
4707
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4708
|
+
authorizationList?: undefined | undefined;
|
|
4709
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4710
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4711
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4712
|
+
maxFeePerGas?: bigint | undefined;
|
|
4713
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4714
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4715
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4716
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4717
|
+
} | {
|
|
4718
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4719
|
+
} | {
|
|
4720
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4721
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4722
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4723
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4724
|
+
blobs?: undefined | undefined;
|
|
4725
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4726
|
+
gasPrice?: undefined | undefined;
|
|
4727
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4728
|
+
maxFeePerGas?: bigint | undefined;
|
|
4729
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4730
|
+
sidecars?: undefined | undefined;
|
|
4731
|
+
} | {
|
|
4732
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4733
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4734
|
+
blobs?: undefined | undefined;
|
|
4735
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4736
|
+
gasPrice?: undefined | undefined;
|
|
4737
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4738
|
+
maxFeePerGas?: bigint | undefined;
|
|
4739
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4740
|
+
sidecars?: undefined | undefined;
|
|
4741
|
+
}) & {
|
|
4742
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4743
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
4744
|
+
accessList?: undefined | undefined;
|
|
4745
|
+
authorizationList?: undefined | undefined;
|
|
4746
|
+
blobs?: undefined | undefined;
|
|
4747
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4748
|
+
gasPrice?: bigint | undefined;
|
|
4749
|
+
sidecars?: undefined | undefined;
|
|
4750
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4751
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4752
|
+
authorizationList?: undefined | undefined;
|
|
4753
|
+
blobs?: undefined | undefined;
|
|
4754
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4755
|
+
gasPrice?: undefined | undefined;
|
|
4756
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4757
|
+
maxFeePerGas?: bigint | undefined;
|
|
4758
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4759
|
+
sidecars?: undefined | undefined;
|
|
4760
|
+
} & (import('viem').OneOf<{
|
|
4761
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4762
|
+
} | {
|
|
4763
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4764
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4765
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4766
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4767
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4768
|
+
authorizationList?: undefined | undefined;
|
|
4769
|
+
blobs?: undefined | undefined;
|
|
4770
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4771
|
+
gasPrice?: bigint | undefined;
|
|
4772
|
+
sidecars?: undefined | undefined;
|
|
4773
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4774
|
+
maxFeePerGas?: undefined | undefined;
|
|
4775
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4776
|
+
} & {
|
|
4777
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4778
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4779
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4780
|
+
authorizationList?: undefined | undefined;
|
|
4781
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4782
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4783
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4784
|
+
maxFeePerGas?: bigint | undefined;
|
|
4785
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4786
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4787
|
+
} | {
|
|
4788
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4789
|
+
authorizationList?: undefined | undefined;
|
|
4790
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4791
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4792
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4793
|
+
maxFeePerGas?: bigint | undefined;
|
|
4794
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4795
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4796
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4797
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4798
|
+
} | {
|
|
4799
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4800
|
+
} | {
|
|
4801
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4802
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4803
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4804
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4805
|
+
blobs?: undefined | undefined;
|
|
4806
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4807
|
+
gasPrice?: undefined | undefined;
|
|
4808
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4809
|
+
maxFeePerGas?: bigint | undefined;
|
|
4810
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4811
|
+
sidecars?: undefined | undefined;
|
|
4812
|
+
} | {
|
|
4813
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4814
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4815
|
+
blobs?: undefined | undefined;
|
|
4816
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4817
|
+
gasPrice?: undefined | undefined;
|
|
4818
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4819
|
+
maxFeePerGas?: bigint | undefined;
|
|
4820
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4821
|
+
sidecars?: undefined | undefined;
|
|
4822
|
+
}) & {
|
|
4823
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4824
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_23 ? T_23 extends (request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
4825
|
+
accessList?: undefined | undefined;
|
|
4826
|
+
authorizationList?: undefined | undefined;
|
|
4827
|
+
blobs?: undefined | undefined;
|
|
4828
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4829
|
+
gasPrice?: bigint | undefined;
|
|
4830
|
+
sidecars?: undefined | undefined;
|
|
4831
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4832
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4833
|
+
authorizationList?: undefined | undefined;
|
|
4834
|
+
blobs?: undefined | undefined;
|
|
4835
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4836
|
+
gasPrice?: undefined | undefined;
|
|
4837
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4838
|
+
maxFeePerGas?: bigint | undefined;
|
|
4839
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4840
|
+
sidecars?: undefined | undefined;
|
|
4841
|
+
} & (import('viem').OneOf<{
|
|
4842
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4843
|
+
} | {
|
|
4844
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4845
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4846
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4847
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4848
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4849
|
+
authorizationList?: undefined | undefined;
|
|
4850
|
+
blobs?: undefined | undefined;
|
|
4851
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4852
|
+
gasPrice?: bigint | undefined;
|
|
4853
|
+
sidecars?: undefined | undefined;
|
|
4854
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4855
|
+
maxFeePerGas?: undefined | undefined;
|
|
4856
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4857
|
+
} & {
|
|
4858
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4859
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4860
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4861
|
+
authorizationList?: undefined | undefined;
|
|
4862
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4863
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4864
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4865
|
+
maxFeePerGas?: bigint | undefined;
|
|
4866
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4867
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4868
|
+
} | {
|
|
4869
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4870
|
+
authorizationList?: undefined | undefined;
|
|
4871
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4872
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4873
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4874
|
+
maxFeePerGas?: bigint | undefined;
|
|
4875
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4876
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4877
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4878
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4879
|
+
} | {
|
|
4880
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4881
|
+
} | {
|
|
4882
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4883
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4884
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4885
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4886
|
+
blobs?: undefined | undefined;
|
|
4887
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4888
|
+
gasPrice?: undefined | undefined;
|
|
4889
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4890
|
+
maxFeePerGas?: bigint | undefined;
|
|
4891
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4892
|
+
sidecars?: undefined | undefined;
|
|
4893
|
+
} | {
|
|
4894
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4895
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4896
|
+
blobs?: undefined | undefined;
|
|
4897
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4898
|
+
gasPrice?: undefined | undefined;
|
|
4899
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4900
|
+
maxFeePerGas?: bigint | undefined;
|
|
4901
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4902
|
+
sidecars?: undefined | undefined;
|
|
4903
|
+
}) & {
|
|
4904
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4905
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
4906
|
+
accessList?: undefined | undefined;
|
|
4907
|
+
authorizationList?: undefined | undefined;
|
|
4908
|
+
blobs?: undefined | undefined;
|
|
4909
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4910
|
+
gasPrice?: bigint | undefined;
|
|
4911
|
+
sidecars?: undefined | undefined;
|
|
4912
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4913
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4914
|
+
authorizationList?: undefined | undefined;
|
|
4915
|
+
blobs?: undefined | undefined;
|
|
4916
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4917
|
+
gasPrice?: undefined | undefined;
|
|
4918
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4919
|
+
maxFeePerGas?: bigint | undefined;
|
|
4920
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4921
|
+
sidecars?: undefined | undefined;
|
|
4922
|
+
} & (import('viem').OneOf<{
|
|
4923
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
4924
|
+
} | {
|
|
4925
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
4926
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
4927
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
4928
|
+
}) ? "eip1559" : never) | (request extends {
|
|
4929
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4930
|
+
authorizationList?: undefined | undefined;
|
|
4931
|
+
blobs?: undefined | undefined;
|
|
4932
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4933
|
+
gasPrice?: bigint | undefined;
|
|
4934
|
+
sidecars?: undefined | undefined;
|
|
4935
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4936
|
+
maxFeePerGas?: undefined | undefined;
|
|
4937
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4938
|
+
} & {
|
|
4939
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
4940
|
+
} ? "eip2930" : never) | (request extends ({
|
|
4941
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4942
|
+
authorizationList?: undefined | undefined;
|
|
4943
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4944
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4945
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4946
|
+
maxFeePerGas?: bigint | undefined;
|
|
4947
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4948
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4949
|
+
} | {
|
|
4950
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4951
|
+
authorizationList?: undefined | undefined;
|
|
4952
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
4953
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4954
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
4955
|
+
maxFeePerGas?: bigint | undefined;
|
|
4956
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4957
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
4958
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
4959
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
4960
|
+
} | {
|
|
4961
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4962
|
+
} | {
|
|
4963
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
4964
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4965
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4966
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4967
|
+
blobs?: undefined | undefined;
|
|
4968
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4969
|
+
gasPrice?: undefined | undefined;
|
|
4970
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4971
|
+
maxFeePerGas?: bigint | undefined;
|
|
4972
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4973
|
+
sidecars?: undefined | undefined;
|
|
4974
|
+
} | {
|
|
4975
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4976
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
4977
|
+
blobs?: undefined | undefined;
|
|
4978
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4979
|
+
gasPrice?: undefined | undefined;
|
|
4980
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4981
|
+
maxFeePerGas?: bigint | undefined;
|
|
4982
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
4983
|
+
sidecars?: undefined | undefined;
|
|
4984
|
+
}) & {
|
|
4985
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
4986
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_23 extends "eip2930" ? import('viem').TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
4987
|
+
accessList?: undefined | undefined;
|
|
4988
|
+
authorizationList?: undefined | undefined;
|
|
4989
|
+
blobs?: undefined | undefined;
|
|
4990
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4991
|
+
gasPrice?: bigint | undefined;
|
|
4992
|
+
sidecars?: undefined | undefined;
|
|
4993
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
4994
|
+
accessList?: import('viem').AccessList | undefined;
|
|
4995
|
+
authorizationList?: undefined | undefined;
|
|
4996
|
+
blobs?: undefined | undefined;
|
|
4997
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4998
|
+
gasPrice?: undefined | undefined;
|
|
4999
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5000
|
+
maxFeePerGas?: bigint | undefined;
|
|
5001
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5002
|
+
sidecars?: undefined | undefined;
|
|
5003
|
+
} & (import('viem').OneOf<{
|
|
5004
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
5005
|
+
} | {
|
|
5006
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
5007
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
5008
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
5009
|
+
}) ? "eip1559" : never) | (request extends {
|
|
5010
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5011
|
+
authorizationList?: undefined | undefined;
|
|
5012
|
+
blobs?: undefined | undefined;
|
|
5013
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5014
|
+
gasPrice?: bigint | undefined;
|
|
5015
|
+
sidecars?: undefined | undefined;
|
|
5016
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5017
|
+
maxFeePerGas?: undefined | undefined;
|
|
5018
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
5019
|
+
} & {
|
|
5020
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
5021
|
+
} ? "eip2930" : never) | (request extends ({
|
|
5022
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5023
|
+
authorizationList?: undefined | undefined;
|
|
5024
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5025
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5026
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5027
|
+
maxFeePerGas?: bigint | undefined;
|
|
5028
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5029
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5030
|
+
} | {
|
|
5031
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5032
|
+
authorizationList?: undefined | undefined;
|
|
5033
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5034
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5035
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5036
|
+
maxFeePerGas?: bigint | undefined;
|
|
5037
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5038
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5039
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
5040
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
5041
|
+
} | {
|
|
5042
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
5043
|
+
} | {
|
|
5044
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
5045
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
5046
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5047
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5048
|
+
blobs?: undefined | undefined;
|
|
5049
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5050
|
+
gasPrice?: undefined | undefined;
|
|
5051
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5052
|
+
maxFeePerGas?: bigint | undefined;
|
|
5053
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5054
|
+
sidecars?: undefined | undefined;
|
|
5055
|
+
} | {
|
|
5056
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5057
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5058
|
+
blobs?: undefined | undefined;
|
|
5059
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5060
|
+
gasPrice?: undefined | undefined;
|
|
5061
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5062
|
+
maxFeePerGas?: bigint | undefined;
|
|
5063
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5064
|
+
sidecars?: undefined | undefined;
|
|
5065
|
+
}) & {
|
|
5066
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
5067
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
5068
|
+
accessList?: undefined | undefined;
|
|
5069
|
+
authorizationList?: undefined | undefined;
|
|
5070
|
+
blobs?: undefined | undefined;
|
|
5071
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5072
|
+
gasPrice?: bigint | undefined;
|
|
5073
|
+
sidecars?: undefined | undefined;
|
|
5074
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
5075
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5076
|
+
authorizationList?: undefined | undefined;
|
|
5077
|
+
blobs?: undefined | undefined;
|
|
5078
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5079
|
+
gasPrice?: undefined | undefined;
|
|
5080
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5081
|
+
maxFeePerGas?: bigint | undefined;
|
|
5082
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5083
|
+
sidecars?: undefined | undefined;
|
|
5084
|
+
} & (import('viem').OneOf<{
|
|
5085
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
5086
|
+
} | {
|
|
5087
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
5088
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
5089
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
5090
|
+
}) ? "eip1559" : never) | (request extends {
|
|
5091
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5092
|
+
authorizationList?: undefined | undefined;
|
|
5093
|
+
blobs?: undefined | undefined;
|
|
5094
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5095
|
+
gasPrice?: bigint | undefined;
|
|
5096
|
+
sidecars?: undefined | undefined;
|
|
5097
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5098
|
+
maxFeePerGas?: undefined | undefined;
|
|
5099
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
5100
|
+
} & {
|
|
5101
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
5102
|
+
} ? "eip2930" : never) | (request extends ({
|
|
5103
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5104
|
+
authorizationList?: undefined | undefined;
|
|
5105
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5106
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5107
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5108
|
+
maxFeePerGas?: bigint | undefined;
|
|
5109
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5110
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5111
|
+
} | {
|
|
5112
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5113
|
+
authorizationList?: undefined | undefined;
|
|
5114
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5115
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5116
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5117
|
+
maxFeePerGas?: bigint | undefined;
|
|
5118
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5119
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5120
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
5121
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
5122
|
+
} | {
|
|
5123
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
5124
|
+
} | {
|
|
5125
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
5126
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
5127
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5128
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5129
|
+
blobs?: undefined | undefined;
|
|
5130
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5131
|
+
gasPrice?: undefined | undefined;
|
|
5132
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5133
|
+
maxFeePerGas?: bigint | undefined;
|
|
5134
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5135
|
+
sidecars?: undefined | undefined;
|
|
5136
|
+
} | {
|
|
5137
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5138
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5139
|
+
blobs?: undefined | undefined;
|
|
5140
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5141
|
+
gasPrice?: undefined | undefined;
|
|
5142
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5143
|
+
maxFeePerGas?: bigint | undefined;
|
|
5144
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5145
|
+
sidecars?: undefined | undefined;
|
|
5146
|
+
}) & {
|
|
5147
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
5148
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_24 ? T_24 extends (request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
5149
|
+
accessList?: undefined | undefined;
|
|
5150
|
+
authorizationList?: undefined | undefined;
|
|
5151
|
+
blobs?: undefined | undefined;
|
|
5152
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5153
|
+
gasPrice?: bigint | undefined;
|
|
5154
|
+
sidecars?: undefined | undefined;
|
|
5155
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
5156
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5157
|
+
authorizationList?: undefined | undefined;
|
|
5158
|
+
blobs?: undefined | undefined;
|
|
5159
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5160
|
+
gasPrice?: undefined | undefined;
|
|
5161
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5162
|
+
maxFeePerGas?: bigint | undefined;
|
|
5163
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5164
|
+
sidecars?: undefined | undefined;
|
|
5165
|
+
} & (import('viem').OneOf<{
|
|
5166
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
5167
|
+
} | {
|
|
5168
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
5169
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
5170
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
5171
|
+
}) ? "eip1559" : never) | (request extends {
|
|
5172
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5173
|
+
authorizationList?: undefined | undefined;
|
|
5174
|
+
blobs?: undefined | undefined;
|
|
5175
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5176
|
+
gasPrice?: bigint | undefined;
|
|
5177
|
+
sidecars?: undefined | undefined;
|
|
5178
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5179
|
+
maxFeePerGas?: undefined | undefined;
|
|
5180
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
5181
|
+
} & {
|
|
5182
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
5183
|
+
} ? "eip2930" : never) | (request extends ({
|
|
5184
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5185
|
+
authorizationList?: undefined | undefined;
|
|
5186
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5187
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5188
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5189
|
+
maxFeePerGas?: bigint | undefined;
|
|
5190
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5191
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5192
|
+
} | {
|
|
5193
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5194
|
+
authorizationList?: undefined | undefined;
|
|
5195
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5196
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5197
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5198
|
+
maxFeePerGas?: bigint | undefined;
|
|
5199
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5200
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5201
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
5202
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
5203
|
+
} | {
|
|
5204
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
5205
|
+
} | {
|
|
5206
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
5207
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
5208
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5209
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5210
|
+
blobs?: undefined | undefined;
|
|
5211
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5212
|
+
gasPrice?: undefined | undefined;
|
|
5213
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5214
|
+
maxFeePerGas?: bigint | undefined;
|
|
5215
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5216
|
+
sidecars?: undefined | undefined;
|
|
5217
|
+
} | {
|
|
5218
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5219
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5220
|
+
blobs?: undefined | undefined;
|
|
5221
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5222
|
+
gasPrice?: undefined | undefined;
|
|
5223
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5224
|
+
maxFeePerGas?: bigint | undefined;
|
|
5225
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5226
|
+
sidecars?: undefined | undefined;
|
|
5227
|
+
}) & {
|
|
5228
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
5229
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
5230
|
+
accessList?: undefined | undefined;
|
|
5231
|
+
authorizationList?: undefined | undefined;
|
|
5232
|
+
blobs?: undefined | undefined;
|
|
5233
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5234
|
+
gasPrice?: bigint | undefined;
|
|
5235
|
+
sidecars?: undefined | undefined;
|
|
5236
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
5237
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5238
|
+
authorizationList?: undefined | undefined;
|
|
5239
|
+
blobs?: undefined | undefined;
|
|
5240
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5241
|
+
gasPrice?: undefined | undefined;
|
|
5242
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5243
|
+
maxFeePerGas?: bigint | undefined;
|
|
5244
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5245
|
+
sidecars?: undefined | undefined;
|
|
5246
|
+
} & (import('viem').OneOf<{
|
|
5247
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
5248
|
+
} | {
|
|
5249
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
5250
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
5251
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
5252
|
+
}) ? "eip1559" : never) | (request extends {
|
|
5253
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5254
|
+
authorizationList?: undefined | undefined;
|
|
5255
|
+
blobs?: undefined | undefined;
|
|
5256
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5257
|
+
gasPrice?: bigint | undefined;
|
|
5258
|
+
sidecars?: undefined | undefined;
|
|
5259
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5260
|
+
maxFeePerGas?: undefined | undefined;
|
|
5261
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
5262
|
+
} & {
|
|
5263
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
5264
|
+
} ? "eip2930" : never) | (request extends ({
|
|
5265
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5266
|
+
authorizationList?: undefined | undefined;
|
|
5267
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5268
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5269
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5270
|
+
maxFeePerGas?: bigint | undefined;
|
|
5271
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5272
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5273
|
+
} | {
|
|
5274
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5275
|
+
authorizationList?: undefined | undefined;
|
|
5276
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5277
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5278
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5279
|
+
maxFeePerGas?: bigint | undefined;
|
|
5280
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5281
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5282
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
5283
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
5284
|
+
} | {
|
|
5285
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
5286
|
+
} | {
|
|
5287
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
5288
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
5289
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5290
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5291
|
+
blobs?: undefined | undefined;
|
|
5292
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5293
|
+
gasPrice?: undefined | undefined;
|
|
5294
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5295
|
+
maxFeePerGas?: bigint | undefined;
|
|
5296
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5297
|
+
sidecars?: undefined | undefined;
|
|
5298
|
+
} | {
|
|
5299
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5300
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5301
|
+
blobs?: undefined | undefined;
|
|
5302
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5303
|
+
gasPrice?: undefined | undefined;
|
|
5304
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5305
|
+
maxFeePerGas?: bigint | undefined;
|
|
5306
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5307
|
+
sidecars?: undefined | undefined;
|
|
5308
|
+
}) & {
|
|
5309
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
5310
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_24 extends "eip4844" ? import('viem').TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
5311
|
+
accessList?: undefined | undefined;
|
|
5312
|
+
authorizationList?: undefined | undefined;
|
|
5313
|
+
blobs?: undefined | undefined;
|
|
5314
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5315
|
+
gasPrice?: bigint | undefined;
|
|
5316
|
+
sidecars?: undefined | undefined;
|
|
5317
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
5318
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5319
|
+
authorizationList?: undefined | undefined;
|
|
5320
|
+
blobs?: undefined | undefined;
|
|
5321
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5322
|
+
gasPrice?: undefined | undefined;
|
|
5323
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5324
|
+
maxFeePerGas?: bigint | undefined;
|
|
5325
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5326
|
+
sidecars?: undefined | undefined;
|
|
5327
|
+
} & (import('viem').OneOf<{
|
|
5328
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
5329
|
+
} | {
|
|
5330
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
5331
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
5332
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
5333
|
+
}) ? "eip1559" : never) | (request extends {
|
|
5334
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5335
|
+
authorizationList?: undefined | undefined;
|
|
5336
|
+
blobs?: undefined | undefined;
|
|
5337
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5338
|
+
gasPrice?: bigint | undefined;
|
|
5339
|
+
sidecars?: undefined | undefined;
|
|
5340
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5341
|
+
maxFeePerGas?: undefined | undefined;
|
|
5342
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
5343
|
+
} & {
|
|
5344
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
5345
|
+
} ? "eip2930" : never) | (request extends ({
|
|
5346
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5347
|
+
authorizationList?: undefined | undefined;
|
|
5348
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5349
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5350
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5351
|
+
maxFeePerGas?: bigint | undefined;
|
|
5352
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5353
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5354
|
+
} | {
|
|
5355
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5356
|
+
authorizationList?: undefined | undefined;
|
|
5357
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5358
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5359
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5360
|
+
maxFeePerGas?: bigint | undefined;
|
|
5361
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5362
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5363
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
5364
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
5365
|
+
} | {
|
|
5366
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
5367
|
+
} | {
|
|
5368
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
5369
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
5370
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5371
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5372
|
+
blobs?: undefined | undefined;
|
|
5373
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5374
|
+
gasPrice?: undefined | undefined;
|
|
5375
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5376
|
+
maxFeePerGas?: bigint | undefined;
|
|
5377
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5378
|
+
sidecars?: undefined | undefined;
|
|
5379
|
+
} | {
|
|
5380
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5381
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5382
|
+
blobs?: undefined | undefined;
|
|
5383
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5384
|
+
gasPrice?: undefined | undefined;
|
|
5385
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5386
|
+
maxFeePerGas?: bigint | undefined;
|
|
5387
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5388
|
+
sidecars?: undefined | undefined;
|
|
5389
|
+
}) & {
|
|
5390
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
5391
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
5392
|
+
accessList?: undefined | undefined;
|
|
5393
|
+
authorizationList?: undefined | undefined;
|
|
5394
|
+
blobs?: undefined | undefined;
|
|
5395
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5396
|
+
gasPrice?: bigint | undefined;
|
|
5397
|
+
sidecars?: undefined | undefined;
|
|
5398
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
5399
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5400
|
+
authorizationList?: undefined | undefined;
|
|
5401
|
+
blobs?: undefined | undefined;
|
|
5402
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5403
|
+
gasPrice?: undefined | undefined;
|
|
5404
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5405
|
+
maxFeePerGas?: bigint | undefined;
|
|
5406
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5407
|
+
sidecars?: undefined | undefined;
|
|
5408
|
+
} & (import('viem').OneOf<{
|
|
5409
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
5410
|
+
} | {
|
|
5411
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
5412
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
5413
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
5414
|
+
}) ? "eip1559" : never) | (request extends {
|
|
5415
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5416
|
+
authorizationList?: undefined | undefined;
|
|
5417
|
+
blobs?: undefined | undefined;
|
|
5418
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5419
|
+
gasPrice?: bigint | undefined;
|
|
5420
|
+
sidecars?: undefined | undefined;
|
|
5421
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5422
|
+
maxFeePerGas?: undefined | undefined;
|
|
5423
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
5424
|
+
} & {
|
|
5425
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
5426
|
+
} ? "eip2930" : never) | (request extends ({
|
|
5427
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5428
|
+
authorizationList?: undefined | undefined;
|
|
5429
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5430
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5431
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5432
|
+
maxFeePerGas?: bigint | undefined;
|
|
5433
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5434
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5435
|
+
} | {
|
|
5436
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5437
|
+
authorizationList?: undefined | undefined;
|
|
5438
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5439
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5440
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5441
|
+
maxFeePerGas?: bigint | undefined;
|
|
5442
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5443
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5444
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
5445
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
5446
|
+
} | {
|
|
5447
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
5448
|
+
} | {
|
|
5449
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
5450
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
5451
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5452
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5453
|
+
blobs?: undefined | undefined;
|
|
5454
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5455
|
+
gasPrice?: undefined | undefined;
|
|
5456
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5457
|
+
maxFeePerGas?: bigint | undefined;
|
|
5458
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5459
|
+
sidecars?: undefined | undefined;
|
|
5460
|
+
} | {
|
|
5461
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5462
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5463
|
+
blobs?: undefined | undefined;
|
|
5464
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5465
|
+
gasPrice?: undefined | undefined;
|
|
5466
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5467
|
+
maxFeePerGas?: bigint | undefined;
|
|
5468
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5469
|
+
sidecars?: undefined | undefined;
|
|
5470
|
+
}) & {
|
|
5471
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
5472
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_25 ? T_25 extends (request["type"] extends string | undefined ? request["type"] : import('viem').GetTransactionType<request, (request extends {
|
|
5473
|
+
accessList?: undefined | undefined;
|
|
5474
|
+
authorizationList?: undefined | undefined;
|
|
5475
|
+
blobs?: undefined | undefined;
|
|
5476
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5477
|
+
gasPrice?: bigint | undefined;
|
|
5478
|
+
sidecars?: undefined | undefined;
|
|
5479
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
5480
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5481
|
+
authorizationList?: undefined | undefined;
|
|
5482
|
+
blobs?: undefined | undefined;
|
|
5483
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5484
|
+
gasPrice?: undefined | undefined;
|
|
5485
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5486
|
+
maxFeePerGas?: bigint | undefined;
|
|
5487
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5488
|
+
sidecars?: undefined | undefined;
|
|
5489
|
+
} & (import('viem').OneOf<{
|
|
5490
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
5491
|
+
} | {
|
|
5492
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
5493
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
5494
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
5495
|
+
}) ? "eip1559" : never) | (request extends {
|
|
5496
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5497
|
+
authorizationList?: undefined | undefined;
|
|
5498
|
+
blobs?: undefined | undefined;
|
|
5499
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5500
|
+
gasPrice?: bigint | undefined;
|
|
5501
|
+
sidecars?: undefined | undefined;
|
|
5502
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5503
|
+
maxFeePerGas?: undefined | undefined;
|
|
5504
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
5505
|
+
} & {
|
|
5506
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
5507
|
+
} ? "eip2930" : never) | (request extends ({
|
|
5508
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5509
|
+
authorizationList?: undefined | undefined;
|
|
5510
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5511
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5512
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5513
|
+
maxFeePerGas?: bigint | undefined;
|
|
5514
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5515
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5516
|
+
} | {
|
|
5517
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5518
|
+
authorizationList?: undefined | undefined;
|
|
5519
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5520
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5521
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5522
|
+
maxFeePerGas?: bigint | undefined;
|
|
5523
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5524
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5525
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
5526
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
5527
|
+
} | {
|
|
5528
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
5529
|
+
} | {
|
|
5530
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
5531
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
5532
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5533
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5534
|
+
blobs?: undefined | undefined;
|
|
5535
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5536
|
+
gasPrice?: undefined | undefined;
|
|
5537
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5538
|
+
maxFeePerGas?: bigint | undefined;
|
|
5539
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5540
|
+
sidecars?: undefined | undefined;
|
|
5541
|
+
} | {
|
|
5542
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5543
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5544
|
+
blobs?: undefined | undefined;
|
|
5545
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5546
|
+
gasPrice?: undefined | undefined;
|
|
5547
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5548
|
+
maxFeePerGas?: bigint | undefined;
|
|
5549
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5550
|
+
sidecars?: undefined | undefined;
|
|
5551
|
+
}) & {
|
|
5552
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
5553
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import('viem').GetTransactionType<request, (request extends {
|
|
5554
|
+
accessList?: undefined | undefined;
|
|
5555
|
+
authorizationList?: undefined | undefined;
|
|
5556
|
+
blobs?: undefined | undefined;
|
|
5557
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5558
|
+
gasPrice?: bigint | undefined;
|
|
5559
|
+
sidecars?: undefined | undefined;
|
|
5560
|
+
} & import('viem').FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
5561
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5562
|
+
authorizationList?: undefined | undefined;
|
|
5563
|
+
blobs?: undefined | undefined;
|
|
5564
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5565
|
+
gasPrice?: undefined | undefined;
|
|
5566
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5567
|
+
maxFeePerGas?: bigint | undefined;
|
|
5568
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5569
|
+
sidecars?: undefined | undefined;
|
|
5570
|
+
} & (import('viem').OneOf<{
|
|
5571
|
+
maxFeePerGas: import('viem').FeeValuesEIP1559["maxFeePerGas"];
|
|
5572
|
+
} | {
|
|
5573
|
+
maxPriorityFeePerGas: import('viem').FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
5574
|
+
}, import('viem').FeeValuesEIP1559> & {
|
|
5575
|
+
accessList?: import('viem').TransactionSerializableEIP2930["accessList"] | undefined;
|
|
5576
|
+
}) ? "eip1559" : never) | (request extends {
|
|
5577
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5578
|
+
authorizationList?: undefined | undefined;
|
|
5579
|
+
blobs?: undefined | undefined;
|
|
5580
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5581
|
+
gasPrice?: bigint | undefined;
|
|
5582
|
+
sidecars?: undefined | undefined;
|
|
5583
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5584
|
+
maxFeePerGas?: undefined | undefined;
|
|
5585
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
5586
|
+
} & {
|
|
5587
|
+
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
5588
|
+
} ? "eip2930" : never) | (request extends ({
|
|
5589
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5590
|
+
authorizationList?: undefined | undefined;
|
|
5591
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5592
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5593
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5594
|
+
maxFeePerGas?: bigint | undefined;
|
|
5595
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5596
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5597
|
+
} | {
|
|
5598
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5599
|
+
authorizationList?: undefined | undefined;
|
|
5600
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
5601
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
5602
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
5603
|
+
maxFeePerGas?: bigint | undefined;
|
|
5604
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5605
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
5606
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
5607
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
5608
|
+
} | {
|
|
5609
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
5610
|
+
} | {
|
|
5611
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
5612
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
5613
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5614
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5615
|
+
blobs?: undefined | undefined;
|
|
5616
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5617
|
+
gasPrice?: undefined | undefined;
|
|
5618
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5619
|
+
maxFeePerGas?: bigint | undefined;
|
|
5620
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5621
|
+
sidecars?: undefined | undefined;
|
|
5622
|
+
} | {
|
|
5623
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5624
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5625
|
+
blobs?: undefined | undefined;
|
|
5626
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5627
|
+
gasPrice?: undefined | undefined;
|
|
5628
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5629
|
+
maxFeePerGas?: bigint | undefined;
|
|
5630
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5631
|
+
sidecars?: undefined | undefined;
|
|
5632
|
+
}) & {
|
|
5633
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
5634
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? import('viem').TransactionRequestEIP7702 : never : never : never)>> & {
|
|
5635
|
+
chainId?: number | undefined;
|
|
5636
|
+
}, (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") ? T_26 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_26 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (import('viem').UnionRequiredBy<Extract<import('viem').UnionOmit<import('viem').ExtractChainFormatterParameters<import('viem').DeriveChain<{
|
|
5637
|
+
graphCliName: string;
|
|
5638
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
5639
|
+
blockExplorers: {
|
|
5640
|
+
readonly default: {
|
|
5641
|
+
readonly name: "Etherscan";
|
|
5642
|
+
readonly url: "https://etherscan.io";
|
|
5643
|
+
readonly apiUrl: "https://api.etherscan.io/api";
|
|
5644
|
+
};
|
|
5645
|
+
};
|
|
5646
|
+
blockTime: 12000;
|
|
5647
|
+
contracts: {
|
|
5648
|
+
readonly ensUniversalResolver: {
|
|
5649
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5650
|
+
readonly blockCreated: 23085558;
|
|
5651
|
+
};
|
|
5652
|
+
readonly multicall3: {
|
|
5653
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
5654
|
+
readonly blockCreated: 14353601;
|
|
5655
|
+
};
|
|
5656
|
+
};
|
|
5657
|
+
ensTlds?: readonly string[] | undefined;
|
|
5658
|
+
id: 1;
|
|
5659
|
+
name: "Ethereum";
|
|
5660
|
+
nativeCurrency: {
|
|
5661
|
+
readonly name: "Ether";
|
|
5662
|
+
readonly symbol: "ETH";
|
|
5663
|
+
readonly decimals: 18;
|
|
5664
|
+
};
|
|
5665
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
5666
|
+
rpcUrls: {
|
|
5667
|
+
readonly default: {
|
|
5668
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
5669
|
+
};
|
|
5670
|
+
};
|
|
5671
|
+
sourceId?: number | undefined | undefined;
|
|
5672
|
+
testnet?: boolean | undefined | undefined;
|
|
5673
|
+
custom?: Record<string, unknown> | undefined;
|
|
5674
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
5675
|
+
formatters?: undefined;
|
|
5676
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5677
|
+
} | {
|
|
5678
|
+
graphCliName: string;
|
|
5679
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
5680
|
+
blockExplorers: {
|
|
5681
|
+
readonly default: {
|
|
5682
|
+
readonly name: "Etherscan";
|
|
5683
|
+
readonly url: "https://sepolia.etherscan.io";
|
|
5684
|
+
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
5685
|
+
};
|
|
5686
|
+
};
|
|
5687
|
+
blockTime?: number | undefined | undefined;
|
|
5688
|
+
contracts: {
|
|
5689
|
+
readonly multicall3: {
|
|
5690
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
5691
|
+
readonly blockCreated: 751532;
|
|
5692
|
+
};
|
|
5693
|
+
readonly ensUniversalResolver: {
|
|
5694
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5695
|
+
readonly blockCreated: 8928790;
|
|
5696
|
+
};
|
|
5697
|
+
};
|
|
5698
|
+
ensTlds?: readonly string[] | undefined;
|
|
5699
|
+
id: 11155111;
|
|
5700
|
+
name: "Sepolia";
|
|
5701
|
+
nativeCurrency: {
|
|
5702
|
+
readonly name: "Sepolia Ether";
|
|
5703
|
+
readonly symbol: "ETH";
|
|
5704
|
+
readonly decimals: 18;
|
|
5705
|
+
};
|
|
5706
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
5707
|
+
rpcUrls: {
|
|
5708
|
+
readonly default: {
|
|
5709
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
5710
|
+
};
|
|
5711
|
+
};
|
|
5712
|
+
sourceId?: number | undefined | undefined;
|
|
5713
|
+
testnet: true;
|
|
5714
|
+
custom?: Record<string, unknown> | undefined;
|
|
5715
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
5716
|
+
formatters?: undefined;
|
|
5717
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5718
|
+
} | {
|
|
5719
|
+
graphCliName: string;
|
|
5720
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
5721
|
+
blockExplorers: {
|
|
5722
|
+
readonly default: {
|
|
5723
|
+
readonly name: "Arbiscan";
|
|
5724
|
+
readonly url: "https://arbiscan.io";
|
|
5725
|
+
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
5726
|
+
};
|
|
5727
|
+
};
|
|
5728
|
+
blockTime: 250;
|
|
5729
|
+
contracts: {
|
|
5730
|
+
readonly multicall3: {
|
|
5731
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
5732
|
+
readonly blockCreated: 7654707;
|
|
5733
|
+
};
|
|
5734
|
+
};
|
|
5735
|
+
ensTlds?: readonly string[] | undefined;
|
|
5736
|
+
id: 42161;
|
|
5737
|
+
name: "Arbitrum One";
|
|
5738
|
+
nativeCurrency: {
|
|
5739
|
+
readonly name: "Ether";
|
|
5740
|
+
readonly symbol: "ETH";
|
|
5741
|
+
readonly decimals: 18;
|
|
5742
|
+
};
|
|
5743
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
5744
|
+
rpcUrls: {
|
|
5745
|
+
readonly default: {
|
|
5746
|
+
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
5747
|
+
};
|
|
5748
|
+
};
|
|
5749
|
+
sourceId?: number | undefined | undefined;
|
|
5750
|
+
testnet?: boolean | undefined | undefined;
|
|
5751
|
+
custom?: Record<string, unknown> | undefined;
|
|
5752
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
5753
|
+
formatters?: undefined;
|
|
5754
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5755
|
+
} | {
|
|
5756
|
+
graphCliName: string;
|
|
5757
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
5758
|
+
blockExplorers: {
|
|
5759
|
+
readonly default: {
|
|
5760
|
+
readonly name: "Arbiscan";
|
|
5761
|
+
readonly url: "https://sepolia.arbiscan.io";
|
|
5762
|
+
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
5763
|
+
};
|
|
5764
|
+
};
|
|
5765
|
+
blockTime: 250;
|
|
5766
|
+
contracts: {
|
|
5767
|
+
readonly multicall3: {
|
|
5768
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
5769
|
+
readonly blockCreated: 81930;
|
|
5770
|
+
};
|
|
5771
|
+
};
|
|
5772
|
+
ensTlds?: readonly string[] | undefined;
|
|
5773
|
+
id: 421614;
|
|
5774
|
+
name: "Arbitrum Sepolia";
|
|
5775
|
+
nativeCurrency: {
|
|
5776
|
+
readonly name: "Arbitrum Sepolia Ether";
|
|
5777
|
+
readonly symbol: "ETH";
|
|
5778
|
+
readonly decimals: 18;
|
|
5779
|
+
};
|
|
5780
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
5781
|
+
rpcUrls: {
|
|
5782
|
+
readonly default: {
|
|
5783
|
+
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
5784
|
+
};
|
|
5785
|
+
};
|
|
5786
|
+
sourceId?: number | undefined | undefined;
|
|
5787
|
+
testnet: true;
|
|
5788
|
+
custom?: Record<string, unknown> | undefined;
|
|
5789
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
5790
|
+
formatters?: undefined;
|
|
5791
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5792
|
+
}, chainOverride>, "transactionRequest", import('viem').TransactionRequest>, "from"> & (import('viem').DeriveChain<{
|
|
5793
|
+
graphCliName: string;
|
|
5794
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
5795
|
+
blockExplorers: {
|
|
5796
|
+
readonly default: {
|
|
5797
|
+
readonly name: "Etherscan";
|
|
5798
|
+
readonly url: "https://etherscan.io";
|
|
5799
|
+
readonly apiUrl: "https://api.etherscan.io/api";
|
|
5800
|
+
};
|
|
5801
|
+
};
|
|
5802
|
+
blockTime: 12000;
|
|
5803
|
+
contracts: {
|
|
5804
|
+
readonly ensUniversalResolver: {
|
|
5805
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5806
|
+
readonly blockCreated: 23085558;
|
|
5807
|
+
};
|
|
5808
|
+
readonly multicall3: {
|
|
5809
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
5810
|
+
readonly blockCreated: 14353601;
|
|
5811
|
+
};
|
|
5812
|
+
};
|
|
5813
|
+
ensTlds?: readonly string[] | undefined;
|
|
5814
|
+
id: 1;
|
|
5815
|
+
name: "Ethereum";
|
|
5816
|
+
nativeCurrency: {
|
|
5817
|
+
readonly name: "Ether";
|
|
5818
|
+
readonly symbol: "ETH";
|
|
5819
|
+
readonly decimals: 18;
|
|
5820
|
+
};
|
|
5821
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
5822
|
+
rpcUrls: {
|
|
5823
|
+
readonly default: {
|
|
5824
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
5825
|
+
};
|
|
5826
|
+
};
|
|
5827
|
+
sourceId?: number | undefined | undefined;
|
|
5828
|
+
testnet?: boolean | undefined | undefined;
|
|
5829
|
+
custom?: Record<string, unknown> | undefined;
|
|
5830
|
+
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
5831
|
+
formatters?: undefined;
|
|
5832
|
+
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5833
|
+
} | {
|
|
5834
|
+
graphCliName: string;
|
|
5835
|
+
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
5836
|
+
blockExplorers: {
|
|
5837
|
+
readonly default: {
|
|
5838
|
+
readonly name: "Etherscan";
|
|
5839
|
+
readonly url: "https://sepolia.etherscan.io";
|
|
5840
|
+
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
5841
|
+
};
|
|
5842
|
+
};
|
|
5843
|
+
blockTime?: number | undefined | undefined;
|
|
5844
|
+
contracts: {
|
|
5845
|
+
readonly multicall3: {
|
|
5846
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
5847
|
+
readonly blockCreated: 751532;
|
|
5848
|
+
};
|
|
5849
|
+
readonly ensUniversalResolver: {
|
|
5850
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5851
|
+
readonly blockCreated: 8928790;
|
|
5852
|
+
};
|
|
5853
|
+
};
|
|
5854
|
+
ensTlds?: readonly string[] | undefined;
|
|
5855
|
+
id: 11155111;
|
|
5856
|
+
name: "Sepolia";
|
|
5857
|
+
nativeCurrency: {
|
|
5858
|
+
readonly name: "Sepolia Ether";
|
|
5859
|
+
readonly symbol: "ETH";
|
|
5860
|
+
readonly decimals: 18;
|
|
5861
|
+
};
|
|
5862
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
5863
|
+
rpcUrls: {
|
|
5864
|
+
readonly default: {
|
|
5865
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
2146
5866
|
};
|
|
2147
5867
|
};
|
|
2148
5868
|
sourceId?: number | undefined | undefined;
|
|
@@ -2298,7 +6018,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2298
6018
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2299
6019
|
rpcUrls: {
|
|
2300
6020
|
readonly default: {
|
|
2301
|
-
readonly http: readonly ["https://
|
|
6021
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
2302
6022
|
};
|
|
2303
6023
|
};
|
|
2304
6024
|
sourceId?: number | undefined | undefined;
|
|
@@ -2387,7 +6107,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2387
6107
|
chain?: undefined;
|
|
2388
6108
|
} : never : never) & (import('viem').DeriveAccount<import('viem').Account | undefined, accountOverride> extends infer T_2 ? T_2 extends import('viem').DeriveAccount<import('viem').Account | undefined, accountOverride> ? T_2 extends import('viem').Account ? {
|
|
2389
6109
|
account: T_2;
|
|
2390
|
-
from: import('
|
|
6110
|
+
from: import('abitype').Address;
|
|
2391
6111
|
} : {
|
|
2392
6112
|
account?: undefined;
|
|
2393
6113
|
from?: undefined;
|
|
@@ -5633,14 +9353,13 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5633
9353
|
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
5634
9354
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? import('viem').TransactionRequestEIP7702 : never : never : never)>> & {
|
|
5635
9355
|
chainId?: number | undefined;
|
|
5636
|
-
}, (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">)
|
|
5637
|
-
readContract: <const abi extends import('
|
|
9356
|
+
}, (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K]; } : never>;
|
|
9357
|
+
readContract: <const abi extends import('abitype').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "pure" | "view">, const args extends import('viem').ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: import('viem').ReadContractParameters<abi, functionName, args>) => Promise<import('viem').ReadContractReturnType<abi, functionName, args>>;
|
|
5638
9358
|
sendRawTransaction: (args: import('viem').SendRawTransactionParameters) => Promise<import('viem').SendRawTransactionReturnType>;
|
|
5639
|
-
sendRawTransactionSync: (args: import('viem').SendRawTransactionSyncParameters) => Promise<import('viem').TransactionReceipt>;
|
|
5640
9359
|
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
5641
9360
|
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
5642
9361
|
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
5643
|
-
simulateContract: <const abi extends import('
|
|
9362
|
+
simulateContract: <const abi extends import('abitype').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import('viem').Chain | undefined, accountOverride extends import('viem').Account | import('abitype').Address | undefined = undefined>(args: import('viem').SimulateContractParameters<abi, functionName, args_1, {
|
|
5644
9363
|
graphCliName: string;
|
|
5645
9364
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
5646
9365
|
blockExplorers: {
|
|
@@ -5713,7 +9432,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5713
9432
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
5714
9433
|
rpcUrls: {
|
|
5715
9434
|
readonly default: {
|
|
5716
|
-
readonly http: readonly ["https://
|
|
9435
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
5717
9436
|
};
|
|
5718
9437
|
};
|
|
5719
9438
|
sourceId?: number | undefined | undefined;
|
|
@@ -5869,7 +9588,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5869
9588
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
5870
9589
|
rpcUrls: {
|
|
5871
9590
|
readonly default: {
|
|
5872
|
-
readonly http: readonly ["https://
|
|
9591
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
5873
9592
|
};
|
|
5874
9593
|
};
|
|
5875
9594
|
sourceId?: number | undefined | undefined;
|
|
@@ -5959,7 +9678,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5959
9678
|
blockNumber?: bigint | undefined | undefined;
|
|
5960
9679
|
blockTag?: import('viem').BlockTag | undefined;
|
|
5961
9680
|
nonce?: string | undefined | undefined;
|
|
5962
|
-
address?:
|
|
9681
|
+
address?: string | undefined;
|
|
5963
9682
|
domain?: string | undefined | undefined;
|
|
5964
9683
|
scheme?: string | undefined | undefined;
|
|
5965
9684
|
time?: Date | undefined;
|
|
@@ -6041,7 +9760,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6041
9760
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6042
9761
|
rpcUrls: {
|
|
6043
9762
|
readonly default: {
|
|
6044
|
-
readonly http: readonly ["https://
|
|
9763
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
6045
9764
|
};
|
|
6046
9765
|
};
|
|
6047
9766
|
sourceId?: number | undefined | undefined;
|
|
@@ -6199,7 +9918,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6199
9918
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6200
9919
|
rpcUrls: {
|
|
6201
9920
|
readonly default: {
|
|
6202
|
-
readonly http: readonly ["https://
|
|
9921
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
6203
9922
|
};
|
|
6204
9923
|
};
|
|
6205
9924
|
sourceId?: number | undefined | undefined;
|
|
@@ -6283,8 +10002,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6283
10002
|
formatters?: undefined;
|
|
6284
10003
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
6285
10004
|
}, includeTransactions, blockTag>) => import('viem').WatchBlocksReturnType;
|
|
6286
|
-
watchContractEvent: <const abi extends import('
|
|
6287
|
-
watchEvent: <const abiEvent extends import('
|
|
10005
|
+
watchContractEvent: <const abi extends import('abitype').Abi | readonly unknown[], eventName extends import('viem').ContractEventName<abi>, strict extends boolean | undefined = undefined>(args: import('viem').WatchContractEventParameters<abi, eventName, strict, HttpTransport>) => import('viem').WatchContractEventReturnType;
|
|
10006
|
+
watchEvent: <const abiEvent extends import('abitype').AbiEvent | undefined = undefined, const abiEvents extends readonly import('abitype').AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import('abitype').AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined>(args: import('viem').WatchEventParameters<abiEvent, abiEvents, strict, HttpTransport>) => import('viem').WatchEventReturnType;
|
|
6288
10007
|
watchPendingTransactions: (args: import('viem').WatchPendingTransactionsParameters<HttpTransport>) => import('viem').WatchPendingTransactionsReturnType;
|
|
6289
10008
|
extend: <const client extends {
|
|
6290
10009
|
[x: string]: unknown;
|
|
@@ -6374,7 +10093,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6374
10093
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6375
10094
|
rpcUrls: {
|
|
6376
10095
|
readonly default: {
|
|
6377
|
-
readonly http: readonly ["https://
|
|
10096
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
6378
10097
|
};
|
|
6379
10098
|
};
|
|
6380
10099
|
sourceId?: number | undefined | undefined;
|
|
@@ -6530,7 +10249,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6530
10249
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6531
10250
|
rpcUrls: {
|
|
6532
10251
|
readonly default: {
|
|
6533
|
-
readonly http: readonly ["https://
|
|
10252
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
6534
10253
|
};
|
|
6535
10254
|
};
|
|
6536
10255
|
sourceId?: number | undefined | undefined;
|
|
@@ -6686,7 +10405,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6686
10405
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6687
10406
|
rpcUrls: {
|
|
6688
10407
|
readonly default: {
|
|
6689
|
-
readonly http: readonly ["https://
|
|
10408
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
6690
10409
|
};
|
|
6691
10410
|
};
|
|
6692
10411
|
sourceId?: number | undefined | undefined;
|
|
@@ -6842,7 +10561,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6842
10561
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6843
10562
|
rpcUrls: {
|
|
6844
10563
|
readonly default: {
|
|
6845
|
-
readonly http: readonly ["https://
|
|
10564
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
6846
10565
|
};
|
|
6847
10566
|
};
|
|
6848
10567
|
sourceId?: number | undefined | undefined;
|
|
@@ -6998,7 +10717,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6998
10717
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6999
10718
|
rpcUrls: {
|
|
7000
10719
|
readonly default: {
|
|
7001
|
-
readonly http: readonly ["https://
|
|
10720
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
7002
10721
|
};
|
|
7003
10722
|
};
|
|
7004
10723
|
sourceId?: number | undefined | undefined;
|
|
@@ -7154,7 +10873,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7154
10873
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
7155
10874
|
rpcUrls: {
|
|
7156
10875
|
readonly default: {
|
|
7157
|
-
readonly http: readonly ["https://
|
|
10876
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
7158
10877
|
};
|
|
7159
10878
|
};
|
|
7160
10879
|
sourceId?: number | undefined | undefined;
|
|
@@ -7315,7 +11034,7 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
7315
11034
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
7316
11035
|
rpcUrls: {
|
|
7317
11036
|
readonly default: {
|
|
7318
|
-
readonly http: readonly ["https://
|
|
11037
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
7319
11038
|
};
|
|
7320
11039
|
};
|
|
7321
11040
|
sourceId?: number | undefined | undefined;
|
|
@@ -7471,7 +11190,7 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
7471
11190
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
7472
11191
|
rpcUrls: {
|
|
7473
11192
|
readonly default: {
|
|
7474
|
-
readonly http: readonly ["https://
|
|
11193
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
7475
11194
|
};
|
|
7476
11195
|
};
|
|
7477
11196
|
sourceId?: number | undefined | undefined;
|
|
@@ -7639,7 +11358,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7639
11358
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
7640
11359
|
rpcUrls: {
|
|
7641
11360
|
readonly default: {
|
|
7642
|
-
readonly http: readonly ["https://
|
|
11361
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
7643
11362
|
};
|
|
7644
11363
|
};
|
|
7645
11364
|
sourceId?: number | undefined | undefined;
|
|
@@ -7773,7 +11492,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7773
11492
|
}, {
|
|
7774
11493
|
Method: "eth_coinbase";
|
|
7775
11494
|
Parameters?: undefined;
|
|
7776
|
-
ReturnType: import('
|
|
11495
|
+
ReturnType: import('abitype').Address;
|
|
7777
11496
|
}, {
|
|
7778
11497
|
Method: "eth_estimateGas";
|
|
7779
11498
|
Parameters: [transaction: import('viem').RpcTransactionRequest] | [transaction: import('viem').RpcTransactionRequest, block: import('viem').RpcBlockNumber | import('viem').BlockTag] | [transaction: import('viem').RpcTransactionRequest, block: import('viem').RpcBlockNumber | import('viem').BlockTag, stateOverride: import('viem').RpcStateOverride];
|
|
@@ -7788,7 +11507,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7788
11507
|
ReturnType: import('viem').Quantity;
|
|
7789
11508
|
}, {
|
|
7790
11509
|
Method: "eth_getBalance";
|
|
7791
|
-
Parameters: [address: import('
|
|
11510
|
+
Parameters: [address: import('abitype').Address, block: import('viem').RpcBlockNumber | import('viem').BlockTag | import('viem').RpcBlockIdentifier];
|
|
7792
11511
|
ReturnType: import('viem').Quantity;
|
|
7793
11512
|
}, {
|
|
7794
11513
|
Method: "eth_getBlockByHash";
|
|
@@ -7808,7 +11527,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7808
11527
|
ReturnType: import('viem').Quantity;
|
|
7809
11528
|
}, {
|
|
7810
11529
|
Method: "eth_getCode";
|
|
7811
|
-
Parameters: [address: import('
|
|
11530
|
+
Parameters: [address: import('abitype').Address, block: import('viem').RpcBlockNumber | import('viem').BlockTag | import('viem').RpcBlockIdentifier];
|
|
7812
11531
|
ReturnType: import('viem').Hex;
|
|
7813
11532
|
}, {
|
|
7814
11533
|
Method: "eth_getFilterChanges";
|
|
@@ -7821,7 +11540,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7821
11540
|
}, {
|
|
7822
11541
|
Method: "eth_getLogs";
|
|
7823
11542
|
Parameters: [{
|
|
7824
|
-
address?: import('
|
|
11543
|
+
address?: import('abitype').Address | import('abitype').Address[] | undefined;
|
|
7825
11544
|
topics?: import('viem').LogTopic[] | undefined;
|
|
7826
11545
|
} & ({
|
|
7827
11546
|
fromBlock?: import('viem').RpcBlockNumber | import('viem').BlockTag | undefined;
|
|
@@ -7835,11 +11554,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7835
11554
|
ReturnType: import('viem').RpcLog[];
|
|
7836
11555
|
}, {
|
|
7837
11556
|
Method: "eth_getProof";
|
|
7838
|
-
Parameters: [address: import('
|
|
11557
|
+
Parameters: [address: import('abitype').Address, storageKeys: import('viem').Hash[], block: import('viem').RpcBlockNumber | import('viem').BlockTag];
|
|
7839
11558
|
ReturnType: import('viem').RpcProof;
|
|
7840
11559
|
}, {
|
|
7841
11560
|
Method: "eth_getStorageAt";
|
|
7842
|
-
Parameters: [address: import('
|
|
11561
|
+
Parameters: [address: import('abitype').Address, index: import('viem').Quantity, block: import('viem').RpcBlockNumber | import('viem').BlockTag | import('viem').RpcBlockIdentifier];
|
|
7843
11562
|
ReturnType: import('viem').Hex;
|
|
7844
11563
|
}, {
|
|
7845
11564
|
Method: "eth_getTransactionByBlockHashAndIndex";
|
|
@@ -7855,7 +11574,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7855
11574
|
ReturnType: import('viem').RpcTransaction | null;
|
|
7856
11575
|
}, {
|
|
7857
11576
|
Method: "eth_getTransactionCount";
|
|
7858
|
-
Parameters: [address: import('
|
|
11577
|
+
Parameters: [address: import('abitype').Address, block: import('viem').RpcBlockNumber | import('viem').BlockTag | import('viem').RpcBlockIdentifier];
|
|
7859
11578
|
ReturnType: import('viem').Quantity;
|
|
7860
11579
|
}, {
|
|
7861
11580
|
Method: "eth_getTransactionReceipt";
|
|
@@ -7890,7 +11609,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7890
11609
|
Parameters: [filter: {
|
|
7891
11610
|
fromBlock?: import('viem').RpcBlockNumber | import('viem').BlockTag | undefined;
|
|
7892
11611
|
toBlock?: import('viem').RpcBlockNumber | import('viem').BlockTag | undefined;
|
|
7893
|
-
address?: import('
|
|
11612
|
+
address?: import('abitype').Address | import('abitype').Address[] | undefined;
|
|
7894
11613
|
topics?: import('viem').LogTopic[] | undefined;
|
|
7895
11614
|
}];
|
|
7896
11615
|
ReturnType: import('viem').Quantity;
|
|
@@ -7906,10 +11625,6 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7906
11625
|
Method: "eth_sendRawTransaction";
|
|
7907
11626
|
Parameters: [signedTransaction: import('viem').Hex];
|
|
7908
11627
|
ReturnType: import('viem').Hash;
|
|
7909
|
-
}, {
|
|
7910
|
-
Method: "eth_sendRawTransactionSync";
|
|
7911
|
-
Parameters: [signedTransaction: import('viem').Hex] | [signedTransaction: import('viem').Hex, timeout: import('viem').Hex];
|
|
7912
|
-
ReturnType: import('viem').RpcTransactionReceipt;
|
|
7913
11628
|
}, {
|
|
7914
11629
|
Method: "eth_simulateV1";
|
|
7915
11630
|
Parameters: [{
|
|
@@ -7942,7 +11657,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7942
11657
|
}, {
|
|
7943
11658
|
Method: "eth_accounts";
|
|
7944
11659
|
Parameters?: undefined;
|
|
7945
|
-
ReturnType: import('
|
|
11660
|
+
ReturnType: import('abitype').Address[];
|
|
7946
11661
|
}, {
|
|
7947
11662
|
Method: "eth_chainId";
|
|
7948
11663
|
Parameters?: undefined;
|
|
@@ -7954,7 +11669,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7954
11669
|
}, {
|
|
7955
11670
|
Method: "eth_requestAccounts";
|
|
7956
11671
|
Parameters?: undefined;
|
|
7957
|
-
ReturnType: import('
|
|
11672
|
+
ReturnType: import('abitype').Address[];
|
|
7958
11673
|
}, {
|
|
7959
11674
|
Method: "eth_sendTransaction";
|
|
7960
11675
|
Parameters: [transaction: import('viem').RpcTransactionRequest];
|
|
@@ -7963,13 +11678,9 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7963
11678
|
Method: "eth_sendRawTransaction";
|
|
7964
11679
|
Parameters: [signedTransaction: import('viem').Hex];
|
|
7965
11680
|
ReturnType: import('viem').Hash;
|
|
7966
|
-
}, {
|
|
7967
|
-
Method: "eth_sendRawTransactionSync";
|
|
7968
|
-
Parameters: [signedTransaction: import('viem').Hex] | [signedTransaction: import('viem').Hex, timeout: import('viem').Hex];
|
|
7969
|
-
ReturnType: import('viem').RpcTransactionReceipt;
|
|
7970
11681
|
}, {
|
|
7971
11682
|
Method: "eth_sign";
|
|
7972
|
-
Parameters: [address: import('
|
|
11683
|
+
Parameters: [address: import('abitype').Address, data: import('viem').Hex];
|
|
7973
11684
|
ReturnType: import('viem').Hex;
|
|
7974
11685
|
}, {
|
|
7975
11686
|
Method: "eth_signTransaction";
|
|
@@ -7977,7 +11688,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7977
11688
|
ReturnType: import('viem').Hex;
|
|
7978
11689
|
}, {
|
|
7979
11690
|
Method: "eth_signTypedData_v4";
|
|
7980
|
-
Parameters: [address: import('
|
|
11691
|
+
Parameters: [address: import('abitype').Address, message: string];
|
|
7981
11692
|
ReturnType: import('viem').Hex;
|
|
7982
11693
|
}, {
|
|
7983
11694
|
Method: "eth_syncing";
|
|
@@ -7985,7 +11696,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
7985
11696
|
ReturnType: import('viem').NetworkSync | false;
|
|
7986
11697
|
}, {
|
|
7987
11698
|
Method: "personal_sign";
|
|
7988
|
-
Parameters: [data: import('viem').Hex, address: import('
|
|
11699
|
+
Parameters: [data: import('viem').Hex, address: import('abitype').Address];
|
|
7989
11700
|
ReturnType: import('viem').Hex;
|
|
7990
11701
|
}, {
|
|
7991
11702
|
Method: "wallet_addEthereumChain";
|
|
@@ -8001,21 +11712,21 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8001
11712
|
}[];
|
|
8002
11713
|
type: "create";
|
|
8003
11714
|
} | {
|
|
8004
|
-
address: import('
|
|
11715
|
+
address: import('abitype').Address;
|
|
8005
11716
|
chainId?: number | undefined;
|
|
8006
11717
|
type: "deployed";
|
|
8007
11718
|
} | {
|
|
8008
|
-
address: import('
|
|
11719
|
+
address: import('abitype').Address;
|
|
8009
11720
|
chainId?: number | undefined;
|
|
8010
|
-
factory: import('
|
|
11721
|
+
factory: import('abitype').Address;
|
|
8011
11722
|
factoryData: import('viem').Hex;
|
|
8012
11723
|
type: "undeployed";
|
|
8013
11724
|
}>;
|
|
8014
11725
|
version: string;
|
|
8015
11726
|
}];
|
|
8016
11727
|
ReturnType: {
|
|
8017
|
-
address: import('
|
|
8018
|
-
factory?: import('
|
|
11728
|
+
address: import('abitype').Address;
|
|
11729
|
+
factory?: import('abitype').Address | undefined;
|
|
8019
11730
|
factoryData?: import('viem').Hex | undefined;
|
|
8020
11731
|
};
|
|
8021
11732
|
}, {
|
|
@@ -8026,7 +11737,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8026
11737
|
}];
|
|
8027
11738
|
ReturnType: {
|
|
8028
11739
|
accounts: readonly {
|
|
8029
|
-
address: import('
|
|
11740
|
+
address: import('abitype').Address;
|
|
8030
11741
|
capabilities?: import('viem').Capabilities | undefined;
|
|
8031
11742
|
}[];
|
|
8032
11743
|
};
|
|
@@ -8044,7 +11755,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8044
11755
|
ReturnType: import('viem').WalletGetCallsStatusReturnType;
|
|
8045
11756
|
}, {
|
|
8046
11757
|
Method: "wallet_getCapabilities";
|
|
8047
|
-
Parameters?: readonly [] | readonly [import('
|
|
11758
|
+
Parameters?: readonly [] | readonly [import('abitype').Address | undefined] | readonly [import('abitype').Address | undefined, readonly import('viem').Hex[] | undefined] | undefined;
|
|
8048
11759
|
ReturnType: import('viem').Prettify<import('viem').WalletCapabilitiesRecord>;
|
|
8049
11760
|
}, {
|
|
8050
11761
|
Method: "wallet_getPermissions";
|
|
@@ -8094,7 +11805,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8094
11805
|
ReturnType: import('viem').Hex;
|
|
8095
11806
|
}, {
|
|
8096
11807
|
Method: "eth_estimateUserOperationGas";
|
|
8097
|
-
Parameters: [userOperation: import('viem').RpcUserOperation, entrypoint: import('
|
|
11808
|
+
Parameters: [userOperation: import('viem').RpcUserOperation, entrypoint: import('abitype').Address] | [userOperation: import('viem').RpcUserOperation, entrypoint: import('abitype').Address, stateOverrideSet: import('viem').RpcStateOverride];
|
|
8098
11809
|
ReturnType: import('viem').RpcEstimateUserOperationGasReturnType;
|
|
8099
11810
|
}, {
|
|
8100
11811
|
Method: "eth_getUserOperationByHash";
|
|
@@ -8106,19 +11817,19 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8106
11817
|
ReturnType: import('viem').RpcUserOperationReceipt | null;
|
|
8107
11818
|
}, {
|
|
8108
11819
|
Method: "eth_sendUserOperation";
|
|
8109
|
-
Parameters: [userOperation: import('viem').RpcUserOperation, entrypoint: import('
|
|
11820
|
+
Parameters: [userOperation: import('viem').RpcUserOperation, entrypoint: import('abitype').Address];
|
|
8110
11821
|
ReturnType: import('viem').Hash;
|
|
8111
11822
|
}, {
|
|
8112
11823
|
Method: "eth_supportedEntryPoints";
|
|
8113
11824
|
Parameters?: undefined;
|
|
8114
|
-
ReturnType: readonly import('
|
|
11825
|
+
ReturnType: readonly import('abitype').Address[];
|
|
8115
11826
|
}, {
|
|
8116
11827
|
Method: "pm_getPaymasterStubData";
|
|
8117
|
-
Parameters?: [userOperation: import('viem').OneOf<import('viem').PartialBy<Pick<import('viem').RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit"> | import('viem').PartialBy<Pick<import('viem').RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit">>, entrypoint: import('
|
|
11828
|
+
Parameters?: [userOperation: import('viem').OneOf<import('viem').PartialBy<Pick<import('viem').RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit"> | import('viem').PartialBy<Pick<import('viem').RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit">>, entrypoint: import('abitype').Address, chainId: import('viem').Hex, context: unknown];
|
|
8118
11829
|
ReturnType: import('viem').OneOf<{
|
|
8119
11830
|
paymasterAndData: import('viem').Hex;
|
|
8120
11831
|
} | {
|
|
8121
|
-
paymaster: import('
|
|
11832
|
+
paymaster: import('abitype').Address;
|
|
8122
11833
|
paymasterData: import('viem').Hex;
|
|
8123
11834
|
paymasterVerificationGasLimit: import('viem').Hex;
|
|
8124
11835
|
paymasterPostOpGasLimit: import('viem').Hex;
|
|
@@ -8131,11 +11842,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8131
11842
|
};
|
|
8132
11843
|
}, {
|
|
8133
11844
|
Method: "pm_getPaymasterData";
|
|
8134
|
-
Parameters?: [userOperation: Pick<import('viem').RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit"> | Pick<import('viem').RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, entrypoint: import('
|
|
11845
|
+
Parameters?: [userOperation: Pick<import('viem').RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit"> | Pick<import('viem').RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, entrypoint: import('abitype').Address, chainId: import('viem').Hex, context: unknown];
|
|
8135
11846
|
ReturnType: import('viem').OneOf<{
|
|
8136
11847
|
paymasterAndData: import('viem').Hex;
|
|
8137
11848
|
} | {
|
|
8138
|
-
paymaster: import('
|
|
11849
|
+
paymaster: import('abitype').Address;
|
|
8139
11850
|
paymasterData: import('viem').Hex;
|
|
8140
11851
|
paymasterVerificationGasLimit: import('viem').Hex;
|
|
8141
11852
|
paymasterPostOpGasLimit: import('viem').Hex;
|
|
@@ -8235,7 +11946,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8235
11946
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
8236
11947
|
rpcUrls: {
|
|
8237
11948
|
readonly default: {
|
|
8238
|
-
readonly http: readonly ["https://
|
|
11949
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
8239
11950
|
};
|
|
8240
11951
|
};
|
|
8241
11952
|
sourceId?: number | undefined | undefined;
|
|
@@ -8391,7 +12102,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8391
12102
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
8392
12103
|
rpcUrls: {
|
|
8393
12104
|
readonly default: {
|
|
8394
|
-
readonly http: readonly ["https://
|
|
12105
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
8395
12106
|
};
|
|
8396
12107
|
};
|
|
8397
12108
|
sourceId?: number | undefined | undefined;
|
|
@@ -8547,7 +12258,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8547
12258
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
8548
12259
|
rpcUrls: {
|
|
8549
12260
|
readonly default: {
|
|
8550
|
-
readonly http: readonly ["https://
|
|
12261
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
8551
12262
|
};
|
|
8552
12263
|
};
|
|
8553
12264
|
sourceId?: number | undefined | undefined;
|
|
@@ -8718,7 +12429,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8718
12429
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
8719
12430
|
rpcUrls: {
|
|
8720
12431
|
readonly default: {
|
|
8721
|
-
readonly http: readonly ["https://
|
|
12432
|
+
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
8722
12433
|
};
|
|
8723
12434
|
};
|
|
8724
12435
|
sourceId?: number | undefined | undefined;
|