@bgd-labs/toolbox 0.2.19 → 0.2.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -15633,6 +15633,49 @@ declare function getDynamicArraySlot(baseSlot: bigint, arrayIndex: number, itemS
15633
15633
  declare function getBytesValue(value: string | Hex): `0x${string}`;
15634
15634
  declare function bytes32ToAddress(bytes32: Hex): `0x${string}`;
15635
15635
  //#endregion
15636
+ //#region src/ecosystem/addresses.d.ts
15637
+ declare const VELORA_PORTIKUS: {
15638
+ 1: string;
15639
+ 8453: string;
15640
+ 10: string;
15641
+ 42161: string;
15642
+ 137: string;
15643
+ 56: string;
15644
+ };
15645
+ /**
15646
+ * The following is a list of venues that offer free flashloans
15647
+ */
15648
+ declare const BALANCER_VAULT_V2 = "0xBA12222222228d8Ba445958a75a0704d566BF2C8";
15649
+ declare const BALANCER_VAULT_V3 = "0xbA1333333333a1BA1108E8412f11850A5C319bA9";
15650
+ declare const UNISWAP_V4_MANAGER: {
15651
+ 1: string;
15652
+ 8453: string;
15653
+ 10: string;
15654
+ 42161: string;
15655
+ 137: string;
15656
+ 57073: string;
15657
+ 1868: string;
15658
+ 43114: string;
15659
+ 56: string;
15660
+ 42220: string;
15661
+ 4326: string;
15662
+ };
15663
+ declare const MORPHO: {
15664
+ 1: string;
15665
+ 42161: string;
15666
+ 43114: string;
15667
+ 8453: string;
15668
+ 56: string;
15669
+ 42220: string;
15670
+ 100: string;
15671
+ 57073: string;
15672
+ 59144: string;
15673
+ 9745: string;
15674
+ 534352: string;
15675
+ 1868: string;
15676
+ 146: string;
15677
+ };
15678
+ //#endregion
15636
15679
  //#region src/ecosystem/types.d.ts
15637
15680
  type StandardJsonInput = {
15638
15681
  language: string;
@@ -16348,8 +16391,8 @@ declare function tenderly_createVnet({
16348
16391
  getBlobBaseFee: () => Promise<viem.GetBlobBaseFeeReturnType>;
16349
16392
  getBlock: <includeTransactions extends boolean = false, blockTag extends viem.BlockTag = "latest">(args?: viem.GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
16350
16393
  number: blockTag extends "pending" ? null : bigint;
16351
- nonce: blockTag extends "pending" ? null : `0x${string}`;
16352
16394
  hash: blockTag extends "pending" ? null : `0x${string}`;
16395
+ nonce: blockTag extends "pending" ? null : `0x${string}`;
16353
16396
  logsBloom: blockTag extends "pending" ? null : `0x${string}`;
16354
16397
  baseFeePerGas: bigint | null;
16355
16398
  blobGasUsed: bigint;
@@ -16376,127 +16419,127 @@ declare function tenderly_createVnet({
16376
16419
  transactions: includeTransactions extends true ? ({
16377
16420
  type: "legacy";
16378
16421
  value: bigint;
16379
- to: Address | null;
16422
+ yParity?: undefined | undefined;
16380
16423
  from: Address;
16381
16424
  gas: bigint;
16382
- nonce: number;
16383
- blobVersionedHashes?: undefined | undefined;
16384
- gasPrice: bigint;
16385
- maxFeePerBlobGas?: undefined | undefined;
16386
- maxFeePerGas?: undefined | undefined;
16387
- maxPriorityFeePerGas?: undefined | undefined;
16388
- accessList?: undefined | undefined;
16389
- authorizationList?: undefined | undefined;
16390
- yParity?: undefined | undefined;
16391
16425
  hash: viem.Hash;
16392
16426
  input: Hex;
16427
+ nonce: number;
16393
16428
  r: Hex;
16394
16429
  s: Hex;
16430
+ to: Address | null;
16395
16431
  typeHex: Hex | null;
16396
16432
  v: bigint;
16433
+ accessList?: undefined | undefined;
16434
+ authorizationList?: undefined | undefined;
16435
+ blobVersionedHashes?: undefined | undefined;
16397
16436
  chainId?: number | undefined;
16398
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
16399
- 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;
16437
+ gasPrice: bigint;
16438
+ maxFeePerBlobGas?: undefined | undefined;
16439
+ maxFeePerGas?: undefined | undefined;
16440
+ maxPriorityFeePerGas?: undefined | undefined;
16441
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
16442
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
16400
16443
  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;
16401
16444
  } | {
16402
16445
  type: "eip2930";
16403
16446
  value: bigint;
16404
- to: Address | null;
16447
+ yParity: number;
16405
16448
  from: Address;
16406
16449
  gas: bigint;
16407
- nonce: number;
16408
- blobVersionedHashes?: undefined | undefined;
16409
- gasPrice: bigint;
16410
- maxFeePerBlobGas?: undefined | undefined;
16411
- maxFeePerGas?: undefined | undefined;
16412
- maxPriorityFeePerGas?: undefined | undefined;
16413
- accessList: viem.AccessList;
16414
- authorizationList?: undefined | undefined;
16415
- yParity: number;
16416
16450
  hash: viem.Hash;
16417
16451
  input: Hex;
16452
+ nonce: number;
16418
16453
  r: Hex;
16419
16454
  s: Hex;
16455
+ to: Address | null;
16420
16456
  typeHex: Hex | null;
16421
16457
  v: bigint;
16458
+ accessList: viem.AccessList;
16459
+ authorizationList?: undefined | undefined;
16460
+ blobVersionedHashes?: undefined | undefined;
16422
16461
  chainId: number;
16423
- 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;
16424
- 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;
16462
+ gasPrice: bigint;
16463
+ maxFeePerBlobGas?: undefined | undefined;
16464
+ maxFeePerGas?: undefined | undefined;
16465
+ maxPriorityFeePerGas?: undefined | undefined;
16466
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : `0x${string}` : never : never;
16467
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
16425
16468
  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;
16426
16469
  } | {
16427
16470
  type: "eip1559";
16428
16471
  value: bigint;
16429
- to: Address | null;
16472
+ yParity: number;
16430
16473
  from: Address;
16431
16474
  gas: bigint;
16432
- nonce: number;
16433
- blobVersionedHashes?: undefined | undefined;
16434
- gasPrice?: undefined | undefined;
16435
- maxFeePerBlobGas?: undefined | undefined;
16436
- maxFeePerGas: bigint;
16437
- maxPriorityFeePerGas: bigint;
16438
- accessList: viem.AccessList;
16439
- authorizationList?: undefined | undefined;
16440
- yParity: number;
16441
16475
  hash: viem.Hash;
16442
16476
  input: Hex;
16477
+ nonce: number;
16443
16478
  r: Hex;
16444
16479
  s: Hex;
16480
+ to: Address | null;
16445
16481
  typeHex: Hex | null;
16446
16482
  v: bigint;
16483
+ accessList: viem.AccessList;
16484
+ authorizationList?: undefined | undefined;
16485
+ blobVersionedHashes?: undefined | undefined;
16447
16486
  chainId: number;
16448
- 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;
16449
- 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;
16487
+ gasPrice?: undefined | undefined;
16488
+ maxFeePerBlobGas?: undefined | undefined;
16489
+ maxFeePerGas: bigint;
16490
+ maxPriorityFeePerGas: bigint;
16491
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : `0x${string}` : never : never;
16492
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
16450
16493
  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;
16451
16494
  } | {
16452
16495
  type: "eip4844";
16453
16496
  value: bigint;
16454
- to: Address | null;
16497
+ yParity: number;
16455
16498
  from: Address;
16456
16499
  gas: bigint;
16457
- nonce: number;
16458
- blobVersionedHashes: readonly Hex[];
16459
- gasPrice?: undefined | undefined;
16460
- maxFeePerBlobGas: bigint;
16461
- maxFeePerGas: bigint;
16462
- maxPriorityFeePerGas: bigint;
16463
- accessList: viem.AccessList;
16464
- authorizationList?: undefined | undefined;
16465
- yParity: number;
16466
16500
  hash: viem.Hash;
16467
16501
  input: Hex;
16502
+ nonce: number;
16468
16503
  r: Hex;
16469
16504
  s: Hex;
16505
+ to: Address | null;
16470
16506
  typeHex: Hex | null;
16471
16507
  v: bigint;
16508
+ accessList: viem.AccessList;
16509
+ authorizationList?: undefined | undefined;
16510
+ blobVersionedHashes: readonly Hex[];
16472
16511
  chainId: number;
16473
- 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;
16474
- 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;
16512
+ gasPrice?: undefined | undefined;
16513
+ maxFeePerBlobGas: bigint;
16514
+ maxFeePerGas: bigint;
16515
+ maxPriorityFeePerGas: bigint;
16516
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : `0x${string}` : never : never;
16517
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
16475
16518
  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;
16476
16519
  } | {
16477
16520
  type: "eip7702";
16478
16521
  value: bigint;
16479
- to: Address | null;
16522
+ yParity: number;
16480
16523
  from: Address;
16481
16524
  gas: bigint;
16482
- nonce: number;
16483
- blobVersionedHashes?: undefined | undefined;
16484
- gasPrice?: undefined | undefined;
16485
- maxFeePerBlobGas?: undefined | undefined;
16486
- maxFeePerGas: bigint;
16487
- maxPriorityFeePerGas: bigint;
16488
- accessList: viem.AccessList;
16489
- authorizationList: viem.SignedAuthorizationList;
16490
- yParity: number;
16491
16525
  hash: viem.Hash;
16492
16526
  input: Hex;
16527
+ nonce: number;
16493
16528
  r: Hex;
16494
16529
  s: Hex;
16530
+ to: Address | null;
16495
16531
  typeHex: Hex | null;
16496
16532
  v: bigint;
16533
+ accessList: viem.AccessList;
16534
+ authorizationList: viem.SignedAuthorizationList;
16535
+ blobVersionedHashes?: undefined | undefined;
16497
16536
  chainId: number;
16498
- 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;
16499
- 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;
16537
+ gasPrice?: undefined | undefined;
16538
+ maxFeePerBlobGas?: undefined | undefined;
16539
+ maxFeePerGas: bigint;
16540
+ maxPriorityFeePerGas: bigint;
16541
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : `0x${string}` : never : never;
16542
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : bigint : never : never;
16500
16543
  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;
16501
16544
  })[] : `0x${string}`[];
16502
16545
  }>;
@@ -16583,127 +16626,127 @@ declare function tenderly_createVnet({
16583
16626
  getTransaction: <blockTag extends viem.BlockTag = "latest">(args: viem.GetTransactionParameters<blockTag>) => Promise<{
16584
16627
  type: "legacy";
16585
16628
  value: bigint;
16586
- to: Address | null;
16629
+ yParity?: undefined | undefined;
16587
16630
  from: Address;
16588
16631
  gas: bigint;
16589
- nonce: number;
16590
- blobVersionedHashes?: undefined | undefined;
16591
- gasPrice: bigint;
16592
- maxFeePerBlobGas?: undefined | undefined;
16593
- maxFeePerGas?: undefined | undefined;
16594
- maxPriorityFeePerGas?: undefined | undefined;
16595
- accessList?: undefined | undefined;
16596
- authorizationList?: undefined | undefined;
16597
- yParity?: undefined | undefined;
16598
16632
  hash: viem.Hash;
16599
16633
  input: Hex;
16634
+ nonce: number;
16600
16635
  r: Hex;
16601
16636
  s: Hex;
16637
+ to: Address | null;
16602
16638
  typeHex: Hex | null;
16603
16639
  v: bigint;
16640
+ accessList?: undefined | undefined;
16641
+ authorizationList?: undefined | undefined;
16642
+ blobVersionedHashes?: undefined | undefined;
16604
16643
  chainId?: number | undefined;
16605
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
16606
- 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;
16644
+ gasPrice: bigint;
16645
+ maxFeePerBlobGas?: undefined | undefined;
16646
+ maxFeePerGas?: undefined | undefined;
16647
+ maxPriorityFeePerGas?: undefined | undefined;
16648
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
16649
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
16607
16650
  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;
16608
16651
  } | {
16609
16652
  type: "eip2930";
16610
16653
  value: bigint;
16611
- to: Address | null;
16654
+ yParity: number;
16612
16655
  from: Address;
16613
16656
  gas: bigint;
16614
- nonce: number;
16615
- blobVersionedHashes?: undefined | undefined;
16616
- gasPrice: bigint;
16617
- maxFeePerBlobGas?: undefined | undefined;
16618
- maxFeePerGas?: undefined | undefined;
16619
- maxPriorityFeePerGas?: undefined | undefined;
16620
- accessList: viem.AccessList;
16621
- authorizationList?: undefined | undefined;
16622
- yParity: number;
16623
16657
  hash: viem.Hash;
16624
16658
  input: Hex;
16659
+ nonce: number;
16625
16660
  r: Hex;
16626
16661
  s: Hex;
16662
+ to: Address | null;
16627
16663
  typeHex: Hex | null;
16628
16664
  v: bigint;
16665
+ accessList: viem.AccessList;
16666
+ authorizationList?: undefined | undefined;
16667
+ blobVersionedHashes?: undefined | undefined;
16629
16668
  chainId: number;
16630
- 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;
16631
- 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;
16669
+ gasPrice: bigint;
16670
+ maxFeePerBlobGas?: undefined | undefined;
16671
+ maxFeePerGas?: undefined | undefined;
16672
+ maxPriorityFeePerGas?: undefined | undefined;
16673
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : `0x${string}` : never : never;
16674
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
16632
16675
  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;
16633
16676
  } | {
16634
16677
  type: "eip1559";
16635
16678
  value: bigint;
16636
- to: Address | null;
16679
+ yParity: number;
16637
16680
  from: Address;
16638
16681
  gas: bigint;
16639
- nonce: number;
16640
- blobVersionedHashes?: undefined | undefined;
16641
- gasPrice?: undefined | undefined;
16642
- maxFeePerBlobGas?: undefined | undefined;
16643
- maxFeePerGas: bigint;
16644
- maxPriorityFeePerGas: bigint;
16645
- accessList: viem.AccessList;
16646
- authorizationList?: undefined | undefined;
16647
- yParity: number;
16648
16682
  hash: viem.Hash;
16649
16683
  input: Hex;
16684
+ nonce: number;
16650
16685
  r: Hex;
16651
16686
  s: Hex;
16687
+ to: Address | null;
16652
16688
  typeHex: Hex | null;
16653
16689
  v: bigint;
16690
+ accessList: viem.AccessList;
16691
+ authorizationList?: undefined | undefined;
16692
+ blobVersionedHashes?: undefined | undefined;
16654
16693
  chainId: number;
16655
- 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;
16656
- 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;
16694
+ gasPrice?: undefined | undefined;
16695
+ maxFeePerBlobGas?: undefined | undefined;
16696
+ maxFeePerGas: bigint;
16697
+ maxPriorityFeePerGas: bigint;
16698
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : `0x${string}` : never : never;
16699
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
16657
16700
  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;
16658
16701
  } | {
16659
16702
  type: "eip4844";
16660
16703
  value: bigint;
16661
- to: Address | null;
16704
+ yParity: number;
16662
16705
  from: Address;
16663
16706
  gas: bigint;
16664
- nonce: number;
16665
- blobVersionedHashes: readonly Hex[];
16666
- gasPrice?: undefined | undefined;
16667
- maxFeePerBlobGas: bigint;
16668
- maxFeePerGas: bigint;
16669
- maxPriorityFeePerGas: bigint;
16670
- accessList: viem.AccessList;
16671
- authorizationList?: undefined | undefined;
16672
- yParity: number;
16673
16707
  hash: viem.Hash;
16674
16708
  input: Hex;
16709
+ nonce: number;
16675
16710
  r: Hex;
16676
16711
  s: Hex;
16712
+ to: Address | null;
16677
16713
  typeHex: Hex | null;
16678
16714
  v: bigint;
16715
+ accessList: viem.AccessList;
16716
+ authorizationList?: undefined | undefined;
16717
+ blobVersionedHashes: readonly Hex[];
16679
16718
  chainId: number;
16680
- 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;
16681
- 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;
16719
+ gasPrice?: undefined | undefined;
16720
+ maxFeePerBlobGas: bigint;
16721
+ maxFeePerGas: bigint;
16722
+ maxPriorityFeePerGas: bigint;
16723
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : `0x${string}` : never : never;
16724
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
16682
16725
  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;
16683
16726
  } | {
16684
16727
  type: "eip7702";
16685
16728
  value: bigint;
16686
- to: Address | null;
16729
+ yParity: number;
16687
16730
  from: Address;
16688
16731
  gas: bigint;
16689
- nonce: number;
16690
- blobVersionedHashes?: undefined | undefined;
16691
- gasPrice?: undefined | undefined;
16692
- maxFeePerBlobGas?: undefined | undefined;
16693
- maxFeePerGas: bigint;
16694
- maxPriorityFeePerGas: bigint;
16695
- accessList: viem.AccessList;
16696
- authorizationList: viem.SignedAuthorizationList;
16697
- yParity: number;
16698
16732
  hash: viem.Hash;
16699
16733
  input: Hex;
16734
+ nonce: number;
16700
16735
  r: Hex;
16701
16736
  s: Hex;
16737
+ to: Address | null;
16702
16738
  typeHex: Hex | null;
16703
16739
  v: bigint;
16740
+ accessList: viem.AccessList;
16741
+ authorizationList: viem.SignedAuthorizationList;
16742
+ blobVersionedHashes?: undefined | undefined;
16704
16743
  chainId: number;
16705
- 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;
16706
- 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;
16744
+ gasPrice?: undefined | undefined;
16745
+ maxFeePerBlobGas?: undefined | undefined;
16746
+ maxFeePerGas: bigint;
16747
+ maxPriorityFeePerGas: bigint;
16748
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : `0x${string}` : never : never;
16749
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : bigint : never : never;
16707
16750
  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;
16708
16751
  }>;
16709
16752
  getTransactionConfirmations: (args: viem.GetTransactionConfirmationsParameters<{
@@ -20304,7 +20347,7 @@ declare function tenderly_createVnet({
20304
20347
  authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
20305
20348
  } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
20306
20349
  chainId?: number | undefined;
20307
- }, (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<{
20350
+ }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "fees" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "fees" | "gas" | "nonce" | "blobVersionedHashes" | "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<{
20308
20351
  id: number;
20309
20352
  blockExplorers?: {
20310
20353
  [key: string]: {
@@ -23727,7 +23770,7 @@ declare function tenderly_createVnet({
23727
23770
  authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
23728
23771
  } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
23729
23772
  chainId?: number | undefined;
23730
- }, (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>;
23773
+ }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "fees" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "fees" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K] } : never>;
23731
23774
  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>>;
23732
23775
  sendRawTransaction: (args: viem.SendRawTransactionParameters) => Promise<viem.SendRawTransactionReturnType>;
23733
23776
  sendRawTransactionSync: (args: viem.SendRawTransactionSyncParameters) => Promise<viem.TransactionReceipt>;
@@ -27805,7 +27848,7 @@ declare function tenderly_createVnet({
27805
27848
  authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
27806
27849
  } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
27807
27850
  chainId?: number | undefined;
27808
- }, (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<{
27851
+ }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "fees" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "fees" | "gas" | "nonce" | "blobVersionedHashes" | "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<{
27809
27852
  id: number;
27810
27853
  blockExplorers?: {
27811
27854
  [key: string]: {
@@ -31234,7 +31277,7 @@ declare function tenderly_createVnet({
31234
31277
  authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
31235
31278
  } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
31236
31279
  chainId?: number | undefined;
31237
- }, (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>;
31280
+ }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "fees" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "fees" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K] } : never>;
31238
31281
  requestAddresses: () => Promise<viem.RequestAddressesReturnType>;
31239
31282
  requestPermissions: (args: viem.RequestPermissionsParameters) => Promise<viem.RequestPermissionsReturnType>;
31240
31283
  sendCalls: <const calls extends readonly unknown[], chainOverride extends viem.Chain | undefined = undefined>(parameters: viem.SendCallsParameters<{
@@ -33509,7 +33552,7 @@ declare const publicRPCs: {
33509
33552
  readonly 57073: "https://ink-public.nodies.app";
33510
33553
  };
33511
33554
  declare const alchemySupportedChainIds: (1 | 10 | 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)[];
33512
- 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_POLYGON_AMOY" | "RPC_AVALANCHE" | "RPC_AVALANCHE_FUJI" | "RPC_ARBITRUM_SEPOLIA" | "RPC_FANTOM" | "RPC_FANTOM_TESTNET" | "RPC_OPTIMISM" | "RPC_OPTIMISM_SEPOLIA" | "RPC_HARMONY" | "RPC_SCROLL" | "RPC_SCROLL_SEPOLIA" | "RPC_METIS" | "RPC_BASE_SEPOLIA" | "RPC_GNOSIS" | "RPC_ZKEVM" | "RPC_XLAYER" | "RPC_MEGAETH";
33555
+ declare const getNetworkEnv: (chainId: SupportedChainIds) => "RPC_CELO" | "RPC_MAINNET" | "RPC_POLYGON" | "RPC_POLYGON_AMOY" | "RPC_AVALANCHE" | "RPC_AVALANCHE_FUJI" | "RPC_ARBITRUM" | "RPC_ARBITRUM_SEPOLIA" | "RPC_FANTOM" | "RPC_FANTOM_TESTNET" | "RPC_OPTIMISM" | "RPC_OPTIMISM_SEPOLIA" | "RPC_HARMONY" | "RPC_SEPOLIA" | "RPC_SCROLL" | "RPC_SCROLL_SEPOLIA" | "RPC_SONIC" | "RPC_MANTLE" | "RPC_METIS" | "RPC_BASE" | "RPC_BASE_SEPOLIA" | "RPC_BNB" | "RPC_GNOSIS" | "RPC_ZKEVM" | "RPC_ZKSYNC" | "RPC_LINEA" | "RPC_INK" | "RPC_SONEIUM" | "RPC_BOB" | "RPC_PLASMA" | "RPC_XLAYER" | "RPC_MEGAETH";
33513
33556
  declare function getExplicitRPC(chainId: SupportedChainIds): string;
33514
33557
  declare function getAlchemyRPC(chainId: SupportedChainIds, alchemyKey: string): string;
33515
33558
  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";
@@ -33607,6 +33650,49 @@ declare function getContractDeploymentBlock({
33607
33650
  toBlock,
33608
33651
  maxDelta
33609
33652
  }: GetContractDeploymentBlockArgs): Promise<bigint>;
33653
+ interface GetClosestBlockArgs {
33654
+ client: Client;
33655
+ timestamp: bigint;
33656
+ }
33657
+ /**
33658
+ * Finds the closest block for a given timestamp using binary search.
33659
+ * Returns the last block whose timestamp is <= the target timestamp.
33660
+ * @param client a viem Client
33661
+ * @param timestamp the target unix timestamp
33662
+ * @returns the block closest to (but not after) the given timestamp
33663
+ */
33664
+ declare function getClosestBlock({
33665
+ client,
33666
+ timestamp
33667
+ }: GetClosestBlockArgs): Promise<{
33668
+ number: bigint;
33669
+ hash: `0x${string}`;
33670
+ nonce: `0x${string}`;
33671
+ logsBloom: `0x${string}`;
33672
+ baseFeePerGas: bigint | null;
33673
+ blobGasUsed: bigint;
33674
+ difficulty: bigint;
33675
+ excessBlobGas: bigint;
33676
+ extraData: Hex;
33677
+ gasLimit: bigint;
33678
+ gasUsed: bigint;
33679
+ miner: Address;
33680
+ mixHash: viem.Hash;
33681
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
33682
+ parentHash: viem.Hash;
33683
+ receiptsRoot: Hex;
33684
+ sealFields: Hex[];
33685
+ sha3Uncles: viem.Hash;
33686
+ size: bigint;
33687
+ stateRoot: viem.Hash;
33688
+ timestamp: bigint;
33689
+ totalDifficulty: bigint | null;
33690
+ transactionsRoot: viem.Hash;
33691
+ uncles: viem.Hash[];
33692
+ withdrawals?: viem.Withdrawal[] | undefined | undefined;
33693
+ withdrawalsRoot?: `0x${string}` | undefined;
33694
+ transactions: `0x${string}`[];
33695
+ }>;
33610
33696
  //#endregion
33611
33697
  //#region src/ecosystem/flashbots.d.ts
33612
33698
  type BundleParams = {
@@ -33724,6 +33810,7 @@ declare const alchemyNetworkMap: {
33724
33810
  readonly 1328: "sei-testnet";
33725
33811
  readonly 1329: "sei-mainnet";
33726
33812
  readonly 1514: "story-mainnet";
33813
+ readonly 1672: "pharos-mainnet";
33727
33814
  readonly 1868: "soneium-mainnet";
33728
33815
  readonly 1946: "soneium-minato";
33729
33816
  readonly 2020: "ronin-mainnet";
@@ -33755,7 +33842,6 @@ declare const alchemyNetworkMap: {
33755
33842
  readonly 9746: "plasma-testnet";
33756
33843
  readonly 10143: "monad-testnet";
33757
33844
  readonly 10200: "gnosis-chiado";
33758
- readonly 10218: "tea-sepolia";
33759
33845
  readonly 11011: "shape-sepolia";
33760
33846
  readonly 11124: "abstract-testnet";
33761
33847
  readonly 14601: "sonic-testnet";
@@ -33772,6 +33858,7 @@ declare const alchemyNetworkMap: {
33772
33858
  readonly 42431: "tempo-moderato";
33773
33859
  readonly 43113: "avax-fuji";
33774
33860
  readonly 43114: "avax-mainnet";
33861
+ readonly 46630: "robinhood-testnet";
33775
33862
  readonly 53302: "superseed-sepolia";
33776
33863
  readonly 57054: "sonic-blaze";
33777
33864
  readonly 57073: "ink-mainnet";
@@ -33793,6 +33880,7 @@ declare const alchemyNetworkMap: {
33793
33880
  readonly 534352: "scroll-mainnet";
33794
33881
  readonly 560048: "eth-hoodi";
33795
33882
  readonly 685685: "gensyn-testnet";
33883
+ readonly 688689: "pharos-atlantic";
33796
33884
  readonly 763373: "ink-sepolia";
33797
33885
  readonly 808813: "bob-sepolia";
33798
33886
  readonly 5042002: "arc-testnet";
@@ -33824,8 +33912,6 @@ declare const quicknodeNetworkMap: {
33824
33912
  readonly 130: "unichain-mainnet";
33825
33913
  readonly 137: "matic";
33826
33914
  readonly 146: "sonic-mainnet";
33827
- readonly 164: "omni-omega";
33828
- readonly 166: "omni-mainnet";
33829
33915
  readonly 196: "xlayer-mainnet";
33830
33916
  readonly 250: "fantom";
33831
33917
  readonly 252: "fraxtal-mainnet";
@@ -33845,12 +33931,8 @@ declare const quicknodeNetworkMap: {
33845
33931
  readonly 1328: "sei-atlantic";
33846
33932
  readonly 1329: "sei-pacific";
33847
33933
  readonly 1480: "vana-mainnet";
33848
- readonly 1513: "story-testnet";
33849
- readonly 1516: "story-odyssey";
33850
33934
  readonly 1993: "b3-sepolia";
33851
- readonly 2442: "zkevm-cardona";
33852
33935
  readonly 2741: "abstract-mainnet";
33853
- readonly 2810: "morph-holesky";
33854
33936
  readonly 2818: "morph-mainnet";
33855
33937
  readonly 3338: "peaq-mainnet";
33856
33938
  readonly 4801: "worldchain-sepolia";
@@ -33866,8 +33948,6 @@ declare const quicknodeNetworkMap: {
33866
33948
  readonly 13371: "imx-mainnet";
33867
33949
  readonly 13473: "imx-testnet";
33868
33950
  readonly 14800: "vana-moksha";
33869
- readonly 16600: "0g-newton";
33870
- readonly 17000: "ethereum-holesky";
33871
33951
  readonly 34443: "mode-mainnet";
33872
33952
  readonly 42161: "arbitrum-mainnet";
33873
33953
  readonly 42170: "nova-mainnet";
@@ -33878,12 +33958,9 @@ declare const quicknodeNetworkMap: {
33878
33958
  readonly 59144: "linea-mainnet";
33879
33959
  readonly 80002: "matic-amoy";
33880
33960
  readonly 80069: "bera-bepolia";
33881
- readonly 80084: "bera-bartio";
33882
- readonly 80085: "bera-artio";
33883
33961
  readonly 80094: "bera-mainnet";
33884
33962
  readonly 81457: "blast-mainnet";
33885
33963
  readonly 84532: "base-sepolia";
33886
- readonly 421613: "arbitrum-goerli";
33887
33964
  readonly 421614: "arbitrum-sepolia";
33888
33965
  readonly 534351: "scroll-testnet";
33889
33966
  readonly 534352: "scroll-mainnet";
@@ -34040,7 +34117,7 @@ declare const etherscanExplorers: {
34040
34117
  readonly api: "https://api.etherscan.io/v2/api";
34041
34118
  readonly explorer: "https://opbnb-testnet.bscscan.com/";
34042
34119
  };
34043
- readonly 6342: {
34120
+ readonly 6343: {
34044
34121
  readonly api: "https://api.etherscan.io/v2/api";
34045
34122
  readonly explorer: "https://testnet-mega.etherscan.io/";
34046
34123
  };
@@ -34080,10 +34157,6 @@ declare const etherscanExplorers: {
34080
34157
  readonly api: "https://api.etherscan.io/v2/api";
34081
34158
  readonly explorer: "https://arbiscan.io/";
34082
34159
  };
34083
- readonly 42170: {
34084
- readonly api: "https://api.etherscan.io/v2/api";
34085
- readonly explorer: "https://nova.arbiscan.io/";
34086
- };
34087
34160
  readonly 42220: {
34088
34161
  readonly api: "https://api.etherscan.io/v2/api";
34089
34162
  readonly explorer: "https://celoscan.io/";
@@ -34228,10 +34301,6 @@ declare const routescanExplorers: {
34228
34301
  readonly api: "https://api.routescan.io/v2/network/mainnet/evm/252/etherscan";
34229
34302
  readonly explorer: "252.routescan.io";
34230
34303
  };
34231
- readonly 254: {
34232
- readonly api: "https://api.routescan.io/v2/network/mainnet/evm/254/etherscan";
34233
- readonly explorer: "254.routescan.io";
34234
- };
34235
34304
  readonly 288: {
34236
34305
  readonly api: "https://api.routescan.io/v2/network/mainnet/evm/288/etherscan";
34237
34306
  readonly explorer: "288.routescan.io";
@@ -34792,10 +34861,6 @@ declare const blockscoutExplorers: {
34792
34861
  readonly api: "https://bob-sepolia.explorer.gobob.xyz/api";
34793
34862
  readonly explorer: "https://bob-sepolia.explorer.gobob.xyz/";
34794
34863
  };
34795
- readonly 113: {
34796
- readonly api: "https://coston2-explorer.flare.network/api";
34797
- readonly explorer: "https://coston2-explorer.flare.network/";
34798
- };
34799
34864
  readonly 114: {
34800
34865
  readonly api: "https://coston2-explorer.flare.network/api";
34801
34866
  readonly explorer: "https://coston2-explorer.flare.network/";
@@ -35429,8 +35494,8 @@ declare const blockscoutExplorers: {
35429
35494
  readonly explorer: "https://testnet.bitciexplorer.com";
35430
35495
  };
35431
35496
  readonly 1919: {
35432
- readonly api: "https://explorer.turkchain1919.com/api";
35433
- readonly explorer: "https://explorer.turkchain1919.com/";
35497
+ readonly api: "https://turkscan.com/api";
35498
+ readonly explorer: "https://turkscan.com";
35434
35499
  };
35435
35500
  readonly 1923: {
35436
35501
  readonly api: "https://explorer.swellnetwork.io/api";
@@ -35824,10 +35889,6 @@ declare const blockscoutExplorers: {
35824
35889
  readonly api: "https://explore.steamexchange.io/api";
35825
35890
  readonly explorer: "https://explore.steamexchange.io/";
35826
35891
  };
35827
- readonly 6342: {
35828
- readonly api: "https://megaeth-testnet.blockscout.com/api";
35829
- readonly explorer: "https://megaeth-testnet.blockscout.com/";
35830
- };
35831
35892
  readonly 6343: {
35832
35893
  readonly api: "https://megaeth-testnet-v2.blockscout.com/api";
35833
35894
  readonly explorer: "https://megaeth-testnet-v2.blockscout.com/";
@@ -36936,10 +36997,6 @@ declare const blockscoutExplorers: {
36936
36997
  readonly api: "https://explorer.saakuru.network/api";
36937
36998
  readonly explorer: "https://explorer.saakuru.network/";
36938
36999
  };
36939
- readonly 7777777: {
36940
- readonly api: "https://explorer.zora.energy/api";
36941
- readonly explorer: "https://explorer.zora.energy/";
36942
- };
36943
37000
  readonly 7890785: {
36944
37001
  readonly api: "https://blockscout.xga.com/api";
36945
37002
  readonly explorer: "https://blockscout.xga.com/";
@@ -37189,6 +37246,11 @@ declare const blockscoutExplorers: {
37189
37246
  //#region src/ecosystem/generated/chainlinkFeeds.d.ts
37190
37247
  declare const chainlinkFeeds: {
37191
37248
  readonly "1": readonly [{
37249
+ readonly contractAddress: "0x009b8b4D648cFCC813ecB70db0f31ce305DD4B32";
37250
+ readonly proxyAddress: "0x0C2e4Df738e99e8db80012f5bb2a303f3f48Ca74";
37251
+ readonly decimals: 6;
37252
+ readonly name: "JTRSY NAV";
37253
+ }, {
37192
37254
  readonly contractAddress: "0x00f0eFB3d9dBe7fE91fee44aE09DAe5DFA65c382";
37193
37255
  readonly proxyAddress: "0x75A0d3264a949C2C920d7F25Df174af1FaF73399";
37194
37256
  readonly decimals: 8;
@@ -37323,11 +37385,6 @@ declare const chainlinkFeeds: {
37323
37385
  readonly proxyAddress: "0xD41390267Afec3fA5b4c0B3aA6c706556CCE75ec";
37324
37386
  readonly decimals: 8;
37325
37387
  readonly name: "C3M / EUR";
37326
- }, {
37327
- readonly contractAddress: "0x1E37adeFCfF644B69E717ce536D2dE407879D809";
37328
- readonly proxyAddress: "0x3b41D5571468904D4e53b6a8d93A6BaC43f02dC9";
37329
- readonly decimals: 18;
37330
- readonly name: "PERP / ETH";
37331
37388
  }, {
37332
37389
  readonly contractAddress: "0x1E726556244D772d1d50cacb19B87E7205fA509E";
37333
37390
  readonly proxyAddress: "0xF017fcB346A1885194689bA23Eff2fE6fA5C483b";
@@ -37364,6 +37421,11 @@ declare const chainlinkFeeds: {
37364
37421
  readonly proxyAddress: "0x59c2287c8E848310c809C061a1Be0d1556eFF4e2";
37365
37422
  readonly decimals: 8;
37366
37423
  readonly name: "Optimism Healthcheck";
37424
+ }, {
37425
+ readonly contractAddress: "0x224ac1d400BE6b1F50b040c3fF8c2A19300384F7";
37426
+ readonly proxyAddress: "0x5a489EACad4BEc30B5bC3BcE8a0b9301CCDC0f60";
37427
+ readonly decimals: 18;
37428
+ readonly name: "stGLD / tGLD Exchange Rate";
37367
37429
  }, {
37368
37430
  readonly contractAddress: "0x24e3c657c27DfC7ea6f9f58e86387D846b3BaA59";
37369
37431
  readonly proxyAddress: "0xdbd020CAeF83eFd542f4De03e3cF0C28A4428bd5";
@@ -37389,6 +37451,11 @@ declare const chainlinkFeeds: {
37389
37451
  readonly proxyAddress: "0xCfE54B5cD566aB89272946F602D76Ea879CAb4a8";
37390
37452
  readonly decimals: 8;
37391
37453
  readonly name: "STETH / USD";
37454
+ }, {
37455
+ readonly contractAddress: "0x2A539061d701471c3835256f8FF982e81E9B4374";
37456
+ readonly proxyAddress: "0x4720bcC6f940d709D7e2F510936e611Db07C240E";
37457
+ readonly decimals: 8;
37458
+ readonly name: "GOOGL-USD (24/5)";
37392
37459
  }, {
37393
37460
  readonly contractAddress: "0x2a29c3696dD424d3e703F5F3f2D6Af86598e9303";
37394
37461
  readonly proxyAddress: "0xdF2917806E30300537aEB49A7663062F4d1F2b5F";
@@ -37465,6 +37532,11 @@ declare const chainlinkFeeds: {
37465
37532
  readonly proxyAddress: "0x8f1dF6D7F2db73eECE86a18b4381F4707b918FB1";
37466
37533
  readonly decimals: 8;
37467
37534
  readonly name: "PYUSD / USD";
37535
+ }, {
37536
+ readonly contractAddress: "0x3B4f49f4aa5491B5a60C0724467A67b4910aEAAc";
37537
+ readonly proxyAddress: "0x3F0543aA057BcAeA152Fe9462Cb3ffaB305a6F8D";
37538
+ readonly decimals: 18;
37539
+ readonly name: "KAG Reserves";
37468
37540
  }, {
37469
37541
  readonly contractAddress: "0x3C405e1FE8a6BE5d9b714B8C88Ad913F236B1639";
37470
37542
  readonly proxyAddress: "0xE8E65Fb9116875012F5990Ecaab290B3531DbeB9";
@@ -37521,6 +37593,16 @@ declare const chainlinkFeeds: {
37521
37593
  readonly decimals: 8;
37522
37594
  readonly name: "SVR COMP / USD";
37523
37595
  readonly secondaryProxyAddress: "0x69B50fF403E995d9c4441a303438D9049dAC8cCD";
37596
+ }, {
37597
+ readonly contractAddress: "0x45D48aa93275c2274E1006BfdCb6406eF96a509B";
37598
+ readonly proxyAddress: "0xD13cB763C43B5C058E7Ec40176962c5030F4EB49";
37599
+ readonly decimals: 8;
37600
+ readonly name: "WTGXX NAV";
37601
+ }, {
37602
+ readonly contractAddress: "0x47f0840aCB50DF9C3B9584017eF1A9560E777b88";
37603
+ readonly proxyAddress: "0xB204328559E17F84eE7A285036AA0d47124F85D5";
37604
+ readonly decimals: 8;
37605
+ readonly name: "TSLA-USD (24/5)";
37524
37606
  }, {
37525
37607
  readonly contractAddress: "0x48afBeDF849449b7B9eea101EdAbdc81417b04c8";
37526
37608
  readonly proxyAddress: "0x194a9AaF2e0b67c35915cD01101585A33Fe25CAa";
@@ -37547,11 +37629,6 @@ declare const chainlinkFeeds: {
37547
37629
  readonly proxyAddress: "0x17D054eCac33D91F7340645341eFB5DE9009F1C1";
37548
37630
  readonly decimals: 18;
37549
37631
  readonly name: "GRT / ETH";
37550
- }, {
37551
- readonly contractAddress: "0x506F678C8E426BA87427674f814AD2166c17981D";
37552
- readonly proxyAddress: "0x160AC928A16C93eD4895C2De6f81ECcE9a7eB7b4";
37553
- readonly decimals: 18;
37554
- readonly name: "LRC / ETH";
37555
37632
  }, {
37556
37633
  readonly contractAddress: "0x50e1007404025e412F13eD1e1C1e6F57957F6A6F";
37557
37634
  readonly proxyAddress: "0xe80baC615c38D01c101B0B1b943b05E20C8c2f76";
@@ -37693,6 +37770,11 @@ declare const chainlinkFeeds: {
37693
37770
  readonly proxyAddress: "0xCc70F09A6CC17553b2E31954cD36E4A2d89501f7";
37694
37771
  readonly decimals: 8;
37695
37772
  readonly name: "SUSHI / USD";
37773
+ }, {
37774
+ readonly contractAddress: "0x6594324b6bB0Bdf0C83b0B7ECd4a5c32889B442e";
37775
+ readonly proxyAddress: "0x25efbA0d9b115D233cfA849F16BA743E8FFba2a1";
37776
+ readonly decimals: 8;
37777
+ readonly name: "SPY-USD (24/5)";
37696
37778
  }, {
37697
37779
  readonly contractAddress: "0x6795D4A47c9c8F4117b409D966259CdCf6A9Eb6E";
37698
37780
  readonly proxyAddress: "0x9944D86CEB9160aF5C5feB251FD671923323f8C3";
@@ -37713,6 +37795,11 @@ declare const chainlinkFeeds: {
37713
37795
  readonly proxyAddress: "0x6029F53A5Df21E5e70C460F5E4c9Aad20427B090";
37714
37796
  readonly decimals: 2;
37715
37797
  readonly name: "BUIDL NAV";
37798
+ }, {
37799
+ readonly contractAddress: "0x6C659766386874a46dacd7a9aEf04818FD3b13F0";
37800
+ readonly proxyAddress: "0x3f929667bdf783b99274F10465a89d6aF772736E";
37801
+ readonly decimals: 18;
37802
+ readonly name: "ZEC / USD";
37716
37803
  }, {
37717
37804
  readonly contractAddress: "0x6Cc5173Ffd8d674C64f2DC7237730Ff021829865";
37718
37805
  readonly proxyAddress: "0x5C00128d4d1c2F4f652C267d7bcdD7aC99C16E16";
@@ -37728,6 +37815,11 @@ declare const chainlinkFeeds: {
37728
37815
  readonly proxyAddress: "0xB51dB716F1558Be00dE3DdAe4a94C9b605dEA526";
37729
37816
  readonly decimals: 18;
37730
37817
  readonly name: "sUSDD / USDD Exchange Rate";
37818
+ }, {
37819
+ readonly contractAddress: "0x6F751d443c2b2E7d45d42b52AC87CDbBB4B0f7DE";
37820
+ readonly proxyAddress: "0xA1D955b4E582C784583df7071B8a3Fb6d4bcaC42";
37821
+ readonly decimals: 8;
37822
+ readonly name: "QQQ-USD (24/5)";
37731
37823
  }, {
37732
37824
  readonly contractAddress: "0x6dFF3fE0bF312f54551788f843F06177fE89C4bd";
37733
37825
  readonly proxyAddress: "0x03c68933f7a3F76875C0bc670a58e69294cDFD01";
@@ -37749,6 +37841,11 @@ declare const chainlinkFeeds: {
37749
37841
  readonly proxyAddress: "0x656c0544eF4C98A6a98491833A89204Abb045d6b";
37750
37842
  readonly decimals: 18;
37751
37843
  readonly name: "KNC / ETH";
37844
+ }, {
37845
+ readonly contractAddress: "0x74acdD8Ca84fF6a9Eb0814e7F000b4F33195152d";
37846
+ readonly proxyAddress: "0x2c47b8CD75C818969b398911b70C633e280552d4";
37847
+ readonly decimals: 8;
37848
+ readonly name: "NVDA-USD (24/5)";
37752
37849
  }, {
37753
37850
  readonly contractAddress: "0x757EB2AF32c76621FEAE483c6458C04ba19906Ba";
37754
37851
  readonly proxyAddress: "0xe108E75d6bA28F14EA51F24F886c0B6BBeca575a";
@@ -37872,6 +37969,11 @@ declare const chainlinkFeeds: {
37872
37969
  readonly proxyAddress: "0xD10aBbC76679a20055E167BB80A24ac851b37056";
37873
37970
  readonly decimals: 8;
37874
37971
  readonly name: "APE / USD";
37972
+ }, {
37973
+ readonly contractAddress: "0x89fB24e1c41c74c712500B86399751b1DA463697";
37974
+ readonly proxyAddress: "0x0b9bD3eAac381A1a6731ff6598a50638E5CFFD25";
37975
+ readonly decimals: 8;
37976
+ readonly name: "CRDYX NAV";
37875
37977
  }, {
37876
37978
  readonly contractAddress: "0x8F73090a7c58B8BDcC9A93cBB6816e5cC4f01E8c";
37877
37979
  readonly proxyAddress: "0xB9E1E3A9feFf48998E45Fa90847ed4D467E8BcfD";
@@ -37984,22 +38086,17 @@ declare const chainlinkFeeds: {
37984
38086
  readonly proxyAddress: "0xB06A26DF4Ab5853AaCCF2d21FAa00B82362684C3";
37985
38087
  readonly decimals: 1;
37986
38088
  readonly name: "Real Final Sales to Private Domestic Purchasers — Percent Change (Annual Rate)";
37987
- }, {
37988
- readonly contractAddress: "0x9Bc91f0E55b0d6509F65fd8C4b34b89F23AEfA35";
37989
- readonly proxyAddress: "0xF0985f7E2CaBFf22CecC5a71282a89582c382EFE";
37990
- readonly decimals: 18;
37991
- readonly name: "FTT / ETH";
37992
- }, {
37993
- readonly contractAddress: "0x9E3AABA3B04264DD009437F48eBFD70713dd0667";
37994
- readonly proxyAddress: "0xAcFCF155a0de611414C510D43446c27a4EE6a758";
37995
- readonly decimals: 8;
37996
- readonly name: "WAMPL / USD";
37997
38089
  }, {
37998
38090
  readonly contractAddress: "0x9F6B06e826d3DF391285c695749F8f921F6972D9";
37999
38091
  readonly proxyAddress: "0x89904B6fcF8dAD1e5DA47dFdF69fC38Ad6be0bd5";
38000
38092
  readonly decimals: 8;
38001
38093
  readonly name: "SVR TSLAon-USD (Calculated)";
38002
38094
  readonly secondaryProxyAddress: "0xC557dcbc32A01a4FBf7b9E3107BAF283f059EDc7";
38095
+ }, {
38096
+ readonly contractAddress: "0x9b3a984d1abbe03845CBa7A895f1ff7f4209d59c";
38097
+ readonly proxyAddress: "0xaB5Dd7DD7669072a1Ef27c0ba241120A27A1aeC3";
38098
+ readonly decimals: 18;
38099
+ readonly name: "KAU Reserves";
38003
38100
  }, {
38004
38101
  readonly contractAddress: "0x9c7CF045f964B45FFC6AA0Ffbffd7bb6d1b470A3";
38005
38102
  readonly proxyAddress: "0x3C7dB4D25deAb7c89660512C5494Dc9A3FC40f78";
@@ -38017,11 +38114,6 @@ declare const chainlinkFeeds: {
38017
38114
  readonly decimals: 8;
38018
38115
  readonly name: "AAVE SVR USDT / USD";
38019
38116
  readonly secondaryProxyAddress: "0x62c2ab773B7324ad9e030D777989B3b5d5c54c0A";
38020
- }, {
38021
- readonly contractAddress: "0x9e6e40dC0A35D6eD96BB09D928261EB598523645";
38022
- readonly proxyAddress: "0x58921Ac140522867bf50b9E009599Da0CA4A2379";
38023
- readonly decimals: 18;
38024
- readonly name: "BADGER / ETH";
38025
38117
  }, {
38026
38118
  readonly contractAddress: "0xA0B5260BDfD1011C4bcdc7A099C75BFf6340B38C";
38027
38119
  readonly proxyAddress: "0xBcE206caE7f0ec07b545EddE332A47C2F75bbeb3";
@@ -38162,11 +38254,6 @@ declare const chainlinkFeeds: {
38162
38254
  readonly proxyAddress: "0x32EaFC72772821936BCc9b8A32dC394fEFcDBfD9";
38163
38255
  readonly decimals: 0;
38164
38256
  readonly name: "Arbitrum Healthcheck";
38165
- }, {
38166
- readonly contractAddress: "0xAfDA097A70d1AF8D93874Dd8cD55b7E082b5ee57";
38167
- readonly proxyAddress: "0x46cE854814ea38A4857AeA23aE7759b3A7970e4a";
38168
- readonly decimals: 18;
38169
- readonly name: "xSolvBTC NAV";
38170
38257
  }, {
38171
38258
  readonly contractAddress: "0xB30Aae40B630500D5c8140B7d1E5Bb1d61C86B64";
38172
38259
  readonly proxyAddress: "0xD93571A6201978976e37c4A0F7bE17806f2Feab2";
@@ -38192,6 +38279,11 @@ declare const chainlinkFeeds: {
38192
38279
  readonly proxyAddress: "0xb325F0730472204Ef9813cBdaf9D9e97A4a7b5F1";
38193
38280
  readonly decimals: 18;
38194
38281
  readonly name: "savBTC / avBTC Exchange Rate";
38282
+ }, {
38283
+ readonly contractAddress: "0xBa0477C34019E53c7C1C94b127D8892D7DFAFf2A";
38284
+ readonly proxyAddress: "0x35DDfB90011E686CCf837a6819562705076207EB";
38285
+ readonly decimals: 8;
38286
+ readonly name: "ACRED NAV";
38195
38287
  }, {
38196
38288
  readonly contractAddress: "0xBae95c3247AA52738C52d2Df94ac6932b6b1907F";
38197
38289
  readonly proxyAddress: "0x91b99C9b75aF469a71eE1AB528e8da994A5D7030";
@@ -38232,6 +38324,11 @@ declare const chainlinkFeeds: {
38232
38324
  readonly proxyAddress: "0x86392dC19c0b719886221c78AB11eb8Cf5c52812";
38233
38325
  readonly decimals: 18;
38234
38326
  readonly name: "STETH / ETH";
38327
+ }, {
38328
+ readonly contractAddress: "0xCB44fa91012781Ff12D4c258508b470B97F82D41";
38329
+ readonly proxyAddress: "0xB00341502DfEA6Ced8A5786b4059d29dA5E4D1FD";
38330
+ readonly decimals: 18;
38331
+ readonly name: "AUSD / USD";
38235
38332
  }, {
38236
38333
  readonly contractAddress: "0xCe14fF0ACf4a1e7Eab6802C64D317e3fD989f3C6";
38237
38334
  readonly proxyAddress: "0x60AEd7d20AC6328f7BA771aD58931c996aff30E8";
@@ -38242,6 +38339,11 @@ declare const chainlinkFeeds: {
38242
38339
  readonly proxyAddress: "0xa34317DB73e77d453b1B8d04550c44D10e981C8e";
38243
38340
  readonly decimals: 8;
38244
38341
  readonly name: "CAD / USD";
38342
+ }, {
38343
+ readonly contractAddress: "0xD0e3f81D467A1383F582D36a26E03E48D54cE391";
38344
+ readonly proxyAddress: "0xd92095BAf79a6ca6533019e952aDe0d3C5834f4b";
38345
+ readonly decimals: 8;
38346
+ readonly name: "VBILL NAV";
38245
38347
  }, {
38246
38348
  readonly contractAddress: "0xD0f0efAfB63ce1e46ae1aF84BCFE2A2A175E6797";
38247
38349
  readonly proxyAddress: "0xda9258AFc797Cd64d1b6FC651051224cdAB1B25E";
@@ -38312,11 +38414,6 @@ declare const chainlinkFeeds: {
38312
38414
  readonly proxyAddress: "0x7Fa89217C9bA5eb1307Aca6B84E99ed9220e076F";
38313
38415
  readonly decimals: 0;
38314
38416
  readonly name: "Celo Healthcheck";
38315
- }, {
38316
- readonly contractAddress: "0xF4cF94EB58b2a6eFd05A39dbdc5B02Cf33A509D8";
38317
- readonly proxyAddress: "0xd95044Eb392CdE502b1F903Fc978317462049E52";
38318
- readonly decimals: 8;
38319
- readonly name: "ATH / USD";
38320
38417
  }, {
38321
38418
  readonly contractAddress: "0xF69C2CdFa50C970235d059DfeEE767b27E02F260";
38322
38419
  readonly proxyAddress: "0x64c4c1BF5ec145CB6095A289249592B5bb007098";
@@ -38342,6 +38439,11 @@ declare const chainlinkFeeds: {
38342
38439
  readonly proxyAddress: "0xd27e6D02b72eB6FCe04Ad5690C419196B4EF2885";
38343
38440
  readonly decimals: 8;
38344
38441
  readonly name: "IBTA / USD";
38442
+ }, {
38443
+ readonly contractAddress: "0xa4dD65e17944d735CE35DfE12b92EAB8f679A510";
38444
+ readonly proxyAddress: "0x3BbccB2301759D2e4A5692bA72DAb4b75dC43B1a";
38445
+ readonly decimals: 6;
38446
+ readonly name: "JAAA NAV";
38345
38447
  }, {
38346
38448
  readonly contractAddress: "0xa685F0Bb86044e9c6A182A3689bBF8A98eB5764C";
38347
38449
  readonly proxyAddress: "0x0c89c488e763AC2d69cB058CCAC7A8B283EE3DbA";
@@ -38357,6 +38459,11 @@ declare const chainlinkFeeds: {
38357
38459
  readonly proxyAddress: "0x4ffC43a60e009B551865A93d232E33Fce9f01507";
38358
38460
  readonly decimals: 8;
38359
38461
  readonly name: "SOL / USD";
38462
+ }, {
38463
+ readonly contractAddress: "0xaF452c2EA72b6E08AB64a67133a13C4ED35343eb";
38464
+ readonly proxyAddress: "0xAFa801e508613be7CA88D2d0fDB3F84f4c1B0384";
38465
+ readonly decimals: 18;
38466
+ readonly name: "C1USD Reserves";
38360
38467
  }, {
38361
38468
  readonly contractAddress: "0xad88fc1A810379Ef4EFbF2D97EdE57e306178e5a";
38362
38469
  readonly proxyAddress: "0xd82562bb17557231Cd871e1B2525F3AB8d63D409";
@@ -38408,11 +38515,6 @@ declare const chainlinkFeeds: {
38408
38515
  readonly proxyAddress: "0xBAEbEFc1D023c0feCcc047Bff42E75F15Ff213E6";
38409
38516
  readonly decimals: 8;
38410
38517
  readonly name: "IMX / USD";
38411
- }, {
38412
- readonly contractAddress: "0xc4f25Fed1c2C5973947d5C90f7C9a32353ceEb22";
38413
- readonly proxyAddress: "0x14d04Fff8D21bd62987a5cE9ce543d2F1edF5D3E";
38414
- readonly decimals: 18;
38415
- readonly name: "FRAX / ETH";
38416
38518
  }, {
38417
38519
  readonly contractAddress: "0xc778E9686F0fde6Fe4D7d8fE4B481463Fce898fD";
38418
38520
  readonly proxyAddress: "0xDC3EA94CD0AC27d9A86C180091e7f78C683d3699";
@@ -38448,11 +38550,6 @@ declare const chainlinkFeeds: {
38448
38550
  readonly proxyAddress: "0x8dD1CD88F43aF196ae478e91b9F5E4Ac69A97C61";
38449
38551
  readonly decimals: 18;
38450
38552
  readonly name: "SHIB / ETH";
38451
- }, {
38452
- readonly contractAddress: "0xcD2d64424aBE57AB8c70d9f9253d0C6DffeBB2E7";
38453
- readonly proxyAddress: "0xE3fd61Cd8935EAE81e1c31AF36D7134e411490Cd";
38454
- readonly decimals: 8;
38455
- readonly name: "OUSDT / USD";
38456
38553
  }, {
38457
38554
  readonly contractAddress: "0xcd07B31D85756098334eDdC92DE755dEae8FE62f";
38458
38555
  readonly proxyAddress: "0xbd7F896e60B650C01caf2d7279a1148189A68884";
@@ -38547,6 +38644,11 @@ declare const chainlinkFeeds: {
38547
38644
  readonly proxyAddress: "0x14E5FC91Ddb3f97C33013Cc9fA74F54062Ad1Aa1";
38548
38645
  readonly decimals: 8;
38549
38646
  readonly name: "WLFI / USD";
38647
+ }, {
38648
+ readonly contractAddress: "0xecA1d16A120fC96Fe33CfEB64Adca70B678dFb8b";
38649
+ readonly proxyAddress: "0x42fC9d7c315Cf64Edc39ec984Bf89Bc34BbE9FD5";
38650
+ readonly decimals: 18;
38651
+ readonly name: "ezETH Proof of Reserves";
38550
38652
  }, {
38551
38653
  readonly contractAddress: "0xf17CB308606999DF25F5d4B9f74bD9fe47A5b3b3";
38552
38654
  readonly proxyAddress: "0xAbE7a3643615Ed32d3431e11E0Ee5A486Cb27d48";
@@ -38608,11 +38710,6 @@ declare const chainlinkFeeds: {
38608
38710
  readonly proxyAddress: "0x7CFB4fac1a2FDB1267F8bc17FADc12804AC13CFE";
38609
38711
  readonly decimals: 8;
38610
38712
  readonly name: "ONE / USD";
38611
- }, {
38612
- readonly contractAddress: "0x0542BbBfbc26A86EA92d2b7f6Da07DAf0CA091eD";
38613
- readonly proxyAddress: "0x2fF1EB7D0ceC35959F0248E9354c3248c6683D9b";
38614
- readonly decimals: 8;
38615
- readonly name: "FLOW / USD";
38616
38713
  }, {
38617
38714
  readonly contractAddress: "0x057B4ffE41aFb2104C3355a8396bab7c64E4017F";
38618
38715
  readonly proxyAddress: "0x5a61374950D4BFa5a3D4f2CA36FC1d23A92b6f21";
@@ -38713,11 +38810,6 @@ declare const chainlinkFeeds: {
38713
38810
  readonly proxyAddress: "0x73A3919a69eFCd5b19df8348c6740bB1446F5ed0";
38714
38811
  readonly decimals: 8;
38715
38812
  readonly name: "MIMATIC / USD";
38716
- }, {
38717
- readonly contractAddress: "0x1C1df24f0d06415fc3F58b1c1fDadd5fC85d2950";
38718
- readonly proxyAddress: "0x0ded608AFc23724f614B76955bbd9dFe7dDdc828";
38719
- readonly decimals: 8;
38720
- readonly name: "MATIC / USD";
38721
38813
  }, {
38722
38814
  readonly contractAddress: "0x1C4f2b051fdBE353d17c58Eca8FFb2fe15b5Da71";
38723
38815
  readonly proxyAddress: "0x14d2d3a82AeD4019FddDfe07E8bdc485fb0d2249";
@@ -38788,6 +38880,11 @@ declare const chainlinkFeeds: {
38788
38880
  readonly proxyAddress: "0x48f2EcF0Bd180239AEF474a9da945F2e2d41daA3";
38789
38881
  readonly decimals: 8;
38790
38882
  readonly name: "APT / USD";
38883
+ }, {
38884
+ readonly contractAddress: "0x36D86c4D65B534375380a31749c3E8c0E8756bD8";
38885
+ readonly proxyAddress: "0xAE33e077a02071E62d342E449Afd9895b016d541";
38886
+ readonly decimals: 8;
38887
+ readonly name: "SAND / USD";
38791
38888
  }, {
38792
38889
  readonly contractAddress: "0x384547665C7BF2bb7927E67A8a321E9a0c91Fe59";
38793
38890
  readonly proxyAddress: "0x89178957E9bD07934d7792fFc0CF39f11c8C2B1F";
@@ -38808,11 +38905,6 @@ declare const chainlinkFeeds: {
38808
38905
  readonly proxyAddress: "0xfa042d5F474d7A39454C594CCfE014Ea011495f2";
38809
38906
  readonly decimals: 8;
38810
38907
  readonly name: "GRT / USD";
38811
- }, {
38812
- readonly contractAddress: "0x44f690526B76D91072fb0427B0A24b882E612455";
38813
- readonly proxyAddress: "0x30D9d31C1ac29Bc2c2c312c1bCa9F8b3D60e2376";
38814
- readonly decimals: 8;
38815
- readonly name: "BAL / USD";
38816
38908
  }, {
38817
38909
  readonly contractAddress: "0x4713B96931c490F1B66D25cc2ac96Eb0AAFa2ac3";
38818
38910
  readonly proxyAddress: "0x0f2Ed59657e391746C1a097BDa98F2aBb94b1120";
@@ -38898,11 +38990,6 @@ declare const chainlinkFeeds: {
38898
38990
  readonly proxyAddress: "0xCc232dcFAAE6354cE191Bd574108c1aD03f86450";
38899
38991
  readonly decimals: 8;
38900
38992
  readonly name: "LINK / USD";
38901
- }, {
38902
- readonly contractAddress: "0x5d1345669278128B77AF9662C5D6B5e0b2FFD54A";
38903
- readonly proxyAddress: "0xAE33e077a02071E62d342E449Afd9895b016d541";
38904
- readonly decimals: 8;
38905
- readonly name: "SAND / USD";
38906
38993
  }, {
38907
38994
  readonly contractAddress: "0x5d782463840e3a2Ed55e425916d498319f289DEd";
38908
38995
  readonly proxyAddress: "0xD7bC56BBF8D555936cb5121f38d1d362c586776A";
@@ -39083,11 +39170,6 @@ declare const chainlinkFeeds: {
39083
39170
  readonly proxyAddress: "0xC663315f7aF904fbbB0F785c32046dFA03e85270";
39084
39171
  readonly decimals: 8;
39085
39172
  readonly name: "SOL / USD";
39086
- }, {
39087
- readonly contractAddress: "0x95836878f632c8797434a359ab3863892BF7eEcc";
39088
- readonly proxyAddress: "0x60025324DAB37DB3A623ea59Cc567937821EeA12";
39089
- readonly decimals: 8;
39090
- readonly name: "OUSDT / USD";
39091
39173
  }, {
39092
39174
  readonly contractAddress: "0x962e192e23fcc5Ec59141b58B112e5Fe0e0B70C0";
39093
39175
  readonly proxyAddress: "0x4e8e8F5b3d0f49e00F3DFb9CF827d1A0FBe33B21";
@@ -39263,11 +39345,6 @@ declare const chainlinkFeeds: {
39263
39345
  readonly proxyAddress: "0x6f6cED6B096708C1276056fdBdb7BbDe07Ca462C";
39264
39346
  readonly decimals: 8;
39265
39347
  readonly name: "SEI / USD";
39266
- }, {
39267
- readonly contractAddress: "0xa2eb6Ece70Cf255624ed2B2158A7dbC4dc4b02Ad";
39268
- readonly proxyAddress: "0x4244c9aE5B97269B7301B622E22932FA49fBb763";
39269
- readonly decimals: 8;
39270
- readonly name: "mooBIFI / USD";
39271
39348
  }, {
39272
39349
  readonly contractAddress: "0xa44681BdaE78DB54cAc3d7f862d6A5BaE8c79CbC";
39273
39350
  readonly proxyAddress: "0xFC3b7bd4368b2919f67E437f8c6Ca42C7FD55dd5";
@@ -39298,11 +39375,6 @@ declare const chainlinkFeeds: {
39298
39375
  readonly proxyAddress: "0x2FF8822F371b283604369700d6F06da3fBb31064";
39299
39376
  readonly decimals: 8;
39300
39377
  readonly name: "ZEC / USD";
39301
- }, {
39302
- readonly contractAddress: "0xb413D63Ac2e38a5A1C18834F20b958745dBeb998";
39303
- readonly proxyAddress: "0x7F102e5b4C32e0861293E97DE85e6E0dB3530605";
39304
- readonly decimals: 8;
39305
- readonly name: "WELL / USD";
39306
39378
  }, {
39307
39379
  readonly contractAddress: "0xb785e9aa87cDB29cC11a3f2b8bd17E6279275A35";
39308
39380
  readonly proxyAddress: "0x517C2557c29F7c53Aa5F97a1DAE465E0d5C174AA";
@@ -39455,11 +39527,6 @@ declare const chainlinkFeeds: {
39455
39527
  readonly proxyAddress: "0x14Ae6B76cd940Fa449381cdC9f3a098A3D39A730";
39456
39528
  readonly decimals: 18;
39457
39529
  readonly name: "savBTC / avBTC Exchange Rate";
39458
- }, {
39459
- readonly contractAddress: "0x1640C1a6984f744E069b65d5657c075935474d63";
39460
- readonly proxyAddress: "0xf7E7c0ffCB11dAC6eCA1434C67faB9aE000e10a7";
39461
- readonly decimals: 8;
39462
- readonly name: "WING / USD";
39463
39530
  }, {
39464
39531
  readonly contractAddress: "0x17d041D20a0b8693aA95c99FCdc5A2bd0126FDB3";
39465
39532
  readonly proxyAddress: "0x1a269eA1b209DA2c12bDCDab22635C9e6C5028B2";
@@ -39633,11 +39700,6 @@ declare const chainlinkFeeds: {
39633
39700
  readonly proxyAddress: "0xdC156E0Ec3C166cdE3d4Ab9912B79e1b916E3CB7";
39634
39701
  readonly decimals: 18;
39635
39702
  readonly name: "sUSDX / USDX Exchange Rate";
39636
- }, {
39637
- readonly contractAddress: "0x43CB601A5869Fc67f5D3389fE91C6c6fBC6F880b";
39638
- readonly proxyAddress: "0x9e7377E194E41d63795907c92c3EB351a2eb0233";
39639
- readonly decimals: 8;
39640
- readonly name: "WIN / USD";
39641
39703
  }, {
39642
39704
  readonly contractAddress: "0x44b24057e1cF7a58c86d06dFb12C83806DB7cA95";
39643
39705
  readonly proxyAddress: "0xd97aB9e5bD461eBcD55009791C410294f7B42Cdb";
@@ -39739,11 +39801,6 @@ declare const chainlinkFeeds: {
39739
39801
  readonly proxyAddress: "0xb056B7C804297279A9a673289264c17E6Dc6055d";
39740
39802
  readonly decimals: 8;
39741
39803
  readonly name: "ATOM / USD";
39742
- }, {
39743
- readonly contractAddress: "0x5A3b0851519Bfd72b681609137efF5b2E47C381b";
39744
- readonly proxyAddress: "0x47e01580C537Cd47dA339eA3a4aFb5998CCf037C";
39745
- readonly decimals: 8;
39746
- readonly name: "SPELL / USD";
39747
39804
  }, {
39748
39805
  readonly contractAddress: "0x5A69d0948b0607401cC821704b7E99916bc9452E";
39749
39806
  readonly proxyAddress: "0xbD4Bcf7DCFF34fd67525FceB3992cec53C23892A";
@@ -39813,6 +39870,11 @@ declare const chainlinkFeeds: {
39813
39870
  readonly decimals: 18;
39814
39871
  readonly name: "SVR TWT / BNB";
39815
39872
  readonly secondaryProxyAddress: "0x1A083354421Da4e26D78D55DAfaeBf4CFc541dAf";
39873
+ }, {
39874
+ readonly contractAddress: "0x66815140e049C986Ca00fae75591958c4c322a5e";
39875
+ readonly proxyAddress: "0xfa54C1c5F62ea3a5653a0b1b7148E26008eA1501";
39876
+ readonly decimals: 18;
39877
+ readonly name: "XAUM Reference Rate";
39816
39878
  }, {
39817
39879
  readonly contractAddress: "0x67AF9BF189380E91bF59a4EA0c7cCd9B710d6786";
39818
39880
  readonly proxyAddress: "0x337B4889fed5557595c37a45c1BB9b057cC670AE";
@@ -40025,11 +40087,6 @@ declare const chainlinkFeeds: {
40025
40087
  readonly proxyAddress: "0x3f5fc2cb37dA3B351F7EF968d72bE2eC3e1da08e";
40026
40088
  readonly decimals: 8;
40027
40089
  readonly name: "LISUSD / USD";
40028
- }, {
40029
- readonly contractAddress: "0xA90204b8Cffa45EDbca42CB577CDF6fafAbF0d33";
40030
- readonly proxyAddress: "0x9f1fD2cEf7b226D555A747DA0411F93c5fe74e13";
40031
- readonly decimals: 8;
40032
- readonly name: "VET / USD";
40033
40090
  }, {
40034
40091
  readonly contractAddress: "0xAA6778bD1313ff4BF4F07b671B3B89A12aDD0277";
40035
40092
  readonly proxyAddress: "0x964261740356cB4aaD0C3D2003Ce808A4176a46d";
@@ -40082,11 +40139,6 @@ declare const chainlinkFeeds: {
40082
40139
  readonly proxyAddress: "0xa3334A9762090E827413A7495AfeCE76F41dFc06";
40083
40140
  readonly decimals: 8;
40084
40141
  readonly name: "TUSD / USD";
40085
- }, {
40086
- readonly contractAddress: "0xBD25C33FFA560129E6346454faF0e8deBD0c0288";
40087
- readonly proxyAddress: "0x0E9D55932893Fb1308882C7857285B2B0bcc4f4a";
40088
- readonly decimals: 8;
40089
- readonly name: "FXS / USD";
40090
40142
  }, {
40091
40143
  readonly contractAddress: "0xC5E353BEd3a74cE79210aC6819355e8531616876";
40092
40144
  readonly proxyAddress: "0x4c75d01cfa4D998770b399246400a6dc40FB9645";
@@ -40127,11 +40179,6 @@ declare const chainlinkFeeds: {
40127
40179
  readonly proxyAddress: "0xBF63F430A79D4036A5900C19818aFf1fa710f206";
40128
40180
  readonly decimals: 8;
40129
40181
  readonly name: "XVS / USD";
40130
- }, {
40131
- readonly contractAddress: "0xD377b4D1ef943d0414Cc072ddAC1299940222A24";
40132
- readonly proxyAddress: "0xcF95796f3016801A1dA5C518Fc7A59C51dcEf793";
40133
- readonly decimals: 8;
40134
- readonly name: "ONG / USD";
40135
40182
  }, {
40136
40183
  readonly contractAddress: "0xDD746F1C05207D1478dC217F4e832786ABEd5C80";
40137
40184
  readonly proxyAddress: "0x84210d9013A30C6ab169e28840A6CC54B60fa042";
@@ -40190,6 +40237,11 @@ declare const chainlinkFeeds: {
40190
40237
  readonly proxyAddress: "0x20123C6ebd45c6496102BeEA86e1a6616Ca547c6";
40191
40238
  readonly decimals: 8;
40192
40239
  readonly name: "RDNT / USD";
40240
+ }, {
40241
+ readonly contractAddress: "0xF0030fA22Aeee34Aacc9a7F6B9190951b96D7FF2";
40242
+ readonly proxyAddress: "0x86b3897a1c755ac8f0e12263242141cdecF71CC2";
40243
+ readonly decimals: 18;
40244
+ readonly name: "RLP / USD Exchange Rate";
40193
40245
  }, {
40194
40246
  readonly contractAddress: "0xF2cb4eaa89Efc51aa79bA31F815361EB47Be34c5";
40195
40247
  readonly proxyAddress: "0xeDA73F8acb669274B15A977Cb0cdA57a84F18c2a";
@@ -40215,11 +40267,6 @@ declare const chainlinkFeeds: {
40215
40267
  readonly proxyAddress: "0x2a548935a323Bb7329a5E3F1667B979f16Bc890b";
40216
40268
  readonly decimals: 18;
40217
40269
  readonly name: "BCH / BNB";
40218
- }, {
40219
- readonly contractAddress: "0xFaA69Fc5efd347b9D6FD4709F7618d4E1449cA74";
40220
- readonly proxyAddress: "0x7CA57b0cA6367191c94C8914d7Df09A57655905f";
40221
- readonly decimals: 8;
40222
- readonly name: "MATIC / USD";
40223
40270
  }, {
40224
40271
  readonly contractAddress: "0xFbBc7E59dd02ADa97FfB0f85C36cE14B1A3Fdfc2";
40225
40272
  readonly proxyAddress: "0x08E70777b982a58D23D05E3D7714f44837c06A21";
@@ -40255,11 +40302,6 @@ declare const chainlinkFeeds: {
40255
40302
  readonly proxyAddress: "0xb7Ed5bE7977d61E83534230f3256C021e0fae0B6";
40256
40303
  readonly decimals: 8;
40257
40304
  readonly name: "AAPL / USD";
40258
- }, {
40259
- readonly contractAddress: "0xb208D9Ee1703674b7Ced85b615Db69d65430aF67";
40260
- readonly proxyAddress: "0x13A9c98b07F098c5319f4FF786eB16E22DC738e1";
40261
- readonly decimals: 8;
40262
- readonly name: "FRAX / USD";
40263
40305
  }, {
40264
40306
  readonly contractAddress: "0xb3Ea5aFbd958dB1d36b007e8B5DcD7cD33C5Db02";
40265
40307
  readonly proxyAddress: "0x0Db8945f9aEf5651fa5bd52314C5aAe78DfDe540";
@@ -40537,11 +40579,6 @@ declare const chainlinkFeeds: {
40537
40579
  readonly proxyAddress: "0x6D42cc26756C34F26BEcDD9b30a279cE9Ea8296E";
40538
40580
  readonly decimals: 8;
40539
40581
  readonly name: "BNB / USD";
40540
- }, {
40541
- readonly contractAddress: "0x9C1Dc429a8d8F10C8ebA522b608bC27F58d6ABE2";
40542
- readonly proxyAddress: "0x27d4D36968a2BD1Cc3406D99cB1DF50561dBf2a4";
40543
- readonly decimals: 8;
40544
- readonly name: "REN / USD";
40545
40582
  }, {
40546
40583
  readonly contractAddress: "0xB660dC68D4cf26F5ac1c1fDcD9e57d648FCf13d9";
40547
40584
  readonly proxyAddress: "0x2997eBa3d9c2447c36107bB0F082b8c33566b49c";
@@ -41228,11 +41265,6 @@ declare const chainlinkFeeds: {
41228
41265
  readonly proxyAddress: "0x5c3890e86f3E7Ed7F5390532De147953580f1605";
41229
41266
  readonly decimals: 8;
41230
41267
  readonly name: "USDe / USD";
41231
- }, {
41232
- readonly contractAddress: "0xbC71031a5588b6bDfEA3C2974bD6fa0F5b81d49b";
41233
- readonly proxyAddress: "0xF626964Ba5e81405f47e8004F0b276Bb974742B5";
41234
- readonly decimals: 8;
41235
- readonly name: "BADGER / USD";
41236
41268
  }, {
41237
41269
  readonly contractAddress: "0xbc128024295Ed113926C4Dd49fb71964cfc9D516";
41238
41270
  readonly proxyAddress: "0x692AE5510cA9070095A496dbcFBCDA99D4024Cd9";
@@ -41449,11 +41481,6 @@ declare const chainlinkFeeds: {
41449
41481
  readonly proxyAddress: "0x852aE0B1Af1aAeDB0fC4428B4B24420780976ca8";
41450
41482
  readonly decimals: 1;
41451
41483
  readonly name: "PCE Price Index — Percent Change (Annual Rate)";
41452
- }, {
41453
- readonly contractAddress: "0xB70b802953462312A47c857b940991108F8d43De";
41454
- readonly proxyAddress: "0x790181e93e9F4Eedb5b864860C12e4d2CffFe73B";
41455
- readonly decimals: 8;
41456
- readonly name: "OUSDT / USD";
41457
41484
  }, {
41458
41485
  readonly contractAddress: "0xBb223278eCE74329276099E71d0F0be70Ba74faC";
41459
41486
  readonly proxyAddress: "0xCdF021EbD115b1B225801F4056c40F4Ff14A574d";
@@ -41524,11 +41551,6 @@ declare const chainlinkFeeds: {
41524
41551
  readonly proxyAddress: "0xd3b87e6F953B1126056b914A8CBE78035fB3E241";
41525
41552
  readonly decimals: 18;
41526
41553
  readonly name: "PumpBTC / BTC Exchange Rate";
41527
- }, {
41528
- readonly contractAddress: "0xb35dC10BF66F82D3efD8f08BE49c3BEC31c6efe4";
41529
- readonly proxyAddress: "0x30caC44b395eB969C9CA0d44dF39e6E0aE8f8D94";
41530
- readonly decimals: 18;
41531
- readonly name: "OS / S";
41532
41554
  }, {
41533
41555
  readonly contractAddress: "0xc40650248C96027e8A7a86Cf96aA492004873E5d";
41534
41556
  readonly proxyAddress: "0x8f0240dc9C7644D121D370d8ee61FF9F2356521E";
@@ -41544,11 +41566,6 @@ declare const chainlinkFeeds: {
41544
41566
  readonly proxyAddress: "0x960BDD1dFD20d7c98fa482D793C3dedD73A113a3";
41545
41567
  readonly decimals: 18;
41546
41568
  readonly name: "uniBTC / BTC Exchange Rate";
41547
- }, {
41548
- readonly contractAddress: "0xd1B3e5248aF8781c1338D1Ea278618fB58955017";
41549
- readonly proxyAddress: "0x3cf9E4860bafe8e29eC8e1bC073436C5519684f4";
41550
- readonly decimals: 8;
41551
- readonly name: "scBTC / BTC";
41552
41569
  }, {
41553
41570
  readonly contractAddress: "0xd7221b10FBBC1e1ba95Fd0B4D031C15f7F365296";
41554
41571
  readonly proxyAddress: "0xfdee80dec97AF9AddcDccD208eC09d7Ea5eEbB9a";
@@ -41808,11 +41825,6 @@ declare const chainlinkFeeds: {
41808
41825
  readonly name: "frxETH / ETH Exchange Rate High";
41809
41826
  }];
41810
41827
  readonly "1868": readonly [{
41811
- readonly contractAddress: "0x0101EF4292188d0082121ED61854F25e4b79C600";
41812
- readonly proxyAddress: "0xEEDE303b8602Db7556eD57BDf7133A6bAADa294D";
41813
- readonly decimals: 18;
41814
- readonly name: "pufETH / ETH";
41815
- }, {
41816
41828
  readonly contractAddress: "0x0c617263C40231731f1264b8Ee5aA96A29eeA99F";
41817
41829
  readonly proxyAddress: "0x884E2819193d8c8993036290D5a8778Dbe3942f2";
41818
41830
  readonly decimals: 8;
@@ -41862,11 +41874,6 @@ declare const chainlinkFeeds: {
41862
41874
  readonly proxyAddress: "0x877654fE4da2FC54453a212aac601247b2A1B786";
41863
41875
  readonly decimals: 18;
41864
41876
  readonly name: "USR-USD Exchange Rate";
41865
- }, {
41866
- readonly contractAddress: "0x7DCcF223c077e8D1e2297d7788Bb6E62af89dFc9";
41867
- readonly proxyAddress: "0xF049354158e13F6794A3cCD236694E0e1BD9AF79";
41868
- readonly decimals: 8;
41869
- readonly name: "OUSDT / USD";
41870
41877
  }, {
41871
41878
  readonly contractAddress: "0x842291cfbEf554fF48197316136dF9beA63Eaac6";
41872
41879
  readonly proxyAddress: "0x4516fDa3259110EefAfC6fBcE266417B3F3b985a";
@@ -41933,11 +41940,6 @@ declare const chainlinkFeeds: {
41933
41940
  readonly proxyAddress: "0x5166FC3adff16E99bb099834a1315e57C5444394";
41934
41941
  readonly decimals: 8;
41935
41942
  readonly name: "USDe / USD";
41936
- }, {
41937
- readonly contractAddress: "0x1019a076F73432AAb97A73CD04e4B6Ad968C09C2";
41938
- readonly proxyAddress: "0xC5fD97adABf827e9FCC4ed936360f47080F35868";
41939
- readonly decimals: 8;
41940
- readonly name: "OUSDT / USD";
41941
41943
  }, {
41942
41944
  readonly contractAddress: "0x154650BD0B40E449214f9c544cE693889ae65f27";
41943
41945
  readonly proxyAddress: "0xaDE1b9AbB98c6A542E4B49db2588a3Ec4bF7Cdf0";
@@ -42197,6 +42199,11 @@ declare const chainlinkFeeds: {
42197
42199
  readonly proxyAddress: "0xb4482096e3cdE116C15fC0D700a73a58FEdeB8c0";
42198
42200
  readonly decimals: 18;
42199
42201
  readonly name: "ynETH / ETH Exchange Rate";
42202
+ }, {
42203
+ readonly contractAddress: "0x21F577D890e5c74e3f56E2C6C0ba4321B5D5bFc6";
42204
+ readonly proxyAddress: "0x7dBC779B2A6F9B9AaB83a2dED78A2F7E9e203f0c";
42205
+ readonly decimals: 8;
42206
+ readonly name: "XAG / USD";
42200
42207
  }, {
42201
42208
  readonly contractAddress: "0x21b1E4eA0E9AE2e79932662300eB12A0f90AbE59";
42202
42209
  readonly proxyAddress: "0x591e79239a7d679378eC8c847e5038150364C78F";
@@ -42292,11 +42299,6 @@ declare const chainlinkFeeds: {
42292
42299
  readonly proxyAddress: "0xc1a849217F3BaB97F1a46b990e369D6705B4be96";
42293
42300
  readonly decimals: 18;
42294
42301
  readonly name: "yUSD / USD Exchange Rate";
42295
- }, {
42296
- readonly contractAddress: "0x41F3a42270f161Ad1b25Cdb06bAd6cFC123E5C99";
42297
- readonly proxyAddress: "0x2B1de6AD89847C11aF2ede14edB013AA79E94aC9";
42298
- readonly decimals: 8;
42299
- readonly name: "MAG7.SSI / USD";
42300
42302
  }, {
42301
42303
  readonly contractAddress: "0x43F92e6805196FA6cd7a19F3d769957f95Baa261";
42302
42304
  readonly proxyAddress: "0xB366E8Efb9661323ff477CedF70f55F897D6cFeA";
@@ -42363,11 +42365,6 @@ declare const chainlinkFeeds: {
42363
42365
  readonly proxyAddress: "0x9f0C1dD78C4CBdF5b9cf923a549A201EdC676D34";
42364
42366
  readonly decimals: 8;
42365
42367
  readonly name: "XRP / USD";
42366
- }, {
42367
- readonly contractAddress: "0x55012EF027ae9b4E2bb5a5f529E5a1184Bcc998D";
42368
- readonly proxyAddress: "0x91D7AEd72bF772A0DA30199B925aCB866ACD3D9e";
42369
- readonly decimals: 8;
42370
- readonly name: "OGN / USD";
42371
42368
  }, {
42372
42369
  readonly contractAddress: "0x5526525178A842eB07e54cAE0d30c967d74bd0b7";
42373
42370
  readonly proxyAddress: "0x1E6A29666288a310326B37d823Fe4Ea3937424D2";
@@ -42480,11 +42477,6 @@ declare const chainlinkFeeds: {
42480
42477
  readonly proxyAddress: "0xe3971Ed6F1A5903321479Ef3148B5950c0612075";
42481
42478
  readonly decimals: 8;
42482
42479
  readonly name: "SNX / USD";
42483
- }, {
42484
- readonly contractAddress: "0x74E60B98A3FCaBcDDC66C5727Ab4bCccbad10ce7";
42485
- readonly proxyAddress: "0x8eC6a128a430f7A850165bcF18facc9520a9873F";
42486
- readonly decimals: 8;
42487
- readonly name: "VVV / USD";
42488
42480
  }, {
42489
42481
  readonly contractAddress: "0x74f70D08c92f1cd4Ed70B9aa3F8edC0bA5496a01";
42490
42482
  readonly proxyAddress: "0x5E988c11a4f92155C30D9fb69Ed75597f712B113";
@@ -42516,6 +42508,11 @@ declare const chainlinkFeeds: {
42516
42508
  readonly proxyAddress: "0xd9c5B59A913d75AC44EB51b7E0F3f5B58816ECAc";
42517
42509
  readonly decimals: 0;
42518
42510
  readonly name: "AAVE Network Emergency Count (Base)";
42511
+ }, {
42512
+ readonly contractAddress: "0x7f567Bf6EB08740F18Cd4de0A5716118954F731f";
42513
+ readonly proxyAddress: "0x900E653c6b25eCf1eF43525fcCC5263E654085cc";
42514
+ readonly decimals: 18;
42515
+ readonly name: "RLUSD / USD";
42519
42516
  }, {
42520
42517
  readonly contractAddress: "0x801B6E7d186370EeE854F76481643c22c7d1da99";
42521
42518
  readonly proxyAddress: "0xdEd37FC1400B8022968441356f771639ad1B23aA";
@@ -42568,11 +42565,6 @@ declare const chainlinkFeeds: {
42568
42565
  readonly decimals: 18;
42569
42566
  readonly name: "AAVE SVR LBTC / BTC Exchange Rate";
42570
42567
  readonly secondaryProxyAddress: "0xA6E3b91196afC536E4944B78aBb7DA41E7e18d6b";
42571
- }, {
42572
- readonly contractAddress: "0x8E6ec3E7d1E50db38D5690dF501530D5B2d0b58A";
42573
- readonly proxyAddress: "0x90F3676B40F6dc2C1E074985D0544Bb8e1815B00";
42574
- readonly decimals: 8;
42575
- readonly name: "CTX / USD";
42576
42568
  }, {
42577
42569
  readonly contractAddress: "0x8b535cC811c4E4c9CFf85b823479B1616CB5C7B5";
42578
42570
  readonly proxyAddress: "0x1E6c22AAA11F507af12034A5Dc4126A6A25DC8d2";
@@ -42599,11 +42591,6 @@ declare const chainlinkFeeds: {
42599
42591
  readonly decimals: 18;
42600
42592
  readonly name: "AAVE SVR WSTETH / STETH Exchange Rate";
42601
42593
  readonly secondaryProxyAddress: "0x2d4b8B1083a7C278B4C45c598De155e5f9b7A8D5";
42602
- }, {
42603
- readonly contractAddress: "0x9465CF4b4032080434E397F42fB99A8446c35376";
42604
- readonly proxyAddress: "0xd5Ec94430eF4170D819E0996BC53ed40d31638d8";
42605
- readonly decimals: 8;
42606
- readonly name: "USD+ / USD";
42607
42594
  }, {
42608
42595
  readonly contractAddress: "0x97100bac08Ef1532401041b5F864B4De999ab6D4";
42609
42596
  readonly proxyAddress: "0xC8D5D660bb585b68fa0263EeD7B4224a5FC99669";
@@ -42711,21 +42698,11 @@ declare const chainlinkFeeds: {
42711
42698
  readonly proxyAddress: "0x2a18E2d46Cb067b69e0759dB39b16597fC42D962";
42712
42699
  readonly decimals: 1;
42713
42700
  readonly name: "PCE Price Index — Percent Change (Annual Rate)";
42714
- }, {
42715
- readonly contractAddress: "0xCe14fF0ACf4a1e7Eab6802C64D317e3fD989f3C6";
42716
- readonly proxyAddress: "0x1fC950BbC12E93c15A3eEb62db978eb3cC567943";
42717
- readonly decimals: 8;
42718
- readonly name: "SYND / USD";
42719
42701
  }, {
42720
42702
  readonly contractAddress: "0xD0407a6524C7d9075E0b040dCEf4696129B2C3B4";
42721
42703
  readonly proxyAddress: "0xeDC243c7E3c1A9dAf067C90641D2346d2694d2e5";
42722
42704
  readonly decimals: 18;
42723
42705
  readonly name: "LSETH / ETH";
42724
- }, {
42725
- readonly contractAddress: "0xD27766C20dF630a7D7e1e5885ae581FB0e61828A";
42726
- readonly proxyAddress: "0xe25969e2Fa633a0C027fAB8F30Fc9C6A90D60B48";
42727
- readonly decimals: 8;
42728
- readonly name: "USDz / USD";
42729
42706
  }, {
42730
42707
  readonly contractAddress: "0xD41A2B9575eD27D38EC9B75B4d0DD9632a72e45b";
42731
42708
  readonly proxyAddress: "0x5218Ebeb96bD2bAFe21F9b143f5672552629ba79";
@@ -42777,11 +42754,6 @@ declare const chainlinkFeeds: {
42777
42754
  readonly proxyAddress: "0xFCb2C36ac8A91cE9D3c94590ED239E1f683467fe";
42778
42755
  readonly decimals: 8;
42779
42756
  readonly name: "USDAI / USD";
42780
- }, {
42781
- readonly contractAddress: "0xF4f6843A8003417b04EAbDd7a1bAe2cAFCBF0aCC";
42782
- readonly proxyAddress: "0x721F1B4dc604AEA0661Aa9982AB624e5756B31f2";
42783
- readonly decimals: 8;
42784
- readonly name: "mooBIFI / USD";
42785
42757
  }, {
42786
42758
  readonly contractAddress: "0xF929EC74AB71033792308dB7fbE82Eb87b42ac3E";
42787
42759
  readonly proxyAddress: "0x95Eba7bE2f755a298984bd714822994f1d4B6313";
@@ -42874,6 +42846,11 @@ declare const chainlinkFeeds: {
42874
42846
  readonly proxyAddress: "0xe2b3688371130f333443428Cf03f27Ce0378F9dC";
42875
42847
  readonly decimals: 1;
42876
42848
  readonly name: "Real Final Sales to Private Domestic Purchasers — Percent Change (Annual Rate)";
42849
+ }, {
42850
+ readonly contractAddress: "0xdc22706Ac082C85fE56A5ac4cc85A7b012490c35";
42851
+ readonly proxyAddress: "0xaABc55Ca55D70B034e4daA2551A224239890282F";
42852
+ readonly decimals: 18;
42853
+ readonly name: "VVV / USD";
42877
42854
  }, {
42878
42855
  readonly contractAddress: "0xe09bE26CF556F7211c16B75BE9fB4DB433A0d37E";
42879
42856
  readonly proxyAddress: "0x06bdFe07E71C476157FC025d3cCD4BBe08e83EF9";
@@ -43015,6 +42992,11 @@ declare const chainlinkFeeds: {
43015
42992
  readonly proxyAddress: "0x4050bD8263771f8BBded08C299BD944488a91AaD";
43016
42993
  readonly decimals: 18;
43017
42994
  readonly name: "instETH / ETH Exchange Rate";
42995
+ }, {
42996
+ readonly contractAddress: "0x11F15B46dFDcAE97FFCC08d4Fe2520CC09B8c959";
42997
+ readonly proxyAddress: "0xAa3024cF3f77bA88f8Fe9ff0D24903c50022f874";
42998
+ readonly decimals: 18;
42999
+ readonly name: "SAVUSD / AVUSD Exchange Rate";
43018
43000
  }, {
43019
43001
  readonly contractAddress: "0x126b9a529Dd6f14C62c494F6b6b5AA73d9f6F849";
43020
43002
  readonly proxyAddress: "0x3609baAa0a9b1f0FE4d6CC01884585d0e191C3E3";
@@ -43178,11 +43160,6 @@ declare const chainlinkFeeds: {
43178
43160
  readonly decimals: 8;
43179
43161
  readonly name: "AAVE SVR EURC / USD";
43180
43162
  readonly secondaryProxyAddress: "0x86e5D529Cb7cAeF5C475Aab0727a84739E12EA3F";
43181
- }, {
43182
- readonly contractAddress: "0x338D614Af8c05eF9d77a33E9D33A92b770809ED4";
43183
- readonly proxyAddress: "0x6548a81E640C000150e06AB413fB3F772682e9c5";
43184
- readonly decimals: 8;
43185
- readonly name: "USD+ / USD";
43186
43163
  }, {
43187
43164
  readonly contractAddress: "0x34EA4fc62510bd81a72399309f717B96F740A4AE";
43188
43165
  readonly proxyAddress: "0x7A58648CAeA88e042767823723aF266DC6c4c4D9";
@@ -43199,6 +43176,11 @@ declare const chainlinkFeeds: {
43199
43176
  readonly proxyAddress: "0x639Fe6ab55C921f74e7fac1ee960C0B6293ba612";
43200
43177
  readonly decimals: 8;
43201
43178
  readonly name: "ETH / USD";
43179
+ }, {
43180
+ readonly contractAddress: "0x377dB25BbD41Bf70746cC2936875AA6bDF58fD43";
43181
+ readonly proxyAddress: "0x4Fd4455b88D38945ca1B2ef2D499f805091EB5a6";
43182
+ readonly decimals: 18;
43183
+ readonly name: "SOLVBTC / BTC Exchange Rate";
43202
43184
  }, {
43203
43185
  readonly contractAddress: "0x37b300020b77d043F2A8cf7700f1b05d6d889090";
43204
43186
  readonly proxyAddress: "0xf2215b9c35b1697B5f47e407c917a40D055E68d7";
@@ -43209,11 +43191,6 @@ declare const chainlinkFeeds: {
43209
43191
  readonly proxyAddress: "0x054296f0D036b95531B4E14aFB578B80CFb41252";
43210
43192
  readonly decimals: 8;
43211
43193
  readonly name: "SNX / USD";
43212
- }, {
43213
- readonly contractAddress: "0x39fdD7815faDA275d666437D9571967Ef6417880";
43214
- readonly proxyAddress: "0x05Bc6e5Fb110589bb366A3Cd7CdBe143EeBA2168";
43215
- readonly decimals: 18;
43216
- readonly name: "SWETH / ETH";
43217
43194
  }, {
43218
43195
  readonly contractAddress: "0x3A00c8Ffe6d87C00c55543f3a265E153bC50e754";
43219
43196
  readonly proxyAddress: "0x9fa74925F21ad6C86d8f402EF490cFbA2Fa5e9bE";
@@ -43249,36 +43226,16 @@ declare const chainlinkFeeds: {
43249
43226
  readonly proxyAddress: null;
43250
43227
  readonly decimals: 18;
43251
43228
  readonly name: "ASTR/USD-RefPrice-DSstaging-Premium-Global-003";
43252
- }, {
43253
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43254
- readonly proxyAddress: null;
43255
- readonly decimals: 18;
43256
- readonly name: "REZ/USD-RefPrice-DSstaging-Premium-Global-003";
43257
- }, {
43258
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43259
- readonly proxyAddress: null;
43260
- readonly decimals: 18;
43261
- readonly name: "WOO/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43262
43229
  }, {
43263
43230
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43264
43231
  readonly proxyAddress: null;
43265
43232
  readonly decimals: 18;
43266
43233
  readonly name: "BONK/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43267
- }, {
43268
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43269
- readonly proxyAddress: null;
43270
- readonly decimals: 18;
43271
- readonly name: "PEOPLE/USD-RefPrice-DSstaging-Premium-Global-003";
43272
43234
  }, {
43273
43235
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43274
43236
  readonly proxyAddress: null;
43275
43237
  readonly decimals: 18;
43276
43238
  readonly name: "ATOM/USD-RefPrice-DSstaging-Premium-Global-003";
43277
- }, {
43278
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43279
- readonly proxyAddress: null;
43280
- readonly decimals: 18;
43281
- readonly name: "XAI/USD-RefPrice-DSstaging-Premium-Global-003";
43282
43239
  }, {
43283
43240
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43284
43241
  readonly proxyAddress: null;
@@ -43299,11 +43256,6 @@ declare const chainlinkFeeds: {
43299
43256
  readonly proxyAddress: null;
43300
43257
  readonly decimals: 18;
43301
43258
  readonly name: "ORDER/USD-RefPrice-DSstaging-Premium-Global-003";
43302
- }, {
43303
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43304
- readonly proxyAddress: null;
43305
- readonly decimals: 18;
43306
- readonly name: "BIGTIME/USD-RefPrice-DSstaging-Premium-Global-003";
43307
43259
  }, {
43308
43260
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43309
43261
  readonly proxyAddress: null;
@@ -43314,11 +43266,6 @@ declare const chainlinkFeeds: {
43314
43266
  readonly proxyAddress: null;
43315
43267
  readonly decimals: 18;
43316
43268
  readonly name: "ADA/USD-RefPrice-DSstaging-Premium-Global-003";
43317
- }, {
43318
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43319
- readonly proxyAddress: null;
43320
- readonly decimals: 18;
43321
- readonly name: "NOT/USD-RefPrice-DSstaging-Premium-Global-003";
43322
43269
  }, {
43323
43270
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43324
43271
  readonly proxyAddress: null;
@@ -43329,11 +43276,6 @@ declare const chainlinkFeeds: {
43329
43276
  readonly proxyAddress: null;
43330
43277
  readonly decimals: 18;
43331
43278
  readonly name: "PENDLE/USD-RefPrice-DSstaging-Premium-Global-003";
43332
- }, {
43333
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43334
- readonly proxyAddress: null;
43335
- readonly decimals: 18;
43336
- readonly name: "PIXEL/USD-RefPrice-DSstaging-Premium-Global-003";
43337
43279
  }, {
43338
43280
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43339
43281
  readonly proxyAddress: null;
@@ -43369,36 +43311,6 @@ declare const chainlinkFeeds: {
43369
43311
  readonly proxyAddress: null;
43370
43312
  readonly decimals: 18;
43371
43313
  readonly name: "MELANIA/USD-RefPrice-DSstaging-Premium-Global-003";
43372
- }, {
43373
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43374
- readonly proxyAddress: null;
43375
- readonly decimals: 18;
43376
- readonly name: "BLUR/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43377
- }, {
43378
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43379
- readonly proxyAddress: null;
43380
- readonly decimals: 18;
43381
- readonly name: "HOT/USD-RefPrice-DSstaging-Premium-Global-003";
43382
- }, {
43383
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43384
- readonly proxyAddress: null;
43385
- readonly decimals: 18;
43386
- readonly name: "MOG/USD-RefPrice-DSstaging-Premium-Global-003";
43387
- }, {
43388
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43389
- readonly proxyAddress: null;
43390
- readonly decimals: 18;
43391
- readonly name: "STG/USD-RefPrice-DSstaging-Premium-Global-003";
43392
- }, {
43393
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43394
- readonly proxyAddress: null;
43395
- readonly decimals: 18;
43396
- readonly name: "IQ/USD-RefPrice-DSstaging-Premium-Global-003";
43397
- }, {
43398
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43399
- readonly proxyAddress: null;
43400
- readonly decimals: 18;
43401
- readonly name: "ILV/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43402
43314
  }, {
43403
43315
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43404
43316
  readonly proxyAddress: null;
@@ -43454,16 +43366,6 @@ declare const chainlinkFeeds: {
43454
43366
  readonly proxyAddress: null;
43455
43367
  readonly decimals: 18;
43456
43368
  readonly name: "QNT/USD-RefPrice-DSstaging-Premium-Global-003";
43457
- }, {
43458
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43459
- readonly proxyAddress: null;
43460
- readonly decimals: 18;
43461
- readonly name: "AI/USD-RefPrice-DSstaging-Premium-Global-003";
43462
- }, {
43463
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43464
- readonly proxyAddress: null;
43465
- readonly decimals: 18;
43466
- readonly name: "C98/USD-RefPrice-DSstaging-Premium-Global-003";
43467
43369
  }, {
43468
43370
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43469
43371
  readonly proxyAddress: null;
@@ -43474,11 +43376,6 @@ declare const chainlinkFeeds: {
43474
43376
  readonly proxyAddress: null;
43475
43377
  readonly decimals: 18;
43476
43378
  readonly name: "PAXG/USD-RefPrice-DSstaging-Premium-Global-003";
43477
- }, {
43478
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43479
- readonly proxyAddress: null;
43480
- readonly decimals: 18;
43481
- readonly name: "EDU/USD-RefPrice-DSstaging-Premium-Global-003";
43482
43379
  }, {
43483
43380
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43484
43381
  readonly proxyAddress: null;
@@ -43494,16 +43391,6 @@ declare const chainlinkFeeds: {
43494
43391
  readonly proxyAddress: null;
43495
43392
  readonly decimals: 18;
43496
43393
  readonly name: "ICP/USD-RefPrice-DSstaging-Premium-Global-003";
43497
- }, {
43498
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43499
- readonly proxyAddress: null;
43500
- readonly decimals: 18;
43501
- readonly name: "MERL/USD-RefPrice-DSstaging-Premium-Global-003";
43502
- }, {
43503
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43504
- readonly proxyAddress: null;
43505
- readonly decimals: 18;
43506
- readonly name: "BLAST/USD-RefPrice-DSstaging-Premium-Global-003";
43507
43394
  }, {
43508
43395
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43509
43396
  readonly proxyAddress: null;
@@ -43529,11 +43416,6 @@ declare const chainlinkFeeds: {
43529
43416
  readonly proxyAddress: null;
43530
43417
  readonly decimals: 18;
43531
43418
  readonly name: "BNB/USD-RefPrice-DSstaging-Premium-Global-003";
43532
- }, {
43533
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43534
- readonly proxyAddress: null;
43535
- readonly decimals: 18;
43536
- readonly name: "LPT/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43537
43419
  }, {
43538
43420
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43539
43421
  readonly proxyAddress: null;
@@ -43549,11 +43431,6 @@ declare const chainlinkFeeds: {
43549
43431
  readonly proxyAddress: null;
43550
43432
  readonly decimals: 18;
43551
43433
  readonly name: "VIRTUAL/USD-RefPrice-DSstaging-Premium-Global-003";
43552
- }, {
43553
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43554
- readonly proxyAddress: null;
43555
- readonly decimals: 18;
43556
- readonly name: "IO/USD-RefPrice-DSstaging-Premium-Global-003";
43557
43434
  }, {
43558
43435
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43559
43436
  readonly proxyAddress: null;
@@ -43564,21 +43441,6 @@ declare const chainlinkFeeds: {
43564
43441
  readonly proxyAddress: null;
43565
43442
  readonly decimals: 18;
43566
43443
  readonly name: "GOAT/USD-RefPrice-DSstaging-Premium-Global-003";
43567
- }, {
43568
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43569
- readonly proxyAddress: null;
43570
- readonly decimals: 18;
43571
- readonly name: "RDNT/USD-RefPrice-DSstaging-Premium-Global-003";
43572
- }, {
43573
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43574
- readonly proxyAddress: null;
43575
- readonly decimals: 18;
43576
- readonly name: "TOKEN/USD-RefPrice-DSstaging-Premium-Global-003";
43577
- }, {
43578
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43579
- readonly proxyAddress: null;
43580
- readonly decimals: 18;
43581
- readonly name: "ZEREBRO/USD-RefPrice-DSstaging-Premium-Global-003";
43582
43444
  }, {
43583
43445
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43584
43446
  readonly proxyAddress: null;
@@ -43589,16 +43451,6 @@ declare const chainlinkFeeds: {
43589
43451
  readonly proxyAddress: null;
43590
43452
  readonly decimals: 18;
43591
43453
  readonly name: "LINK/USD-RefPrice-DSstaging-Premium-Global-003";
43592
- }, {
43593
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43594
- readonly proxyAddress: null;
43595
- readonly decimals: 18;
43596
- readonly name: "POLYX/USD-RefPrice-DSstaging-Premium-Global-003";
43597
- }, {
43598
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43599
- readonly proxyAddress: null;
43600
- readonly decimals: 18;
43601
- readonly name: "ARKM/USD-RefPrice-DSstaging-Premium-Global-003";
43602
43454
  }, {
43603
43455
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43604
43456
  readonly proxyAddress: null;
@@ -43629,11 +43481,6 @@ declare const chainlinkFeeds: {
43629
43481
  readonly proxyAddress: null;
43630
43482
  readonly decimals: 18;
43631
43483
  readonly name: "PENGU/USD-RefPrice-DSstaging-Premium-Global-003";
43632
- }, {
43633
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43634
- readonly proxyAddress: null;
43635
- readonly decimals: 18;
43636
- readonly name: "BB/USD-RefPrice-DSstaging-Premium-Global-003";
43637
43484
  }, {
43638
43485
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43639
43486
  readonly proxyAddress: null;
@@ -43674,26 +43521,11 @@ declare const chainlinkFeeds: {
43674
43521
  readonly proxyAddress: null;
43675
43522
  readonly decimals: 18;
43676
43523
  readonly name: "TURBO/USD-RefPrice-DSstaging-Premium-Global-003";
43677
- }, {
43678
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43679
- readonly proxyAddress: null;
43680
- readonly decimals: 18;
43681
- readonly name: "ETHFI/USD-RefPrice-DSstaging-Premium-Global-003";
43682
43524
  }, {
43683
43525
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43684
43526
  readonly proxyAddress: null;
43685
43527
  readonly decimals: 18;
43686
43528
  readonly name: "PEPE/USD-RefPrice-DSstaging-Premium-Global-003";
43687
- }, {
43688
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43689
- readonly proxyAddress: null;
43690
- readonly decimals: 18;
43691
- readonly name: "HMSTR/USD-RefPrice-DSstaging-Premium-Global-003";
43692
- }, {
43693
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43694
- readonly proxyAddress: null;
43695
- readonly decimals: 18;
43696
- readonly name: "MANTA/USD-RefPrice-DSstaging-Premium-Global-003";
43697
43529
  }, {
43698
43530
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43699
43531
  readonly proxyAddress: null;
@@ -43724,31 +43556,16 @@ declare const chainlinkFeeds: {
43724
43556
  readonly proxyAddress: null;
43725
43557
  readonly decimals: 18;
43726
43558
  readonly name: "SUI/USD-RefPrice-DSstaging-Premium-Global-003";
43727
- }, {
43728
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43729
- readonly proxyAddress: null;
43730
- readonly decimals: 18;
43731
- readonly name: "MANA/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43732
43559
  }, {
43733
43560
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43734
43561
  readonly proxyAddress: null;
43735
43562
  readonly decimals: 18;
43736
43563
  readonly name: "TRUMP/USD-RefPrice-DSstaging-Premium-Global-003";
43737
- }, {
43738
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43739
- readonly proxyAddress: null;
43740
- readonly decimals: 18;
43741
- readonly name: "CAT/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43742
43564
  }, {
43743
43565
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43744
43566
  readonly proxyAddress: null;
43745
43567
  readonly decimals: 18;
43746
43568
  readonly name: "KNC/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43747
- }, {
43748
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43749
- readonly proxyAddress: null;
43750
- readonly decimals: 18;
43751
- readonly name: "ID/USD-RefPrice-DSstaging-Premium-Global-003";
43752
43569
  }, {
43753
43570
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43754
43571
  readonly proxyAddress: null;
@@ -43764,16 +43581,6 @@ declare const chainlinkFeeds: {
43764
43581
  readonly proxyAddress: null;
43765
43582
  readonly decimals: 18;
43766
43583
  readonly name: "DAI/USD-RefPrice-DSstaging-Premium-Global-003";
43767
- }, {
43768
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43769
- readonly proxyAddress: null;
43770
- readonly decimals: 18;
43771
- readonly name: "CYBER/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43772
- }, {
43773
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43774
- readonly proxyAddress: null;
43775
- readonly decimals: 18;
43776
- readonly name: "CHR/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43777
43584
  }, {
43778
43585
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43779
43586
  readonly proxyAddress: null;
@@ -43789,11 +43596,6 @@ declare const chainlinkFeeds: {
43789
43596
  readonly proxyAddress: null;
43790
43597
  readonly decimals: 18;
43791
43598
  readonly name: "W/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43792
- }, {
43793
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43794
- readonly proxyAddress: null;
43795
- readonly decimals: 18;
43796
- readonly name: "POPCAT/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43797
43599
  }, {
43798
43600
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43799
43601
  readonly proxyAddress: null;
@@ -43829,21 +43631,6 @@ declare const chainlinkFeeds: {
43829
43631
  readonly proxyAddress: null;
43830
43632
  readonly decimals: 18;
43831
43633
  readonly name: "RENDER/USD-RefPrice-DSstaging-Premium-Global-003";
43832
- }, {
43833
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43834
- readonly proxyAddress: null;
43835
- readonly decimals: 18;
43836
- readonly name: "MAV/USD-RefPrice-DSstaging-Premium-Global-003";
43837
- }, {
43838
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43839
- readonly proxyAddress: null;
43840
- readonly decimals: 18;
43841
- readonly name: "ENS/USD-RefPrice-DSstaging-Premium-Global-003";
43842
- }, {
43843
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43844
- readonly proxyAddress: null;
43845
- readonly decimals: 18;
43846
- readonly name: "HOOK/USD-RefPrice-DSstaging-Premium-Global-003-dead";
43847
43634
  }, {
43848
43635
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43849
43636
  readonly proxyAddress: null;
@@ -43864,16 +43651,6 @@ declare const chainlinkFeeds: {
43864
43651
  readonly proxyAddress: null;
43865
43652
  readonly decimals: 18;
43866
43653
  readonly name: "DYDX/USD-RefPrice-DStaging-Premium-Global-003";
43867
- }, {
43868
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43869
- readonly proxyAddress: null;
43870
- readonly decimals: 18;
43871
- readonly name: "ALT/USD-RefPrice-DSstaging-Premium-Global-003";
43872
- }, {
43873
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43874
- readonly proxyAddress: null;
43875
- readonly decimals: 18;
43876
- readonly name: "COMP/USD-RefPrice-DSstaging-Premium-Global-003";
43877
43654
  }, {
43878
43655
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43879
43656
  readonly proxyAddress: null;
@@ -43899,11 +43676,6 @@ declare const chainlinkFeeds: {
43899
43676
  readonly proxyAddress: null;
43900
43677
  readonly decimals: 18;
43901
43678
  readonly name: "JUP/USD-RefPrice-DSstaging-Premium-Global-003";
43902
- }, {
43903
- readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43904
- readonly proxyAddress: null;
43905
- readonly decimals: 18;
43906
- readonly name: "ACE/USD-RefPrice-DSstaging-Premium-Global-003";
43907
43679
  }, {
43908
43680
  readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
43909
43681
  readonly proxyAddress: null;
@@ -44116,36 +43888,11 @@ declare const chainlinkFeeds: {
44116
43888
  readonly proxyAddress: "0xe7C53FFd03Eb6ceF7d208bC4C13446c76d1E5884";
44117
43889
  readonly decimals: 8;
44118
43890
  readonly name: "COMP / USD";
44119
- }, {
44120
- readonly contractAddress: "0x53368bC6a7eB4f4AF3d6974520FEba0295A5daAb";
44121
- readonly proxyAddress: "0xBE5eA816870D11239c543F84b71439511D70B94f";
44122
- readonly decimals: 8;
44123
- readonly name: "BAL / USD";
44124
43891
  }, {
44125
43892
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44126
43893
  readonly proxyAddress: null;
44127
43894
  readonly decimals: 18;
44128
43895
  readonly name: "GALA/USD-RefPrice-DS-Premium-Global-003";
44129
- }, {
44130
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44131
- readonly proxyAddress: null;
44132
- readonly decimals: 18;
44133
- readonly name: "POLYX/USD-RefPrice-DS-Premium-Global-003";
44134
- }, {
44135
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44136
- readonly proxyAddress: null;
44137
- readonly decimals: 18;
44138
- readonly name: "HOOK/USD-RefPrice-DS-Premium-Global-003";
44139
- }, {
44140
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44141
- readonly proxyAddress: null;
44142
- readonly decimals: 18;
44143
- readonly name: "ACE/USD-RefPrice-DS-Premium-Global-003";
44144
- }, {
44145
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44146
- readonly proxyAddress: null;
44147
- readonly decimals: 18;
44148
- readonly name: "BLUR/USD-RefPrice-DS-Premium-Global-003";
44149
43896
  }, {
44150
43897
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44151
43898
  readonly proxyAddress: null;
@@ -44156,21 +43903,11 @@ declare const chainlinkFeeds: {
44156
43903
  readonly proxyAddress: null;
44157
43904
  readonly decimals: 18;
44158
43905
  readonly name: "SATS/USD-RefPrice-DS-Premium-Global-003";
44159
- }, {
44160
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44161
- readonly proxyAddress: null;
44162
- readonly decimals: 18;
44163
- readonly name: "CHR/USD-RefPrice-DS-Premium-Global-003";
44164
43906
  }, {
44165
43907
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44166
43908
  readonly proxyAddress: null;
44167
43909
  readonly decimals: 18;
44168
43910
  readonly name: "STRK/USD-RefPrice-DS-Premium-Global-003";
44169
- }, {
44170
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44171
- readonly proxyAddress: null;
44172
- readonly decimals: 18;
44173
- readonly name: "BB/USD-RefPrice-DS-Premium-Global-003";
44174
43911
  }, {
44175
43912
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44176
43913
  readonly proxyAddress: null;
@@ -44186,11 +43923,6 @@ declare const chainlinkFeeds: {
44186
43923
  readonly proxyAddress: null;
44187
43924
  readonly decimals: 18;
44188
43925
  readonly name: "TRX/USD-RefPrice-DS-Premium-Global-003";
44189
- }, {
44190
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44191
- readonly proxyAddress: null;
44192
- readonly decimals: 18;
44193
- readonly name: "ID/USD-RefPrice-DS-Premium-Global-003";
44194
43926
  }, {
44195
43927
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44196
43928
  readonly proxyAddress: null;
@@ -44216,11 +43948,6 @@ declare const chainlinkFeeds: {
44216
43948
  readonly proxyAddress: null;
44217
43949
  readonly decimals: 18;
44218
43950
  readonly name: "JTO/USD-RefPrice-DS-Premium-Global-003";
44219
- }, {
44220
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44221
- readonly proxyAddress: null;
44222
- readonly decimals: 18;
44223
- readonly name: "MANA/USD-RefPrice-DS-Premium-Global-003";
44224
43951
  }, {
44225
43952
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44226
43953
  readonly proxyAddress: null;
@@ -44236,21 +43963,11 @@ declare const chainlinkFeeds: {
44236
43963
  readonly proxyAddress: null;
44237
43964
  readonly decimals: 18;
44238
43965
  readonly name: "JUP/USD-RefPrice-DS-Premium-Global-003";
44239
- }, {
44240
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44241
- readonly proxyAddress: null;
44242
- readonly decimals: 18;
44243
- readonly name: "MOG/USD-RefPrice-DS-Premium-Global-003";
44244
43966
  }, {
44245
43967
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44246
43968
  readonly proxyAddress: null;
44247
43969
  readonly decimals: 18;
44248
43970
  readonly name: "SAND/USD-RefPrice-DS-Premium-Global-003";
44249
- }, {
44250
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44251
- readonly proxyAddress: null;
44252
- readonly decimals: 18;
44253
- readonly name: "REZ/USD-RefPrice-DS-Premium-Global-003";
44254
43971
  }, {
44255
43972
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44256
43973
  readonly proxyAddress: null;
@@ -44311,11 +44028,6 @@ declare const chainlinkFeeds: {
44311
44028
  readonly proxyAddress: null;
44312
44029
  readonly decimals: 18;
44313
44030
  readonly name: "BRETT/USD-RefPrice-DS-Premium-Global-003";
44314
- }, {
44315
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44316
- readonly proxyAddress: null;
44317
- readonly decimals: 18;
44318
- readonly name: "IO/USD-RefPrice-DS-Premium-Global-003";
44319
44031
  }, {
44320
44032
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44321
44033
  readonly proxyAddress: null;
@@ -44351,41 +44063,16 @@ declare const chainlinkFeeds: {
44351
44063
  readonly proxyAddress: null;
44352
44064
  readonly decimals: 18;
44353
44065
  readonly name: "TIA/USD-RefPrice-DS-Premium-Global-003";
44354
- }, {
44355
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44356
- readonly proxyAddress: null;
44357
- readonly decimals: 18;
44358
- readonly name: "MERL/USD-RefPrice-DS-Premium-Global-003";
44359
- }, {
44360
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44361
- readonly proxyAddress: null;
44362
- readonly decimals: 18;
44363
- readonly name: "STG/USD-RefPrice-DS-Premium-Global-003";
44364
44066
  }, {
44365
44067
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44366
44068
  readonly proxyAddress: null;
44367
44069
  readonly decimals: 18;
44368
44070
  readonly name: "RENDER/USD-RefPrice-DS-Premium-Global-003";
44369
- }, {
44370
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44371
- readonly proxyAddress: null;
44372
- readonly decimals: 18;
44373
- readonly name: "PEOPLE/USD-RefPrice-DS-Premium-Global-003";
44374
- }, {
44375
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44376
- readonly proxyAddress: null;
44377
- readonly decimals: 18;
44378
- readonly name: "XAI/USD-RefPrice-DS-Premium-Global-003";
44379
44071
  }, {
44380
44072
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44381
44073
  readonly proxyAddress: null;
44382
44074
  readonly decimals: 18;
44383
44075
  readonly name: "XTZ/USD-RefPrice-DS-Premium-Global-003";
44384
- }, {
44385
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44386
- readonly proxyAddress: null;
44387
- readonly decimals: 18;
44388
- readonly name: "NOT/USD-RefPrice-DS-Premium-Global-003";
44389
44076
  }, {
44390
44077
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44391
44078
  readonly proxyAddress: null;
@@ -44421,21 +44108,6 @@ declare const chainlinkFeeds: {
44421
44108
  readonly proxyAddress: null;
44422
44109
  readonly decimals: 18;
44423
44110
  readonly name: "GRT/USD-RefPrice-DS-Premium-Global-003";
44424
- }, {
44425
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44426
- readonly proxyAddress: null;
44427
- readonly decimals: 18;
44428
- readonly name: "EDU/USD-RefPrice-DS-Premium-Global-003";
44429
- }, {
44430
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44431
- readonly proxyAddress: null;
44432
- readonly decimals: 18;
44433
- readonly name: "CYBER/USD-RefPrice-DS-Premium-Global-003";
44434
- }, {
44435
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44436
- readonly proxyAddress: null;
44437
- readonly decimals: 18;
44438
- readonly name: "WOO/USD-RefPrice-DS-Premium-Global-003";
44439
44111
  }, {
44440
44112
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44441
44113
  readonly proxyAddress: null;
@@ -44456,11 +44128,6 @@ declare const chainlinkFeeds: {
44456
44128
  readonly proxyAddress: null;
44457
44129
  readonly decimals: 18;
44458
44130
  readonly name: "UNI/USD-RefPrice-DS-Premium-Global-003";
44459
- }, {
44460
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44461
- readonly proxyAddress: null;
44462
- readonly decimals: 18;
44463
- readonly name: "ETHFI/USD-RefPrice-DS-Premium-Global-003";
44464
44131
  }, {
44465
44132
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44466
44133
  readonly proxyAddress: null;
@@ -44496,21 +44163,6 @@ declare const chainlinkFeeds: {
44496
44163
  readonly proxyAddress: null;
44497
44164
  readonly decimals: 18;
44498
44165
  readonly name: "ONDO/USD-RefPrice-DS-Premium-Global-003";
44499
- }, {
44500
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44501
- readonly proxyAddress: null;
44502
- readonly decimals: 18;
44503
- readonly name: "C98/USD-RefPrice-DS-Premium-Global-003";
44504
- }, {
44505
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44506
- readonly proxyAddress: null;
44507
- readonly decimals: 18;
44508
- readonly name: "BIGTIME/USD-RefPrice-DS-Premium-Global-003";
44509
- }, {
44510
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44511
- readonly proxyAddress: null;
44512
- readonly decimals: 18;
44513
- readonly name: "RDNT/USD-RefPrice-DS-Premium-Global-003";
44514
44166
  }, {
44515
44167
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44516
44168
  readonly proxyAddress: null;
@@ -44521,11 +44173,6 @@ declare const chainlinkFeeds: {
44521
44173
  readonly proxyAddress: null;
44522
44174
  readonly decimals: 18;
44523
44175
  readonly name: "VIRTUAL/USD-RefPrice-DS-Premium-Global-003";
44524
- }, {
44525
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44526
- readonly proxyAddress: null;
44527
- readonly decimals: 18;
44528
- readonly name: "MANTA/USD-RefPrice-DS-Premium-Global-003";
44529
44176
  }, {
44530
44177
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44531
44178
  readonly proxyAddress: null;
@@ -44536,11 +44183,6 @@ declare const chainlinkFeeds: {
44536
44183
  readonly proxyAddress: null;
44537
44184
  readonly decimals: 18;
44538
44185
  readonly name: "MKR/USD-RefPrice-DS-Premium-Global-003";
44539
- }, {
44540
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44541
- readonly proxyAddress: null;
44542
- readonly decimals: 18;
44543
- readonly name: "BLAST/USD-RefPrice-DS-Premium-Global-003";
44544
44186
  }, {
44545
44187
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44546
44188
  readonly proxyAddress: null;
@@ -44556,21 +44198,6 @@ declare const chainlinkFeeds: {
44556
44198
  readonly proxyAddress: null;
44557
44199
  readonly decimals: 18;
44558
44200
  readonly name: "ZEC/USD-RefPrice-DS-Premium-Global-003";
44559
- }, {
44560
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44561
- readonly proxyAddress: null;
44562
- readonly decimals: 18;
44563
- readonly name: "ENS/USD-RefPrice-DS-Premium-Global-003";
44564
- }, {
44565
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44566
- readonly proxyAddress: null;
44567
- readonly decimals: 18;
44568
- readonly name: "ILV/USD-RefPrice-DS-Premium-Global-003";
44569
- }, {
44570
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44571
- readonly proxyAddress: null;
44572
- readonly decimals: 18;
44573
- readonly name: "HMSTR/USD-RefPrice-DS-Premium-Global-003";
44574
44201
  }, {
44575
44202
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44576
44203
  readonly proxyAddress: null;
@@ -44601,11 +44228,6 @@ declare const chainlinkFeeds: {
44601
44228
  readonly proxyAddress: null;
44602
44229
  readonly decimals: 18;
44603
44230
  readonly name: "AVAX/USD-RefPrice-DS-Premium-Global-003";
44604
- }, {
44605
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44606
- readonly proxyAddress: null;
44607
- readonly decimals: 18;
44608
- readonly name: "COMP/USD-RefPrice-DS-Premium-Global-003";
44609
44231
  }, {
44610
44232
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44611
44233
  readonly proxyAddress: null;
@@ -44626,11 +44248,6 @@ declare const chainlinkFeeds: {
44626
44248
  readonly proxyAddress: null;
44627
44249
  readonly decimals: 18;
44628
44250
  readonly name: "OP/USD-RefPrice-DS-Premium-Global-003";
44629
- }, {
44630
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44631
- readonly proxyAddress: null;
44632
- readonly decimals: 18;
44633
- readonly name: "TOKEN/USD-RefPrice-DS-Premium-Global-003";
44634
44251
  }, {
44635
44252
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44636
44253
  readonly proxyAddress: null;
@@ -44651,11 +44268,6 @@ declare const chainlinkFeeds: {
44651
44268
  readonly proxyAddress: null;
44652
44269
  readonly decimals: 18;
44653
44270
  readonly name: "ORDER/USD-RefPrice-DS-Premium-Global-003";
44654
- }, {
44655
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44656
- readonly proxyAddress: null;
44657
- readonly decimals: 18;
44658
- readonly name: "MAV/USD-RefPrice-DS-Premium-Global-003";
44659
44271
  }, {
44660
44272
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44661
44273
  readonly proxyAddress: null;
@@ -44671,21 +44283,11 @@ declare const chainlinkFeeds: {
44671
44283
  readonly proxyAddress: null;
44672
44284
  readonly decimals: 18;
44673
44285
  readonly name: "BERA/USD-RefPrice-DS-Premium-Global-003";
44674
- }, {
44675
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44676
- readonly proxyAddress: null;
44677
- readonly decimals: 18;
44678
- readonly name: "ZEREBRO/USD-RefPrice-DS-Premium-Global-003";
44679
44286
  }, {
44680
44287
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44681
44288
  readonly proxyAddress: null;
44682
44289
  readonly decimals: 18;
44683
44290
  readonly name: "ATOM/USD-RefPrice-DS-Premium-Global-003";
44684
- }, {
44685
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44686
- readonly proxyAddress: null;
44687
- readonly decimals: 18;
44688
- readonly name: "PIXEL/USD-RefPrice-DS-Premium-Global-003";
44689
44291
  }, {
44690
44292
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44691
44293
  readonly proxyAddress: null;
@@ -44721,31 +44323,16 @@ declare const chainlinkFeeds: {
44721
44323
  readonly proxyAddress: null;
44722
44324
  readonly decimals: 18;
44723
44325
  readonly name: "ORDI/USD-RefPrice-DS-Premium-Global-003";
44724
- }, {
44725
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44726
- readonly proxyAddress: null;
44727
- readonly decimals: 18;
44728
- readonly name: "IQ/USD-RefPrice-DS-Premium-Global-003";
44729
44326
  }, {
44730
44327
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44731
44328
  readonly proxyAddress: null;
44732
44329
  readonly decimals: 18;
44733
44330
  readonly name: "EGLD/USD-RefPrice-DS-Premium-Global-003";
44734
- }, {
44735
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44736
- readonly proxyAddress: null;
44737
- readonly decimals: 18;
44738
- readonly name: "ALT/USD-RefPrice-DS-Premium-Global-003";
44739
44331
  }, {
44740
44332
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44741
44333
  readonly proxyAddress: null;
44742
44334
  readonly decimals: 18;
44743
44335
  readonly name: "DOGS/USD-RefPrice-DS-Premium-Global-003";
44744
- }, {
44745
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44746
- readonly proxyAddress: null;
44747
- readonly decimals: 18;
44748
- readonly name: "HOT/USD-RefPrice-DS-Premium-Global-003";
44749
44336
  }, {
44750
44337
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44751
44338
  readonly proxyAddress: null;
@@ -44761,11 +44348,6 @@ declare const chainlinkFeeds: {
44761
44348
  readonly proxyAddress: null;
44762
44349
  readonly decimals: 18;
44763
44350
  readonly name: "SCR/USD-RefPrice-DS-Premium-Global-003";
44764
- }, {
44765
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44766
- readonly proxyAddress: null;
44767
- readonly decimals: 18;
44768
- readonly name: "ARKM/USD-RefPrice-DS-Premium-Global-003";
44769
44351
  }, {
44770
44352
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44771
44353
  readonly proxyAddress: null;
@@ -44781,11 +44363,6 @@ declare const chainlinkFeeds: {
44781
44363
  readonly proxyAddress: null;
44782
44364
  readonly decimals: 18;
44783
44365
  readonly name: "ZRO/USD-RefPrice-DS-Premium-Global-003";
44784
- }, {
44785
- readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44786
- readonly proxyAddress: null;
44787
- readonly decimals: 18;
44788
- readonly name: "AI/USD-RefPrice-DS-Premium-Global-003";
44789
44366
  }, {
44790
44367
  readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
44791
44368
  readonly proxyAddress: null;
@@ -44963,12 +44540,6 @@ declare const chainlinkFeeds: {
44963
44540
  readonly proxyAddress: "0x9ca3D04Bdf90Ddc0074Ea57d3e2D331CD4b2d5a2";
44964
44541
  readonly decimals: 8;
44965
44542
  readonly name: "solvBTC / BTC";
44966
- }, {
44967
- readonly contractAddress: "0x7399107Df5344E0b928e75f3ACfa90569eC20848";
44968
- readonly proxyAddress: "0x16F384AeF73f3f3f7B566125b1f144Bc7c847b1E";
44969
- readonly decimals: 8;
44970
- readonly name: "SVR FRAX / USD";
44971
- readonly secondaryProxyAddress: "0x7537F8c0f8F7E7def07BF9e91e636e55881C7A66";
44972
44543
  }, {
44973
44544
  readonly contractAddress: "0x73BBf768a429a4f80c47D0d22DdBCe5823c97d7a";
44974
44545
  readonly proxyAddress: "0x052d4200b624b07262F574af26C71A6553996Ab5";
@@ -45074,11 +44645,6 @@ declare const chainlinkFeeds: {
45074
44645
  readonly proxyAddress: "0xE8f8AfE4b56c6C421F691bfAc225cE61b2C7CD05";
45075
44646
  readonly decimals: 8;
45076
44647
  readonly name: "TRY / USD";
45077
- }, {
45078
- readonly contractAddress: "0x884720E3da9094190dC25911B4e0E61D79562788";
45079
- readonly proxyAddress: "0x8883045300Eaf3b1Bb1b3b17F9B4d70EfF50212a";
45080
- readonly decimals: 18;
45081
- readonly name: "ULTI / USD";
45082
44648
  }, {
45083
44649
  readonly contractAddress: "0x8ABe008B267C82199EC81E7f80eE4DC3A3545c82";
45084
44650
  readonly proxyAddress: "0x9eE96caa9972c801058CAA8E23419fc6516FbF7e";
@@ -45104,11 +44670,6 @@ declare const chainlinkFeeds: {
45104
44670
  readonly proxyAddress: "0x2483326d19f780Fb082f333Fe124e4C075B207ba";
45105
44671
  readonly decimals: 18;
45106
44672
  readonly name: "sUSDS / USDS Exchange Rate";
45107
- }, {
45108
- readonly contractAddress: "0x8f99f05E0a5Fa19579525A60801A0F473adB1CE1";
45109
- readonly proxyAddress: "0x300b0990Ba191a1AeBef6e5Ed8B5B308C0B2d0c9";
45110
- readonly decimals: 8;
45111
- readonly name: "XVS / USD";
45112
44673
  }, {
45113
44674
  readonly contractAddress: "0x920d90b3953B3C90b06ebE8579B0215d6801DA54";
45114
44675
  readonly proxyAddress: "0xe4c31C5B118d8aA92433eD1c7EC70afb430cd730";
@@ -45400,11 +44961,6 @@ declare const chainlinkFeeds: {
45400
44961
  readonly proxyAddress: "0xDC1a8F77Cdc46D1Fb7F22F94dFCA4dDBf566fA23";
45401
44962
  readonly decimals: 1;
45402
44963
  readonly name: "Real GDP — Percent Change (Annual Rate)";
45403
- }, {
45404
- readonly contractAddress: "0xa44BCD128E99188565c4849cdfFEea9C773f74ec";
45405
- readonly proxyAddress: "0x04180965a782E487d0632013ABa488A472243542";
45406
- readonly decimals: 8;
45407
- readonly name: "JOE / USD";
45408
44964
  }, {
45409
44965
  readonly contractAddress: "0xa4598924ca0cbEbB2D850684a9BFc0a7D1D848EB";
45410
44966
  readonly proxyAddress: "0x1f5C0C2CD2e9Ad1eE475660AF0bBa27aE7d87f5e";
@@ -45467,6 +45023,16 @@ declare const chainlinkFeeds: {
45467
45023
  readonly proxyAddress: "0xdc49F292ad1bb3DAb6C11363d74ED06F38b9bd9C";
45468
45024
  readonly decimals: 8;
45469
45025
  readonly name: "APT / USD";
45026
+ }, {
45027
+ readonly contractAddress: "0xb915D2b9d10df9Df8043F6d72fECDbA36edBdB60";
45028
+ readonly proxyAddress: "0x9dC30b7242556F871932AFe38CC34d2a77E6F6C9";
45029
+ readonly decimals: 18;
45030
+ readonly name: "DAI / USD CAPPED";
45031
+ }, {
45032
+ readonly contractAddress: "0xb930631CF1A4158903Acaf30CAa716cC320c936F";
45033
+ readonly proxyAddress: "0xb2378F24E6d543cd28A8edcc7d2bE517FC9e074c";
45034
+ readonly decimals: 18;
45035
+ readonly name: "LUSD / USD CAPPED";
45470
45036
  }, {
45471
45037
  readonly contractAddress: "0xb98512d5a21e13cf27b84Cc90eA118AE14134A76";
45472
45038
  readonly proxyAddress: "0x021126143D0B6e20Bb69beFcc860e7E523df8055";
@@ -45654,16 +45220,16 @@ declare const chainlinkFeeds: {
45654
45220
  readonly proxyAddress: "0x066Ba4567C40cB315EAd257Bd86585bb4a74004f";
45655
45221
  readonly decimals: 3;
45656
45222
  readonly name: "PCE Price Index — Level";
45223
+ }, {
45224
+ readonly contractAddress: "0xf1a81F33CDe09D59B64d0BE084971b9FBbA776E7";
45225
+ readonly proxyAddress: "0x21082CA28570f0ccfb089465bFaEfDc77b00D367";
45226
+ readonly decimals: 18;
45227
+ readonly name: "ZEC / USD";
45657
45228
  }, {
45658
45229
  readonly contractAddress: "0xf6bACC7750c23A34b996A355A6E78b17Fc4BaEdC";
45659
45230
  readonly proxyAddress: "0x383b3624478124697BEF675F07cA37570b73992f";
45660
45231
  readonly decimals: 8;
45661
45232
  readonly name: "SPELL / USD";
45662
- }, {
45663
- readonly contractAddress: "0xf8C6DE435CF8d06897a4A66b21df623D06d2A761";
45664
- readonly proxyAddress: "0x36a121448D74Fa81450c992A1a44B9b7377CD3a5";
45665
- readonly decimals: 8;
45666
- readonly name: "FXS / USD";
45667
45233
  }, {
45668
45234
  readonly contractAddress: "0xf8abb3c41A3b21687Ad862C9Fd00D007E413EEAA";
45669
45235
  readonly proxyAddress: "0x6FfBc6339DD46a7e0513D4887106349214C05505";
@@ -45876,11 +45442,6 @@ declare const chainlinkFeeds: {
45876
45442
  readonly proxyAddress: "0xCF60B4E089eA1ABA29C01b017b38c2f7D69Eb36B";
45877
45443
  readonly decimals: 18;
45878
45444
  readonly name: "WSTETH / ETH";
45879
- }, {
45880
- readonly contractAddress: "0x15505bcC6D3c6f8F3cfC3d6D96f5A6301A08D2cc";
45881
- readonly proxyAddress: "0x7B0ca9A6D03FE0467A31Ca850f5bcA51e027B3aF";
45882
- readonly decimals: 8;
45883
- readonly name: "ALPHA / USD";
45884
45445
  }, {
45885
45446
  readonly contractAddress: "0x184CCa2bA7015052424Fa2f509fB252926789D7C";
45886
45447
  readonly proxyAddress: "0x7Ee401373A92f885a7C3A53CF46dbe661eaFb1C0";
@@ -45976,11 +45537,6 @@ declare const chainlinkFeeds: {
45976
45537
  readonly proxyAddress: "0x69C2703b8F1A85a2EF6aBDd085699a9F909BE053";
45977
45538
  readonly decimals: 8;
45978
45539
  readonly name: "ADA / USD";
45979
- }, {
45980
- readonly contractAddress: "0x461b95e560697B0C83AB569f06034832a4b62707";
45981
- readonly proxyAddress: "0x99311B4bf6D8E3D3B4b9fbdD09a1B0F4Ad8e06E9";
45982
- readonly decimals: 8;
45983
- readonly name: "BTC.b Proof of Reserves";
45984
45540
  }, {
45985
45541
  readonly contractAddress: "0x4A5cE69A1aDA639042B30e1574Eb9D6e939388A3";
45986
45542
  readonly proxyAddress: "0x5C2d58627Fbe746f5ea24Ef6D618f09f8e3f0122";
@@ -46703,11 +46259,6 @@ declare const chainlinkFeeds: {
46703
46259
  readonly proxyAddress: "0xE61Da4C909F7d86797a0D06Db63c34f76c9bCBDC";
46704
46260
  readonly decimals: 18;
46705
46261
  readonly name: "wstETH-stETH Exchange Rate";
46706
- }, {
46707
- readonly contractAddress: "0xD672b32F0AcDF22b850852D4Cd7c59bc920D523a";
46708
- readonly proxyAddress: "0x3fBB86e564fC1303625BA88EaE55740f3A649d36";
46709
- readonly decimals: 18;
46710
- readonly name: "RETH / ETH";
46711
46262
  }, {
46712
46263
  readonly contractAddress: "0xD80196353308B3b0B34DA405b049F7F4f0E4C298";
46713
46264
  readonly proxyAddress: "0x538E0fC727ce4604e25354D082890cdb5553d33B";
@@ -46738,6 +46289,11 @@ declare const chainlinkFeeds: {
46738
46289
  readonly proxyAddress: "0x7e73693088d88694146ab30f1dA5903a4489e992";
46739
46290
  readonly decimals: 8;
46740
46291
  readonly name: "WBTC / BTC";
46292
+ }, {
46293
+ readonly contractAddress: "0xb5d6a076549Af9E436f4D18F495772204f746f34";
46294
+ readonly proxyAddress: "0x5df16dE72003c33dE38f8620BF91f0e7c4eE7300";
46295
+ readonly decimals: 18;
46296
+ readonly name: "EURC / USD";
46741
46297
  }, {
46742
46298
  readonly contractAddress: "0xeAEE2B0DA69DFf8977f2E73887509B51fbf9bBfd";
46743
46299
  readonly proxyAddress: "0xd63624330Ed4e50dD65FeA45c08558F78a3d8abd";
@@ -46786,14 +46342,13 @@ declare const tenderlyNetworkMap: {
46786
46342
  readonly 1924: "swellchain-sepolia";
46787
46343
  readonly 1946: "soneium-minato";
46788
46344
  readonly 2020: "ronin";
46789
- readonly 2021: "ronin-testnet";
46790
46345
  readonly 2201: "stable-testnet";
46791
46346
  readonly 2523: "fraxtal-hoodi";
46792
46347
  readonly 4202: "lisk-sepolia";
46348
+ readonly 4326: "megaeth";
46793
46349
  readonly 4801: "worldchain-sepolia";
46794
46350
  readonly 5000: "mantle";
46795
46351
  readonly 5003: "mantle-sepolia";
46796
- readonly 8008: "polynomial";
46797
46352
  readonly 8453: "base";
46798
46353
  readonly 9069: "af-nexus-mainnet";
46799
46354
  readonly 9070: "af-nexus-testnet";
@@ -46825,7 +46380,6 @@ declare const tenderlyNetworkMap: {
46825
46380
  readonly 59902: "metis-sepolia";
46826
46381
  readonly 60808: "bob";
46827
46382
  readonly 80002: "polygon-amoy";
46828
- readonly 80008: "polynomial-sepolia";
46829
46383
  readonly 80069: "bepolia";
46830
46384
  readonly 80094: "berachain";
46831
46385
  readonly 81457: "blast";
@@ -46843,7 +46397,6 @@ declare const tenderlyNetworkMap: {
46843
46397
  readonly 11142220: "celo-sepolia";
46844
46398
  readonly 11155111: "sepolia";
46845
46399
  readonly 11155420: "optimism-sepolia";
46846
- readonly 531050104: "sophon-testnet";
46847
46400
  };
46848
46401
  declare const tenderlyExplorerMap: {
46849
46402
  readonly 1: "mainnet";
@@ -46893,12 +46446,12 @@ declare const tenderlyExplorerMap: {
46893
46446
  readonly 2523: "fraxtal-hoodi";
46894
46447
  readonly 3338: "peaq";
46895
46448
  readonly 4202: "lisk-sepolia";
46449
+ readonly 4326: "megaeth";
46896
46450
  readonly 4801: "worldchain-sepolia";
46897
46451
  readonly 5000: "mantle";
46898
46452
  readonly 5003: "mantle-sepolia";
46899
46453
  readonly 7000: "zetachain";
46900
46454
  readonly 7001: "zetachain-testnet";
46901
- readonly 8008: "polynomial-mainnet";
46902
46455
  readonly 8453: "base";
46903
46456
  readonly 9069: "af-nexus-mainnet";
46904
46457
  readonly 9070: "af-nexus-testnet";
@@ -46932,7 +46485,6 @@ declare const tenderlyExplorerMap: {
46932
46485
  readonly 59902: "metis-sepolia";
46933
46486
  readonly 60808: "bob";
46934
46487
  readonly 80002: "polygon-amoy";
46935
- readonly 80008: "polynomial-sepolia";
46936
46488
  readonly 80069: "bepolia";
46937
46489
  readonly 80094: "berachain";
46938
46490
  readonly 81457: "blast";
@@ -46941,6 +46493,7 @@ declare const tenderlyExplorerMap: {
46941
46493
  readonly 98867: "plume-testnet";
46942
46494
  readonly 167000: "taiko-mainnet";
46943
46495
  readonly 167013: "taiko-hoodi";
46496
+ readonly 202601: "ronin-testnet";
46944
46497
  readonly 421614: "arbitrum-sepolia";
46945
46498
  readonly 534351: "scroll-sepolia";
46946
46499
  readonly 534352: "scroll-mainnet";
@@ -46954,7 +46507,6 @@ declare const tenderlyExplorerMap: {
46954
46507
  readonly 11155111: "sepolia";
46955
46508
  readonly 11155420: "optimistic-sepolia";
46956
46509
  readonly 13374202: "ethereal-testnet";
46957
- readonly 531050104: "sophon-testnet";
46958
46510
  };
46959
46511
  //#endregion
46960
46512
  //#region src/ecosystem/generated/snapshot-org/schema.d.ts
@@ -46966,352 +46518,637 @@ type Scalars = {
46966
46518
  Float: number;
46967
46519
  };
46968
46520
  interface Query {
46521
+ /** Returns a single space by its ID (e.g. "ens.eth") */
46969
46522
  space: (Space | null);
46523
+ /** Returns a list of spaces with optional filtering, ordering, and pagination */
46970
46524
  spaces: ((Space | null)[] | null);
46525
+ /** Returns a ranked list of spaces with aggregated metrics */
46971
46526
  ranking: (RankingObject | null);
46527
+ /** Returns a single proposal by its ID */
46972
46528
  proposal: (Proposal$1 | null);
46529
+ /** Returns a list of proposals with optional filtering, ordering, and pagination */
46973
46530
  proposals: ((Proposal$1 | null)[] | null);
46531
+ /** Returns a single vote by its ID */
46974
46532
  vote: (Vote | null);
46533
+ /** Returns a list of votes with optional filtering, ordering, and pagination */
46975
46534
  votes: ((Vote | null)[] | null);
46535
+ /** Returns a list of address aliases with optional filtering, ordering, and pagination */
46976
46536
  aliases: ((Alias | null)[] | null);
46537
+ /** Returns the roles and permissions for a given address */
46977
46538
  roles: ((Role | null)[] | null);
46539
+ /** Returns a list of space followers with optional filtering, ordering, and pagination */
46978
46540
  follows: ((Follow | null)[] | null);
46541
+ /** Returns a list of proposal subscriptions with optional filtering, ordering, and pagination */
46979
46542
  subscriptions: ((Subscription | null)[] | null);
46543
+ /** Returns a list of users with optional filtering, ordering, and pagination */
46980
46544
  users: ((User | null)[] | null);
46545
+ /** Returns a list of delegate statements with optional filtering, ordering, and pagination */
46981
46546
  statements: ((Statement | null)[] | null);
46547
+ /** Returns a single user by their address */
46982
46548
  user: (User | null);
46549
+ /** Returns a single delegate statement by its ID */
46983
46550
  statement: (Statement | null);
46551
+ /** Returns all available space skins */
46984
46552
  skins: ((Item | null)[] | null);
46553
+ /** Returns all supported networks */
46985
46554
  networks: ((Network | null)[] | null);
46555
+ /** Returns all available proposal validations */
46986
46556
  validations: ((Item | null)[] | null);
46557
+ /** Returns all available plugins */
46987
46558
  plugins: ((Item | null)[] | null);
46559
+ /** Returns all available voting strategies */
46988
46560
  strategies: ((StrategyItem | null)[] | null);
46561
+ /** Returns a single voting strategy by its ID */
46989
46562
  strategy: (StrategyItem | null);
46563
+ /** Calculates the voting power for a voter in a space, optionally for a specific proposal */
46990
46564
  vp: (Vp | null);
46565
+ /** Returns a list of signed messages (envelopes) with optional filtering, ordering, and pagination */
46991
46566
  messages: ((Message | null)[] | null);
46567
+ /** Returns leaderboard entries for spaces with optional filtering, ordering, and pagination */
46992
46568
  leaderboards: ((Leaderboard | null)[] | null);
46569
+ /** Returns all available configuration options */
46993
46570
  options: ((Option | null)[] | null);
46994
46571
  __typename: 'Query';
46995
46572
  }
46573
+ /** A signed message envelope submitted to the Snapshot sequencer */
46996
46574
  interface Message {
46575
+ /** Message counter index, used for ordering */
46997
46576
  mci: (Scalars['Int'] | null);
46577
+ /** Unique message identifier */
46998
46578
  id: (Scalars['String'] | null);
46579
+ /** IPFS content identifier */
46999
46580
  ipfs: (Scalars['String'] | null);
46581
+ /** Address of the message sender */
47000
46582
  address: (Scalars['String'] | null);
46583
+ /** Protocol version */
47001
46584
  version: (Scalars['String'] | null);
46585
+ /** Unix timestamp of when the message was submitted */
47002
46586
  timestamp: (Scalars['Int'] | null);
46587
+ /** Space ID this message belongs to */
47003
46588
  space: (Scalars['String'] | null);
46589
+ /** Message type (e.g. proposal, vote, delete-proposal) */
47004
46590
  type: (Scalars['String'] | null);
46591
+ /** Cryptographic signature */
47005
46592
  sig: (Scalars['String'] | null);
46593
+ /** Sequencer receipt */
47006
46594
  receipt: (Scalars['String'] | null);
47007
46595
  __typename: 'Message';
47008
46596
  }
47009
46597
  type OrderDirection = 'asc' | 'desc';
46598
+ /** A Snapshot space (DAO or community) with its configuration and metadata */
47010
46599
  interface Space {
46600
+ /** Unique identifier for the space (e.g. "ens.eth") */
47011
46601
  id: Scalars['String'];
46602
+ /** Display name of the space */
47012
46603
  name: (Scalars['String'] | null);
46604
+ /** Whether the space is private */
47013
46605
  private: (Scalars['Boolean'] | null);
46606
+ /** Description of the space */
47014
46607
  about: (Scalars['String'] | null);
46608
+ /** URL of the space avatar image */
47015
46609
  avatar: (Scalars['String'] | null);
46610
+ /** URL of the space cover image */
47016
46611
  cover: (Scalars['String'] | null);
46612
+ /** URL to the space terms of service */
47017
46613
  terms: (Scalars['String'] | null);
46614
+ /** Physical location of the organization */
47018
46615
  location: (Scalars['String'] | null);
46616
+ /** Website URL */
47019
46617
  website: (Scalars['String'] | null);
46618
+ /** Twitter/X handle */
47020
46619
  twitter: (Scalars['String'] | null);
46620
+ /** GitHub organization or user */
47021
46621
  github: (Scalars['String'] | null);
46622
+ /** Farcaster handle */
47022
46623
  farcaster: (Scalars['String'] | null);
46624
+ /** CoinGecko identifier */
47023
46625
  coingecko: (Scalars['String'] | null);
46626
+ /** Contact email */
47024
46627
  email: (Scalars['String'] | null);
46628
+ /** URL to the discussions forum */
47025
46629
  discussions: (Scalars['String'] | null);
46630
+ /** Discourse forum category ID */
47026
46631
  discourseCategory: (Scalars['Int'] | null);
46632
+ /** Network ID the space primarily operates on */
47027
46633
  network: (Scalars['String'] | null);
46634
+ /** Token symbol used in the space */
47028
46635
  symbol: (Scalars['String'] | null);
46636
+ /** Custom skin/theme ID */
47029
46637
  skin: (Scalars['String'] | null);
46638
+ /** Custom skin settings */
47030
46639
  skinSettings: (SkinSettings | null);
46640
+ /** Custom domain for the space */
47031
46641
  domain: (Scalars['String'] | null);
46642
+ /** Voting strategies used to calculate voting power */
47032
46643
  strategies: ((Strategy | null)[] | null);
46644
+ /** List of admin addresses */
47033
46645
  admins: ((Scalars['String'] | null)[] | null);
46646
+ /** List of member addresses */
47034
46647
  members: ((Scalars['String'] | null)[] | null);
46648
+ /** List of moderator addresses */
47035
46649
  moderators: ((Scalars['String'] | null)[] | null);
46650
+ /** Proposal filters configuration */
47036
46651
  filters: (SpaceFilters | null);
46652
+ /** Enabled plugins configuration */
47037
46653
  plugins: (Scalars['Any'] | null);
46654
+ /** Voting configuration */
47038
46655
  voting: (SpaceVoting | null);
46656
+ /** Space categories */
47039
46657
  categories: ((Scalars['String'] | null)[] | null);
46658
+ /** Proposal validation strategy */
47040
46659
  validation: (Validation | null);
46660
+ /** Vote validation strategy */
47041
46661
  voteValidation: (Validation | null);
46662
+ /** Delegation portal configuration */
47042
46663
  delegationPortal: (DelegationPortal | null);
46664
+ /** Treasury addresses managed by the space */
47043
46665
  treasuries: ((Treasury | null)[] | null);
46666
+ /** Labels that can be applied to proposals */
47044
46667
  labels: ((Label | null)[] | null);
46668
+ /** Number of currently active proposals */
47045
46669
  activeProposals: (Scalars['Int'] | null);
46670
+ /** Total number of proposals */
47046
46671
  proposalsCount: (Scalars['Int'] | null);
46672
+ /** Number of proposals created in the last 24 hours */
47047
46673
  proposalsCount1d: (Scalars['Int'] | null);
46674
+ /** Number of proposals created in the last 7 days */
47048
46675
  proposalsCount7d: (Scalars['Int'] | null);
46676
+ /** Number of proposals created in the last 30 days */
47049
46677
  proposalsCount30d: (Scalars['Int'] | null);
46678
+ /** Total number of followers */
47050
46679
  followersCount: (Scalars['Int'] | null);
46680
+ /** Number of new followers in the last 7 days */
47051
46681
  followersCount7d: (Scalars['Int'] | null);
46682
+ /** Total number of votes cast */
47052
46683
  votesCount: (Scalars['Int'] | null);
46684
+ /** Number of votes cast in the last 7 days */
47053
46685
  votesCount7d: (Scalars['Int'] | null);
46686
+ /** Parent space (for sub-spaces) */
47054
46687
  parent: (Space | null);
46688
+ /** Child sub-spaces */
47055
46689
  children: ((Space | null)[] | null);
46690
+ /** Voting guidelines link */
47056
46691
  guidelines: (Scalars['String'] | null);
46692
+ /** Proposal template */
47057
46693
  template: (Scalars['String'] | null);
46694
+ /** Whether the space is verified */
47058
46695
  verified: (Scalars['Boolean'] | null);
46696
+ /** Whether the space has been flagged */
47059
46697
  flagged: (Scalars['Boolean'] | null);
46698
+ /** Flag reason code */
47060
46699
  flagCode: (Scalars['Int'] | null);
46700
+ /** Whether the space is hibernated (inactive) */
47061
46701
  hibernated: (Scalars['Boolean'] | null);
46702
+ /** Whether turbo mode is enabled */
47062
46703
  turbo: (Scalars['Boolean'] | null);
46704
+ /** Unix timestamp when turbo mode expires */
47063
46705
  turboExpiration: (Scalars['Int'] | null);
46706
+ /** Ranking score */
47064
46707
  rank: (Scalars['Float'] | null);
46708
+ /** Boost settings */
47065
46709
  boost: (BoostSettings | null);
46710
+ /** Unix timestamp of when the space was created */
47066
46711
  created: Scalars['Int'];
47067
46712
  __typename: 'Space';
47068
46713
  }
46714
+ /** Ranked list of spaces with aggregated metrics */
47069
46715
  interface RankingObject {
46716
+ /** List of ranked spaces */
47070
46717
  items: ((Space | null)[] | null);
46718
+ /** Aggregated metrics for the ranking query */
47071
46719
  metrics: (Metrics | null);
47072
46720
  __typename: 'RankingObject';
47073
46721
  }
46722
+ /** Aggregated metrics for ranking queries */
47074
46723
  interface Metrics {
46724
+ /** Total number of spaces matching the query */
47075
46725
  total: (Scalars['Int'] | null);
46726
+ /** Breakdown of spaces by category */
47076
46727
  categories: (Scalars['Any'] | null);
47077
46728
  __typename: 'Metrics';
47078
46729
  }
46730
+ /** Proposal filtering configuration for a space */
47079
46731
  interface SpaceFilters {
46732
+ /** Minimum score required to create a proposal */
47080
46733
  minScore: (Scalars['Float'] | null);
46734
+ /** Whether only members can create proposals */
47081
46735
  onlyMembers: (Scalars['Boolean'] | null);
47082
46736
  __typename: 'SpaceFilters';
47083
46737
  }
46738
+ /** Voting configuration for a space */
47084
46739
  interface SpaceVoting {
46740
+ /** Delay in seconds before voting starts after proposal creation */
47085
46741
  delay: (Scalars['Int'] | null);
46742
+ /** Voting period duration in seconds */
47086
46743
  period: (Scalars['Int'] | null);
46744
+ /** Default voting type (e.g. single-choice, weighted) */
47087
46745
  type: (Scalars['String'] | null);
46746
+ /** Quorum threshold */
47088
46747
  quorum: (Scalars['Float'] | null);
46748
+ /** How quorum is calculated */
47089
46749
  quorumType: Scalars['String'];
46750
+ /** Whether votes are hidden until the voting period ends */
47090
46751
  blind: (Scalars['Boolean'] | null);
46752
+ /** Whether the abstain option is hidden */
47091
46753
  hideAbstain: (Scalars['Boolean'] | null);
46754
+ /** Privacy mode for votes (e.g. shutter) */
47092
46755
  privacy: (Scalars['String'] | null);
46756
+ /** Whether aliased voting is enabled */
47093
46757
  aliased: (Scalars['Boolean'] | null);
47094
46758
  __typename: 'SpaceVoting';
47095
46759
  }
46760
+ /** proposal created on a space */
47096
46761
  interface Proposal$1 {
46762
+ /** Unique proposal identifier */
47097
46763
  id: Scalars['String'];
46764
+ /** IPFS content identifier */
47098
46765
  ipfs: (Scalars['String'] | null);
46766
+ /** Address of the proposal author */
47099
46767
  author: Scalars['String'];
46768
+ /** Unix timestamp of when the proposal was created */
47100
46769
  created: Scalars['Int'];
46770
+ /** Unix timestamp of the last update */
47101
46771
  updated: (Scalars['Int'] | null);
46772
+ /** The space this proposal belongs to */
47102
46773
  space: (Space | null);
46774
+ /** Network ID */
47103
46775
  network: Scalars['String'];
46776
+ /** Token symbol */
47104
46777
  symbol: Scalars['String'];
46778
+ /** Voting type (e.g. single-choice, approval, quadratic, ranked-choice, weighted, basic) */
47105
46779
  type: (Scalars['String'] | null);
46780
+ /** Voting strategies used for this proposal */
47106
46781
  strategies: (Strategy | null)[];
46782
+ /** Proposal validation strategy */
47107
46783
  validation: (Validation | null);
46784
+ /** Enabled plugins */
47108
46785
  plugins: Scalars['Any'];
46786
+ /** Proposal title */
47109
46787
  title: Scalars['String'];
46788
+ /** Proposal body in Markdown */
47110
46789
  body: (Scalars['String'] | null);
46790
+ /** URL to the discussion thread */
47111
46791
  discussion: Scalars['String'];
46792
+ /** List of voting choices */
47112
46793
  choices: (Scalars['String'] | null)[];
46794
+ /** Labels applied to this proposal */
47113
46795
  labels: (Scalars['String'] | null)[];
46796
+ /** Unix timestamp of when voting starts */
47114
46797
  start: Scalars['Int'];
46798
+ /** Unix timestamp of when voting ends */
47115
46799
  end: Scalars['Int'];
46800
+ /** Quorum threshold */
47116
46801
  quorum: Scalars['Float'];
46802
+ /** How quorum is calculated */
47117
46803
  quorumType: Scalars['String'];
46804
+ /** Privacy mode for votes */
47118
46805
  privacy: (Scalars['String'] | null);
46806
+ /** Block number snapshot for voting power calculation */
47119
46807
  snapshot: (Scalars['Int'] | null);
46808
+ /** Current state of the proposal (active, pending, closed) */
47120
46809
  state: (Scalars['String'] | null);
46810
+ /** Direct link to the proposal */
47121
46811
  link: (Scalars['String'] | null);
46812
+ /** Application that created the proposal */
47122
46813
  app: (Scalars['String'] | null);
46814
+ /** Vote scores per choice */
47123
46815
  scores: ((Scalars['Float'] | null)[] | null);
46816
+ /** Vote scores broken down by strategy */
47124
46817
  scores_by_strategy: (Scalars['Any'] | null);
46818
+ /** Scoring state (e.g. final, pending) */
47125
46819
  scores_state: (Scalars['String'] | null);
46820
+ /** Total score across all choices */
47126
46821
  scores_total: (Scalars['Float'] | null);
46822
+ /** Unix timestamp of when scores were last updated */
47127
46823
  scores_updated: (Scalars['Int'] | null);
46824
+ /** Total monetary value of scores */
47128
46825
  scores_total_value: (Scalars['Float'] | null);
46826
+ /** Voting power value breakdown by strategy */
47129
46827
  vp_value_by_strategy: (Scalars['Any'] | null);
46828
+ /** Total number of votes */
47130
46829
  votes: (Scalars['Int'] | null);
46830
+ /** Whether the proposal has been flagged */
47131
46831
  flagged: (Scalars['Boolean'] | null);
46832
+ /** Flag reason code */
47132
46833
  flagCode: (Scalars['Int'] | null);
47133
46834
  __typename: 'Proposal';
47134
46835
  }
46836
+ /** A voting strategy used to calculate voting power */
47135
46837
  interface Strategy {
46838
+ /** Strategy identifier */
47136
46839
  name: Scalars['String'];
46840
+ /** Network ID this strategy operates on */
47137
46841
  network: (Scalars['String'] | null);
46842
+ /** Strategy-specific parameters */
47138
46843
  params: (Scalars['Any'] | null);
47139
46844
  __typename: 'Strategy';
47140
46845
  }
46846
+ /** A validation strategy for proposals or votes */
47141
46847
  interface Validation {
46848
+ /** Validation identifier */
47142
46849
  name: Scalars['String'];
46850
+ /** Validation-specific parameters */
47143
46851
  params: (Scalars['Any'] | null);
47144
46852
  __typename: 'Validation';
47145
46853
  }
46854
+ /** Delegation portal configuration */
47146
46855
  interface DelegationPortal {
46856
+ /** Type of delegation */
47147
46857
  delegationType: Scalars['String'];
46858
+ /** Delegation contract address */
47148
46859
  delegationContract: Scalars['String'];
46860
+ /** Network of the delegation contract */
47149
46861
  delegationNetwork: Scalars['String'];
46862
+ /** API endpoint for delegation data */
47150
46863
  delegationApi: Scalars['String'];
47151
46864
  __typename: 'DelegationPortal';
47152
46865
  }
46866
+ /** A vote cast on a proposal */
47153
46867
  interface Vote {
46868
+ /** Unique vote identifier */
47154
46869
  id: Scalars['String'];
46870
+ /** IPFS content identifier */
47155
46871
  ipfs: (Scalars['String'] | null);
46872
+ /** Address of the voter */
47156
46873
  voter: Scalars['String'];
46874
+ /** Unix timestamp of when the vote was cast */
47157
46875
  created: Scalars['Int'];
46876
+ /** The space this vote was cast in */
47158
46877
  space: Space;
46878
+ /** The proposal this vote was cast on */
47159
46879
  proposal: (Proposal$1 | null);
46880
+ /** The voter's choice (format depends on voting type) */
47160
46881
  choice: Scalars['Any'];
46882
+ /** Additional vote metadata */
47161
46883
  metadata: (Scalars['Any'] | null);
46884
+ /** Reason provided by the voter */
47162
46885
  reason: (Scalars['String'] | null);
46886
+ /** Application used to cast the vote */
47163
46887
  app: (Scalars['String'] | null);
46888
+ /** Voting power of the voter */
47164
46889
  vp: (Scalars['Float'] | null);
46890
+ /** Voting power broken down by strategy */
47165
46891
  vp_by_strategy: ((Scalars['Float'] | null)[] | null);
46892
+ /** Voting power state (e.g. final, pending) */
47166
46893
  vp_state: (Scalars['String'] | null);
46894
+ /** Monetary value of the voting power */
47167
46895
  vp_value: (Scalars['Float'] | null);
47168
46896
  __typename: 'Vote';
47169
46897
  }
46898
+ /** An address alias mapping */
47170
46899
  interface Alias {
46900
+ /** Unique alias identifier */
47171
46901
  id: Scalars['String'];
46902
+ /** IPFS content identifier */
47172
46903
  ipfs: (Scalars['String'] | null);
46904
+ /** Primary address */
47173
46905
  address: Scalars['String'];
46906
+ /** Aliased address */
47174
46907
  alias: Scalars['String'];
46908
+ /** Unix timestamp of when the alias was created */
47175
46909
  created: Scalars['Int'];
47176
46910
  __typename: 'Alias';
47177
46911
  }
46912
+ /** Role and permissions for an address in a space */
47178
46913
  interface Role {
46914
+ /** Space ID */
47179
46915
  space: (Scalars['String'] | null);
46916
+ /** List of permissions granted */
47180
46917
  permissions: ((Scalars['String'] | null)[] | null);
47181
46918
  __typename: 'Role';
47182
46919
  }
46920
+ /** A follow relationship between an address and a space */
47183
46921
  interface Follow {
46922
+ /** Unique follow identifier */
47184
46923
  id: Scalars['String'];
46924
+ /** IPFS content identifier */
47185
46925
  ipfs: (Scalars['String'] | null);
46926
+ /** Address of the follower */
47186
46927
  follower: Scalars['String'];
46928
+ /** The space being followed */
47187
46929
  space: Space;
46930
+ /** Network ID */
47188
46931
  network: Scalars['String'];
46932
+ /** Unix timestamp of when the follow was created */
47189
46933
  created: Scalars['Int'];
47190
46934
  __typename: 'Follow';
47191
46935
  }
46936
+ /** A subscription to a space's proposals */
47192
46937
  interface Subscription {
46938
+ /** Unique subscription identifier */
47193
46939
  id: Scalars['String'];
46940
+ /** IPFS content identifier */
47194
46941
  ipfs: (Scalars['String'] | null);
46942
+ /** Address of the subscriber */
47195
46943
  address: Scalars['String'];
46944
+ /** The space being subscribed to */
47196
46945
  space: Space;
46946
+ /** Unix timestamp of when the subscription was created */
47197
46947
  created: Scalars['Int'];
47198
46948
  __typename: 'Subscription';
47199
46949
  }
46950
+ /** A Snapshot user profile */
47200
46951
  interface User {
46952
+ /** User address */
47201
46953
  id: Scalars['String'];
46954
+ /** IPFS content identifier */
47202
46955
  ipfs: (Scalars['String'] | null);
46956
+ /** Display name */
47203
46957
  name: (Scalars['String'] | null);
46958
+ /** Bio or description */
47204
46959
  about: (Scalars['String'] | null);
46960
+ /** Avatar image URL */
47205
46961
  avatar: (Scalars['String'] | null);
46962
+ /** Cover image URL */
47206
46963
  cover: (Scalars['String'] | null);
46964
+ /** GitHub handle */
47207
46965
  github: (Scalars['String'] | null);
46966
+ /** Twitter/X handle */
47208
46967
  twitter: (Scalars['String'] | null);
46968
+ /** Lens handle */
47209
46969
  lens: (Scalars['String'] | null);
46970
+ /** Farcaster handle */
47210
46971
  farcaster: (Scalars['String'] | null);
46972
+ /** Unix timestamp of when the profile was created */
47211
46973
  created: (Scalars['Int'] | null);
46974
+ /** Total number of votes cast */
47212
46975
  votesCount: (Scalars['Int'] | null);
46976
+ /** Total number of proposals created */
47213
46977
  proposalsCount: (Scalars['Int'] | null);
46978
+ /** Unix timestamp of the user's most recent vote */
47214
46979
  lastVote: (Scalars['Int'] | null);
47215
46980
  __typename: 'User';
47216
46981
  }
46982
+ /** A delegate statement */
47217
46983
  interface Statement {
46984
+ /** Unique statement identifier */
47218
46985
  id: Scalars['String'];
46986
+ /** IPFS content identifier */
47219
46987
  ipfs: Scalars['String'];
46988
+ /** Space ID this statement belongs to */
47220
46989
  space: Scalars['String'];
46990
+ /** Network ID */
47221
46991
  network: (Scalars['String'] | null);
46992
+ /** Short bio of the delegate */
47222
46993
  about: (Scalars['String'] | null);
46994
+ /** Delegate address */
47223
46995
  delegate: (Scalars['String'] | null);
46996
+ /** Full delegate statement text */
47224
46997
  statement: (Scalars['String'] | null);
46998
+ /** Discourse forum username */
47225
46999
  discourse: (Scalars['String'] | null);
47000
+ /** Statement status */
47226
47001
  status: (Scalars['String'] | null);
47002
+ /** Source of the statement */
47227
47003
  source: (Scalars['String'] | null);
47004
+ /** Unix timestamp of when the statement was created */
47228
47005
  created: Scalars['Int'];
47006
+ /** Unix timestamp of the last update */
47229
47007
  updated: Scalars['Int'];
47230
47008
  __typename: 'Statement';
47231
47009
  }
47010
+ /** A reusable metadata item (skin, validation, plugin) */
47232
47011
  interface Item {
47012
+ /** Item identifier */
47233
47013
  id: Scalars['String'];
47014
+ /** Number of spaces using this item */
47234
47015
  spacesCount: (Scalars['Int'] | null);
47235
47016
  __typename: 'Item';
47236
47017
  }
47018
+ /** A voting strategy with full metadata */
47237
47019
  interface StrategyItem {
47020
+ /** Strategy identifier */
47238
47021
  id: Scalars['String'];
47022
+ /** Display name */
47239
47023
  name: (Scalars['String'] | null);
47024
+ /** Strategy author */
47240
47025
  author: (Scalars['String'] | null);
47026
+ /** Strategy version */
47241
47027
  version: (Scalars['String'] | null);
47028
+ /** JSON schema for strategy parameters */
47242
47029
  schema: (Scalars['Any'] | null);
47030
+ /** Example configurations */
47243
47031
  examples: ((Scalars['Any'] | null)[] | null);
47032
+ /** Description of the strategy */
47244
47033
  about: (Scalars['String'] | null);
47034
+ /** Number of spaces using this strategy */
47245
47035
  spacesCount: (Scalars['Int'] | null);
47036
+ /** Number of verified spaces using this strategy */
47246
47037
  verifiedSpacesCount: (Scalars['Int'] | null);
47038
+ /** Whether voting power depend on other addresses or not */
47247
47039
  override: (Scalars['Boolean'] | null);
47040
+ /** Whether the strategy is disabled */
47248
47041
  disabled: (Scalars['Boolean'] | null);
47249
47042
  __typename: 'StrategyItem';
47250
47043
  }
47044
+ /** A treasury managed by a space */
47251
47045
  interface Treasury {
47046
+ /** Treasury display name */
47252
47047
  name: (Scalars['String'] | null);
47048
+ /** Treasury wallet address */
47253
47049
  address: (Scalars['String'] | null);
47050
+ /** Network ID the treasury is on */
47254
47051
  network: (Scalars['String'] | null);
47255
47052
  __typename: 'Treasury';
47256
47053
  }
47054
+ /** A label that can be applied to proposals */
47257
47055
  interface Label {
47056
+ /** Label identifier */
47258
47057
  id: (Scalars['String'] | null);
47058
+ /** Label display name */
47259
47059
  name: (Scalars['String'] | null);
47060
+ /** Label description */
47260
47061
  description: (Scalars['String'] | null);
47062
+ /** Hex color code */
47261
47063
  color: (Scalars['String'] | null);
47262
47064
  __typename: 'Label';
47263
47065
  }
47066
+ /** Boost settings for a space */
47264
47067
  interface BoostSettings {
47068
+ /** Whether boosting is enabled */
47265
47069
  enabled: (Scalars['Boolean'] | null);
47070
+ /** Whether bribe-based boosting is enabled */
47266
47071
  bribeEnabled: (Scalars['Boolean'] | null);
47267
47072
  __typename: 'BoostSettings';
47268
47073
  }
47074
+ /** Voting power information */
47269
47075
  interface Vp {
47076
+ /** Total voting power */
47270
47077
  vp: (Scalars['Float'] | null);
47078
+ /** Voting power broken down by strategy */
47271
47079
  vp_by_strategy: ((Scalars['Float'] | null)[] | null);
47080
+ /** Voting power state (e.g. final, pending) */
47272
47081
  vp_state: (Scalars['String'] | null);
47273
47082
  __typename: 'Vp';
47274
47083
  }
47084
+ /** Leaderboard entry for a user in a space */
47275
47085
  interface Leaderboard {
47086
+ /** Space ID */
47276
47087
  space: (Scalars['String'] | null);
47088
+ /** User address */
47277
47089
  user: (Scalars['String'] | null);
47090
+ /** Number of proposals created */
47278
47091
  proposalsCount: (Scalars['Int'] | null);
47092
+ /** Number of votes cast */
47279
47093
  votesCount: (Scalars['Int'] | null);
47094
+ /** Unix timestamp of the user's most recent vote */
47280
47095
  lastVote: (Scalars['Int'] | null);
47096
+ /** Monetary value of the user's voting power */
47281
47097
  vpValue: (Scalars['Float'] | null);
47282
47098
  __typename: 'Leaderboard';
47283
47099
  }
47100
+ /** A configuration option */
47284
47101
  interface Option {
47102
+ /** Option name */
47285
47103
  name: (Scalars['String'] | null);
47104
+ /** Option value */
47286
47105
  value: (Scalars['String'] | null);
47287
47106
  __typename: 'Option';
47288
47107
  }
47108
+ /** Custom theme settings for a space skin */
47289
47109
  interface SkinSettings {
47110
+ /** Background color */
47290
47111
  bg_color: (Scalars['String'] | null);
47112
+ /** Link color */
47291
47113
  link_color: (Scalars['String'] | null);
47114
+ /** Text color */
47292
47115
  text_color: (Scalars['String'] | null);
47116
+ /** Content area color */
47293
47117
  content_color: (Scalars['String'] | null);
47118
+ /** Border color */
47294
47119
  border_color: (Scalars['String'] | null);
47120
+ /** Heading color */
47295
47121
  heading_color: (Scalars['String'] | null);
47122
+ /** Header color */
47296
47123
  header_color: (Scalars['String'] | null);
47124
+ /** Primary accent color */
47297
47125
  primary_color: (Scalars['String'] | null);
47126
+ /** Theme name (light or dark) */
47298
47127
  theme: (Scalars['String'] | null);
47128
+ /** Custom logo URL */
47299
47129
  logo: (Scalars['String'] | null);
47300
47130
  __typename: 'SkinSettings';
47301
47131
  }
47132
+ /** A blockchain network */
47302
47133
  interface Network {
47134
+ /** Network chain ID */
47303
47135
  id: Scalars['String'];
47136
+ /** Network display name */
47304
47137
  name: Scalars['String'];
47138
+ /** Whether this is a premium network */
47305
47139
  premium: (Scalars['Boolean'] | null);
47140
+ /** Number of spaces using this network */
47306
47141
  spacesCount: (Scalars['Int'] | null);
47307
47142
  __typename: 'Network';
47308
47143
  }
47309
47144
  interface QueryGenqlSelection {
47145
+ /** Returns a single space by its ID (e.g. "ens.eth") */
47310
47146
  space?: (SpaceGenqlSelection & {
47311
47147
  __args: {
47312
47148
  id: Scalars['String'];
47313
47149
  };
47314
47150
  });
47151
+ /** Returns a list of spaces with optional filtering, ordering, and pagination */
47315
47152
  spaces?: (SpaceGenqlSelection & {
47316
47153
  __args?: {
47317
47154
  first?: Scalars['Int'];
@@ -47321,6 +47158,7 @@ interface QueryGenqlSelection {
47321
47158
  orderDirection?: (OrderDirection | null);
47322
47159
  };
47323
47160
  });
47161
+ /** Returns a ranked list of spaces with aggregated metrics */
47324
47162
  ranking?: (RankingObjectGenqlSelection & {
47325
47163
  __args?: {
47326
47164
  first?: Scalars['Int'];
@@ -47328,11 +47166,13 @@ interface QueryGenqlSelection {
47328
47166
  where?: (RankingWhere | null);
47329
47167
  };
47330
47168
  });
47169
+ /** Returns a single proposal by its ID */
47331
47170
  proposal?: (ProposalGenqlSelection & {
47332
47171
  __args: {
47333
47172
  id: Scalars['String'];
47334
47173
  };
47335
47174
  });
47175
+ /** Returns a list of proposals with optional filtering, ordering, and pagination */
47336
47176
  proposals?: (ProposalGenqlSelection & {
47337
47177
  __args?: {
47338
47178
  first?: Scalars['Int'];
@@ -47342,11 +47182,13 @@ interface QueryGenqlSelection {
47342
47182
  orderDirection?: (OrderDirection | null);
47343
47183
  };
47344
47184
  });
47185
+ /** Returns a single vote by its ID */
47345
47186
  vote?: (VoteGenqlSelection & {
47346
47187
  __args: {
47347
47188
  id: Scalars['String'];
47348
47189
  };
47349
47190
  });
47191
+ /** Returns a list of votes with optional filtering, ordering, and pagination */
47350
47192
  votes?: (VoteGenqlSelection & {
47351
47193
  __args?: {
47352
47194
  first?: Scalars['Int'];
@@ -47356,6 +47198,7 @@ interface QueryGenqlSelection {
47356
47198
  orderDirection?: (OrderDirection | null);
47357
47199
  };
47358
47200
  });
47201
+ /** Returns a list of address aliases with optional filtering, ordering, and pagination */
47359
47202
  aliases?: (AliasGenqlSelection & {
47360
47203
  __args?: {
47361
47204
  first?: Scalars['Int'];
@@ -47365,11 +47208,13 @@ interface QueryGenqlSelection {
47365
47208
  orderDirection?: (OrderDirection | null);
47366
47209
  };
47367
47210
  });
47211
+ /** Returns the roles and permissions for a given address */
47368
47212
  roles?: (RoleGenqlSelection & {
47369
47213
  __args: {
47370
47214
  where: RolesWhere;
47371
47215
  };
47372
47216
  });
47217
+ /** Returns a list of space followers with optional filtering, ordering, and pagination */
47373
47218
  follows?: (FollowGenqlSelection & {
47374
47219
  __args?: {
47375
47220
  first?: Scalars['Int'];
@@ -47379,6 +47224,7 @@ interface QueryGenqlSelection {
47379
47224
  orderDirection?: (OrderDirection | null);
47380
47225
  };
47381
47226
  });
47227
+ /** Returns a list of proposal subscriptions with optional filtering, ordering, and pagination */
47382
47228
  subscriptions?: (SubscriptionGenqlSelection & {
47383
47229
  __args?: {
47384
47230
  first?: Scalars['Int'];
@@ -47388,6 +47234,7 @@ interface QueryGenqlSelection {
47388
47234
  orderDirection?: (OrderDirection | null);
47389
47235
  };
47390
47236
  });
47237
+ /** Returns a list of users with optional filtering, ordering, and pagination */
47391
47238
  users?: (UserGenqlSelection & {
47392
47239
  __args?: {
47393
47240
  first?: Scalars['Int'];
@@ -47397,6 +47244,7 @@ interface QueryGenqlSelection {
47397
47244
  orderDirection?: (OrderDirection | null);
47398
47245
  };
47399
47246
  });
47247
+ /** Returns a list of delegate statements with optional filtering, ordering, and pagination */
47400
47248
  statements?: (StatementGenqlSelection & {
47401
47249
  __args?: {
47402
47250
  first?: Scalars['Int'];
@@ -47406,26 +47254,35 @@ interface QueryGenqlSelection {
47406
47254
  orderDirection?: (OrderDirection | null);
47407
47255
  };
47408
47256
  });
47257
+ /** Returns a single user by their address */
47409
47258
  user?: (UserGenqlSelection & {
47410
47259
  __args: {
47411
47260
  id: Scalars['String'];
47412
47261
  };
47413
47262
  });
47263
+ /** Returns a single delegate statement by its ID */
47414
47264
  statement?: (StatementGenqlSelection & {
47415
47265
  __args: {
47416
47266
  id: Scalars['String'];
47417
47267
  };
47418
47268
  });
47269
+ /** Returns all available space skins */
47419
47270
  skins?: ItemGenqlSelection;
47271
+ /** Returns all supported networks */
47420
47272
  networks?: NetworkGenqlSelection;
47273
+ /** Returns all available proposal validations */
47421
47274
  validations?: ItemGenqlSelection;
47275
+ /** Returns all available plugins */
47422
47276
  plugins?: ItemGenqlSelection;
47277
+ /** Returns all available voting strategies */
47423
47278
  strategies?: StrategyItemGenqlSelection;
47279
+ /** Returns a single voting strategy by its ID */
47424
47280
  strategy?: (StrategyItemGenqlSelection & {
47425
47281
  __args: {
47426
47282
  id: Scalars['String'];
47427
47283
  };
47428
47284
  });
47285
+ /** Calculates the voting power for a voter in a space, optionally for a specific proposal */
47429
47286
  vp?: (VpGenqlSelection & {
47430
47287
  __args: {
47431
47288
  voter: Scalars['String'];
@@ -47433,6 +47290,7 @@ interface QueryGenqlSelection {
47433
47290
  proposal?: (Scalars['String'] | null);
47434
47291
  };
47435
47292
  });
47293
+ /** Returns a list of signed messages (envelopes) with optional filtering, ordering, and pagination */
47436
47294
  messages?: (MessageGenqlSelection & {
47437
47295
  __args?: {
47438
47296
  first?: Scalars['Int'];
@@ -47442,6 +47300,7 @@ interface QueryGenqlSelection {
47442
47300
  orderDirection?: (OrderDirection | null);
47443
47301
  };
47444
47302
  });
47303
+ /** Returns leaderboard entries for spaces with optional filtering, ordering, and pagination */
47445
47304
  leaderboards?: (LeaderboardGenqlSelection & {
47446
47305
  __args?: {
47447
47306
  first?: Scalars['Int'];
@@ -47451,6 +47310,7 @@ interface QueryGenqlSelection {
47451
47310
  orderDirection?: (OrderDirection | null);
47452
47311
  };
47453
47312
  });
47313
+ /** Returns all available configuration options */
47454
47314
  options?: OptionGenqlSelection;
47455
47315
  __typename?: boolean | number;
47456
47316
  __scalar?: boolean | number;
@@ -47468,6 +47328,7 @@ interface SpaceWhere {
47468
47328
  plugin?: (Scalars['String'] | null);
47469
47329
  controller?: (Scalars['String'] | null);
47470
47330
  verified?: (Scalars['Boolean'] | null);
47331
+ turbo?: (Scalars['Boolean'] | null);
47471
47332
  domain?: (Scalars['String'] | null);
47472
47333
  search?: (Scalars['String'] | null);
47473
47334
  }
@@ -47500,16 +47361,27 @@ interface MessageWhere {
47500
47361
  type?: (Scalars['String'] | null);
47501
47362
  type_in?: ((Scalars['String'] | null)[] | null);
47502
47363
  }
47364
+ /** A signed message envelope submitted to the Snapshot sequencer */
47503
47365
  interface MessageGenqlSelection {
47366
+ /** Message counter index, used for ordering */
47504
47367
  mci?: boolean | number;
47368
+ /** Unique message identifier */
47505
47369
  id?: boolean | number;
47370
+ /** IPFS content identifier */
47506
47371
  ipfs?: boolean | number;
47372
+ /** Address of the message sender */
47507
47373
  address?: boolean | number;
47374
+ /** Protocol version */
47508
47375
  version?: boolean | number;
47376
+ /** Unix timestamp of when the message was submitted */
47509
47377
  timestamp?: boolean | number;
47378
+ /** Space ID this message belongs to */
47510
47379
  space?: boolean | number;
47380
+ /** Message type (e.g. proposal, vote, delete-proposal) */
47511
47381
  type?: boolean | number;
47382
+ /** Cryptographic signature */
47512
47383
  sig?: boolean | number;
47384
+ /** Sequencer receipt */
47513
47385
  receipt?: boolean | number;
47514
47386
  __typename?: boolean | number;
47515
47387
  __scalar?: boolean | number;
@@ -47721,327 +47593,574 @@ interface LeaderboardsWhere {
47721
47593
  vote_count_lt?: ((Scalars['Int'] | null)[] | null);
47722
47594
  vote_count_lte?: ((Scalars['Int'] | null)[] | null);
47723
47595
  }
47596
+ /** A Snapshot space (DAO or community) with its configuration and metadata */
47724
47597
  interface SpaceGenqlSelection {
47598
+ /** Unique identifier for the space (e.g. "ens.eth") */
47725
47599
  id?: boolean | number;
47600
+ /** Display name of the space */
47726
47601
  name?: boolean | number;
47602
+ /** Whether the space is private */
47727
47603
  private?: boolean | number;
47604
+ /** Description of the space */
47728
47605
  about?: boolean | number;
47606
+ /** URL of the space avatar image */
47729
47607
  avatar?: boolean | number;
47608
+ /** URL of the space cover image */
47730
47609
  cover?: boolean | number;
47610
+ /** URL to the space terms of service */
47731
47611
  terms?: boolean | number;
47612
+ /** Physical location of the organization */
47732
47613
  location?: boolean | number;
47614
+ /** Website URL */
47733
47615
  website?: boolean | number;
47616
+ /** Twitter/X handle */
47734
47617
  twitter?: boolean | number;
47618
+ /** GitHub organization or user */
47735
47619
  github?: boolean | number;
47620
+ /** Farcaster handle */
47736
47621
  farcaster?: boolean | number;
47622
+ /** CoinGecko identifier */
47737
47623
  coingecko?: boolean | number;
47624
+ /** Contact email */
47738
47625
  email?: boolean | number;
47626
+ /** URL to the discussions forum */
47739
47627
  discussions?: boolean | number;
47628
+ /** Discourse forum category ID */
47740
47629
  discourseCategory?: boolean | number;
47630
+ /** Network ID the space primarily operates on */
47741
47631
  network?: boolean | number;
47632
+ /** Token symbol used in the space */
47742
47633
  symbol?: boolean | number;
47634
+ /** Custom skin/theme ID */
47743
47635
  skin?: boolean | number;
47636
+ /** Custom skin settings */
47744
47637
  skinSettings?: SkinSettingsGenqlSelection;
47638
+ /** Custom domain for the space */
47745
47639
  domain?: boolean | number;
47640
+ /** Voting strategies used to calculate voting power */
47746
47641
  strategies?: StrategyGenqlSelection;
47642
+ /** List of admin addresses */
47747
47643
  admins?: boolean | number;
47644
+ /** List of member addresses */
47748
47645
  members?: boolean | number;
47646
+ /** List of moderator addresses */
47749
47647
  moderators?: boolean | number;
47648
+ /** Proposal filters configuration */
47750
47649
  filters?: SpaceFiltersGenqlSelection;
47650
+ /** Enabled plugins configuration */
47751
47651
  plugins?: boolean | number;
47652
+ /** Voting configuration */
47752
47653
  voting?: SpaceVotingGenqlSelection;
47654
+ /** Space categories */
47753
47655
  categories?: boolean | number;
47656
+ /** Proposal validation strategy */
47754
47657
  validation?: ValidationGenqlSelection;
47658
+ /** Vote validation strategy */
47755
47659
  voteValidation?: ValidationGenqlSelection;
47660
+ /** Delegation portal configuration */
47756
47661
  delegationPortal?: DelegationPortalGenqlSelection;
47662
+ /** Treasury addresses managed by the space */
47757
47663
  treasuries?: TreasuryGenqlSelection;
47664
+ /** Labels that can be applied to proposals */
47758
47665
  labels?: LabelGenqlSelection;
47666
+ /** Number of currently active proposals */
47759
47667
  activeProposals?: boolean | number;
47668
+ /** Total number of proposals */
47760
47669
  proposalsCount?: boolean | number;
47670
+ /** Number of proposals created in the last 24 hours */
47761
47671
  proposalsCount1d?: boolean | number;
47672
+ /** Number of proposals created in the last 7 days */
47762
47673
  proposalsCount7d?: boolean | number;
47674
+ /** Number of proposals created in the last 30 days */
47763
47675
  proposalsCount30d?: boolean | number;
47676
+ /** Total number of followers */
47764
47677
  followersCount?: boolean | number;
47678
+ /** Number of new followers in the last 7 days */
47765
47679
  followersCount7d?: boolean | number;
47680
+ /** Total number of votes cast */
47766
47681
  votesCount?: boolean | number;
47682
+ /** Number of votes cast in the last 7 days */
47767
47683
  votesCount7d?: boolean | number;
47684
+ /** Parent space (for sub-spaces) */
47768
47685
  parent?: SpaceGenqlSelection;
47686
+ /** Child sub-spaces */
47769
47687
  children?: SpaceGenqlSelection;
47688
+ /** Voting guidelines link */
47770
47689
  guidelines?: boolean | number;
47690
+ /** Proposal template */
47771
47691
  template?: boolean | number;
47692
+ /** Whether the space is verified */
47772
47693
  verified?: boolean | number;
47694
+ /** Whether the space has been flagged */
47773
47695
  flagged?: boolean | number;
47696
+ /** Flag reason code */
47774
47697
  flagCode?: boolean | number;
47698
+ /** Whether the space is hibernated (inactive) */
47775
47699
  hibernated?: boolean | number;
47700
+ /** Whether turbo mode is enabled */
47776
47701
  turbo?: boolean | number;
47702
+ /** Unix timestamp when turbo mode expires */
47777
47703
  turboExpiration?: boolean | number;
47704
+ /** Ranking score */
47778
47705
  rank?: boolean | number;
47706
+ /** Boost settings */
47779
47707
  boost?: BoostSettingsGenqlSelection;
47708
+ /** Unix timestamp of when the space was created */
47780
47709
  created?: boolean | number;
47781
47710
  __typename?: boolean | number;
47782
47711
  __scalar?: boolean | number;
47783
47712
  }
47713
+ /** Ranked list of spaces with aggregated metrics */
47784
47714
  interface RankingObjectGenqlSelection {
47715
+ /** List of ranked spaces */
47785
47716
  items?: SpaceGenqlSelection;
47717
+ /** Aggregated metrics for the ranking query */
47786
47718
  metrics?: MetricsGenqlSelection;
47787
47719
  __typename?: boolean | number;
47788
47720
  __scalar?: boolean | number;
47789
47721
  }
47722
+ /** Aggregated metrics for ranking queries */
47790
47723
  interface MetricsGenqlSelection {
47724
+ /** Total number of spaces matching the query */
47791
47725
  total?: boolean | number;
47726
+ /** Breakdown of spaces by category */
47792
47727
  categories?: boolean | number;
47793
47728
  __typename?: boolean | number;
47794
47729
  __scalar?: boolean | number;
47795
47730
  }
47731
+ /** Proposal filtering configuration for a space */
47796
47732
  interface SpaceFiltersGenqlSelection {
47733
+ /** Minimum score required to create a proposal */
47797
47734
  minScore?: boolean | number;
47735
+ /** Whether only members can create proposals */
47798
47736
  onlyMembers?: boolean | number;
47799
47737
  __typename?: boolean | number;
47800
47738
  __scalar?: boolean | number;
47801
47739
  }
47740
+ /** Voting configuration for a space */
47802
47741
  interface SpaceVotingGenqlSelection {
47742
+ /** Delay in seconds before voting starts after proposal creation */
47803
47743
  delay?: boolean | number;
47744
+ /** Voting period duration in seconds */
47804
47745
  period?: boolean | number;
47746
+ /** Default voting type (e.g. single-choice, weighted) */
47805
47747
  type?: boolean | number;
47748
+ /** Quorum threshold */
47806
47749
  quorum?: boolean | number;
47750
+ /** How quorum is calculated */
47807
47751
  quorumType?: boolean | number;
47752
+ /** Whether votes are hidden until the voting period ends */
47808
47753
  blind?: boolean | number;
47754
+ /** Whether the abstain option is hidden */
47809
47755
  hideAbstain?: boolean | number;
47756
+ /** Privacy mode for votes (e.g. shutter) */
47810
47757
  privacy?: boolean | number;
47758
+ /** Whether aliased voting is enabled */
47811
47759
  aliased?: boolean | number;
47812
47760
  __typename?: boolean | number;
47813
47761
  __scalar?: boolean | number;
47814
47762
  }
47763
+ /** proposal created on a space */
47815
47764
  interface ProposalGenqlSelection {
47765
+ /** Unique proposal identifier */
47816
47766
  id?: boolean | number;
47767
+ /** IPFS content identifier */
47817
47768
  ipfs?: boolean | number;
47769
+ /** Address of the proposal author */
47818
47770
  author?: boolean | number;
47771
+ /** Unix timestamp of when the proposal was created */
47819
47772
  created?: boolean | number;
47773
+ /** Unix timestamp of the last update */
47820
47774
  updated?: boolean | number;
47775
+ /** The space this proposal belongs to */
47821
47776
  space?: SpaceGenqlSelection;
47777
+ /** Network ID */
47822
47778
  network?: boolean | number;
47779
+ /** Token symbol */
47823
47780
  symbol?: boolean | number;
47781
+ /** Voting type (e.g. single-choice, approval, quadratic, ranked-choice, weighted, basic) */
47824
47782
  type?: boolean | number;
47783
+ /** Voting strategies used for this proposal */
47825
47784
  strategies?: StrategyGenqlSelection;
47785
+ /** Proposal validation strategy */
47826
47786
  validation?: ValidationGenqlSelection;
47787
+ /** Enabled plugins */
47827
47788
  plugins?: boolean | number;
47789
+ /** Proposal title */
47828
47790
  title?: boolean | number;
47791
+ /** Proposal body in Markdown */
47829
47792
  body?: boolean | number;
47793
+ /** URL to the discussion thread */
47830
47794
  discussion?: boolean | number;
47795
+ /** List of voting choices */
47831
47796
  choices?: boolean | number;
47797
+ /** Labels applied to this proposal */
47832
47798
  labels?: boolean | number;
47799
+ /** Unix timestamp of when voting starts */
47833
47800
  start?: boolean | number;
47801
+ /** Unix timestamp of when voting ends */
47834
47802
  end?: boolean | number;
47803
+ /** Quorum threshold */
47835
47804
  quorum?: boolean | number;
47805
+ /** How quorum is calculated */
47836
47806
  quorumType?: boolean | number;
47807
+ /** Privacy mode for votes */
47837
47808
  privacy?: boolean | number;
47809
+ /** Block number snapshot for voting power calculation */
47838
47810
  snapshot?: boolean | number;
47811
+ /** Current state of the proposal (active, pending, closed) */
47839
47812
  state?: boolean | number;
47813
+ /** Direct link to the proposal */
47840
47814
  link?: boolean | number;
47815
+ /** Application that created the proposal */
47841
47816
  app?: boolean | number;
47817
+ /** Vote scores per choice */
47842
47818
  scores?: boolean | number;
47819
+ /** Vote scores broken down by strategy */
47843
47820
  scores_by_strategy?: boolean | number;
47821
+ /** Scoring state (e.g. final, pending) */
47844
47822
  scores_state?: boolean | number;
47823
+ /** Total score across all choices */
47845
47824
  scores_total?: boolean | number;
47825
+ /** Unix timestamp of when scores were last updated */
47846
47826
  scores_updated?: boolean | number;
47827
+ /** Total monetary value of scores */
47847
47828
  scores_total_value?: boolean | number;
47829
+ /** Voting power value breakdown by strategy */
47848
47830
  vp_value_by_strategy?: boolean | number;
47831
+ /** Total number of votes */
47849
47832
  votes?: boolean | number;
47833
+ /** Whether the proposal has been flagged */
47850
47834
  flagged?: boolean | number;
47835
+ /** Flag reason code */
47851
47836
  flagCode?: boolean | number;
47852
47837
  __typename?: boolean | number;
47853
47838
  __scalar?: boolean | number;
47854
47839
  }
47840
+ /** A voting strategy used to calculate voting power */
47855
47841
  interface StrategyGenqlSelection {
47842
+ /** Strategy identifier */
47856
47843
  name?: boolean | number;
47844
+ /** Network ID this strategy operates on */
47857
47845
  network?: boolean | number;
47846
+ /** Strategy-specific parameters */
47858
47847
  params?: boolean | number;
47859
47848
  __typename?: boolean | number;
47860
47849
  __scalar?: boolean | number;
47861
47850
  }
47851
+ /** A validation strategy for proposals or votes */
47862
47852
  interface ValidationGenqlSelection {
47853
+ /** Validation identifier */
47863
47854
  name?: boolean | number;
47855
+ /** Validation-specific parameters */
47864
47856
  params?: boolean | number;
47865
47857
  __typename?: boolean | number;
47866
47858
  __scalar?: boolean | number;
47867
47859
  }
47860
+ /** Delegation portal configuration */
47868
47861
  interface DelegationPortalGenqlSelection {
47862
+ /** Type of delegation */
47869
47863
  delegationType?: boolean | number;
47864
+ /** Delegation contract address */
47870
47865
  delegationContract?: boolean | number;
47866
+ /** Network of the delegation contract */
47871
47867
  delegationNetwork?: boolean | number;
47868
+ /** API endpoint for delegation data */
47872
47869
  delegationApi?: boolean | number;
47873
47870
  __typename?: boolean | number;
47874
47871
  __scalar?: boolean | number;
47875
47872
  }
47873
+ /** A vote cast on a proposal */
47876
47874
  interface VoteGenqlSelection {
47875
+ /** Unique vote identifier */
47877
47876
  id?: boolean | number;
47877
+ /** IPFS content identifier */
47878
47878
  ipfs?: boolean | number;
47879
+ /** Address of the voter */
47879
47880
  voter?: boolean | number;
47881
+ /** Unix timestamp of when the vote was cast */
47880
47882
  created?: boolean | number;
47883
+ /** The space this vote was cast in */
47881
47884
  space?: SpaceGenqlSelection;
47885
+ /** The proposal this vote was cast on */
47882
47886
  proposal?: ProposalGenqlSelection;
47887
+ /** The voter's choice (format depends on voting type) */
47883
47888
  choice?: boolean | number;
47889
+ /** Additional vote metadata */
47884
47890
  metadata?: boolean | number;
47891
+ /** Reason provided by the voter */
47885
47892
  reason?: boolean | number;
47893
+ /** Application used to cast the vote */
47886
47894
  app?: boolean | number;
47895
+ /** Voting power of the voter */
47887
47896
  vp?: boolean | number;
47897
+ /** Voting power broken down by strategy */
47888
47898
  vp_by_strategy?: boolean | number;
47899
+ /** Voting power state (e.g. final, pending) */
47889
47900
  vp_state?: boolean | number;
47901
+ /** Monetary value of the voting power */
47890
47902
  vp_value?: boolean | number;
47891
47903
  __typename?: boolean | number;
47892
47904
  __scalar?: boolean | number;
47893
47905
  }
47906
+ /** An address alias mapping */
47894
47907
  interface AliasGenqlSelection {
47908
+ /** Unique alias identifier */
47895
47909
  id?: boolean | number;
47910
+ /** IPFS content identifier */
47896
47911
  ipfs?: boolean | number;
47912
+ /** Primary address */
47897
47913
  address?: boolean | number;
47914
+ /** Aliased address */
47898
47915
  alias?: boolean | number;
47916
+ /** Unix timestamp of when the alias was created */
47899
47917
  created?: boolean | number;
47900
47918
  __typename?: boolean | number;
47901
47919
  __scalar?: boolean | number;
47902
47920
  }
47921
+ /** Role and permissions for an address in a space */
47903
47922
  interface RoleGenqlSelection {
47923
+ /** Space ID */
47904
47924
  space?: boolean | number;
47925
+ /** List of permissions granted */
47905
47926
  permissions?: boolean | number;
47906
47927
  __typename?: boolean | number;
47907
47928
  __scalar?: boolean | number;
47908
47929
  }
47930
+ /** A follow relationship between an address and a space */
47909
47931
  interface FollowGenqlSelection {
47932
+ /** Unique follow identifier */
47910
47933
  id?: boolean | number;
47934
+ /** IPFS content identifier */
47911
47935
  ipfs?: boolean | number;
47936
+ /** Address of the follower */
47912
47937
  follower?: boolean | number;
47938
+ /** The space being followed */
47913
47939
  space?: SpaceGenqlSelection;
47940
+ /** Network ID */
47914
47941
  network?: boolean | number;
47942
+ /** Unix timestamp of when the follow was created */
47915
47943
  created?: boolean | number;
47916
47944
  __typename?: boolean | number;
47917
47945
  __scalar?: boolean | number;
47918
47946
  }
47947
+ /** A subscription to a space's proposals */
47919
47948
  interface SubscriptionGenqlSelection {
47949
+ /** Unique subscription identifier */
47920
47950
  id?: boolean | number;
47951
+ /** IPFS content identifier */
47921
47952
  ipfs?: boolean | number;
47953
+ /** Address of the subscriber */
47922
47954
  address?: boolean | number;
47955
+ /** The space being subscribed to */
47923
47956
  space?: SpaceGenqlSelection;
47957
+ /** Unix timestamp of when the subscription was created */
47924
47958
  created?: boolean | number;
47925
47959
  __typename?: boolean | number;
47926
47960
  __scalar?: boolean | number;
47927
47961
  }
47962
+ /** A Snapshot user profile */
47928
47963
  interface UserGenqlSelection {
47964
+ /** User address */
47929
47965
  id?: boolean | number;
47966
+ /** IPFS content identifier */
47930
47967
  ipfs?: boolean | number;
47968
+ /** Display name */
47931
47969
  name?: boolean | number;
47970
+ /** Bio or description */
47932
47971
  about?: boolean | number;
47972
+ /** Avatar image URL */
47933
47973
  avatar?: boolean | number;
47974
+ /** Cover image URL */
47934
47975
  cover?: boolean | number;
47976
+ /** GitHub handle */
47935
47977
  github?: boolean | number;
47978
+ /** Twitter/X handle */
47936
47979
  twitter?: boolean | number;
47980
+ /** Lens handle */
47937
47981
  lens?: boolean | number;
47982
+ /** Farcaster handle */
47938
47983
  farcaster?: boolean | number;
47984
+ /** Unix timestamp of when the profile was created */
47939
47985
  created?: boolean | number;
47986
+ /** Total number of votes cast */
47940
47987
  votesCount?: boolean | number;
47988
+ /** Total number of proposals created */
47941
47989
  proposalsCount?: boolean | number;
47990
+ /** Unix timestamp of the user's most recent vote */
47942
47991
  lastVote?: boolean | number;
47943
47992
  __typename?: boolean | number;
47944
47993
  __scalar?: boolean | number;
47945
47994
  }
47995
+ /** A delegate statement */
47946
47996
  interface StatementGenqlSelection {
47997
+ /** Unique statement identifier */
47947
47998
  id?: boolean | number;
47999
+ /** IPFS content identifier */
47948
48000
  ipfs?: boolean | number;
48001
+ /** Space ID this statement belongs to */
47949
48002
  space?: boolean | number;
48003
+ /** Network ID */
47950
48004
  network?: boolean | number;
48005
+ /** Short bio of the delegate */
47951
48006
  about?: boolean | number;
48007
+ /** Delegate address */
47952
48008
  delegate?: boolean | number;
48009
+ /** Full delegate statement text */
47953
48010
  statement?: boolean | number;
48011
+ /** Discourse forum username */
47954
48012
  discourse?: boolean | number;
48013
+ /** Statement status */
47955
48014
  status?: boolean | number;
48015
+ /** Source of the statement */
47956
48016
  source?: boolean | number;
48017
+ /** Unix timestamp of when the statement was created */
47957
48018
  created?: boolean | number;
48019
+ /** Unix timestamp of the last update */
47958
48020
  updated?: boolean | number;
47959
48021
  __typename?: boolean | number;
47960
48022
  __scalar?: boolean | number;
47961
48023
  }
48024
+ /** A reusable metadata item (skin, validation, plugin) */
47962
48025
  interface ItemGenqlSelection {
48026
+ /** Item identifier */
47963
48027
  id?: boolean | number;
48028
+ /** Number of spaces using this item */
47964
48029
  spacesCount?: boolean | number;
47965
48030
  __typename?: boolean | number;
47966
48031
  __scalar?: boolean | number;
47967
48032
  }
48033
+ /** A voting strategy with full metadata */
47968
48034
  interface StrategyItemGenqlSelection {
48035
+ /** Strategy identifier */
47969
48036
  id?: boolean | number;
48037
+ /** Display name */
47970
48038
  name?: boolean | number;
48039
+ /** Strategy author */
47971
48040
  author?: boolean | number;
48041
+ /** Strategy version */
47972
48042
  version?: boolean | number;
48043
+ /** JSON schema for strategy parameters */
47973
48044
  schema?: boolean | number;
48045
+ /** Example configurations */
47974
48046
  examples?: boolean | number;
48047
+ /** Description of the strategy */
47975
48048
  about?: boolean | number;
48049
+ /** Number of spaces using this strategy */
47976
48050
  spacesCount?: boolean | number;
48051
+ /** Number of verified spaces using this strategy */
47977
48052
  verifiedSpacesCount?: boolean | number;
48053
+ /** Whether voting power depend on other addresses or not */
47978
48054
  override?: boolean | number;
48055
+ /** Whether the strategy is disabled */
47979
48056
  disabled?: boolean | number;
47980
48057
  __typename?: boolean | number;
47981
48058
  __scalar?: boolean | number;
47982
48059
  }
48060
+ /** A treasury managed by a space */
47983
48061
  interface TreasuryGenqlSelection {
48062
+ /** Treasury display name */
47984
48063
  name?: boolean | number;
48064
+ /** Treasury wallet address */
47985
48065
  address?: boolean | number;
48066
+ /** Network ID the treasury is on */
47986
48067
  network?: boolean | number;
47987
48068
  __typename?: boolean | number;
47988
48069
  __scalar?: boolean | number;
47989
48070
  }
48071
+ /** A label that can be applied to proposals */
47990
48072
  interface LabelGenqlSelection {
48073
+ /** Label identifier */
47991
48074
  id?: boolean | number;
48075
+ /** Label display name */
47992
48076
  name?: boolean | number;
48077
+ /** Label description */
47993
48078
  description?: boolean | number;
48079
+ /** Hex color code */
47994
48080
  color?: boolean | number;
47995
48081
  __typename?: boolean | number;
47996
48082
  __scalar?: boolean | number;
47997
48083
  }
48084
+ /** Boost settings for a space */
47998
48085
  interface BoostSettingsGenqlSelection {
48086
+ /** Whether boosting is enabled */
47999
48087
  enabled?: boolean | number;
48088
+ /** Whether bribe-based boosting is enabled */
48000
48089
  bribeEnabled?: boolean | number;
48001
48090
  __typename?: boolean | number;
48002
48091
  __scalar?: boolean | number;
48003
48092
  }
48093
+ /** Voting power information */
48004
48094
  interface VpGenqlSelection {
48095
+ /** Total voting power */
48005
48096
  vp?: boolean | number;
48097
+ /** Voting power broken down by strategy */
48006
48098
  vp_by_strategy?: boolean | number;
48099
+ /** Voting power state (e.g. final, pending) */
48007
48100
  vp_state?: boolean | number;
48008
48101
  __typename?: boolean | number;
48009
48102
  __scalar?: boolean | number;
48010
48103
  }
48104
+ /** Leaderboard entry for a user in a space */
48011
48105
  interface LeaderboardGenqlSelection {
48106
+ /** Space ID */
48012
48107
  space?: boolean | number;
48108
+ /** User address */
48013
48109
  user?: boolean | number;
48110
+ /** Number of proposals created */
48014
48111
  proposalsCount?: boolean | number;
48112
+ /** Number of votes cast */
48015
48113
  votesCount?: boolean | number;
48114
+ /** Unix timestamp of the user's most recent vote */
48016
48115
  lastVote?: boolean | number;
48116
+ /** Monetary value of the user's voting power */
48017
48117
  vpValue?: boolean | number;
48018
48118
  __typename?: boolean | number;
48019
48119
  __scalar?: boolean | number;
48020
48120
  }
48121
+ /** A configuration option */
48021
48122
  interface OptionGenqlSelection {
48123
+ /** Option name */
48022
48124
  name?: boolean | number;
48125
+ /** Option value */
48023
48126
  value?: boolean | number;
48024
48127
  __typename?: boolean | number;
48025
48128
  __scalar?: boolean | number;
48026
48129
  }
48130
+ /** Custom theme settings for a space skin */
48027
48131
  interface SkinSettingsGenqlSelection {
48132
+ /** Background color */
48028
48133
  bg_color?: boolean | number;
48134
+ /** Link color */
48029
48135
  link_color?: boolean | number;
48136
+ /** Text color */
48030
48137
  text_color?: boolean | number;
48138
+ /** Content area color */
48031
48139
  content_color?: boolean | number;
48140
+ /** Border color */
48032
48141
  border_color?: boolean | number;
48142
+ /** Heading color */
48033
48143
  heading_color?: boolean | number;
48144
+ /** Header color */
48034
48145
  header_color?: boolean | number;
48146
+ /** Primary accent color */
48035
48147
  primary_color?: boolean | number;
48148
+ /** Theme name (light or dark) */
48036
48149
  theme?: boolean | number;
48150
+ /** Custom logo URL */
48037
48151
  logo?: boolean | number;
48038
48152
  __typename?: boolean | number;
48039
48153
  __scalar?: boolean | number;
48040
48154
  }
48155
+ /** A blockchain network */
48041
48156
  interface NetworkGenqlSelection {
48157
+ /** Network chain ID */
48042
48158
  id?: boolean | number;
48159
+ /** Network display name */
48043
48160
  name?: boolean | number;
48161
+ /** Whether this is a premium network */
48044
48162
  premium?: boolean | number;
48163
+ /** Number of spaces using this network */
48045
48164
  spacesCount?: boolean | number;
48046
48165
  __typename?: boolean | number;
48047
48166
  __scalar?: boolean | number;
@@ -48380,5 +48499,5 @@ declare function diffFoundryStorageLayout(layoutBefore: FoundryStorage, layoutAf
48380
48499
  declare function hash(content: string | Uint8Array): Promise<string>;
48381
48500
  declare function cidV0ToBs58(cid: string): Promise<string>;
48382
48501
  //#endregion
48383
- export { Aip, AssetInfo, BlockscoutStyleSourceCode, BundleParams, ChainId, ChainList, ContractObject, EVENT_DB, EtherscanStyleSourceCode, ExplorerConfig, FoundryStorage, GenericIndexerArgs, GovernanceContract, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAccessControl_ABI, IAggregatorInterface_ABI, ICLRatePriceCapAdapter_ABI, ICLSynchronicityPriceAdapterBaseToPeg_ABI, ICLSynchronicityPriceAdapterPegToBase_ABI, ICLSynchronicityPriceAdapter_ABI, ICollector_ABI, IDefaultInterestRateStrategyV2_ABI, IERC1967_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IGovernance_ABI, IOwnable_ABI, IPausableUpgradeable_ABI, IPayloadsController_ABI, IPendlePriceCapAdapter_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IPriceCapAdapterBase_ABI, IPriceCapAdapterStable_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, ISafe_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IUmbrellaStakeToken_ABI, IUmbrella_ABI, IWithGuardian_ABI, IWrappedTokenGatewayV3_ABI, IncentivizedERC20_ABI, IndexerTopicState, Input, KNOWN_ROLES, LTV_PRECISION, Payload, PayloadState, PayloadsControllerContract, Proposal, ProposalState, RAY, ReserveConfiguration, SECONDS_PER_YEAR, SelfdestructCheckState, SoltypeElement, SoltypeType, StandardJsonInput, StateDiff, StateObject, Storage, StorageType, SupportedChainIds, TenderlyLog, TenderlyLogRaw, TenderlySimRequest, TenderlySimulationResponse, TenderlySimulationResponseObject, TenderlyStackTrace, Tenderly_createVnetParamsResponse, Trace, TransactionInfo, Umbrella_IRewardsController_ABI, Umbrella_IRewardsDistributor_ABI, VerificationStatus, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, addAssetPrice, addAssetSymbol, alchemyNetworkMap, alchemySupportedChainIds, assetIndexesToAsset, assetToBase, bitmapToIndexes, blockscoutExplorers, bytes32ToAddress, calculateAccruedRewards, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, cidV0ToBs58, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, diffFoundryStorageLayout, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, foundry_format, foundry_getStandardJsonInput, foundry_getStorageLayout, genericIndexer, getAlchemyRPC, getBits, getBytesValue, getClient, getCompleteReserveConfiguration, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getDynamicArraySlot, getEmissionPerSecondScaled, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getMdContractName, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getObjectDiff, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSolidityStorageSlotAddress, getSolidityStorageSlotBytes, getSolidityStorageSlotUint, getSourceCode, getTenderlyRpc, getVerificationStatus, hash, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseFrontmatterMd, parseLogs, prettifyNumber, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderMarkdownStateDiffReport, renderTenderlyReport, routescanExplorers, selfDestructStatusToString, setBits, snapshotClient, tenderlyExplorerMap, tenderlyNetworkMap, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_logsToAbiLogs, tenderly_pingExplorer, tenderly_sim, tenderly_simVnet, toAddressLink, toBinaryString, toTxLink, transformTenderlyStateDiff, validateAip, verificationStatusToString, wadDiv, wadToRay };
48502
+ export { Aip, AssetInfo, BALANCER_VAULT_V2, BALANCER_VAULT_V3, BlockscoutStyleSourceCode, BundleParams, ChainId, ChainList, ContractObject, EVENT_DB, EtherscanStyleSourceCode, ExplorerConfig, FoundryStorage, GenericIndexerArgs, GovernanceContract, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAccessControl_ABI, IAggregatorInterface_ABI, ICLRatePriceCapAdapter_ABI, ICLSynchronicityPriceAdapterBaseToPeg_ABI, ICLSynchronicityPriceAdapterPegToBase_ABI, ICLSynchronicityPriceAdapter_ABI, ICollector_ABI, IDefaultInterestRateStrategyV2_ABI, IERC1967_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IGovernance_ABI, IOwnable_ABI, IPausableUpgradeable_ABI, IPayloadsController_ABI, IPendlePriceCapAdapter_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IPriceCapAdapterBase_ABI, IPriceCapAdapterStable_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, ISafe_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IUmbrellaStakeToken_ABI, IUmbrella_ABI, IWithGuardian_ABI, IWrappedTokenGatewayV3_ABI, IncentivizedERC20_ABI, IndexerTopicState, Input, KNOWN_ROLES, LTV_PRECISION, MORPHO, Payload, PayloadState, PayloadsControllerContract, Proposal, ProposalState, RAY, ReserveConfiguration, SECONDS_PER_YEAR, SelfdestructCheckState, SoltypeElement, SoltypeType, StandardJsonInput, StateDiff, StateObject, Storage, StorageType, SupportedChainIds, TenderlyLog, TenderlyLogRaw, TenderlySimRequest, TenderlySimulationResponse, TenderlySimulationResponseObject, TenderlyStackTrace, Tenderly_createVnetParamsResponse, Trace, TransactionInfo, UNISWAP_V4_MANAGER, Umbrella_IRewardsController_ABI, Umbrella_IRewardsDistributor_ABI, VELORA_PORTIKUS, VerificationStatus, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, addAssetPrice, addAssetSymbol, alchemyNetworkMap, alchemySupportedChainIds, assetIndexesToAsset, assetToBase, bitmapToIndexes, blockscoutExplorers, bytes32ToAddress, calculateAccruedRewards, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, cidV0ToBs58, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, diffFoundryStorageLayout, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, foundry_format, foundry_getStandardJsonInput, foundry_getStorageLayout, genericIndexer, getAlchemyRPC, getBits, getBytesValue, getClient, getClosestBlock, getCompleteReserveConfiguration, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getDynamicArraySlot, getEmissionPerSecondScaled, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getMdContractName, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getObjectDiff, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSolidityStorageSlotAddress, getSolidityStorageSlotBytes, getSolidityStorageSlotUint, getSourceCode, getTenderlyRpc, getVerificationStatus, hash, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseFrontmatterMd, parseLogs, prettifyNumber, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderMarkdownStateDiffReport, renderTenderlyReport, routescanExplorers, selfDestructStatusToString, setBits, snapshotClient, tenderlyExplorerMap, tenderlyNetworkMap, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_logsToAbiLogs, tenderly_pingExplorer, tenderly_sim, tenderly_simVnet, toAddressLink, toBinaryString, toTxLink, transformTenderlyStateDiff, validateAip, verificationStatusToString, wadDiv, wadToRay };
48384
48503
  //# sourceMappingURL=index.d.mts.map