@bgd-labs/toolbox 0.2.3 → 0.2.4

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.
@@ -2146,7 +2146,7 @@ type BlockOverrides<bigintType = bigint, numberType = number> = {
2146
2146
  */
2147
2147
  type Rpc = BlockOverrides<Hex$1, Hex$1>;
2148
2148
  //#endregion
2149
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/utils.d.ts
2149
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/utils.d.ts
2150
2150
  declare const symbol: unique symbol;
2151
2151
  /**
2152
2152
  * Creates a branded type of {@link T} with the brand {@link U}.
@@ -2309,14 +2309,14 @@ type UnionPartialBy<T$1, K$1 extends keyof T$1> = T$1 extends any ? PartialBy<T$
2309
2309
  */
2310
2310
  type UnionRequiredBy<T$1, K$1 extends keyof T$1> = T$1 extends any ? RequiredBy<T$1, K$1> : never;
2311
2311
  //#endregion
2312
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/account.d.ts
2312
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/account.d.ts
2313
2313
  type DeriveAccount<account extends Account | undefined, accountOverride extends Account | Address | undefined> = accountOverride extends Account | Address ? accountOverride : account;
2314
2314
  type GetAccountParameter<account extends Account | undefined = Account | undefined, accountOverride extends Account | Address | undefined = Account | Address, required extends boolean = true, nullish extends boolean = false> = MaybeRequired<{
2315
2315
  account?: accountOverride | Account | Address | (nullish extends true ? null : never) | undefined;
2316
2316
  }, IsUndefined<account> extends true ? required extends true ? true : false : false>;
2317
2317
  type ParseAccount<accountOrAddress extends Account | Address | null | undefined = Account | Address | null | undefined> = accountOrAddress extends Address ? Prettify<JsonRpcAccount<accountOrAddress>> : accountOrAddress;
2318
2318
  //#endregion
2319
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/misc.d.ts
2319
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/misc.d.ts
2320
2320
  type ByteArray = Uint8Array;
2321
2321
  type Hex = `0x${string}`;
2322
2322
  type Hash = `0x${string}`;
@@ -2344,7 +2344,7 @@ type Signature<numberType = number, bigintType = bigint> = OneOf<SignatureLegacy
2344
2344
  yParity: numberType;
2345
2345
  }>;
2346
2346
  //#endregion
2347
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/authorization.d.ts
2347
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/authorization.d.ts
2348
2348
  type Authorization<uint32 = number, signed$1 extends boolean = false> = {
2349
2349
  /** Address of the contract to delegate to. */
2350
2350
  address: Address;
@@ -2372,7 +2372,7 @@ type AuthorizationRequest<uint32 = number> = OneOf<{
2372
2372
  type SignedAuthorization<uint32 = number> = Authorization<uint32, true>;
2373
2373
  type SignedAuthorizationList<uint32 = number> = readonly SignedAuthorization<uint32>[];
2374
2374
  //#endregion
2375
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/eip4844.d.ts
2375
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/eip4844.d.ts
2376
2376
  type BlobSidecar<type$1 extends Hex | ByteArray = Hex | ByteArray> = {
2377
2377
  /** The blob associated with the transaction. */
2378
2378
  blob: type$1;
@@ -2382,7 +2382,7 @@ type BlobSidecar<type$1 extends Hex | ByteArray = Hex | ByteArray> = {
2382
2382
  proof: type$1;
2383
2383
  };
2384
2384
  //#endregion
2385
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/fee.d.ts
2385
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/fee.d.ts
2386
2386
  type FeeHistory<quantity = bigint> = {
2387
2387
  /**
2388
2388
  * An array of block base fees per gas (in wei). This includes the next block after
@@ -2422,7 +2422,7 @@ type FeeValuesEIP4844<quantity = bigint> = {
2422
2422
  };
2423
2423
  type FeeValuesType = 'legacy' | 'eip1559' | 'eip4844';
2424
2424
  //#endregion
2425
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/kzg.d.ts
2425
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/kzg.d.ts
2426
2426
  type Kzg = {
2427
2427
  /**
2428
2428
  * Convert a blob to a KZG commitment.
@@ -2442,7 +2442,7 @@ type GetTransactionRequestKzgParameter<request$1 extends unknown | undefined = u
2442
2442
  blobs: TransactionRequestEIP4844['blobs'];
2443
2443
  } ? true : false>;
2444
2444
  //#endregion
2445
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/contract.d.ts
2445
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/contract.d.ts
2446
2446
  type ContractFunctionName<abi$1 extends Abi | readonly unknown[] = Abi, mutability extends AbiStateMutability = AbiStateMutability> = ExtractAbiFunctionNames<abi$1 extends Abi ? abi$1 : Abi, mutability> extends infer functionName extends string ? [functionName] extends [never] ? string : functionName : string;
2447
2447
  type ContractEventName<abi$1 extends Abi | readonly unknown[] = Abi> = ExtractAbiEventNames<abi$1 extends Abi ? abi$1 : Abi> extends infer eventName extends string ? [eventName] extends [never] ? string : eventName : string;
2448
2448
  type ContractFunctionArgs<abi$1 extends Abi | readonly unknown[] = Abi, mutability extends AbiStateMutability = AbiStateMutability, functionName$1 extends ContractFunctionName<abi$1, mutability> = ContractFunctionName<abi$1, mutability>> = AbiParametersToPrimitiveTypes<ExtractAbiFunction<abi$1 extends Abi ? abi$1 : Abi, functionName$1, mutability>['inputs'], 'inputs', true> extends infer args ? [args] extends [never] ? readonly unknown[] : args : readonly unknown[];
@@ -2513,7 +2513,7 @@ type LogTopicType<primitiveType = Hex, topic extends LogTopic = LogTopic> = topi
2513
2513
  */
2514
2514
  type AbiEventParameterToPrimitiveType<abiParameter extends AbiParameter, _options extends EventParameterOptions = DefaultEventParameterOptions, _type = AbiParameterToPrimitiveType<abiParameter>> = _options['EnableUnion'] extends true ? LogTopicType<_type> : _type;
2515
2515
  //#endregion
2516
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/log.d.ts
2516
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/log.d.ts
2517
2517
  type Log<quantity = bigint, index$1 = number, pending extends boolean = boolean, abiEvent extends AbiEvent | undefined = undefined, strict$1 extends boolean | undefined = undefined, abi$1 extends Abi | readonly unknown[] | undefined = (abiEvent extends AbiEvent ? [abiEvent] : undefined), eventName$1 extends string | undefined = (abiEvent extends AbiEvent ? abiEvent['name'] : undefined)> = {
2518
2518
  /** The address from which this log originated */
2519
2519
  address: Address;
@@ -2562,7 +2562,7 @@ type GetInferredLogValues<abiEvent extends AbiEvent | undefined = undefined, abi
2562
2562
  topics: [Hex, ...Hex[]] | [];
2563
2563
  };
2564
2564
  //#endregion
2565
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/transaction.d.ts
2565
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/transaction.d.ts
2566
2566
  type AccessList = readonly {
2567
2567
  address: Address;
2568
2568
  storageKeys: readonly Hex[];
@@ -2794,7 +2794,7 @@ type TransactionSerializableGeneric<quantity = bigint, index$1 = number> = Trans
2794
2794
  type?: string | undefined;
2795
2795
  };
2796
2796
  //#endregion
2797
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/typedData.d.ts
2797
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/typedData.d.ts
2798
2798
  type TypedDataDefinition<typedData extends TypedData | Record<string, unknown> = TypedData, primaryType extends keyof typedData | 'EIP712Domain' = keyof typedData, primaryTypes = (typedData extends TypedData ? keyof typedData : string)> = primaryType extends 'EIP712Domain' ? EIP712DomainDefinition<typedData, primaryType> : MessageDefinition<typedData, primaryType, 'message', primaryTypes>;
2799
2799
  type MessageDefinition<typedData extends TypedData | Record<string, unknown> = TypedData, primaryType extends keyof typedData = keyof typedData, messageKey extends string = 'message', primaryTypes = (typedData extends TypedData ? keyof typedData : string), schema extends Record<string, unknown> = (typedData extends TypedData ? TypedDataToPrimitiveTypes<typedData> : Record<string, unknown>), message$1 = schema[primaryType extends keyof schema ? primaryType : keyof schema]> = {
2800
2800
  types: typedData;
@@ -2816,7 +2816,7 @@ type EIP712DomainDefinition<typedData extends TypedData | Record<string, unknown
2816
2816
  message?: undefined;
2817
2817
  };
2818
2818
  //#endregion
2819
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/withdrawal.d.ts
2819
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/withdrawal.d.ts
2820
2820
  type Withdrawal = {
2821
2821
  address: Hex;
2822
2822
  amount: Hex;
@@ -2824,7 +2824,7 @@ type Withdrawal = {
2824
2824
  validatorIndex: Hex;
2825
2825
  };
2826
2826
  //#endregion
2827
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/block.d.ts
2827
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/block.d.ts
2828
2828
  type Block<quantity = bigint, includeTransactions extends boolean = boolean, blockTag$1 extends BlockTag = BlockTag, transaction = Transaction$1<bigint, number, blockTag$1 extends 'pending' ? true : false>> = {
2829
2829
  /** Base fee per gas */
2830
2830
  baseFeePerGas: quantity | null;
@@ -2921,7 +2921,7 @@ type ErrorObject = {
2921
2921
  data?: unknown | undefined;
2922
2922
  };
2923
2923
  //#endregion
2924
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/proof.d.ts
2924
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/proof.d.ts
2925
2925
  type AccountProof = Hash;
2926
2926
  type StorageProof<quantity = bigint> = {
2927
2927
  key: Hash;
@@ -2938,7 +2938,7 @@ type Proof<quantity = bigint, index$1 = number> = {
2938
2938
  storageProof: StorageProof<quantity>[];
2939
2939
  };
2940
2940
  //#endregion
2941
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/rpc.d.ts
2941
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/rpc.d.ts
2942
2942
  type Index = `0x${string}`;
2943
2943
  type Quantity = `0x${string}`;
2944
2944
  type Status = '0x0' | '0x1';
@@ -2992,7 +2992,7 @@ type RpcStateOverride = {
2992
2992
  [address: Address]: RpcAccountStateOverride;
2993
2993
  };
2994
2994
  //#endregion
2995
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/account-abstraction/types/userOperation.d.ts
2995
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/account-abstraction/types/userOperation.d.ts
2996
2996
  /** @link https://eips.ethereum.org/EIPS/eip-4337#-eth_estimateuseroperationgas */
2997
2997
  type EstimateUserOperationGasReturnType<entryPointVersion extends EntryPointVersion = EntryPointVersion, uint256 = bigint> = OneOf<(entryPointVersion extends '0.9' ? {
2998
2998
  preVerificationGas: uint256;
@@ -3179,7 +3179,7 @@ type UserOperationReceipt<_entryPointVersion extends EntryPointVersion = EntryPo
3179
3179
  userOpHash: Hash;
3180
3180
  };
3181
3181
  //#endregion
3182
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/account-abstraction/types/rpc.d.ts
3182
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/account-abstraction/types/rpc.d.ts
3183
3183
  type RpcEstimateUserOperationGasReturnType<entryPointVersion extends EntryPointVersion = EntryPointVersion> = EstimateUserOperationGasReturnType<entryPointVersion, Hex>;
3184
3184
  type RpcGetUserOperationByHashReturnType<entryPointVersion extends EntryPointVersion = EntryPointVersion> = GetUserOperationByHashReturnType<entryPointVersion, Hex, Hex>;
3185
3185
  type RpcUserOperation<entryPointVersion extends EntryPointVersion = EntryPointVersion> = UserOperation<entryPointVersion, Hex, Hex> & {
@@ -3187,7 +3187,7 @@ type RpcUserOperation<entryPointVersion extends EntryPointVersion = EntryPointVe
3187
3187
  };
3188
3188
  type RpcUserOperationReceipt<entryPointVersion extends EntryPointVersion = EntryPointVersion> = UserOperationReceipt<entryPointVersion, Hex, Hex, Hex>;
3189
3189
  //#endregion
3190
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/promise/withRetry.d.ts
3190
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/promise/withRetry.d.ts
3191
3191
  type WithRetryParameters = {
3192
3192
  delay?: ((config: {
3193
3193
  count: number;
@@ -3203,7 +3203,7 @@ type WithRetryParameters = {
3203
3203
  }) => Promise<boolean> | boolean) | undefined;
3204
3204
  };
3205
3205
  //#endregion
3206
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/experimental/erc7895/actions/addSubAccount.d.ts
3206
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/experimental/erc7895/actions/addSubAccount.d.ts
3207
3207
  type AddSubAccountParameters = Prettify<OneOf<{
3208
3208
  keys?: readonly {
3209
3209
  publicKey: Hex;
@@ -3227,7 +3227,7 @@ type AddSubAccountReturnType = Prettify<{
3227
3227
  factoryData?: Hex | undefined;
3228
3228
  }>;
3229
3229
  //#endregion
3230
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/siwe/types.d.ts
3230
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/siwe/types.d.ts
3231
3231
  /**
3232
3232
  * @description EIP-4361 message fields
3233
3233
  *
@@ -3288,7 +3288,7 @@ type SiweMessage = {
3288
3288
  version: '1';
3289
3289
  };
3290
3290
  //#endregion
3291
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/register.d.ts
3291
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/register.d.ts
3292
3292
  interface Register {}
3293
3293
  type ResolvedRegister = {
3294
3294
  CapabilitiesSchema: Register extends {
@@ -3300,7 +3300,7 @@ type DefaultRegister = {
3300
3300
  CapabilitiesSchema: DefaultCapabilitiesSchema;
3301
3301
  };
3302
3302
  //#endregion
3303
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/capabilities.d.ts
3303
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/capabilities.d.ts
3304
3304
  type CapabilitiesSchema = ResolvedRegister['CapabilitiesSchema'];
3305
3305
  type DefaultCapabilitiesSchema = {
3306
3306
  connect: {
@@ -3348,7 +3348,7 @@ type Capabilities<capabilities extends Record<string, any> = {}> = {
3348
3348
  type ChainIdToCapabilities<capabilities extends Capabilities = Capabilities, id$1 extends string | number = Hex> = { [chainId in id$1]: capabilities };
3349
3349
  type ExtractCapabilities<method extends string, key$1 extends 'Request' | 'ReturnType'> = Prettify<method extends keyof CapabilitiesSchema ? CapabilitiesSchema[method] extends { [k in key$1]: infer value extends Record<string, any> } ? Capabilities<value> : Capabilities : Capabilities>;
3350
3350
  //#endregion
3351
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/eip1193.d.ts
3351
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/eip1193.d.ts
3352
3352
  type EIP1474Methods = [...PublicRpcSchema, ...WalletRpcSchema, ...BundlerRpcSchema, ...PaymasterRpcSchema];
3353
3353
  type AddEthereumChainParameter = {
3354
3354
  /** A 0x-prefixed hexadecimal string */
@@ -5056,7 +5056,7 @@ type EIP1193RequestFn<rpcSchema extends RpcSchema | undefined = undefined, raw e
5056
5056
  error: ErrorObject;
5057
5057
  }> : unknown)>(args: _parameters, options?: EIP1193RequestOptions | undefined) => Promise<_returnType>;
5058
5058
  //#endregion
5059
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/transports/createTransport.d.ts
5059
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/transports/createTransport.d.ts
5060
5060
  type TransportConfig<type$1 extends string = string, eip1193RequestFn extends EIP1193RequestFn = EIP1193RequestFn> = {
5061
5061
  /** The name of the transport. */
5062
5062
  name: string;
@@ -5093,7 +5093,7 @@ type Transport<type$1 extends string = string, rpcAttributes = Record<string, an
5093
5093
  value?: rpcAttributes | undefined;
5094
5094
  };
5095
5095
  //#endregion
5096
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/stateOverride.d.ts
5096
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/stateOverride.d.ts
5097
5097
  type StateMapping = Array<{
5098
5098
  slot: Hex;
5099
5099
  value: Hex;
@@ -5111,7 +5111,7 @@ type StateOverride = Array<{
5111
5111
  stateDiff?: StateMapping | undefined;
5112
5112
  }>>;
5113
5113
  //#endregion
5114
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/transaction/getTransactionType.d.ts
5114
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/transaction/getTransactionType.d.ts
5115
5115
  type GetTransactionType<transaction extends OneOf<TransactionSerializableGeneric | TransactionRequestGeneric> = TransactionSerializableGeneric, result = (transaction extends LegacyProperties ? 'legacy' : never) | (transaction extends EIP1559Properties ? 'eip1559' : never) | (transaction extends EIP2930Properties ? 'eip2930' : never) | (transaction extends EIP4844Properties ? 'eip4844' : never) | (transaction extends EIP7702Properties ? 'eip7702' : never) | (transaction['type'] extends TransactionSerializableGeneric['type'] ? Extract<transaction['type'], string> : never)> = IsNever<keyof transaction> extends true ? string : IsNever<result> extends false ? result : string;
5116
5116
  type BaseProperties = {
5117
5117
  accessList?: undefined;
@@ -5146,33 +5146,38 @@ type EIP7702Properties = Assign<ExactPartial<EIP1559Properties>, {
5146
5146
  authorizationList: TransactionSerializableEIP7702['authorizationList'];
5147
5147
  }>;
5148
5148
  //#endregion
5149
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/transaction/serializeTransaction.d.ts
5149
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/transaction/serializeTransaction.d.ts
5150
5150
  type SerializedTransactionReturnType<transaction extends TransactionSerializable = TransactionSerializable, _transactionType extends TransactionType = GetTransactionType<transaction>> = TransactionSerialized<_transactionType>;
5151
5151
  type SerializeTransactionFn<transaction extends TransactionSerializableGeneric = TransactionSerializable, _transactionType extends TransactionType = never> = (transaction: OneOf<TransactionSerializable | transaction>, signature?: Signature | undefined) => MaybePromise<SerializedTransactionReturnType<OneOf<TransactionSerializable | transaction>, _transactionType>>;
5152
5152
  //#endregion
5153
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/accounts/utils/sign.d.ts
5153
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/accounts/utils/sign.d.ts
5154
5154
  type To$1 = 'object' | 'bytes' | 'hex';
5155
5155
  type SignReturnType<to$1 extends To$1 = 'object'> = (to$1 extends 'object' ? Signature : never) | (to$1 extends 'bytes' ? ByteArray : never) | (to$1 extends 'hex' ? Hex : never);
5156
5156
  //#endregion
5157
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/formatters/transactionRequest.d.ts
5157
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/formatters/transactionRequest.d.ts
5158
5158
  type FormattedTransactionRequest<chain$1 extends Chain | undefined = Chain | undefined> = ExtractChainFormatterParameters<chain$1, 'transactionRequest', TransactionRequest>;
5159
5159
  //#endregion
5160
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getChainId.d.ts
5160
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getChainId.d.ts
5161
5161
  type GetChainIdReturnType = number;
5162
5162
  //#endregion
5163
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendRawTransaction.d.ts
5163
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendRawTransaction.d.ts
5164
5164
  type SendRawTransactionParameters = {
5165
5165
  /** The signed serialized transaction. */
5166
5166
  serializedTransaction: TransactionSerializedGeneric;
5167
5167
  };
5168
5168
  type SendRawTransactionReturnType = Hash;
5169
5169
  //#endregion
5170
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendTransaction.d.ts
5170
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendTransaction.d.ts
5171
5171
  type SendTransactionRequest<chain$1 extends Chain | undefined = Chain | undefined, chainOverride extends Chain | undefined = Chain | undefined, _derivedChain extends Chain | undefined = DeriveChain<chain$1, chainOverride>> = UnionOmit<FormattedTransactionRequest<_derivedChain>, 'from'> & GetTransactionRequestKzgParameter;
5172
- type SendTransactionParameters<chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined, chainOverride extends Chain | undefined = Chain | undefined, request$1 extends SendTransactionRequest<chain$1, chainOverride> = SendTransactionRequest<chain$1, chainOverride>> = request$1 & GetAccountParameter<account, Account | Address, true, true> & GetChainParameter<chain$1, chainOverride> & GetTransactionRequestKzgParameter<request$1>;
5172
+ type SendTransactionParameters<chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined, chainOverride extends Chain | undefined = Chain | undefined, request$1 extends SendTransactionRequest<chain$1, chainOverride> = SendTransactionRequest<chain$1, chainOverride>> = request$1 & GetAccountParameter<account, Account | Address, true, true> & GetChainParameter<chain$1, chainOverride> & GetTransactionRequestKzgParameter<request$1> & {
5173
+ /** Whether to assert that the client chain is on the correct chain. @default true */
5174
+ assertChainId?: boolean | undefined;
5175
+ /** Data to append to the end of the calldata. Takes precedence over `client.dataSuffix`. */
5176
+ dataSuffix?: Hex | undefined;
5177
+ };
5173
5178
  type SendTransactionReturnType = Hash;
5174
5179
  //#endregion
5175
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/estimateGas.d.ts
5180
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/estimateGas.d.ts
5176
5181
  type EstimateGasParameters<chain$1 extends Chain | undefined = Chain | undefined> = UnionOmit<FormattedEstimateGas<chain$1>, 'from'> & {
5177
5182
  account?: Account | Address | undefined;
5178
5183
  prepare?: boolean | readonly PrepareTransactionRequestParameterType[] | undefined;
@@ -5192,17 +5197,17 @@ type EstimateGasParameters<chain$1 extends Chain | undefined = Chain | undefined
5192
5197
  type FormattedEstimateGas<chain$1 extends Chain | undefined = Chain | undefined> = FormattedTransactionRequest<chain$1>;
5193
5198
  type EstimateGasReturnType = bigint;
5194
5199
  //#endregion
5195
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/formatters/transaction.d.ts
5200
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/formatters/transaction.d.ts
5196
5201
  type TransactionPendingDependencies = 'blockHash' | 'blockNumber' | 'transactionIndex';
5197
5202
  type FormattedTransaction<chain$1 extends Chain | undefined = undefined, blockTag$1 extends BlockTag = BlockTag, _FormatterReturnType = ExtractChainFormatterReturnType<chain$1, 'transaction', Transaction$1>, _ExcludedPendingDependencies extends string = TransactionPendingDependencies & ExtractChainFormatterExclude<chain$1, 'transaction'>> = UnionLooseOmit<_FormatterReturnType, TransactionPendingDependencies> & { [_K in _ExcludedPendingDependencies]: never } & Pick<Transaction$1<bigint, number, blockTag$1 extends 'pending' ? true : false>, TransactionPendingDependencies>;
5198
5203
  //#endregion
5199
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/formatters/block.d.ts
5204
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/formatters/block.d.ts
5200
5205
  type BlockPendingDependencies = 'hash' | 'logsBloom' | 'nonce' | 'number';
5201
5206
  type FormattedBlock<chain$1 extends Chain | undefined = undefined, includeTransactions extends boolean = boolean, blockTag$1 extends BlockTag = BlockTag, _FormatterReturnType = ExtractChainFormatterReturnType<chain$1, 'block', Block<bigint, includeTransactions>>, _ExcludedPendingDependencies extends string = BlockPendingDependencies & ExtractChainFormatterExclude<chain$1, 'block'>, _Formatted = Omit<_FormatterReturnType, BlockPendingDependencies> & { [_key in _ExcludedPendingDependencies]: never } & Pick<Block<bigint, includeTransactions, blockTag$1>, BlockPendingDependencies>, _Transactions = (includeTransactions extends true ? Prettify<FormattedTransaction<chain$1, blockTag$1>>[] : Hash[])> = Omit<_Formatted, 'transactions'> & {
5202
5207
  transactions: _Transactions;
5203
5208
  };
5204
5209
  //#endregion
5205
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getBlock.d.ts
5210
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getBlock.d.ts
5206
5211
  type GetBlockParameters<includeTransactions extends boolean = false, blockTag$1 extends BlockTag = 'latest'> = {
5207
5212
  /** Whether or not to include transaction data in the response. */
5208
5213
  includeTransactions?: includeTransactions | undefined;
@@ -5227,7 +5232,7 @@ type GetBlockParameters<includeTransactions extends boolean = false, blockTag$1
5227
5232
  });
5228
5233
  type GetBlockReturnType<chain$1 extends Chain | undefined = undefined, includeTransactions extends boolean = false, blockTag$1 extends BlockTag = 'latest'> = Prettify<FormattedBlock<chain$1, includeTransactions, blockTag$1>>;
5229
5234
  //#endregion
5230
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getTransactionCount.d.ts
5235
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getTransactionCount.d.ts
5231
5236
  type GetTransactionCountParameters = {
5232
5237
  /** The account address. */
5233
5238
  address: Address;
@@ -5242,7 +5247,7 @@ type GetTransactionCountParameters = {
5242
5247
  });
5243
5248
  type GetTransactionCountReturnType = number;
5244
5249
  //#endregion
5245
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/prepareTransactionRequest.d.ts
5250
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/prepareTransactionRequest.d.ts
5246
5251
  declare const defaultParameters: readonly ["blobVersionedHashes", "chainId", "fees", "gas", "nonce", "type"];
5247
5252
  type PrepareTransactionRequestParameterType = 'blobVersionedHashes' | 'chainId' | 'fees' | 'gas' | 'nonce' | 'sidecars' | 'type';
5248
5253
  type ParameterTypeToParameters<parameterType extends PrepareTransactionRequestParameterType> = parameterType extends 'fees' ? 'maxFeePerGas' | 'maxPriorityFeePerGas' | 'gasPrice' : parameterType;
@@ -5275,14 +5280,14 @@ type PrepareTransactionRequestReturnType<chain$1 extends Chain | undefined = Cha
5275
5280
  chainId?: number | undefined;
5276
5281
  }, ParameterTypeToParameters<request$1['parameters'] extends readonly PrepareTransactionRequestParameterType[] ? request$1['parameters'][number] : (typeof defaultParameters)[number]>> & (unknown extends request$1['kzg'] ? {} : Pick<request$1, 'kzg'>)>;
5277
5282
  //#endregion
5278
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getGasPrice.d.ts
5283
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getGasPrice.d.ts
5279
5284
  type GetGasPriceReturnType = bigint;
5280
5285
  //#endregion
5281
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/estimateMaxPriorityFeePerGas.d.ts
5286
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/estimateMaxPriorityFeePerGas.d.ts
5282
5287
  type EstimateMaxPriorityFeePerGasParameters<chain$1 extends Chain | undefined = Chain | undefined, chainOverride extends Chain | undefined = Chain | undefined> = GetChainParameter<chain$1, chainOverride>;
5283
5288
  type EstimateMaxPriorityFeePerGasReturnType = bigint;
5284
5289
  //#endregion
5285
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/estimateFeesPerGas.d.ts
5290
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/estimateFeesPerGas.d.ts
5286
5291
  type EstimateFeesPerGasParameters<chain$1 extends Chain | undefined = Chain | undefined, chainOverride extends Chain | undefined = Chain | undefined, type$1 extends FeeValuesType = FeeValuesType> = {
5287
5292
  /**
5288
5293
  * The type of fee values to return.
@@ -5296,7 +5301,7 @@ type EstimateFeesPerGasParameters<chain$1 extends Chain | undefined = Chain | un
5296
5301
  } & GetChainParameter<chain$1, chainOverride>;
5297
5302
  type EstimateFeesPerGasReturnType<type$1 extends FeeValuesType = FeeValuesType> = (type$1 extends 'legacy' ? FeeValuesLegacy : never) | (type$1 extends 'eip1559' ? FeeValuesEIP1559 : never);
5298
5303
  //#endregion
5299
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/call.d.ts
5304
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/call.d.ts
5300
5305
  type CallParameters<chain$1 extends Chain | undefined = Chain | undefined> = UnionOmit<FormattedCall<chain$1>, 'from'> & {
5301
5306
  /** Account attached to the call (msg.sender). */
5302
5307
  account?: Account | Address | undefined;
@@ -5329,7 +5334,7 @@ type CallReturnType = {
5329
5334
  data: Hex | undefined;
5330
5335
  };
5331
5336
  //#endregion
5332
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getCode.d.ts
5337
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getCode.d.ts
5333
5338
  type GetCodeParameters = {
5334
5339
  address: Address;
5335
5340
  } & ({
@@ -5341,11 +5346,11 @@ type GetCodeParameters = {
5341
5346
  });
5342
5347
  type GetCodeReturnType = Hex | undefined;
5343
5348
  //#endregion
5344
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/readContract.d.ts
5349
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/readContract.d.ts
5345
5350
  type ReadContractParameters<abi$1 extends Abi | readonly unknown[] = Abi, functionName$1 extends ContractFunctionName<abi$1, 'pure' | 'view'> = ContractFunctionName<abi$1, 'pure' | 'view'>, args$1 extends ContractFunctionArgs<abi$1, 'pure' | 'view', functionName$1> = ContractFunctionArgs<abi$1, 'pure' | 'view', functionName$1>> = UnionEvaluate<Pick<CallParameters, 'account' | 'authorizationList' | 'blockNumber' | 'blockOverrides' | 'blockTag' | 'factory' | 'factoryData' | 'stateOverride'>> & ContractFunctionParameters<abi$1, 'pure' | 'view', functionName$1, args$1, boolean>;
5346
5351
  type ReadContractReturnType<abi$1 extends Abi | readonly unknown[] = Abi, functionName$1 extends ContractFunctionName<abi$1, 'pure' | 'view'> = ContractFunctionName<abi$1, 'pure' | 'view'>, args$1 extends ContractFunctionArgs<abi$1, 'pure' | 'view', functionName$1> = ContractFunctionArgs<abi$1, 'pure' | 'view', functionName$1>> = ContractFunctionReturnType<abi$1, 'pure' | 'view', functionName$1, args$1>;
5347
5352
  //#endregion
5348
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/verifyHash.d.ts
5353
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/verifyHash.d.ts
5349
5354
  type VerifyHashParameters = Pick<CallParameters, 'blockNumber' | 'blockTag'> & {
5350
5355
  /** The address that signed the original message. */
5351
5356
  address: Address;
@@ -5367,7 +5372,7 @@ type VerifyHashParameters = Pick<CallParameters, 'blockNumber' | 'blockTag'> & {
5367
5372
  } | {}>;
5368
5373
  type VerifyHashReturnType = boolean;
5369
5374
  //#endregion
5370
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/chain.d.ts
5375
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/chain.d.ts
5371
5376
  type Chain<formatters$1 extends ChainFormatters | undefined = ChainFormatters | undefined, extendSchema extends Record<string, unknown> | undefined = Record<string, unknown> | undefined> = {
5372
5377
  /** Collection of block explorers */
5373
5378
  blockExplorers?: {
@@ -5539,7 +5544,23 @@ type ChainRpcUrls = {
5539
5544
  webSocket?: readonly string[] | undefined;
5540
5545
  };
5541
5546
  //#endregion
5542
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/ccip.d.ts
5547
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/dataSuffix.d.ts
5548
+ /**
5549
+ * Data suffix configuration for transaction attribution.
5550
+ *
5551
+ * Can be specified in two forms:
5552
+ * - Simple hex string: `"0x1234"` - Appended to transaction data, not required
5553
+ * - Object form: `{ value: "0x1234", required: true }` - Explicit required flag
5554
+ *
5555
+ * When `required` is `true`, transactions will fail if the suffix cannot be appended.
5556
+ * When `required` is `false` (default), the suffix is best-effort.
5557
+ */
5558
+ type DataSuffix = Hex | {
5559
+ value: Hex;
5560
+ required?: boolean | undefined;
5561
+ };
5562
+ //#endregion
5563
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/ccip.d.ts
5543
5564
  type CcipRequestParameters = {
5544
5565
  data: Hex;
5545
5566
  sender: Address;
@@ -5547,7 +5568,7 @@ type CcipRequestParameters = {
5547
5568
  };
5548
5569
  type CcipRequestReturnType = Hex;
5549
5570
  //#endregion
5550
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/ens/getEnsAddress.d.ts
5571
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/ens/getEnsAddress.d.ts
5551
5572
  type GetEnsAddressParameters = Prettify<Pick<ReadContractParameters, 'blockNumber' | 'blockTag'> & {
5552
5573
  /**
5553
5574
  * ENSIP-9 compliant coinType (chain) to get ENS address for.
@@ -5582,11 +5603,11 @@ type GetEnsAddressParameters = Prettify<Pick<ReadContractParameters, 'blockNumbe
5582
5603
  }>;
5583
5604
  type GetEnsAddressReturnType = Address | null;
5584
5605
  //#endregion
5585
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/ens.d.ts
5606
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/ens.d.ts
5586
5607
  type AssetGateway = 'ipfs' | 'arweave';
5587
5608
  type AssetGatewayUrls = { [_key in AssetGateway]?: string | undefined };
5588
5609
  //#endregion
5589
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/ens/getEnsText.d.ts
5610
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/ens/getEnsText.d.ts
5590
5611
  type GetEnsTextParameters = Prettify<Pick<ReadContractParameters, 'blockNumber' | 'blockTag'> & {
5591
5612
  /** ENS name to get Text for. */
5592
5613
  name: string;
@@ -5601,14 +5622,14 @@ type GetEnsTextParameters = Prettify<Pick<ReadContractParameters, 'blockNumber'
5601
5622
  }>;
5602
5623
  type GetEnsTextReturnType = string | null;
5603
5624
  //#endregion
5604
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/ens/getEnsAvatar.d.ts
5625
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/ens/getEnsAvatar.d.ts
5605
5626
  type GetEnsAvatarParameters = Prettify<Omit<GetEnsTextParameters, 'key'> & {
5606
5627
  /** Gateway urls to resolve IPFS and/or Arweave assets. */
5607
5628
  assetGatewayUrls?: AssetGatewayUrls | undefined;
5608
5629
  }>;
5609
5630
  type GetEnsAvatarReturnType = string | null;
5610
5631
  //#endregion
5611
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/ens/getEnsName.d.ts
5632
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/ens/getEnsName.d.ts
5612
5633
  type GetEnsNameParameters = Prettify<Pick<ReadContractParameters, 'blockNumber' | 'blockTag'> & {
5613
5634
  /**
5614
5635
  * Address to get ENS name for.
@@ -5643,7 +5664,7 @@ type GetEnsNameParameters = Prettify<Pick<ReadContractParameters, 'blockNumber'
5643
5664
  }>;
5644
5665
  type GetEnsNameReturnType = string | null;
5645
5666
  //#endregion
5646
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/ens/getEnsResolver.d.ts
5667
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/ens/getEnsResolver.d.ts
5647
5668
  type GetEnsResolverParameters = Prettify<Pick<ReadContractParameters, 'blockNumber' | 'blockTag'> & {
5648
5669
  /** Name to get the address for. */
5649
5670
  name: string;
@@ -5652,7 +5673,7 @@ type GetEnsResolverParameters = Prettify<Pick<ReadContractParameters, 'blockNumb
5652
5673
  }>;
5653
5674
  type GetEnsResolverReturnType = Address;
5654
5675
  //#endregion
5655
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/createAccessList.d.ts
5676
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/createAccessList.d.ts
5656
5677
  type CreateAccessListParameters<chain$1 extends Chain | undefined = Chain | undefined> = UnionOmit<FormattedTransactionRequest<chain$1>, 'from' | 'nonce' | 'accessList'> & {
5657
5678
  /** Account attached to the call (msg.sender). */
5658
5679
  account?: Account | Address | undefined;
@@ -5673,7 +5694,7 @@ type CreateAccessListReturnType = Prettify<{
5673
5694
  gasUsed: bigint;
5674
5695
  }>;
5675
5696
  //#endregion
5676
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/filter.d.ts
5697
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/filter.d.ts
5677
5698
  type FilterType = 'transaction' | 'block' | 'event';
5678
5699
  type FilterRpcSchema = Filter$1<PublicRpcSchema, {
5679
5700
  Method: 'eth_getFilterLogs' | 'eth_getFilterChanges' | 'eth_uninstallFilter';
@@ -5707,10 +5728,10 @@ type Filter<filterType extends FilterType = 'event', abi$1 extends Abi | readonl
5707
5728
  strict?: undefined;
5708
5729
  }) : {});
5709
5730
  //#endregion
5710
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/createBlockFilter.d.ts
5731
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/createBlockFilter.d.ts
5711
5732
  type CreateBlockFilterReturnType = Filter<'block'>;
5712
5733
  //#endregion
5713
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/createContractEventFilter.d.ts
5734
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/createContractEventFilter.d.ts
5714
5735
  type CreateContractEventFilterParameters<abi$1 extends Abi | readonly unknown[] = Abi, eventName$1 extends ContractEventName<abi$1> | undefined = undefined, args$1 extends MaybeExtractEventArgsFromAbi<abi$1, eventName$1> | undefined = undefined, strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined> = {
5715
5736
  address?: Address | Address[] | undefined;
5716
5737
  abi: abi$1;
@@ -5731,7 +5752,7 @@ type CreateContractEventFilterParameters<abi$1 extends Abi | readonly unknown[]
5731
5752
  });
5732
5753
  type CreateContractEventFilterReturnType<abi$1 extends Abi | readonly unknown[] = Abi, eventName$1 extends ContractEventName<abi$1> | undefined = undefined, args$1 extends MaybeExtractEventArgsFromAbi<abi$1, eventName$1> | undefined = undefined, strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined> = Filter<'event', abi$1, eventName$1, args$1, strict$1, fromBlock$1, toBlock$1>;
5733
5754
  //#endregion
5734
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/createEventFilter.d.ts
5755
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/createEventFilter.d.ts
5735
5756
  type CreateEventFilterParameters<abiEvent extends AbiEvent | undefined = undefined, abiEvents extends readonly AbiEvent[] | readonly unknown[] | undefined = (abiEvent extends AbiEvent ? [abiEvent] : undefined), strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined, _eventName extends string | undefined = MaybeAbiEventName<abiEvent>, _args extends MaybeExtractEventArgsFromAbi<abiEvents, _eventName> | undefined = undefined> = {
5736
5757
  address?: Address | Address[] | undefined;
5737
5758
  fromBlock?: fromBlock$1 | BlockNumber | BlockTag | undefined;
@@ -5776,17 +5797,17 @@ type CreateEventFilterParameters<abiEvent extends AbiEvent | undefined = undefin
5776
5797
  });
5777
5798
  type CreateEventFilterReturnType<abiEvent extends AbiEvent | undefined = undefined, abiEvents extends readonly AbiEvent[] | readonly unknown[] | undefined = (abiEvent extends AbiEvent ? [abiEvent] : undefined), strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined, _eventName extends string | undefined = MaybeAbiEventName<abiEvent>, _args extends MaybeExtractEventArgsFromAbi<abiEvents, _eventName> | undefined = undefined> = Prettify<Filter<'event', abiEvents, _eventName, _args, strict$1, fromBlock$1, toBlock$1>>;
5778
5799
  //#endregion
5779
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/createPendingTransactionFilter.d.ts
5800
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/createPendingTransactionFilter.d.ts
5780
5801
  type CreatePendingTransactionFilterReturnType = Filter<'transaction'>;
5781
5802
  //#endregion
5782
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/estimateContractGas.d.ts
5803
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/estimateContractGas.d.ts
5783
5804
  type EstimateContractGasParameters<abi$1 extends Abi | readonly unknown[] = Abi, functionName$1 extends ContractFunctionName<abi$1, 'nonpayable' | 'payable'> = ContractFunctionName<abi$1, 'nonpayable' | 'payable'>, args$1 extends ContractFunctionArgs<abi$1, 'nonpayable' | 'payable', functionName$1> = ContractFunctionArgs<abi$1, 'nonpayable' | 'payable', functionName$1>, chain$1 extends Chain | undefined = Chain | undefined> = ContractFunctionParameters<abi$1, 'nonpayable' | 'payable', functionName$1, args$1> & UnionOmit<EstimateGasParameters<chain$1>, 'data' | 'to' | 'value'> & GetValue<abi$1, functionName$1, EstimateGasParameters<chain$1> extends EstimateGasParameters ? EstimateGasParameters<chain$1>['value'] : EstimateGasParameters['value']> & {
5784
5805
  /** Data to append to the end of the calldata. Useful for adding a ["domain" tag](https://opensea.notion.site/opensea/Seaport-Order-Attributions-ec2d69bf455041a5baa490941aad307f). */
5785
5806
  dataSuffix?: Hex | undefined;
5786
5807
  };
5787
5808
  type EstimateContractGasReturnType = bigint;
5788
5809
  //#endregion
5789
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/fillTransaction.d.ts
5810
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/fillTransaction.d.ts
5790
5811
  type FillTransactionParameters<chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined, chainOverride extends Chain | undefined = Chain | undefined, accountOverride extends Account | Address | undefined = Account | Address | undefined, _derivedChain extends Chain | undefined = DeriveChain<chain$1, chainOverride>> = UnionOmit<FormattedTransactionRequest<_derivedChain>, 'from'> & GetAccountParameter<account, accountOverride, false, true> & GetChainParameter<chain$1, chainOverride> & {
5791
5812
  /**
5792
5813
  * Nonce manager to use for the transaction request.
@@ -5798,7 +5819,7 @@ type FillTransactionReturnType<chain$1 extends Chain | undefined = Chain | undef
5798
5819
  transaction: FormattedTransaction<_derivedChain>;
5799
5820
  };
5800
5821
  //#endregion
5801
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getBalance.d.ts
5822
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getBalance.d.ts
5802
5823
  type GetBalanceParameters = {
5803
5824
  /** The address of the account. */
5804
5825
  address: Address;
@@ -5813,17 +5834,17 @@ type GetBalanceParameters = {
5813
5834
  });
5814
5835
  type GetBalanceReturnType = bigint;
5815
5836
  //#endregion
5816
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getBlobBaseFee.d.ts
5837
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getBlobBaseFee.d.ts
5817
5838
  type GetBlobBaseFeeReturnType = bigint;
5818
5839
  //#endregion
5819
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getBlockNumber.d.ts
5840
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getBlockNumber.d.ts
5820
5841
  type GetBlockNumberParameters = {
5821
5842
  /** Time (in ms) that cached block number will remain in memory. */
5822
5843
  cacheTime?: number | undefined;
5823
5844
  };
5824
5845
  type GetBlockNumberReturnType = bigint;
5825
5846
  //#endregion
5826
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getBlockTransactionCount.d.ts
5847
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getBlockTransactionCount.d.ts
5827
5848
  type GetBlockTransactionCountParameters = {
5828
5849
  /** Hash of the block. */
5829
5850
  blockHash?: Hash | undefined;
@@ -5842,7 +5863,7 @@ type GetBlockTransactionCountParameters = {
5842
5863
  };
5843
5864
  type GetBlockTransactionCountReturnType = number;
5844
5865
  //#endregion
5845
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getLogs.d.ts
5866
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getLogs.d.ts
5846
5867
  type GetLogsParameters<abiEvent extends AbiEvent | undefined = undefined, abiEvents extends readonly AbiEvent[] | readonly unknown[] | undefined = (abiEvent extends AbiEvent ? [abiEvent] : undefined), strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined, _eventName extends string | undefined = MaybeAbiEventName<abiEvent>> = {
5847
5868
  /** Address or list of addresses from which logs originated */
5848
5869
  address?: Address | Address[] | undefined;
@@ -5883,7 +5904,7 @@ type GetLogsParameters<abiEvent extends AbiEvent | undefined = undefined, abiEve
5883
5904
  });
5884
5905
  type GetLogsReturnType<abiEvent extends AbiEvent | undefined = undefined, abiEvents extends readonly AbiEvent[] | readonly unknown[] | undefined = (abiEvent extends AbiEvent ? [abiEvent] : undefined), strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined, _eventName extends string | undefined = MaybeAbiEventName<abiEvent>, _pending extends boolean = (fromBlock$1 extends 'pending' ? true : false) | (toBlock$1 extends 'pending' ? true : false)> = Log<bigint, number, _pending, abiEvent, strict$1, abiEvents, _eventName>[];
5885
5906
  //#endregion
5886
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getContractEvents.d.ts
5907
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getContractEvents.d.ts
5887
5908
  type GetContractEventsParameters<abi$1 extends Abi | readonly unknown[] = Abi, eventName$1 extends ContractEventName<abi$1> | undefined = ContractEventName<abi$1> | undefined, strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined> = {
5888
5909
  /** The address of the contract. */
5889
5910
  address?: Address | Address[] | undefined;
@@ -5911,7 +5932,7 @@ type GetContractEventsParameters<abi$1 extends Abi | readonly unknown[] = Abi, e
5911
5932
  });
5912
5933
  type GetContractEventsReturnType<abi$1 extends Abi | readonly unknown[] = readonly unknown[], eventName$1 extends ContractEventName<abi$1> | undefined = ContractEventName<abi$1> | undefined, strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined, isPending extends boolean = (fromBlock$1 extends 'pending' ? true : false) | (toBlock$1 extends 'pending' ? true : false)> = Log<bigint, number, isPending, undefined, strict$1, abi$1, eventName$1>[];
5913
5934
  //#endregion
5914
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getEip712Domain.d.ts
5935
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getEip712Domain.d.ts
5915
5936
  type GetEip712DomainParameters = {
5916
5937
  address: Address;
5917
5938
  } & Pick<ReadContractParameters, 'factory' | 'factoryData'>;
@@ -5921,7 +5942,7 @@ type GetEip712DomainReturnType = {
5921
5942
  extensions: readonly bigint[];
5922
5943
  };
5923
5944
  //#endregion
5924
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getFeeHistory.d.ts
5945
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getFeeHistory.d.ts
5925
5946
  type GetFeeHistoryParameters = {
5926
5947
  /**
5927
5948
  * Number of blocks in the requested range. Between 1 and 1024 blocks can be requested in a single query. Less than requested may be returned if not all blocks are available.
@@ -5945,19 +5966,19 @@ type GetFeeHistoryParameters = {
5945
5966
  });
5946
5967
  type GetFeeHistoryReturnType = FeeHistory;
5947
5968
  //#endregion
5948
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getFilterChanges.d.ts
5969
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getFilterChanges.d.ts
5949
5970
  type GetFilterChangesParameters<filterType extends FilterType = FilterType, abi$1 extends Abi | readonly unknown[] | undefined = undefined, eventName$1 extends string | undefined = undefined, strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined> = {
5950
5971
  filter: Filter<filterType, abi$1, eventName$1, any, strict$1, fromBlock$1, toBlock$1>;
5951
5972
  };
5952
5973
  type GetFilterChangesReturnType<filterType extends FilterType = FilterType, abi$1 extends Abi | readonly unknown[] | undefined = undefined, eventName$1 extends string | undefined = undefined, strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined, _AbiEvent extends AbiEvent | undefined = (abi$1 extends Abi ? eventName$1 extends string ? ExtractAbiEvent<abi$1, eventName$1> : undefined : undefined), _Pending extends boolean = (fromBlock$1 extends 'pending' ? true : false) | (toBlock$1 extends 'pending' ? true : false)> = filterType extends 'event' ? Log<bigint, number, _Pending, _AbiEvent, strict$1, abi$1, eventName$1>[] : Hash[];
5953
5974
  //#endregion
5954
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getFilterLogs.d.ts
5975
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getFilterLogs.d.ts
5955
5976
  type GetFilterLogsParameters<abi$1 extends Abi | readonly unknown[] | undefined = undefined, eventName$1 extends string | undefined = undefined, strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined> = {
5956
5977
  filter: Filter<'event', abi$1, eventName$1, any, strict$1, fromBlock$1, toBlock$1>;
5957
5978
  };
5958
5979
  type GetFilterLogsReturnType<abi$1 extends Abi | readonly unknown[] | undefined = undefined, eventName$1 extends string | undefined = undefined, strict$1 extends boolean | undefined = undefined, fromBlock$1 extends BlockNumber | BlockTag | undefined = undefined, toBlock$1 extends BlockNumber | BlockTag | undefined = undefined, _AbiEvent extends AbiEvent | undefined = (abi$1 extends Abi ? eventName$1 extends string ? ExtractAbiEvent<abi$1, eventName$1> : undefined : undefined), _Pending extends boolean = (fromBlock$1 extends 'pending' ? true : false) | (toBlock$1 extends 'pending' ? true : false)> = Log<bigint, number, _Pending, _AbiEvent, strict$1, abi$1, eventName$1>[];
5959
5980
  //#endregion
5960
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getProof.d.ts
5981
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getProof.d.ts
5961
5982
  type GetProofParameters = {
5962
5983
  /** Account address. */
5963
5984
  address: Address;
@@ -5977,7 +5998,7 @@ type GetProofParameters = {
5977
5998
  });
5978
5999
  type GetProofReturnType = Proof;
5979
6000
  //#endregion
5980
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getStorageAt.d.ts
6001
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getStorageAt.d.ts
5981
6002
  type GetStorageAtParameters = {
5982
6003
  address: Address;
5983
6004
  slot: Hex;
@@ -5990,11 +6011,11 @@ type GetStorageAtParameters = {
5990
6011
  });
5991
6012
  type GetStorageAtReturnType = Hex | undefined;
5992
6013
  //#endregion
5993
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/accounts/utils/signAuthorization.d.ts
6014
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/accounts/utils/signAuthorization.d.ts
5994
6015
  type To = 'object' | 'bytes' | 'hex';
5995
6016
  type SignAuthorizationReturnType<to$1 extends To = 'object'> = Prettify<to$1 extends 'object' ? SignedAuthorization : SignReturnType<to$1>>;
5996
6017
  //#endregion
5997
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getTransaction.d.ts
6018
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getTransaction.d.ts
5998
6019
  type GetTransactionParameters<blockTag$1 extends BlockTag = 'latest'> = OneOf<{
5999
6020
  /** The block hash */
6000
6021
  blockHash: Hash;
@@ -6021,10 +6042,10 @@ type GetTransactionParameters<blockTag$1 extends BlockTag = 'latest'> = OneOf<{
6021
6042
  }>;
6022
6043
  type GetTransactionReturnType<chain$1 extends Chain | undefined = undefined, blockTag$1 extends BlockTag = 'latest'> = Prettify<FormattedTransaction<chain$1, blockTag$1>>;
6023
6044
  //#endregion
6024
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/formatters/transactionReceipt.d.ts
6045
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/formatters/transactionReceipt.d.ts
6025
6046
  type FormattedTransactionReceipt<chain$1 extends Chain | undefined = undefined> = ExtractChainFormatterReturnType<chain$1, 'transactionReceipt', TransactionReceipt>;
6026
6047
  //#endregion
6027
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getTransactionConfirmations.d.ts
6048
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getTransactionConfirmations.d.ts
6028
6049
  type GetTransactionConfirmationsParameters<chain$1 extends Chain | undefined = Chain> = {
6029
6050
  /** The transaction hash. */
6030
6051
  hash: Hash;
@@ -6036,14 +6057,14 @@ type GetTransactionConfirmationsParameters<chain$1 extends Chain | undefined = C
6036
6057
  };
6037
6058
  type GetTransactionConfirmationsReturnType = bigint;
6038
6059
  //#endregion
6039
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getTransactionReceipt.d.ts
6060
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/getTransactionReceipt.d.ts
6040
6061
  type GetTransactionReceiptParameters = {
6041
6062
  /** The hash of the transaction. */
6042
6063
  hash: Hash;
6043
6064
  };
6044
6065
  type GetTransactionReceiptReturnType<chain$1 extends Chain | undefined = undefined> = FormattedTransactionReceipt<chain$1>;
6045
6066
  //#endregion
6046
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/multicall.d.ts
6067
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/multicall.d.ts
6047
6068
  type MulticallContracts<contracts extends readonly unknown[], options extends {
6048
6069
  mutability: AbiStateMutability;
6049
6070
  optional?: boolean;
@@ -6084,7 +6105,7 @@ type GetMulticallContractReturnType<contract$1, mutability extends AbiStateMutab
6084
6105
  args: infer args extends ContractFunctionArgs<abi, mutability, functionName>;
6085
6106
  } ? ContractFunctionReturnType<abi, mutability, functionName, args> : ContractFunctionReturnType<abi, mutability, functionName> : ContractFunctionReturnType<abi, mutability> : ContractFunctionReturnType;
6086
6107
  //#endregion
6087
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/multicall.d.ts
6108
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/multicall.d.ts
6088
6109
  type MulticallParameters<contracts extends readonly unknown[] = readonly ContractFunctionParameters[], allowFailure extends boolean = true, options extends {
6089
6110
  optional?: boolean;
6090
6111
  properties?: Record<string, any>;
@@ -6112,7 +6133,7 @@ type MulticallReturnType<contracts extends readonly unknown[] = readonly Contrac
6112
6133
  mutability: AbiStateMutability;
6113
6134
  } & options>;
6114
6135
  //#endregion
6115
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/calls.d.ts
6136
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/calls.d.ts
6116
6137
  type Call$1<call$1 = unknown, extraProperties extends Record<string, unknown> = {}> = OneOf<Assign<{
6117
6138
  data?: Hex | undefined;
6118
6139
  dataSuffix?: Hex | undefined;
@@ -6126,7 +6147,7 @@ type Call$1<call$1 = unknown, extraProperties extends Record<string, unknown> =
6126
6147
  }, extraProperties>>;
6127
6148
  type Calls<calls extends readonly unknown[], extraProperties extends Record<string, unknown> = {}, result extends readonly any[] = []> = calls extends readonly [] ? readonly [] : calls extends readonly [infer call] ? readonly [...result, Prettify<Call$1<call, extraProperties>>] : calls extends readonly [infer call, ...infer rest] ? Calls<[...rest], extraProperties, [...result, Prettify<Call$1<call, extraProperties>>]> : readonly unknown[] extends calls ? calls : calls extends readonly (infer call extends OneOf<Call$1<unknown, extraProperties>>)[] ? readonly Prettify<call>[] : readonly OneOf<Call$1>[];
6128
6149
  //#endregion
6129
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/simulateBlocks.d.ts
6150
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/simulateBlocks.d.ts
6130
6151
  type CallExtraProperties = ExactPartial<UnionOmit<TransactionRequest, 'blobs' | 'data' | 'kzg' | 'to' | 'sidecars' | 'value'>> & {
6131
6152
  /** Account attached to the call (msg.sender). */
6132
6153
  account?: Account | Address | undefined;
@@ -6173,7 +6194,7 @@ type SimulateBlocksReturnType<calls extends readonly unknown[] = readonly unknow
6173
6194
  }>;
6174
6195
  })[];
6175
6196
  //#endregion
6176
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/simulateCalls.d.ts
6197
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/simulateCalls.d.ts
6177
6198
  type SimulateCallsParameters<calls extends readonly unknown[] = readonly unknown[], account extends Account | Address | undefined = Account | Address | undefined> = Omit<SimulateBlocksParameters, 'blocks' | 'returnFullTransactions'> & {
6178
6199
  /** Account attached to the calls (msg.sender). */
6179
6200
  account?: account | undefined;
@@ -6212,7 +6233,7 @@ type SimulateCallsReturnType<calls extends readonly unknown[] = readonly unknown
6212
6233
  }>;
6213
6234
  };
6214
6235
  //#endregion
6215
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/transports/fallback.d.ts
6236
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/transports/fallback.d.ts
6216
6237
  type OnResponseFn = (args: {
6217
6238
  method: string;
6218
6239
  params: unknown[];
@@ -6231,7 +6252,7 @@ type FallbackTransport<transports$1 extends readonly Transport[] = readonly Tran
6231
6252
  transports: { [key in keyof transports$1]: ReturnType<transports$1[key]> };
6232
6253
  }>;
6233
6254
  //#endregion
6234
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/transport.d.ts
6255
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/types/transport.d.ts
6235
6256
  type GetTransportConfig<transport extends Transport> = ReturnType<transport>['config'];
6236
6257
  type GetPollOptions<transport extends Transport> = (HasTransportType<transport, 'webSocket' | 'ipc'> extends true ? {
6237
6258
  batch?: undefined;
@@ -6256,7 +6277,7 @@ type GetPollOptions<transport extends Transport> = (HasTransportType<transport,
6256
6277
  };
6257
6278
  type HasTransportType<transport extends Transport, type$1 extends string> = GetTransportConfig<transport>['type'] extends type$1 ? true : transport extends FallbackTransport<infer transports extends readonly Transport[]> ? Some<{ [key in keyof transports]: GetTransportConfig<transports[key]>['type'] }, type$1> : false;
6258
6279
  //#endregion
6259
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/watchBlockNumber.d.ts
6280
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/watchBlockNumber.d.ts
6260
6281
  type OnBlockNumberParameter = GetBlockNumberReturnType;
6261
6282
  type OnBlockNumberFn = (blockNumber: OnBlockNumberParameter, prevBlockNumber: OnBlockNumberParameter | undefined) => void;
6262
6283
  type WatchBlockNumberParameters<transport extends Transport = Transport> = {
@@ -6281,7 +6302,7 @@ type WatchBlockNumberParameters<transport extends Transport = Transport> = {
6281
6302
  });
6282
6303
  type WatchBlockNumberReturnType = () => void;
6283
6304
  //#endregion
6284
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/waitForTransactionReceipt.d.ts
6305
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/waitForTransactionReceipt.d.ts
6285
6306
  type ReplacementReason = 'cancelled' | 'replaced' | 'repriced';
6286
6307
  type ReplacementReturnType<chain$1 extends Chain | undefined = Chain | undefined> = {
6287
6308
  reason: ReplacementReason;
@@ -6327,13 +6348,13 @@ type WaitForTransactionReceiptParameters<chain$1 extends Chain | undefined = Cha
6327
6348
  timeout?: number | undefined;
6328
6349
  };
6329
6350
  //#endregion
6330
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/addChain.d.ts
6351
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/addChain.d.ts
6331
6352
  type AddChainParameters = {
6332
6353
  /** The chain to add to the wallet. */
6333
6354
  chain: Chain;
6334
6355
  };
6335
6356
  //#endregion
6336
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/deployContract.d.ts
6357
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/deployContract.d.ts
6337
6358
  type DeployContractParameters<abi$1 extends Abi | readonly unknown[] = Abi, chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined, chainOverride extends Chain | undefined = Chain | undefined, allArgs = ContractConstructorArgs<abi$1>> = UnionOmit<SendTransactionParameters<chain$1, account, chainOverride>, 'accessList' | 'chain' | 'to' | 'data'> & GetChainParameter<chain$1, chainOverride> & UnionEvaluate<readonly [] extends allArgs ? {
6338
6359
  args?: allArgs | undefined;
6339
6360
  } : {
@@ -6344,10 +6365,10 @@ type DeployContractParameters<abi$1 extends Abi | readonly unknown[] = Abi, chai
6344
6365
  };
6345
6366
  type DeployContractReturnType = SendTransactionReturnType;
6346
6367
  //#endregion
6347
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/getAddresses.d.ts
6368
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/getAddresses.d.ts
6348
6369
  type GetAddressesReturnType = Address[];
6349
6370
  //#endregion
6350
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/getCallsStatus.d.ts
6371
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/getCallsStatus.d.ts
6351
6372
  type GetCallsStatusParameters = {
6352
6373
  id: string;
6353
6374
  };
@@ -6356,17 +6377,17 @@ type GetCallsStatusReturnType = Prettify<Omit<WalletGetCallsStatusReturnType<Ext
6356
6377
  status: 'pending' | 'success' | 'failure' | undefined;
6357
6378
  }>;
6358
6379
  //#endregion
6359
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/getCapabilities.d.ts
6380
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/getCapabilities.d.ts
6360
6381
  type GetCapabilitiesParameters<chainId extends number | undefined = undefined> = {
6361
6382
  account?: Account | Address | undefined;
6362
6383
  chainId?: chainId | number | undefined;
6363
6384
  };
6364
6385
  type GetCapabilitiesReturnType<chainId extends number | undefined = undefined> = Prettify<chainId extends number ? ExtractCapabilities<'getCapabilities', 'ReturnType'> : ChainIdToCapabilities<Capabilities<ExtractCapabilities<'getCapabilities', 'ReturnType'>>, number>>;
6365
6386
  //#endregion
6366
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/getPermissions.d.ts
6387
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/getPermissions.d.ts
6367
6388
  type GetPermissionsReturnType = WalletPermission[];
6368
6389
  //#endregion
6369
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/prepareAuthorization.d.ts
6390
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/prepareAuthorization.d.ts
6370
6391
  type PrepareAuthorizationParameters<account extends Account | undefined = Account | undefined> = GetAccountParameter<account> & PartialBy<AuthorizationRequest, 'chainId' | 'nonce'> & {
6371
6392
  /**
6372
6393
  * Whether the EIP-7702 Transaction will be executed by the EOA (signing this Authorization) or another Account.
@@ -6378,10 +6399,10 @@ type PrepareAuthorizationParameters<account extends Account | undefined = Accoun
6378
6399
  };
6379
6400
  type PrepareAuthorizationReturnType = Authorization;
6380
6401
  //#endregion
6381
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/requestAddresses.d.ts
6402
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/requestAddresses.d.ts
6382
6403
  type RequestAddressesReturnType = Address[];
6383
6404
  //#endregion
6384
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/requestPermissions.d.ts
6405
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/requestPermissions.d.ts
6385
6406
  type RequestPermissionsParameters = Prettify<{
6386
6407
  eth_accounts: Record<string, any>;
6387
6408
  } & {
@@ -6389,7 +6410,7 @@ type RequestPermissionsParameters = Prettify<{
6389
6410
  }>;
6390
6411
  type RequestPermissionsReturnType = WalletPermission[];
6391
6412
  //#endregion
6392
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendCalls.d.ts
6413
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendCalls.d.ts
6393
6414
  type SendCallsParameters<chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined, chainOverride extends Chain | undefined = Chain | undefined, calls extends readonly unknown[] = readonly unknown[], _chain extends Chain | undefined = DeriveChain<chain$1, chainOverride>> = {
6394
6415
  chain?: chainOverride | Chain | undefined;
6395
6416
  calls: Calls<Narrow<calls>>;
@@ -6405,7 +6426,7 @@ type SendCallsReturnType = Prettify<{
6405
6426
  id: string;
6406
6427
  }>;
6407
6428
  //#endregion
6408
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/waitForCallsStatus.d.ts
6429
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/waitForCallsStatus.d.ts
6409
6430
  type WaitForCallsStatusParameters = {
6410
6431
  /**
6411
6432
  * The id of the call batch to wait for.
@@ -6448,53 +6469,53 @@ type WaitForCallsStatusParameters = {
6448
6469
  };
6449
6470
  type WaitForCallsStatusReturnType = GetCallsStatusReturnType;
6450
6471
  //#endregion
6451
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendCallsSync.d.ts
6472
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendCallsSync.d.ts
6452
6473
  type SendCallsSyncParameters<chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined, chainOverride extends Chain | undefined = Chain | undefined, calls extends readonly unknown[] = readonly unknown[]> = SendCallsParameters<chain$1, account, chainOverride, calls> & Pick<WaitForCallsStatusParameters, 'pollingInterval' | 'status' | 'throwOnFailure'> & {
6453
6474
  /** Timeout (ms) to wait for calls to be included in a block. @default chain.blockTime * 3 */
6454
6475
  timeout?: number | undefined;
6455
6476
  };
6456
6477
  type SendCallsSyncReturnType = GetCallsStatusReturnType;
6457
6478
  //#endregion
6458
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/showCallsStatus.d.ts
6479
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/showCallsStatus.d.ts
6459
6480
  type ShowCallsStatusParameters = {
6460
6481
  id: string;
6461
6482
  };
6462
6483
  type ShowCallsStatusReturnType = void;
6463
6484
  //#endregion
6464
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/signAuthorization.d.ts
6485
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/signAuthorization.d.ts
6465
6486
  type SignAuthorizationParameters<account extends Account | undefined = Account | undefined> = PrepareAuthorizationParameters<account>;
6466
6487
  type SignAuthorizationReturnType$1 = SignAuthorizationReturnType;
6467
6488
  //#endregion
6468
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/signMessage.d.ts
6489
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/signMessage.d.ts
6469
6490
  type SignMessageParameters<account extends Account | undefined = Account | undefined> = GetAccountParameter<account> & {
6470
6491
  message: SignableMessage;
6471
6492
  };
6472
6493
  type SignMessageReturnType = Hex;
6473
6494
  //#endregion
6474
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/signTransaction.d.ts
6495
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/signTransaction.d.ts
6475
6496
  type SignTransactionRequest<chain$1 extends Chain | undefined = Chain | undefined, chainOverride extends Chain | undefined = Chain | undefined, _derivedChain extends Chain | undefined = DeriveChain<chain$1, chainOverride>> = UnionOmit<FormattedTransactionRequest<_derivedChain>, 'from'>;
6476
6497
  type SignTransactionParameters<chain$1 extends Chain | undefined, account extends Account | undefined, chainOverride extends Chain | undefined = Chain | undefined, request$1 extends SignTransactionRequest<chain$1, chainOverride> = SignTransactionRequest<chain$1, chainOverride>> = request$1 & GetAccountParameter<account> & GetChainParameter<chain$1, chainOverride> & GetTransactionRequestKzgParameter<request$1>;
6477
6498
  type SignTransactionReturnType<request$1 extends SignTransactionRequest = SignTransactionRequest> = TransactionSerialized<GetTransactionType<request$1>>;
6478
6499
  //#endregion
6479
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/signTypedData.d.ts
6500
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/signTypedData.d.ts
6480
6501
  type SignTypedDataParameters<typedData extends TypedData | Record<string, unknown> = TypedData, primaryType extends keyof typedData | 'EIP712Domain' = keyof typedData, account extends Account | undefined = undefined, primaryTypes = (typedData extends TypedData ? keyof typedData : string)> = TypedDataDefinition<typedData, primaryType, primaryTypes> & GetAccountParameter<account>;
6481
6502
  type SignTypedDataReturnType = Hex;
6482
6503
  //#endregion
6483
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/switchChain.d.ts
6504
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/switchChain.d.ts
6484
6505
  type SwitchChainParameters = {
6485
6506
  /** ID of Chain to switch to */
6486
6507
  id: Chain['id'];
6487
6508
  };
6488
6509
  //#endregion
6489
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/watchAsset.d.ts
6510
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/watchAsset.d.ts
6490
6511
  type WatchAssetParameters = WatchAssetParams;
6491
6512
  type WatchAssetReturnType = boolean;
6492
6513
  //#endregion
6493
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/writeContractSync.d.ts
6514
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/writeContractSync.d.ts
6494
6515
  type WriteContractSyncParameters<abi$1 extends Abi | readonly unknown[] = Abi, functionName$1 extends ContractFunctionName<abi$1, 'nonpayable' | 'payable'> = ContractFunctionName<abi$1, 'nonpayable' | 'payable'>, args$1 extends ContractFunctionArgs<abi$1, 'nonpayable' | 'payable', functionName$1> = ContractFunctionArgs<abi$1, 'nonpayable' | 'payable', functionName$1>, chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined, chainOverride extends Chain | undefined = Chain | undefined> = WriteContractParameters<abi$1, functionName$1, args$1, chain$1, account, chainOverride> & Pick<SendTransactionSyncParameters<chain$1>, 'pollingInterval' | 'throwOnReceiptRevert' | 'timeout'>;
6495
6516
  type WriteContractSyncReturnType<chain$1 extends Chain | undefined = Chain | undefined> = SendTransactionSyncReturnType<chain$1>;
6496
6517
  //#endregion
6497
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/decorators/wallet.d.ts
6518
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/decorators/wallet.d.ts
6498
6519
  type WalletActions<chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined> = {
6499
6520
  /**
6500
6521
  * Adds an EVM chain to the wallet.
@@ -7397,7 +7418,7 @@ type WalletActions<chain$1 extends Chain | undefined = Chain | undefined, accoun
7397
7418
  writeContractSync: <const abi$1 extends Abi | readonly unknown[], functionName$1 extends ContractFunctionName<abi$1, 'payable' | 'nonpayable'>, args$1 extends ContractFunctionArgs<abi$1, 'payable' | 'nonpayable', functionName$1>, chainOverride extends Chain | undefined = undefined>(args: WriteContractSyncParameters<abi$1, functionName$1, args$1, chain$1, account, chainOverride>) => Promise<WriteContractSyncReturnType>;
7398
7419
  };
7399
7420
  //#endregion
7400
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/rpc/http.d.ts
7421
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/rpc/http.d.ts
7401
7422
  type HttpRpcClientOptions = {
7402
7423
  /** Override for the fetch function used to make requests. */
7403
7424
  fetchFn?: ((input: string | URL | Request, init?: RequestInit) => Promise<Response>) | undefined;
@@ -7413,7 +7434,7 @@ type HttpRpcClientOptions = {
7413
7434
  timeout?: number | undefined;
7414
7435
  };
7415
7436
  //#endregion
7416
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendRawTransactionSync.d.ts
7437
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendRawTransactionSync.d.ts
7417
7438
  type SendRawTransactionSyncParameters = {
7418
7439
  /** The signed serialized transaction. */
7419
7440
  serializedTransaction: TransactionSerializedGeneric;
@@ -7424,9 +7445,13 @@ type SendRawTransactionSyncParameters = {
7424
7445
  };
7425
7446
  type SendRawTransactionSyncReturnType<chain$1 extends Chain | undefined = undefined> = FormattedTransactionReceipt<chain$1>;
7426
7447
  //#endregion
7427
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendTransactionSync.d.ts
7448
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/sendTransactionSync.d.ts
7428
7449
  type SendTransactionSyncRequest<chain$1 extends Chain | undefined = Chain | undefined, chainOverride extends Chain | undefined = Chain | undefined, _derivedChain extends Chain | undefined = DeriveChain<chain$1, chainOverride>> = UnionOmit<FormattedTransactionRequest<_derivedChain>, 'from'> & GetTransactionRequestKzgParameter;
7429
7450
  type SendTransactionSyncParameters<chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined, chainOverride extends Chain | undefined = Chain | undefined, request$1 extends SendTransactionSyncRequest<chain$1, chainOverride> = SendTransactionSyncRequest<chain$1, chainOverride>> = request$1 & GetAccountParameter<account, Account | Address, true, true> & GetChainParameter<chain$1, chainOverride> & GetTransactionRequestKzgParameter<request$1> & {
7451
+ /** Whether to assert that the client chain is on the correct chain. @default true */
7452
+ assertChainId?: boolean | undefined;
7453
+ /** Data to append to the end of the calldata. Takes precedence over `client.dataSuffix`. */
7454
+ dataSuffix?: Hex | undefined;
7430
7455
  /** Polling interval (ms) to poll for the transaction receipt. @default client.pollingInterval */
7431
7456
  pollingInterval?: number | undefined;
7432
7457
  /** Whether to throw an error if the transaction was detected as reverted. @default true */
@@ -7436,14 +7461,14 @@ type SendTransactionSyncParameters<chain$1 extends Chain | undefined = Chain | u
7436
7461
  };
7437
7462
  type SendTransactionSyncReturnType<chain$1 extends Chain | undefined = Chain | undefined> = SendRawTransactionSyncReturnType<chain$1>;
7438
7463
  //#endregion
7439
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/writeContract.d.ts
7464
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/wallet/writeContract.d.ts
7440
7465
  type WriteContractParameters<abi$1 extends Abi | readonly unknown[] = Abi, functionName$1 extends ContractFunctionName<abi$1, 'nonpayable' | 'payable'> = ContractFunctionName<abi$1, 'nonpayable' | 'payable'>, args$1 extends ContractFunctionArgs<abi$1, 'nonpayable' | 'payable', functionName$1> = ContractFunctionArgs<abi$1, 'nonpayable' | 'payable', functionName$1>, chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined, chainOverride extends Chain | undefined = Chain | undefined, allFunctionNames = ContractFunctionName<abi$1, 'nonpayable' | 'payable'>, derivedChain extends Chain | undefined = DeriveChain<chain$1, chainOverride>> = ContractFunctionParameters<abi$1, 'nonpayable' | 'payable', functionName$1, args$1, false, allFunctionNames> & GetChainParameter<chain$1, chainOverride> & Prettify<GetAccountParameter<account, Account | Address, true, true> & GetMutabilityAwareValue<abi$1, 'nonpayable' | 'payable', functionName$1, FormattedTransactionRequest<derivedChain>['value'], args$1> & {
7441
7466
  /** Data to append to the end of the calldata. Useful for adding a ["domain" tag](https://opensea.notion.site/opensea/Seaport-Order-Attributions-ec2d69bf455041a5baa490941aad307f). */
7442
7467
  dataSuffix?: Hex | undefined;
7443
7468
  }> & UnionEvaluate<UnionOmit<FormattedTransactionRequest<derivedChain>, 'data' | 'from' | 'to' | 'value'>>;
7444
7469
  type WriteContractReturnType = SendTransactionReturnType;
7445
7470
  //#endregion
7446
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/simulateContract.d.ts
7471
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/simulateContract.d.ts
7447
7472
  type GetMutabilityAwareValue<abi$1 extends Abi | readonly unknown[], mutability extends AbiStateMutability = AbiStateMutability, functionName$1 extends ContractFunctionName<abi$1, mutability> = ContractFunctionName<abi$1, mutability>, valueType = TransactionRequest['value'], args$1 extends ContractFunctionArgs<abi$1, mutability, functionName$1> = ContractFunctionArgs<abi$1, mutability, functionName$1>, abiFunction$1 extends AbiFunction = (abi$1 extends Abi ? ExtractAbiFunctionForArgs<abi$1, mutability, functionName$1, args$1> : AbiFunction), _Narrowable extends boolean = IsNarrowable<abi$1, Abi>> = _Narrowable extends true ? abiFunction$1['stateMutability'] extends 'payable' ? {
7448
7473
  value?: NoInfer<valueType> | undefined;
7449
7474
  } : abiFunction$1['payable'] extends true ? {
@@ -7471,13 +7496,13 @@ out chain$1 extends Chain | undefined = Chain | undefined, out account extends A
7471
7496
  })>;
7472
7497
  };
7473
7498
  //#endregion
7474
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/uninstallFilter.d.ts
7499
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/uninstallFilter.d.ts
7475
7500
  type UninstallFilterParameters = {
7476
7501
  filter: Filter<any>;
7477
7502
  };
7478
7503
  type UninstallFilterReturnType = boolean;
7479
7504
  //#endregion
7480
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/verifyMessage.d.ts
7505
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/verifyMessage.d.ts
7481
7506
  type VerifyMessageParameters = Prettify<Omit<VerifyHashParameters, 'hash'> & {
7482
7507
  /** The address that signed the original message. */
7483
7508
  address: Address;
@@ -7488,7 +7513,7 @@ type VerifyMessageParameters = Prettify<Omit<VerifyHashParameters, 'hash'> & {
7488
7513
  }>;
7489
7514
  type VerifyMessageReturnType = boolean;
7490
7515
  //#endregion
7491
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/verifyTypedData.d.ts
7516
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/verifyTypedData.d.ts
7492
7517
  type VerifyTypedDataParameters<typedData extends TypedData | Record<string, unknown> = TypedData, primaryType extends keyof typedData | 'EIP712Domain' = keyof typedData> = Omit<VerifyHashParameters, 'hash'> & TypedDataDefinition<typedData, primaryType> & {
7493
7518
  /** The address to verify the typed data for. */
7494
7519
  address: Address;
@@ -7497,7 +7522,7 @@ type VerifyTypedDataParameters<typedData extends TypedData | Record<string, unkn
7497
7522
  };
7498
7523
  type VerifyTypedDataReturnType = boolean;
7499
7524
  //#endregion
7500
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/watchBlocks.d.ts
7525
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/watchBlocks.d.ts
7501
7526
  type OnBlockParameter<chain$1 extends Chain | undefined = Chain, includeTransactions extends boolean = false, blockTag$1 extends BlockTag = 'latest'> = GetBlockReturnType<chain$1, includeTransactions, blockTag$1>;
7502
7527
  type OnBlock<chain$1 extends Chain | undefined = Chain, includeTransactions extends boolean = false, blockTag$1 extends BlockTag = 'latest'> = (block: OnBlockParameter<chain$1, includeTransactions, blockTag$1>, prevBlock: OnBlockParameter<chain$1, includeTransactions, blockTag$1> | undefined) => void;
7503
7528
  type WatchBlocksParameters<transport extends Transport = Transport, chain$1 extends Chain | undefined = Chain, includeTransactions extends boolean = false, blockTag$1 extends BlockTag = 'latest'> = {
@@ -7528,7 +7553,7 @@ type WatchBlocksParameters<transport extends Transport = Transport, chain$1 exte
7528
7553
  });
7529
7554
  type WatchBlocksReturnType = () => void;
7530
7555
  //#endregion
7531
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/watchContractEvent.d.ts
7556
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/watchContractEvent.d.ts
7532
7557
  type WatchContractEventOnLogsParameter<abi$1 extends Abi | readonly unknown[] = Abi, eventName$1 extends ContractEventName<abi$1> = ContractEventName<abi$1>, strict$1 extends boolean | undefined = undefined> = abi$1 extends Abi ? Abi extends abi$1 ? Log[] : Log<bigint, number, false, ExtractAbiEvent<abi$1, eventName$1>, strict$1>[] : Log[];
7533
7558
  type WatchContractEventOnLogsFn<abi$1 extends Abi | readonly unknown[] = Abi, eventName$1 extends ContractEventName<abi$1> = ContractEventName<abi$1>, strict$1 extends boolean | undefined = undefined> = (logs: WatchContractEventOnLogsParameter<abi$1, eventName$1, strict$1>) => void;
7534
7559
  type WatchContractEventParameters<abi$1 extends Abi | readonly unknown[] = Abi, eventName$1 extends ContractEventName<abi$1> | undefined = ContractEventName<abi$1>, strict$1 extends boolean | undefined = undefined, transport extends Transport = Transport> = {
@@ -7553,7 +7578,7 @@ type WatchContractEventParameters<abi$1 extends Abi | readonly unknown[] = Abi,
7553
7578
  } & GetPollOptions<transport>;
7554
7579
  type WatchContractEventReturnType = () => void;
7555
7580
  //#endregion
7556
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/watchEvent.d.ts
7581
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/watchEvent.d.ts
7557
7582
  type WatchEventOnLogsParameter<abiEvent extends AbiEvent | undefined = undefined, abiEvents extends readonly AbiEvent[] | readonly unknown[] | undefined = (abiEvent extends AbiEvent ? [abiEvent] : undefined), strict$1 extends boolean | undefined = undefined, eventName$1 extends string | undefined = MaybeAbiEventName<abiEvent>> = Log<bigint, number, false, abiEvent, strict$1, abiEvents, eventName$1>[];
7558
7583
  type WatchEventOnLogsFn<abiEvent extends AbiEvent | undefined = undefined, abiEvents extends readonly AbiEvent[] | readonly unknown[] | undefined = (abiEvent extends AbiEvent ? [abiEvent] : undefined), strict$1 extends boolean | undefined = undefined, _eventName extends string | undefined = MaybeAbiEventName<abiEvent>> = (logs: WatchEventOnLogsParameter<abiEvent, abiEvents, strict$1, _eventName>) => void;
7559
7584
  type WatchEventParameters<abiEvent extends AbiEvent | undefined = undefined, abiEvents extends readonly AbiEvent[] | readonly unknown[] | undefined = (abiEvent extends AbiEvent ? [abiEvent] : undefined), strict$1 extends boolean | undefined = undefined, transport extends Transport = Transport, _eventName extends string | undefined = MaybeAbiEventName<abiEvent>> = {
@@ -7591,7 +7616,7 @@ type WatchEventParameters<abiEvent extends AbiEvent | undefined = undefined, abi
7591
7616
  });
7592
7617
  type WatchEventReturnType = () => void;
7593
7618
  //#endregion
7594
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/watchPendingTransactions.d.ts
7619
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/public/watchPendingTransactions.d.ts
7595
7620
  type OnTransactionsParameter = Hash[];
7596
7621
  type OnTransactionsFn = (transactions: OnTransactionsParameter) => void;
7597
7622
  type WatchPendingTransactionsParameters<transport extends Transport = Transport> = {
@@ -7602,7 +7627,7 @@ type WatchPendingTransactionsParameters<transport extends Transport = Transport>
7602
7627
  } & GetPollOptions<transport>;
7603
7628
  type WatchPendingTransactionsReturnType = () => void;
7604
7629
  //#endregion
7605
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/siwe/validateSiweMessage.d.ts
7630
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/siwe/validateSiweMessage.d.ts
7606
7631
  type ValidateSiweMessageParameters = {
7607
7632
  /**
7608
7633
  * Ethereum address to check against.
@@ -7632,7 +7657,7 @@ type ValidateSiweMessageParameters = {
7632
7657
  time?: Date | undefined;
7633
7658
  };
7634
7659
  //#endregion
7635
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/siwe/verifySiweMessage.d.ts
7660
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/siwe/verifySiweMessage.d.ts
7636
7661
  type VerifySiweMessageParameters = Prettify<Pick<VerifyHashParameters, 'blockNumber' | 'blockTag'> & Pick<ValidateSiweMessageParameters, 'address' | 'domain' | 'nonce' | 'scheme' | 'time'> & {
7637
7662
  /**
7638
7663
  * EIP-4361 formatted message.
@@ -7645,7 +7670,7 @@ type VerifySiweMessageParameters = Prettify<Pick<VerifyHashParameters, 'blockNum
7645
7670
  }>;
7646
7671
  type VerifySiweMessageReturnType = boolean;
7647
7672
  //#endregion
7648
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/decorators/public.d.ts
7673
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/decorators/public.d.ts
7649
7674
  type PublicActions<transport extends Transport = Transport, chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined> = {
7650
7675
  /**
7651
7676
  * Executes a new message call immediately without submitting a transaction to the network.
@@ -9089,7 +9114,7 @@ type PublicActions<transport extends Transport = Transport, chain$1 extends Chai
9089
9114
  watchPendingTransactions: (args: WatchPendingTransactionsParameters<transport>) => WatchPendingTransactionsReturnType;
9090
9115
  };
9091
9116
  //#endregion
9092
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/createClient.d.ts
9117
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/createClient.d.ts
9093
9118
  type ClientConfig<transport extends Transport = Transport, chain$1 extends Chain | undefined = Chain | undefined, accountOrAddress extends Account | Address | undefined = Account | Address | undefined, rpcSchema extends RpcSchema | undefined = undefined> = {
9094
9119
  /** The Account to use for the Client. This will be used for Actions that require an account as an argument. */
9095
9120
  account?: accountOrAddress | Account | Address | undefined;
@@ -9125,6 +9150,8 @@ type ClientConfig<transport extends Transport = Transport, chain$1 extends Chain
9125
9150
  } | false | undefined;
9126
9151
  /** Chain for the client. */
9127
9152
  chain?: Chain | undefined | chain$1;
9153
+ /** Data suffix to append to transaction data. */
9154
+ dataSuffix?: DataSuffix | undefined;
9128
9155
  /** A key for the client. */
9129
9156
  key?: string | undefined;
9130
9157
  /** A name for the client. */
@@ -9158,6 +9185,8 @@ type Client_Base<transport extends Transport = Transport, chain$1 extends Chain
9158
9185
  ccipRead?: ClientConfig['ccipRead'] | undefined;
9159
9186
  /** Chain for the client. */
9160
9187
  chain: chain$1;
9188
+ /** Data suffix to append to transaction data. */
9189
+ dataSuffix?: DataSuffix | undefined;
9161
9190
  /** Default block tag to use for RPC requests. */
9162
9191
  experimental_blockTag?: BlockTag | undefined;
9163
9192
  /** A key for the client. */
@@ -9187,7 +9216,7 @@ type MulticallBatchOptions = {
9187
9216
  wait?: number | undefined;
9188
9217
  };
9189
9218
  //#endregion
9190
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/nonceManager.d.ts
9219
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/utils/nonceManager.d.ts
9191
9220
  type FunctionParameters = {
9192
9221
  address: Address;
9193
9222
  chainId: number;
@@ -9207,7 +9236,7 @@ type NonceManager = {
9207
9236
  reset: (chainId: FunctionParameters) => void;
9208
9237
  };
9209
9238
  //#endregion
9210
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/accounts/types.d.ts
9239
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/accounts/types.d.ts
9211
9240
  type Account<address$1 extends Address = Address> = OneOf<JsonRpcAccount<address$1> | LocalAccount<string, address$1> | SmartAccount>;
9212
9241
  type CustomSource = {
9213
9242
  address: Address;
@@ -9241,7 +9270,7 @@ type PrivateKeyAccount = Prettify<LocalAccount<'privateKey'> & {
9241
9270
  signAuthorization: NonNullable<CustomSource['signAuthorization']>;
9242
9271
  }>;
9243
9272
  //#endregion
9244
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/account-abstraction/accounts/types.d.ts
9273
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/account-abstraction/accounts/types.d.ts
9245
9274
  type Call = {
9246
9275
  to: Hex;
9247
9276
  data?: Hex | undefined;
@@ -9428,11 +9457,11 @@ type SmartAccount<implementation extends SmartAccountImplementation = SmartAccou
9428
9457
  type: 'smart';
9429
9458
  }>>;
9430
9459
  //#endregion
9431
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/account-abstraction/types/entryPointVersion.d.ts
9460
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/account-abstraction/types/entryPointVersion.d.ts
9432
9461
  /** @link https://github.com/eth-infinitism/account-abstraction/releases */
9433
9462
  type EntryPointVersion = '0.6' | '0.7' | '0.8' | '0.9';
9434
9463
  //#endregion
9435
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/getContract.d.ts
9464
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/getContract.d.ts
9436
9465
  type KeyedClient<transport extends Transport = Transport, chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined> = {
9437
9466
  public?: Client<transport, chain$1> | undefined;
9438
9467
  wallet: Client<transport, chain$1, account>;
@@ -9664,13 +9693,13 @@ type RemoveProperties<T$1 extends object> = Prettify<{
9664
9693
  [key: string]: unknown;
9665
9694
  } & { [_ in keyof T$1]?: never }>;
9666
9695
  //#endregion
9667
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/dumpState.d.ts
9696
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/dumpState.d.ts
9668
9697
  type DumpStateReturnType = Hex;
9669
9698
  //#endregion
9670
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/getAutomine.d.ts
9699
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/getAutomine.d.ts
9671
9700
  type GetAutomineReturnType = boolean;
9672
9701
  //#endregion
9673
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/getTxpoolContent.d.ts
9702
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/getTxpoolContent.d.ts
9674
9703
  type GetTxpoolContentReturnType = {
9675
9704
  /** Pending transactions in the pool */
9676
9705
  pending: Record<Address, Record<string, RpcTransaction>>;
@@ -9678,37 +9707,37 @@ type GetTxpoolContentReturnType = {
9678
9707
  queued: Record<Address, Record<string, RpcTransaction>>;
9679
9708
  };
9680
9709
  //#endregion
9681
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/getTxpoolStatus.d.ts
9710
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/getTxpoolStatus.d.ts
9682
9711
  type GetTxpoolStatusReturnType = {
9683
9712
  pending: number;
9684
9713
  queued: number;
9685
9714
  };
9686
9715
  //#endregion
9687
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/impersonateAccount.d.ts
9716
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/impersonateAccount.d.ts
9688
9717
  type ImpersonateAccountParameters = {
9689
9718
  /** The account to impersonate. */
9690
9719
  address: Address;
9691
9720
  };
9692
9721
  //#endregion
9693
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/increaseTime.d.ts
9722
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/increaseTime.d.ts
9694
9723
  type IncreaseTimeParameters = {
9695
9724
  /** The amount of seconds to jump forward in time. */
9696
9725
  seconds: number;
9697
9726
  };
9698
9727
  //#endregion
9699
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/inspectTxpool.d.ts
9728
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/inspectTxpool.d.ts
9700
9729
  type InspectTxpoolReturnType = {
9701
9730
  pending: Record<Address, Record<string, string>>;
9702
9731
  queued: Record<Address, Record<string, string>>;
9703
9732
  };
9704
9733
  //#endregion
9705
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/loadState.d.ts
9734
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/loadState.d.ts
9706
9735
  type LoadStateParameters = {
9707
9736
  state: Hex;
9708
9737
  };
9709
9738
  type LoadStateReturnType = void;
9710
9739
  //#endregion
9711
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/mine.d.ts
9740
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/mine.d.ts
9712
9741
  type MineParameters = {
9713
9742
  /** Number of blocks to mine. */
9714
9743
  blocks: number;
@@ -9716,7 +9745,7 @@ type MineParameters = {
9716
9745
  interval?: number | undefined;
9717
9746
  };
9718
9747
  //#endregion
9719
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/reset.d.ts
9748
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/reset.d.ts
9720
9749
  type ResetParameters = {
9721
9750
  /** The block number to reset from. */
9722
9751
  blockNumber?: bigint | undefined;
@@ -9724,17 +9753,17 @@ type ResetParameters = {
9724
9753
  jsonRpcUrl?: string | undefined;
9725
9754
  };
9726
9755
  //#endregion
9727
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/revert.d.ts
9756
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/revert.d.ts
9728
9757
  type RevertParameters = {
9729
9758
  /** The snapshot ID to revert to. */
9730
9759
  id: Quantity;
9731
9760
  };
9732
9761
  //#endregion
9733
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/sendUnsignedTransaction.d.ts
9762
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/sendUnsignedTransaction.d.ts
9734
9763
  type SendUnsignedTransactionParameters<chain$1 extends Chain | undefined = Chain | undefined> = FormattedTransactionRequest<chain$1>;
9735
9764
  type SendUnsignedTransactionReturnType = Hash;
9736
9765
  //#endregion
9737
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setBalance.d.ts
9766
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setBalance.d.ts
9738
9767
  type SetBalanceParameters = {
9739
9768
  /** The account address. */
9740
9769
  address: Address;
@@ -9742,19 +9771,19 @@ type SetBalanceParameters = {
9742
9771
  value: bigint;
9743
9772
  };
9744
9773
  //#endregion
9745
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setBlockGasLimit.d.ts
9774
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setBlockGasLimit.d.ts
9746
9775
  type SetBlockGasLimitParameters = {
9747
9776
  /** Gas limit (in wei). */
9748
9777
  gasLimit: bigint;
9749
9778
  };
9750
9779
  //#endregion
9751
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setBlockTimestampInterval.d.ts
9780
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setBlockTimestampInterval.d.ts
9752
9781
  type SetBlockTimestampIntervalParameters = {
9753
9782
  /** The interval (in seconds). */
9754
9783
  interval: number;
9755
9784
  };
9756
9785
  //#endregion
9757
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setCode.d.ts
9786
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setCode.d.ts
9758
9787
  type SetCodeParameters = {
9759
9788
  /** The account address. */
9760
9789
  address: Address;
@@ -9762,37 +9791,37 @@ type SetCodeParameters = {
9762
9791
  bytecode: Hex;
9763
9792
  };
9764
9793
  //#endregion
9765
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setCoinbase.d.ts
9794
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setCoinbase.d.ts
9766
9795
  type SetCoinbaseParameters = {
9767
9796
  /** The coinbase address. */
9768
9797
  address: Address;
9769
9798
  };
9770
9799
  //#endregion
9771
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setIntervalMining.d.ts
9800
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setIntervalMining.d.ts
9772
9801
  type SetIntervalMiningParameters = {
9773
9802
  /** The mining interval. */
9774
9803
  interval: number;
9775
9804
  };
9776
9805
  //#endregion
9777
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setMinGasPrice.d.ts
9806
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setMinGasPrice.d.ts
9778
9807
  type SetMinGasPriceParameters = {
9779
9808
  /** The gas price. */
9780
9809
  gasPrice: bigint;
9781
9810
  };
9782
9811
  //#endregion
9783
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setNextBlockBaseFeePerGas.d.ts
9812
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setNextBlockBaseFeePerGas.d.ts
9784
9813
  type SetNextBlockBaseFeePerGasParameters = {
9785
9814
  /** Base fee per gas (in wei). */
9786
9815
  baseFeePerGas: bigint;
9787
9816
  };
9788
9817
  //#endregion
9789
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setNextBlockTimestamp.d.ts
9818
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setNextBlockTimestamp.d.ts
9790
9819
  type SetNextBlockTimestampParameters = {
9791
9820
  /** The timestamp (in seconds). */
9792
9821
  timestamp: bigint;
9793
9822
  };
9794
9823
  //#endregion
9795
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setNonce.d.ts
9824
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setNonce.d.ts
9796
9825
  type SetNonceParameters = {
9797
9826
  /** The account address. */
9798
9827
  address: Address;
@@ -9800,7 +9829,7 @@ type SetNonceParameters = {
9800
9829
  nonce: number;
9801
9830
  };
9802
9831
  //#endregion
9803
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setStorageAt.d.ts
9832
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/setStorageAt.d.ts
9804
9833
  type SetStorageAtParameters = {
9805
9834
  /** The account address. */
9806
9835
  address: Address;
@@ -9810,13 +9839,13 @@ type SetStorageAtParameters = {
9810
9839
  value: Hex;
9811
9840
  };
9812
9841
  //#endregion
9813
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/stopImpersonatingAccount.d.ts
9842
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/stopImpersonatingAccount.d.ts
9814
9843
  type StopImpersonatingAccountParameters = {
9815
9844
  /** The account to impersonate. */
9816
9845
  address: Address;
9817
9846
  };
9818
9847
  //#endregion
9819
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/decorators/test.d.ts
9848
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/decorators/test.d.ts
9820
9849
  type TestActions = {
9821
9850
  /**
9822
9851
  * Removes a transaction from the mempool.
@@ -10423,7 +10452,7 @@ type TestActions = {
10423
10452
  stopImpersonatingAccount: (args: StopImpersonatingAccountParameters) => Promise<void>;
10424
10453
  };
10425
10454
  //#endregion
10426
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/createTestClient.d.ts
10455
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/createTestClient.d.ts
10427
10456
  type TestClientMode = 'anvil' | 'hardhat' | 'ganache';
10428
10457
  type TestClient<mode extends TestClientMode = TestClientMode, transport extends Transport = Transport, chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined, includeActions extends boolean = true, rpcSchema extends RpcSchema | undefined = undefined> = Prettify<{
10429
10458
  mode: mode;
@@ -10431,19 +10460,19 @@ type TestClient<mode extends TestClientMode = TestClientMode, transport extends
10431
10460
  mode: mode;
10432
10461
  } & (includeActions extends true ? TestActions : Record<string, unknown>)>>;
10433
10462
  //#endregion
10434
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/dropTransaction.d.ts
10463
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/actions/test/dropTransaction.d.ts
10435
10464
  type DropTransactionParameters = {
10436
10465
  /** The hash of the transaction to drop. */
10437
10466
  hash: Hash;
10438
10467
  };
10439
10468
  //#endregion
10440
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/createPublicClient.d.ts
10469
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/createPublicClient.d.ts
10441
10470
  type PublicClient<transport extends Transport = Transport, chain$1 extends Chain | undefined = Chain | undefined, accountOrAddress extends Account | undefined = undefined, rpcSchema extends RpcSchema | undefined = undefined> = Prettify<Client<transport, chain$1, accountOrAddress, rpcSchema extends RpcSchema ? [...PublicRpcSchema, ...rpcSchema] : PublicRpcSchema, PublicActions<transport, chain$1>>>;
10442
10471
  //#endregion
10443
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/createWalletClient.d.ts
10472
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/createWalletClient.d.ts
10444
10473
  type WalletClient<transport extends Transport = Transport, chain$1 extends Chain | undefined = Chain | undefined, account extends Account | undefined = Account | undefined, rpcSchema extends RpcSchema | undefined = undefined> = Prettify<Client<transport, chain$1, account, rpcSchema extends RpcSchema ? [...WalletRpcSchema, ...rpcSchema] : WalletRpcSchema, WalletActions<chain$1, account>>>;
10445
10474
  //#endregion
10446
- //#region ../../node_modules/.pnpm/viem@2.44.2_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/transports/http.d.ts
10475
+ //#region ../../node_modules/.pnpm/viem@2.45.0_typescript@5.8.3_zod@3.24.2/node_modules/viem/_types/clients/transports/http.d.ts
10447
10476
  type HttpTransportConfig<rpcSchema extends RpcSchema | undefined = undefined, raw extends boolean = false> = {
10448
10477
  /**
10449
10478
  * Whether to enable Batch JSON-RPC.
@@ -10782,7 +10811,7 @@ declare function getCompleteReserveConfiguration(client: Client, poolAddress: Ad
10782
10811
  isolationModeTotalDebt: bigint;
10783
10812
  }>;
10784
10813
  //#endregion
10785
- //#region ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.31.0_viem@2.44.2_typescript@5.8.3_zod@3.24.2_/node_modules/@bgd-labs/aave-address-book/dist/abis/IPayloadsControllerCore.d.ts
10814
+ //#region ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.31.0_viem@2.45.0_typescript@5.8.3_zod@3.24.2_/node_modules/@bgd-labs/aave-address-book/dist/abis/IPayloadsControllerCore.d.ts
10786
10815
  declare const IPayloadsControllerCore_ABI: readonly [{
10787
10816
  readonly type: "function";
10788
10817
  readonly name: "EXPIRATION_DELAY";
@@ -11173,7 +11202,7 @@ declare const IPayloadsControllerCore_ABI: readonly [{
11173
11202
  readonly anonymous: false;
11174
11203
  }];
11175
11204
  //#endregion
11176
- //#region ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.31.0_viem@2.44.2_typescript@5.8.3_zod@3.24.2_/node_modules/@bgd-labs/aave-address-book/dist/abis/IGovernanceCore.d.ts
11205
+ //#region ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.31.0_viem@2.45.0_typescript@5.8.3_zod@3.24.2_/node_modules/@bgd-labs/aave-address-book/dist/abis/IGovernanceCore.d.ts
11177
11206
  declare const IGovernanceCore_ABI: readonly [{
11178
11207
  readonly type: "function";
11179
11208
  readonly name: "ACHIEVABLE_VOTING_PARTICIPATION";
@@ -34214,6 +34243,7 @@ declare function tenderly_createVnet({
34214
34243
  serializers?: ChainSerializers<ChainFormatters | undefined, TransactionSerializable> | undefined;
34215
34244
  verifyHash?: ((client: Client, parameters: VerifyHashParameters) => Promise<VerifyHashReturnType>) | undefined;
34216
34245
  };
34246
+ dataSuffix?: DataSuffix | undefined;
34217
34247
  experimental_blockTag?: BlockTag | undefined;
34218
34248
  key: string;
34219
34249
  name: string;
@@ -43188,6 +43218,7 @@ declare function tenderly_createVnet({
43188
43218
  cacheTime?: undefined;
43189
43219
  ccipRead?: undefined;
43190
43220
  chain?: undefined;
43221
+ dataSuffix?: undefined;
43191
43222
  experimental_blockTag?: undefined;
43192
43223
  key?: undefined;
43193
43224
  name?: undefined;
@@ -61086,4 +61117,4 @@ declare function addAssetPrice(client: Client, address: Address): Promise<string
61086
61117
  declare function getMdContractName(contracts: TenderlySimulationResponse["contracts"], address: Address): string;
61087
61118
  //#endregion
61088
61119
  export { getExplicitRPC as $, HALF_WAD as $n, IAToken_ABI as $t, erc1967_ImplementationSlot as A, HUMAN_READABLE_PROPOSAL_STATE as An, Trace as At, alchemyNetworkMap as B, PayloadsControllerContract as Bn, bytes32ToAddress as Bt, enhanceLogs as C, IPoolConfigurator_ABI as Cn, decodeReserveConfiguration as Cr, StateObject as Ct, genericIndexer as D, parseFrontmatterMd as Dn, TenderlySimulationResponse as Dt, IndexerTopicState as E, Aip as En, TenderlySimRequest as Et, chainlinkFeeds as F, isProposalFinal as Fn, getExplorer as Ft, priceUpdateDecoder as G, makePayloadExecutableOnTestClient as Gn, getSolidityStorageSlotUint as Gt, flashbotsClientExtension as H, getPayloadStorageOverrides as Hn, getDynamicArraySlot as Ht, blockscoutExplorers as I, makeProposalExecutableOnTestClient as In, getSourceCode as It, getLogsRecursive as J, fetchMutablePoolAddresses as Jn, setBits as Jt, getContractDeploymentBlock as K, getCompleteReserveConfiguration as Kn, bitmapToIndexes as Kt, routescanExplorers as L, HUMAN_READABLE_PAYLOAD_STATE as Ln, parseBlockscoutStyleSourceCode as Lt, tenderlyExplorerMap as M, ProposalState as Mn, BlockscoutStyleSourceCode as Mt, tenderlyNetworkMap as N, getGovernance as Nn, EtherscanStyleSourceCode as Nt, diffCode as O, validateAip as On, TenderlySimulationResponseObject as Ot, hyperRPCSupportedNetworks as P, getNonFinalizedProposals as Pn, ExplorerConfig as Pt, getClient as Q, HALF_RAY as Qn, Umbrella_IRewardsController_ABI as Qt, etherscanExplorers as R, Payload as Rn, parseEtherscanStyleSourceCode as Rt, selfDestructStatusToString as S, IERC20Metadata_ABI as Sn, ReserveConfiguration as Sr, StateDiff as St, GenericIndexerArgs as T, AggregatorInterface_ABI as Tn, decodeUserConfiguration as Tr, TenderlyLogRaw as Tt, flashbotsOnFetchRequest as U, getPayloadsController as Un, getSolidityStorageSlotAddress as Ut, BundleParams as V, getNonFinalizedPayloads as Vn, getBytesValue as Vt, onMevHandler as W, isPayloadFinal as Wn, getSolidityStorageSlotBytes as Wt, alchemySupportedChainIds as X, getReserveConfigurations as Xn, IERC1967_ABI as Xt, SupportedChainIds as Y, fetchPoolAddresses as Yn, IStataTokenV2_ABI as Yt, getAlchemyRPC as Z, getReserveTokens as Zn, IPool_ABI as Zt, renderTenderlyReport as _, Umbrella_IRewardsDistributor_ABI as _n, getNormalizedDebt as _r, tenderly_simVnet as _t, findAsset as a, Ownable_ABI as an, rayToWad as ar, getTenderlyRpc as at, SelfdestructCheckState as b, IncentivizedERC20_ABI as bn, SECONDS_PER_YEAR as br, SoltypeElement as bt, prettifyNumber as c, IAaveOracle_ABI as cn, assetToBase as cr, ChainList as ct, getObjectDiff as d, IAccessControl_ABI as dn, calculateHealthFactor as dr, tenderly_createVnet as dt, Safe_ABI as en, RAY as er, getHyperRPC as et, renderMarkdownStateDiffReport as f, IERC20_ABI as fn, calculateHealthFactorFromBalances as fr, tenderly_deleteVnet as ft, verificationStatusToString as g, IAaveV3ConfigEngine_ABI as gn, getMarketReferenceCurrencyAndUsdBalance as gr, tenderly_sim as gt, getVerificationStatus as h, ICollector_ABI as hn, getCurrentLiquidityBalance as hr, tenderly_pingExplorer as ht, assetIndexesToAsset as i, PausableUpgradeable_ABI as in, rayMul as ir, getRPCUrl as it, snapshotClient as j, Proposal$1 as jn, TransactionInfo as jt, erc1967_AdminSlot as k, GovernanceContract as kn, TenderlyStackTrace as kt, toBinaryString as l, IUmbrella_ABI as ln, calculateAvailableBorrowsMarketReferenceCurrency as lr, EVENT_DB as lt, VerificationStatus as m, IStataTokenFactory_ABI as mn, getCurrentDebtBalance as mr, tenderly_logsToAbiLogs as mt, addAssetPrice as n, IEmissionManager_ABI as nn, WAD_RAY_RATIO as nr, getPublicRpc as nt, formatNumberString as o, IReserveInterestRateStrategy_ABI as on, wadDiv as or, publicRPCs as ot, transformTenderlyStateDiff as p, IWithGuardian_ABI as pn, calculateLinearInterest as pr, tenderly_getVnet as pt, getImplementationSlot as q, fetchImmutablePoolAddresses as qn, getBits as qt, addAssetSymbol as r, IWrappedTokenGatewayV3_ABI as rn, rayDiv as rr, getQuicknodeRpc as rt, getMdContractName as s, ProxyAdmin_ABI as sn, wadToRay as sr, ChainId as st, AssetInfo as t, IPoolAddressesProvider_ABI as tn, WAD as tr, getNetworkEnv as tt, enhanceStateDiff as u, IDefaultInterestRateStrategyV2_ABI as un, calculateCompoundedInterest as ur, Tenderly_createVnetParamsResponse as ut, toAddressLink as v, IAuthorizedForwarder_ABI as vn, getNormalizedIncome as vr, ContractObject as vt, parseLogs as w, IUmbrellaStakeToken_ABI as wn, decodeReserveConfigurationV2 as wr, TenderlyLog as wt, checkForSelfdestruct as x, IRewardsController_ABI as xn, aaveAddressesProvider_IncentivesControllerSlot as xr, SoltypeType as xt, toTxLink as y, IDualAggregator_ABI as yn, LTV_PRECISION as yr, Input as yt, quicknodeNetworkMap as z, PayloadState as zn, StandardJsonInput as zt };
61089
- //# sourceMappingURL=browser-DJWK0gXz.d.mts.map
61120
+ //# sourceMappingURL=browser-BwYuOGFL.d.mts.map