@bgd-labs/toolbox 0.2.14 → 0.2.16

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.
@@ -16324,8 +16324,10 @@ declare function tenderly_createVnet({
16324
16324
  getBlobBaseFee: () => Promise<viem.GetBlobBaseFeeReturnType>;
16325
16325
  getBlock: <includeTransactions extends boolean = false, blockTag extends viem.BlockTag = "latest">(args?: viem.GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
16326
16326
  number: blockTag extends "pending" ? null : bigint;
16327
+ size: bigint;
16327
16328
  nonce: blockTag extends "pending" ? null : `0x${string}`;
16328
16329
  hash: blockTag extends "pending" ? null : `0x${string}`;
16330
+ gasUsed: bigint;
16329
16331
  logsBloom: blockTag extends "pending" ? null : `0x${string}`;
16330
16332
  baseFeePerGas: bigint | null;
16331
16333
  blobGasUsed: bigint;
@@ -16333,7 +16335,6 @@ declare function tenderly_createVnet({
16333
16335
  excessBlobGas: bigint;
16334
16336
  extraData: Hex;
16335
16337
  gasLimit: bigint;
16336
- gasUsed: bigint;
16337
16338
  miner: Address;
16338
16339
  mixHash: viem.Hash;
16339
16340
  parentBeaconBlockRoot?: `0x${string}` | undefined;
@@ -16341,7 +16342,6 @@ declare function tenderly_createVnet({
16341
16342
  receiptsRoot: Hex;
16342
16343
  sealFields: Hex[];
16343
16344
  sha3Uncles: viem.Hash;
16344
- size: bigint;
16345
16345
  stateRoot: viem.Hash;
16346
16346
  timestamp: bigint;
16347
16347
  totalDifficulty: bigint | null;
@@ -16350,127 +16350,127 @@ declare function tenderly_createVnet({
16350
16350
  withdrawals?: viem.Withdrawal[] | undefined | undefined;
16351
16351
  withdrawalsRoot?: `0x${string}` | undefined;
16352
16352
  transactions: includeTransactions extends true ? ({
16353
+ s: Hex;
16353
16354
  type: "legacy";
16354
- value: bigint;
16355
- to: Address | null;
16355
+ r: Hex;
16356
16356
  from: Address;
16357
16357
  gas: bigint;
16358
16358
  nonce: number;
16359
+ to: Address | null;
16360
+ value: bigint;
16361
+ v: bigint;
16362
+ yParity?: undefined | undefined;
16359
16363
  blobVersionedHashes?: undefined | undefined;
16360
16364
  gasPrice: bigint;
16361
16365
  maxFeePerBlobGas?: undefined | undefined;
16362
16366
  maxFeePerGas?: undefined | undefined;
16363
16367
  maxPriorityFeePerGas?: undefined | undefined;
16368
+ chainId?: number | undefined;
16364
16369
  accessList?: undefined | undefined;
16365
16370
  authorizationList?: undefined | undefined;
16366
- yParity?: undefined | undefined;
16367
16371
  hash: viem.Hash;
16368
16372
  input: Hex;
16369
- r: Hex;
16370
- s: Hex;
16371
16373
  typeHex: Hex | null;
16372
- v: bigint;
16373
- chainId?: number | undefined;
16374
16374
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
16375
16375
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
16376
16376
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
16377
16377
  } | {
16378
+ s: Hex;
16378
16379
  type: "eip2930";
16379
- value: bigint;
16380
- to: Address | null;
16380
+ r: Hex;
16381
16381
  from: Address;
16382
16382
  gas: bigint;
16383
16383
  nonce: number;
16384
+ to: Address | null;
16385
+ value: bigint;
16386
+ v: bigint;
16387
+ yParity: number;
16384
16388
  blobVersionedHashes?: undefined | undefined;
16385
16389
  gasPrice: bigint;
16386
16390
  maxFeePerBlobGas?: undefined | undefined;
16387
16391
  maxFeePerGas?: undefined | undefined;
16388
16392
  maxPriorityFeePerGas?: undefined | undefined;
16393
+ chainId: number;
16389
16394
  accessList: viem.AccessList;
16390
16395
  authorizationList?: undefined | undefined;
16391
- yParity: number;
16392
16396
  hash: viem.Hash;
16393
16397
  input: Hex;
16394
- r: Hex;
16395
- s: Hex;
16396
16398
  typeHex: Hex | null;
16397
- v: bigint;
16398
- chainId: number;
16399
16399
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
16400
16400
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
16401
16401
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
16402
16402
  } | {
16403
+ s: Hex;
16403
16404
  type: "eip1559";
16404
- value: bigint;
16405
- to: Address | null;
16405
+ r: Hex;
16406
16406
  from: Address;
16407
16407
  gas: bigint;
16408
16408
  nonce: number;
16409
+ to: Address | null;
16410
+ value: bigint;
16411
+ v: bigint;
16412
+ yParity: number;
16409
16413
  blobVersionedHashes?: undefined | undefined;
16410
16414
  gasPrice?: undefined | undefined;
16411
16415
  maxFeePerBlobGas?: undefined | undefined;
16412
16416
  maxFeePerGas: bigint;
16413
16417
  maxPriorityFeePerGas: bigint;
16418
+ chainId: number;
16414
16419
  accessList: viem.AccessList;
16415
16420
  authorizationList?: undefined | undefined;
16416
- yParity: number;
16417
16421
  hash: viem.Hash;
16418
16422
  input: Hex;
16419
- r: Hex;
16420
- s: Hex;
16421
16423
  typeHex: Hex | null;
16422
- v: bigint;
16423
- chainId: number;
16424
16424
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
16425
16425
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
16426
16426
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
16427
16427
  } | {
16428
+ s: Hex;
16428
16429
  type: "eip4844";
16429
- value: bigint;
16430
- to: Address | null;
16430
+ r: Hex;
16431
16431
  from: Address;
16432
16432
  gas: bigint;
16433
16433
  nonce: number;
16434
+ to: Address | null;
16435
+ value: bigint;
16436
+ v: bigint;
16437
+ yParity: number;
16434
16438
  blobVersionedHashes: readonly Hex[];
16435
16439
  gasPrice?: undefined | undefined;
16436
16440
  maxFeePerBlobGas: bigint;
16437
16441
  maxFeePerGas: bigint;
16438
16442
  maxPriorityFeePerGas: bigint;
16443
+ chainId: number;
16439
16444
  accessList: viem.AccessList;
16440
16445
  authorizationList?: undefined | undefined;
16441
- yParity: number;
16442
16446
  hash: viem.Hash;
16443
16447
  input: Hex;
16444
- r: Hex;
16445
- s: Hex;
16446
16448
  typeHex: Hex | null;
16447
- v: bigint;
16448
- chainId: number;
16449
16449
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
16450
16450
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
16451
16451
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
16452
16452
  } | {
16453
+ s: Hex;
16453
16454
  type: "eip7702";
16454
- value: bigint;
16455
- to: Address | null;
16455
+ r: Hex;
16456
16456
  from: Address;
16457
16457
  gas: bigint;
16458
16458
  nonce: number;
16459
+ to: Address | null;
16460
+ value: bigint;
16461
+ v: bigint;
16462
+ yParity: number;
16459
16463
  blobVersionedHashes?: undefined | undefined;
16460
16464
  gasPrice?: undefined | undefined;
16461
16465
  maxFeePerBlobGas?: undefined | undefined;
16462
16466
  maxFeePerGas: bigint;
16463
16467
  maxPriorityFeePerGas: bigint;
16468
+ chainId: number;
16464
16469
  accessList: viem.AccessList;
16465
16470
  authorizationList: viem.SignedAuthorizationList;
16466
- yParity: number;
16467
16471
  hash: viem.Hash;
16468
16472
  input: Hex;
16469
- r: Hex;
16470
- s: Hex;
16471
16473
  typeHex: Hex | null;
16472
- v: bigint;
16473
- chainId: number;
16474
16474
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
16475
16475
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
16476
16476
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
@@ -16557,127 +16557,127 @@ declare function tenderly_createVnet({
16557
16557
  } | undefined) => Promise<viem.EstimateMaxPriorityFeePerGasReturnType>;
16558
16558
  getStorageAt: (args: viem.GetStorageAtParameters) => Promise<viem.GetStorageAtReturnType>;
16559
16559
  getTransaction: <blockTag extends viem.BlockTag = "latest">(args: viem.GetTransactionParameters<blockTag>) => Promise<{
16560
+ s: Hex;
16560
16561
  type: "legacy";
16561
- value: bigint;
16562
- to: Address | null;
16562
+ r: Hex;
16563
16563
  from: Address;
16564
16564
  gas: bigint;
16565
16565
  nonce: number;
16566
+ to: Address | null;
16567
+ value: bigint;
16568
+ v: bigint;
16569
+ yParity?: undefined | undefined;
16566
16570
  blobVersionedHashes?: undefined | undefined;
16567
16571
  gasPrice: bigint;
16568
16572
  maxFeePerBlobGas?: undefined | undefined;
16569
16573
  maxFeePerGas?: undefined | undefined;
16570
16574
  maxPriorityFeePerGas?: undefined | undefined;
16575
+ chainId?: number | undefined;
16571
16576
  accessList?: undefined | undefined;
16572
16577
  authorizationList?: undefined | undefined;
16573
- yParity?: undefined | undefined;
16574
16578
  hash: viem.Hash;
16575
16579
  input: Hex;
16576
- r: Hex;
16577
- s: Hex;
16578
16580
  typeHex: Hex | null;
16579
- v: bigint;
16580
- chainId?: number | undefined;
16581
16581
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
16582
16582
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
16583
16583
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
16584
16584
  } | {
16585
+ s: Hex;
16585
16586
  type: "eip2930";
16586
- value: bigint;
16587
- to: Address | null;
16587
+ r: Hex;
16588
16588
  from: Address;
16589
16589
  gas: bigint;
16590
16590
  nonce: number;
16591
+ to: Address | null;
16592
+ value: bigint;
16593
+ v: bigint;
16594
+ yParity: number;
16591
16595
  blobVersionedHashes?: undefined | undefined;
16592
16596
  gasPrice: bigint;
16593
16597
  maxFeePerBlobGas?: undefined | undefined;
16594
16598
  maxFeePerGas?: undefined | undefined;
16595
16599
  maxPriorityFeePerGas?: undefined | undefined;
16600
+ chainId: number;
16596
16601
  accessList: viem.AccessList;
16597
16602
  authorizationList?: undefined | undefined;
16598
- yParity: number;
16599
16603
  hash: viem.Hash;
16600
16604
  input: Hex;
16601
- r: Hex;
16602
- s: Hex;
16603
16605
  typeHex: Hex | null;
16604
- v: bigint;
16605
- chainId: number;
16606
16606
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
16607
16607
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
16608
16608
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
16609
16609
  } | {
16610
+ s: Hex;
16610
16611
  type: "eip1559";
16611
- value: bigint;
16612
- to: Address | null;
16612
+ r: Hex;
16613
16613
  from: Address;
16614
16614
  gas: bigint;
16615
16615
  nonce: number;
16616
+ to: Address | null;
16617
+ value: bigint;
16618
+ v: bigint;
16619
+ yParity: number;
16616
16620
  blobVersionedHashes?: undefined | undefined;
16617
16621
  gasPrice?: undefined | undefined;
16618
16622
  maxFeePerBlobGas?: undefined | undefined;
16619
16623
  maxFeePerGas: bigint;
16620
16624
  maxPriorityFeePerGas: bigint;
16625
+ chainId: number;
16621
16626
  accessList: viem.AccessList;
16622
16627
  authorizationList?: undefined | undefined;
16623
- yParity: number;
16624
16628
  hash: viem.Hash;
16625
16629
  input: Hex;
16626
- r: Hex;
16627
- s: Hex;
16628
16630
  typeHex: Hex | null;
16629
- v: bigint;
16630
- chainId: number;
16631
16631
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
16632
16632
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
16633
16633
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
16634
16634
  } | {
16635
+ s: Hex;
16635
16636
  type: "eip4844";
16636
- value: bigint;
16637
- to: Address | null;
16637
+ r: Hex;
16638
16638
  from: Address;
16639
16639
  gas: bigint;
16640
16640
  nonce: number;
16641
+ to: Address | null;
16642
+ value: bigint;
16643
+ v: bigint;
16644
+ yParity: number;
16641
16645
  blobVersionedHashes: readonly Hex[];
16642
16646
  gasPrice?: undefined | undefined;
16643
16647
  maxFeePerBlobGas: bigint;
16644
16648
  maxFeePerGas: bigint;
16645
16649
  maxPriorityFeePerGas: bigint;
16650
+ chainId: number;
16646
16651
  accessList: viem.AccessList;
16647
16652
  authorizationList?: undefined | undefined;
16648
- yParity: number;
16649
16653
  hash: viem.Hash;
16650
16654
  input: Hex;
16651
- r: Hex;
16652
- s: Hex;
16653
16655
  typeHex: Hex | null;
16654
- v: bigint;
16655
- chainId: number;
16656
16656
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
16657
16657
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
16658
16658
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
16659
16659
  } | {
16660
+ s: Hex;
16660
16661
  type: "eip7702";
16661
- value: bigint;
16662
- to: Address | null;
16662
+ r: Hex;
16663
16663
  from: Address;
16664
16664
  gas: bigint;
16665
16665
  nonce: number;
16666
+ to: Address | null;
16667
+ value: bigint;
16668
+ v: bigint;
16669
+ yParity: number;
16666
16670
  blobVersionedHashes?: undefined | undefined;
16667
16671
  gasPrice?: undefined | undefined;
16668
16672
  maxFeePerBlobGas?: undefined | undefined;
16669
16673
  maxFeePerGas: bigint;
16670
16674
  maxPriorityFeePerGas: bigint;
16675
+ chainId: number;
16671
16676
  accessList: viem.AccessList;
16672
16677
  authorizationList: viem.SignedAuthorizationList;
16673
- yParity: number;
16674
16678
  hash: viem.Hash;
16675
16679
  input: Hex;
16676
- r: Hex;
16677
- s: Hex;
16678
16680
  typeHex: Hex | null;
16679
- v: bigint;
16680
- chainId: number;
16681
16681
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
16682
16682
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
16683
16683
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
@@ -20280,7 +20280,7 @@ declare function tenderly_createVnet({
20280
20280
  authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
20281
20281
  } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
20282
20282
  chainId?: number | undefined;
20283
- }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") ? T_26 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_26 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (viem.UnionRequiredBy<Extract<viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<{
20283
+ }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") ? T_26 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_26 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (viem.UnionRequiredBy<Extract<viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<{
20284
20284
  id: number;
20285
20285
  blockExplorers?: {
20286
20286
  [key: string]: {
@@ -23703,7 +23703,7 @@ declare function tenderly_createVnet({
23703
23703
  authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
23704
23704
  } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
23705
23705
  chainId?: number | undefined;
23706
- }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K] } : never>;
23706
+ }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K] } : never>;
23707
23707
  readContract: <const abi extends viem.Abi | readonly unknown[], functionName extends viem.ContractFunctionName<abi, "pure" | "view">, const args extends viem.ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: viem.ReadContractParameters<abi, functionName, args>) => Promise<viem.ReadContractReturnType<abi, functionName, args>>;
23708
23708
  sendRawTransaction: (args: viem.SendRawTransactionParameters) => Promise<viem.SendRawTransactionReturnType>;
23709
23709
  sendRawTransactionSync: (args: viem.SendRawTransactionSyncParameters) => Promise<viem.TransactionReceipt>;
@@ -27781,7 +27781,7 @@ declare function tenderly_createVnet({
27781
27781
  authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
27782
27782
  } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
27783
27783
  chainId?: number | undefined;
27784
- }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") ? T_26 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_26 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (viem.UnionRequiredBy<Extract<viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<{
27784
+ }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") ? T_26 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_26 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (viem.UnionRequiredBy<Extract<viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<{
27785
27785
  id: number;
27786
27786
  blockExplorers?: {
27787
27787
  [key: string]: {
@@ -31210,7 +31210,7 @@ declare function tenderly_createVnet({
31210
31210
  authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
31211
31211
  } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
31212
31212
  chainId?: number | undefined;
31213
- }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K] } : never>;
31213
+ }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K] } : never>;
31214
31214
  requestAddresses: () => Promise<viem.RequestAddressesReturnType>;
31215
31215
  requestPermissions: (args: viem.RequestPermissionsParameters) => Promise<viem.RequestPermissionsReturnType>;
31216
31216
  sendCalls: <const calls extends readonly unknown[], chainOverride extends viem.Chain | undefined = undefined>(parameters: viem.SendCallsParameters<{
@@ -31342,7 +31342,6 @@ declare function tenderly_createVnet({
31342
31342
  }, chainOverride, calls>) => Promise<{
31343
31343
  id: string;
31344
31344
  chainId: number;
31345
- version: string;
31346
31345
  atomic: boolean;
31347
31346
  capabilities?: {
31348
31347
  [key: string]: any;
@@ -31350,6 +31349,7 @@ declare function tenderly_createVnet({
31350
31349
  [x: string]: any;
31351
31350
  } | undefined;
31352
31351
  receipts?: viem.WalletCallReceipt<bigint, "success" | "reverted">[] | undefined;
31352
+ version: string;
31353
31353
  statusCode: number;
31354
31354
  status: "pending" | "success" | "failure" | undefined;
31355
31355
  }>;
@@ -32670,17 +32670,19 @@ declare function tenderly_createVnet({
32670
32670
  [x: string]: readonly viem.TypedDataParameter[];
32671
32671
  [x: `string[${string}]`]: undefined;
32672
32672
  [x: `function[${string}]`]: undefined;
32673
- [x: `address[${string}]`]: undefined;
32673
+ [x: `bytes[${string}]`]: undefined;
32674
+ [x: `bytes3[${string}]`]: undefined;
32674
32675
  [x: `bytes32[${string}]`]: undefined;
32676
+ [x: `uint256[${string}]`]: undefined;
32677
+ [x: `int256[${string}]`]: undefined;
32678
+ [x: `address[${string}]`]: undefined;
32675
32679
  [x: `bool[${string}]`]: undefined;
32676
- [x: `bytes[${string}]`]: undefined;
32677
32680
  [x: `bytes10[${string}]`]: undefined;
32678
32681
  [x: `bytes1[${string}]`]: undefined;
32679
- [x: `bytes5[${string}]`]: undefined;
32680
32682
  [x: `bytes2[${string}]`]: undefined;
32681
- [x: `bytes3[${string}]`]: undefined;
32683
+ [x: `bytes22[${string}]`]: undefined;
32682
32684
  [x: `bytes4[${string}]`]: undefined;
32683
- [x: `bytes30[${string}]`]: undefined;
32685
+ [x: `bytes5[${string}]`]: undefined;
32684
32686
  [x: `bytes6[${string}]`]: undefined;
32685
32687
  [x: `bytes7[${string}]`]: undefined;
32686
32688
  [x: `bytes8[${string}]`]: undefined;
@@ -32696,7 +32698,6 @@ declare function tenderly_createVnet({
32696
32698
  [x: `bytes19[${string}]`]: undefined;
32697
32699
  [x: `bytes20[${string}]`]: undefined;
32698
32700
  [x: `bytes21[${string}]`]: undefined;
32699
- [x: `bytes22[${string}]`]: undefined;
32700
32701
  [x: `bytes23[${string}]`]: undefined;
32701
32702
  [x: `bytes24[${string}]`]: undefined;
32702
32703
  [x: `bytes25[${string}]`]: undefined;
@@ -32704,15 +32705,16 @@ declare function tenderly_createVnet({
32704
32705
  [x: `bytes27[${string}]`]: undefined;
32705
32706
  [x: `bytes28[${string}]`]: undefined;
32706
32707
  [x: `bytes29[${string}]`]: undefined;
32708
+ [x: `bytes30[${string}]`]: undefined;
32707
32709
  [x: `bytes31[${string}]`]: undefined;
32708
32710
  [x: `int[${string}]`]: undefined;
32711
+ [x: `int56[${string}]`]: undefined;
32709
32712
  [x: `int8[${string}]`]: undefined;
32710
32713
  [x: `int16[${string}]`]: undefined;
32711
32714
  [x: `int24[${string}]`]: undefined;
32712
32715
  [x: `int32[${string}]`]: undefined;
32713
32716
  [x: `int40[${string}]`]: undefined;
32714
32717
  [x: `int48[${string}]`]: undefined;
32715
- [x: `int56[${string}]`]: undefined;
32716
32718
  [x: `int64[${string}]`]: undefined;
32717
32719
  [x: `int72[${string}]`]: undefined;
32718
32720
  [x: `int80[${string}]`]: undefined;
@@ -32737,15 +32739,14 @@ declare function tenderly_createVnet({
32737
32739
  [x: `int232[${string}]`]: undefined;
32738
32740
  [x: `int240[${string}]`]: undefined;
32739
32741
  [x: `int248[${string}]`]: undefined;
32740
- [x: `int256[${string}]`]: undefined;
32741
32742
  [x: `uint[${string}]`]: undefined;
32743
+ [x: `uint56[${string}]`]: undefined;
32742
32744
  [x: `uint8[${string}]`]: undefined;
32743
32745
  [x: `uint16[${string}]`]: undefined;
32744
32746
  [x: `uint24[${string}]`]: undefined;
32745
32747
  [x: `uint32[${string}]`]: undefined;
32746
32748
  [x: `uint40[${string}]`]: undefined;
32747
32749
  [x: `uint48[${string}]`]: undefined;
32748
- [x: `uint56[${string}]`]: undefined;
32749
32750
  [x: `uint64[${string}]`]: undefined;
32750
32751
  [x: `uint72[${string}]`]: undefined;
32751
32752
  [x: `uint80[${string}]`]: undefined;
@@ -32770,19 +32771,20 @@ declare function tenderly_createVnet({
32770
32771
  [x: `uint232[${string}]`]: undefined;
32771
32772
  [x: `uint240[${string}]`]: undefined;
32772
32773
  [x: `uint248[${string}]`]: undefined;
32773
- [x: `uint256[${string}]`]: undefined;
32774
32774
  string?: undefined;
32775
- address?: undefined;
32775
+ bytes?: undefined;
32776
+ bytes3?: undefined;
32776
32777
  bytes32?: undefined;
32778
+ uint256?: undefined;
32779
+ int256?: undefined;
32780
+ address?: undefined;
32777
32781
  bool?: undefined;
32778
- bytes?: undefined;
32779
32782
  bytes10?: undefined;
32780
32783
  bytes1?: undefined;
32781
- bytes5?: undefined;
32782
32784
  bytes2?: undefined;
32783
- bytes3?: undefined;
32785
+ bytes22?: undefined;
32784
32786
  bytes4?: undefined;
32785
- bytes30?: undefined;
32787
+ bytes5?: undefined;
32786
32788
  bytes6?: undefined;
32787
32789
  bytes7?: undefined;
32788
32790
  bytes8?: undefined;
@@ -32798,7 +32800,6 @@ declare function tenderly_createVnet({
32798
32800
  bytes19?: undefined;
32799
32801
  bytes20?: undefined;
32800
32802
  bytes21?: undefined;
32801
- bytes22?: undefined;
32802
32803
  bytes23?: undefined;
32803
32804
  bytes24?: undefined;
32804
32805
  bytes25?: undefined;
@@ -32806,14 +32807,15 @@ declare function tenderly_createVnet({
32806
32807
  bytes27?: undefined;
32807
32808
  bytes28?: undefined;
32808
32809
  bytes29?: undefined;
32810
+ bytes30?: undefined;
32809
32811
  bytes31?: undefined;
32812
+ int56?: undefined;
32810
32813
  int8?: undefined;
32811
32814
  int16?: undefined;
32812
32815
  int24?: undefined;
32813
32816
  int32?: undefined;
32814
32817
  int40?: undefined;
32815
32818
  int48?: undefined;
32816
- int56?: undefined;
32817
32819
  int64?: undefined;
32818
32820
  int72?: undefined;
32819
32821
  int80?: undefined;
@@ -32838,14 +32840,13 @@ declare function tenderly_createVnet({
32838
32840
  int232?: undefined;
32839
32841
  int240?: undefined;
32840
32842
  int248?: undefined;
32841
- int256?: undefined;
32843
+ uint56?: undefined;
32842
32844
  uint8?: undefined;
32843
32845
  uint16?: undefined;
32844
32846
  uint24?: undefined;
32845
32847
  uint32?: undefined;
32846
32848
  uint40?: undefined;
32847
32849
  uint48?: undefined;
32848
- uint56?: undefined;
32849
32850
  uint64?: undefined;
32850
32851
  uint72?: undefined;
32851
32852
  uint80?: undefined;
@@ -32870,7 +32871,6 @@ declare function tenderly_createVnet({
32870
32871
  uint232?: undefined;
32871
32872
  uint240?: undefined;
32872
32873
  uint248?: undefined;
32873
- uint256?: undefined;
32874
32874
  } | {
32875
32875
  [key: string]: unknown;
32876
32876
  }, primaryType extends string>(args: viem.SignTypedDataParameters<typedData, primaryType, {
@@ -33078,7 +33078,7 @@ declare function tenderly_createVnet({
33078
33078
  }, {
33079
33079
  address: "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9";
33080
33080
  type: "json-rpc";
33081
- }>, "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "prepareTransactionRequest" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<viem.WalletActions<{
33081
+ }>, "prepareTransactionRequest" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<viem.WalletActions<{
33082
33082
  id: number;
33083
33083
  blockExplorers?: {
33084
33084
  [key: string]: {
@@ -33484,8 +33484,8 @@ declare const publicRPCs: {
33484
33484
  readonly 9745: "https://rpc.plasma.to";
33485
33485
  readonly 57073: "https://ink-public.nodies.app";
33486
33486
  };
33487
- declare const alchemySupportedChainIds: (10 | 1 | 56 | 42220 | 137 | 80002 | 43114 | 43113 | 42161 | 421614 | 250 | 4002 | 11155420 | 1666600000 | 11155111 | 534352 | 534351 | 146 | 5000 | 1088 | 8453 | 84532 | 100 | 1101 | 324 | 59144 | 57073 | 1868 | 60808 | 9745 | 196 | 4326)[];
33488
- declare const getNetworkEnv: (chainId: SupportedChainIds) => "RPC_MAINNET" | "RPC_BNB" | "RPC_POLYGON" | "RPC_SONIC" | "RPC_ZKSYNC" | "RPC_SONEIUM" | "RPC_MANTLE" | "RPC_BASE" | "RPC_PLASMA" | "RPC_ARBITRUM" | "RPC_CELO" | "RPC_INK" | "RPC_LINEA" | "RPC_BOB" | "RPC_SEPOLIA" | "RPC_OPTIMISM" | "RPC_FANTOM" | "RPC_GNOSIS" | "RPC_AVALANCHE" | "RPC_POLYGON_AMOY" | "RPC_AVALANCHE_FUJI" | "RPC_ARBITRUM_SEPOLIA" | "RPC_FANTOM_TESTNET" | "RPC_OPTIMISM_SEPOLIA" | "RPC_HARMONY" | "RPC_SCROLL" | "RPC_SCROLL_SEPOLIA" | "RPC_METIS" | "RPC_BASE_SEPOLIA" | "RPC_ZKEVM" | "RPC_XLAYER" | "RPC_MEGAETH";
33487
+ declare const alchemySupportedChainIds: (10 | 1 | 42220 | 137 | 80002 | 43114 | 43113 | 42161 | 421614 | 250 | 4002 | 11155420 | 1666600000 | 11155111 | 534352 | 534351 | 146 | 5000 | 1088 | 8453 | 84532 | 56 | 100 | 1101 | 324 | 59144 | 57073 | 1868 | 60808 | 9745 | 196 | 4326)[];
33488
+ declare const getNetworkEnv: (chainId: SupportedChainIds) => "RPC_MAINNET" | "RPC_BNB" | "RPC_POLYGON" | "RPC_SONIC" | "RPC_ZKSYNC" | "RPC_SONEIUM" | "RPC_MANTLE" | "RPC_BASE" | "RPC_PLASMA" | "RPC_ARBITRUM" | "RPC_CELO" | "RPC_INK" | "RPC_LINEA" | "RPC_BOB" | "RPC_SEPOLIA" | "RPC_OPTIMISM" | "RPC_GNOSIS" | "RPC_AVALANCHE" | "RPC_POLYGON_AMOY" | "RPC_AVALANCHE_FUJI" | "RPC_ARBITRUM_SEPOLIA" | "RPC_FANTOM" | "RPC_FANTOM_TESTNET" | "RPC_OPTIMISM_SEPOLIA" | "RPC_HARMONY" | "RPC_SCROLL" | "RPC_SCROLL_SEPOLIA" | "RPC_METIS" | "RPC_BASE_SEPOLIA" | "RPC_ZKEVM" | "RPC_XLAYER" | "RPC_MEGAETH";
33489
33489
  declare function getExplicitRPC(chainId: SupportedChainIds): string;
33490
33490
  declare function getAlchemyRPC(chainId: SupportedChainIds, alchemyKey: string): string;
33491
33491
  declare function getPublicRpc(chainId: SupportedChainIds): "https://eth.llamarpc.com" | "https://polygon.llamarpc.com" | "https://base.llamarpc.com" | "https://binance.llamarpc.com" | "https://andromeda.metis.io/?owner=1088" | "https://rpc.ankr.com/gnosis" | "https://rpc.scroll.io" | "https://mainnet.era.zksync.io" | "https://rpc.ftm.tools" | "https://api.avax.network/ext/bc/C/rpc" | "https://rpc.linea.build" | "https://rpc.gobob.xyz" | "https://rpc.plasma.to" | "https://ink-public.nodies.app";
@@ -33994,6 +33994,10 @@ declare const etherscanExplorers: {
33994
33994
  readonly api: "https://api.etherscan.io/v2/api";
33995
33995
  readonly explorer: "https://abscan.org/";
33996
33996
  };
33997
+ readonly 4326: {
33998
+ readonly api: "https://api.etherscan.io/v2/api";
33999
+ readonly explorer: "https://mega.etherscan.io/";
34000
+ };
33997
34001
  readonly 4352: {
33998
34002
  readonly api: "https://api.etherscan.io/v2/api";
33999
34003
  readonly explorer: "https://memecorescan.io/";
@@ -34014,6 +34018,10 @@ declare const etherscanExplorers: {
34014
34018
  readonly api: "https://api.etherscan.io/v2/api";
34015
34019
  readonly explorer: "https://opbnb-testnet.bscscan.com/";
34016
34020
  };
34021
+ readonly 6342: {
34022
+ readonly api: "https://api.etherscan.io/v2/api";
34023
+ readonly explorer: "https://testnet-mega.etherscan.io/";
34024
+ };
34017
34025
  readonly 8453: {
34018
34026
  readonly api: "https://api.etherscan.io/v2/api";
34019
34027
  readonly explorer: "https://basescan.org/";
@@ -34038,10 +34046,6 @@ declare const etherscanExplorers: {
34038
34046
  readonly api: "https://api.etherscan.io/v2/api";
34039
34047
  readonly explorer: "https://testnet.sonicscan.org/";
34040
34048
  };
34041
- readonly 17000: {
34042
- readonly api: "https://api.etherscan.io/v2/api";
34043
- readonly explorer: "https://holesky.etherscan.io/";
34044
- };
34045
34049
  readonly 33111: {
34046
34050
  readonly api: "https://api.etherscan.io/v2/api";
34047
34051
  readonly explorer: "https://curtis.apescan.io/";