@bgd-labs/toolbox 0.2.20 → 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/browser.d.mts +957 -276
- package/dist/browser.d.mts.map +1 -1
- package/dist/browser.mjs +345 -234
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +936 -255
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +344 -233
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/browser.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
|
-
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
16352
16394
|
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
16395
|
+
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
16353
16396
|
logsBloom: blockTag extends "pending" ? null : `0x${string}`;
|
|
16354
16397
|
baseFeePerGas: bigint | null;
|
|
16355
16398
|
blobGasUsed: bigint;
|
|
@@ -16374,129 +16417,129 @@ declare function tenderly_createVnet({
|
|
|
16374
16417
|
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
16375
16418
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
16376
16419
|
transactions: includeTransactions extends true ? ({
|
|
16420
|
+
to: Address | null;
|
|
16421
|
+
from: Address;
|
|
16422
|
+
gas: bigint;
|
|
16423
|
+
nonce: number;
|
|
16377
16424
|
type: "legacy";
|
|
16378
16425
|
value: bigint;
|
|
16426
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16427
|
+
gasPrice: bigint;
|
|
16428
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
16429
|
+
maxFeePerGas?: undefined | undefined;
|
|
16430
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
16431
|
+
accessList?: undefined | undefined;
|
|
16432
|
+
authorizationList?: undefined | undefined;
|
|
16379
16433
|
yParity?: undefined | undefined;
|
|
16380
|
-
from: Address;
|
|
16381
|
-
gas: bigint;
|
|
16382
16434
|
hash: viem.Hash;
|
|
16383
16435
|
input: Hex;
|
|
16384
|
-
nonce: number;
|
|
16385
16436
|
r: Hex;
|
|
16386
16437
|
s: Hex;
|
|
16387
|
-
to: Address | null;
|
|
16388
16438
|
typeHex: Hex | null;
|
|
16389
16439
|
v: bigint;
|
|
16390
|
-
accessList?: undefined | undefined;
|
|
16391
|
-
authorizationList?: undefined | undefined;
|
|
16392
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16393
16440
|
chainId?: number | undefined;
|
|
16394
|
-
|
|
16395
|
-
|
|
16396
|
-
maxFeePerGas?: undefined | undefined;
|
|
16397
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16398
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
16399
|
-
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;
|
|
16441
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
|
|
16442
|
+
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;
|
|
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
|
} | {
|
|
16445
|
+
to: Address | null;
|
|
16446
|
+
from: Address;
|
|
16447
|
+
gas: bigint;
|
|
16448
|
+
nonce: number;
|
|
16402
16449
|
type: "eip2930";
|
|
16403
16450
|
value: bigint;
|
|
16451
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16452
|
+
gasPrice: bigint;
|
|
16453
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
16454
|
+
maxFeePerGas?: undefined | undefined;
|
|
16455
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
16456
|
+
accessList: viem.AccessList;
|
|
16457
|
+
authorizationList?: undefined | undefined;
|
|
16404
16458
|
yParity: number;
|
|
16405
|
-
from: Address;
|
|
16406
|
-
gas: bigint;
|
|
16407
16459
|
hash: viem.Hash;
|
|
16408
16460
|
input: Hex;
|
|
16409
|
-
nonce: number;
|
|
16410
16461
|
r: Hex;
|
|
16411
16462
|
s: Hex;
|
|
16412
|
-
to: Address | null;
|
|
16413
16463
|
typeHex: Hex | null;
|
|
16414
16464
|
v: bigint;
|
|
16415
|
-
accessList: viem.AccessList;
|
|
16416
|
-
authorizationList?: undefined | undefined;
|
|
16417
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16418
16465
|
chainId: number;
|
|
16419
|
-
|
|
16420
|
-
|
|
16421
|
-
maxFeePerGas?: undefined | undefined;
|
|
16422
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16423
|
-
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;
|
|
16424
|
-
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;
|
|
16466
|
+
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;
|
|
16467
|
+
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;
|
|
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
|
} | {
|
|
16470
|
+
to: Address | null;
|
|
16471
|
+
from: Address;
|
|
16472
|
+
gas: bigint;
|
|
16473
|
+
nonce: number;
|
|
16427
16474
|
type: "eip1559";
|
|
16428
16475
|
value: bigint;
|
|
16476
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16477
|
+
gasPrice?: undefined | undefined;
|
|
16478
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
16479
|
+
maxFeePerGas: bigint;
|
|
16480
|
+
maxPriorityFeePerGas: bigint;
|
|
16481
|
+
accessList: viem.AccessList;
|
|
16482
|
+
authorizationList?: undefined | undefined;
|
|
16429
16483
|
yParity: number;
|
|
16430
|
-
from: Address;
|
|
16431
|
-
gas: bigint;
|
|
16432
16484
|
hash: viem.Hash;
|
|
16433
16485
|
input: Hex;
|
|
16434
|
-
nonce: number;
|
|
16435
16486
|
r: Hex;
|
|
16436
16487
|
s: Hex;
|
|
16437
|
-
to: Address | null;
|
|
16438
16488
|
typeHex: Hex | null;
|
|
16439
16489
|
v: bigint;
|
|
16440
|
-
accessList: viem.AccessList;
|
|
16441
|
-
authorizationList?: undefined | undefined;
|
|
16442
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16443
16490
|
chainId: number;
|
|
16444
|
-
|
|
16445
|
-
|
|
16446
|
-
maxFeePerGas: bigint;
|
|
16447
|
-
maxPriorityFeePerGas: bigint;
|
|
16448
|
-
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;
|
|
16449
|
-
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;
|
|
16491
|
+
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;
|
|
16492
|
+
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;
|
|
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
|
} | {
|
|
16495
|
+
to: Address | null;
|
|
16496
|
+
from: Address;
|
|
16497
|
+
gas: bigint;
|
|
16498
|
+
nonce: number;
|
|
16452
16499
|
type: "eip4844";
|
|
16453
16500
|
value: bigint;
|
|
16501
|
+
blobVersionedHashes: readonly Hex[];
|
|
16502
|
+
gasPrice?: undefined | undefined;
|
|
16503
|
+
maxFeePerBlobGas: bigint;
|
|
16504
|
+
maxFeePerGas: bigint;
|
|
16505
|
+
maxPriorityFeePerGas: bigint;
|
|
16506
|
+
accessList: viem.AccessList;
|
|
16507
|
+
authorizationList?: undefined | undefined;
|
|
16454
16508
|
yParity: number;
|
|
16455
|
-
from: Address;
|
|
16456
|
-
gas: bigint;
|
|
16457
16509
|
hash: viem.Hash;
|
|
16458
16510
|
input: Hex;
|
|
16459
|
-
nonce: number;
|
|
16460
16511
|
r: Hex;
|
|
16461
16512
|
s: Hex;
|
|
16462
|
-
to: Address | null;
|
|
16463
16513
|
typeHex: Hex | null;
|
|
16464
16514
|
v: bigint;
|
|
16465
|
-
accessList: viem.AccessList;
|
|
16466
|
-
authorizationList?: undefined | undefined;
|
|
16467
|
-
blobVersionedHashes: readonly Hex[];
|
|
16468
16515
|
chainId: number;
|
|
16469
|
-
|
|
16470
|
-
|
|
16471
|
-
maxFeePerGas: bigint;
|
|
16472
|
-
maxPriorityFeePerGas: bigint;
|
|
16473
|
-
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;
|
|
16474
|
-
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;
|
|
16516
|
+
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;
|
|
16517
|
+
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;
|
|
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
|
} | {
|
|
16520
|
+
to: Address | null;
|
|
16521
|
+
from: Address;
|
|
16522
|
+
gas: bigint;
|
|
16523
|
+
nonce: number;
|
|
16477
16524
|
type: "eip7702";
|
|
16478
16525
|
value: bigint;
|
|
16526
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16527
|
+
gasPrice?: undefined | undefined;
|
|
16528
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
16529
|
+
maxFeePerGas: bigint;
|
|
16530
|
+
maxPriorityFeePerGas: bigint;
|
|
16531
|
+
accessList: viem.AccessList;
|
|
16532
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
16479
16533
|
yParity: number;
|
|
16480
|
-
from: Address;
|
|
16481
|
-
gas: bigint;
|
|
16482
16534
|
hash: viem.Hash;
|
|
16483
16535
|
input: Hex;
|
|
16484
|
-
nonce: number;
|
|
16485
16536
|
r: Hex;
|
|
16486
16537
|
s: Hex;
|
|
16487
|
-
to: Address | null;
|
|
16488
16538
|
typeHex: Hex | null;
|
|
16489
16539
|
v: bigint;
|
|
16490
|
-
accessList: viem.AccessList;
|
|
16491
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
16492
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16493
16540
|
chainId: number;
|
|
16494
|
-
|
|
16495
|
-
|
|
16496
|
-
maxFeePerGas: bigint;
|
|
16497
|
-
maxPriorityFeePerGas: bigint;
|
|
16498
|
-
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;
|
|
16499
|
-
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;
|
|
16541
|
+
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;
|
|
16542
|
+
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;
|
|
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
|
}>;
|
|
@@ -16581,129 +16624,129 @@ declare function tenderly_createVnet({
|
|
|
16581
16624
|
} | undefined) => Promise<viem.EstimateMaxPriorityFeePerGasReturnType>;
|
|
16582
16625
|
getStorageAt: (args: viem.GetStorageAtParameters) => Promise<viem.GetStorageAtReturnType>;
|
|
16583
16626
|
getTransaction: <blockTag extends viem.BlockTag = "latest">(args: viem.GetTransactionParameters<blockTag>) => Promise<{
|
|
16627
|
+
to: Address | null;
|
|
16628
|
+
from: Address;
|
|
16629
|
+
gas: bigint;
|
|
16630
|
+
nonce: number;
|
|
16584
16631
|
type: "legacy";
|
|
16585
16632
|
value: bigint;
|
|
16633
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16634
|
+
gasPrice: bigint;
|
|
16635
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
16636
|
+
maxFeePerGas?: undefined | undefined;
|
|
16637
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
16638
|
+
accessList?: undefined | undefined;
|
|
16639
|
+
authorizationList?: undefined | undefined;
|
|
16586
16640
|
yParity?: undefined | undefined;
|
|
16587
|
-
from: Address;
|
|
16588
|
-
gas: bigint;
|
|
16589
16641
|
hash: viem.Hash;
|
|
16590
16642
|
input: Hex;
|
|
16591
|
-
nonce: number;
|
|
16592
16643
|
r: Hex;
|
|
16593
16644
|
s: Hex;
|
|
16594
|
-
to: Address | null;
|
|
16595
16645
|
typeHex: Hex | null;
|
|
16596
16646
|
v: bigint;
|
|
16597
|
-
accessList?: undefined | undefined;
|
|
16598
|
-
authorizationList?: undefined | undefined;
|
|
16599
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16600
16647
|
chainId?: number | undefined;
|
|
16601
|
-
|
|
16602
|
-
|
|
16603
|
-
maxFeePerGas?: undefined | undefined;
|
|
16604
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16605
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
16606
|
-
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;
|
|
16648
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
|
|
16649
|
+
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;
|
|
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
|
} | {
|
|
16652
|
+
to: Address | null;
|
|
16653
|
+
from: Address;
|
|
16654
|
+
gas: bigint;
|
|
16655
|
+
nonce: number;
|
|
16609
16656
|
type: "eip2930";
|
|
16610
16657
|
value: bigint;
|
|
16658
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16659
|
+
gasPrice: bigint;
|
|
16660
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
16661
|
+
maxFeePerGas?: undefined | undefined;
|
|
16662
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
16663
|
+
accessList: viem.AccessList;
|
|
16664
|
+
authorizationList?: undefined | undefined;
|
|
16611
16665
|
yParity: number;
|
|
16612
|
-
from: Address;
|
|
16613
|
-
gas: bigint;
|
|
16614
16666
|
hash: viem.Hash;
|
|
16615
16667
|
input: Hex;
|
|
16616
|
-
nonce: number;
|
|
16617
16668
|
r: Hex;
|
|
16618
16669
|
s: Hex;
|
|
16619
|
-
to: Address | null;
|
|
16620
16670
|
typeHex: Hex | null;
|
|
16621
16671
|
v: bigint;
|
|
16622
|
-
accessList: viem.AccessList;
|
|
16623
|
-
authorizationList?: undefined | undefined;
|
|
16624
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16625
16672
|
chainId: number;
|
|
16626
|
-
|
|
16627
|
-
|
|
16628
|
-
maxFeePerGas?: undefined | undefined;
|
|
16629
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16630
|
-
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;
|
|
16631
|
-
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;
|
|
16673
|
+
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;
|
|
16674
|
+
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;
|
|
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
|
} | {
|
|
16677
|
+
to: Address | null;
|
|
16678
|
+
from: Address;
|
|
16679
|
+
gas: bigint;
|
|
16680
|
+
nonce: number;
|
|
16634
16681
|
type: "eip1559";
|
|
16635
16682
|
value: bigint;
|
|
16683
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16684
|
+
gasPrice?: undefined | undefined;
|
|
16685
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
16686
|
+
maxFeePerGas: bigint;
|
|
16687
|
+
maxPriorityFeePerGas: bigint;
|
|
16688
|
+
accessList: viem.AccessList;
|
|
16689
|
+
authorizationList?: undefined | undefined;
|
|
16636
16690
|
yParity: number;
|
|
16637
|
-
from: Address;
|
|
16638
|
-
gas: bigint;
|
|
16639
16691
|
hash: viem.Hash;
|
|
16640
16692
|
input: Hex;
|
|
16641
|
-
nonce: number;
|
|
16642
16693
|
r: Hex;
|
|
16643
16694
|
s: Hex;
|
|
16644
|
-
to: Address | null;
|
|
16645
16695
|
typeHex: Hex | null;
|
|
16646
16696
|
v: bigint;
|
|
16647
|
-
accessList: viem.AccessList;
|
|
16648
|
-
authorizationList?: undefined | undefined;
|
|
16649
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16650
16697
|
chainId: number;
|
|
16651
|
-
|
|
16652
|
-
|
|
16653
|
-
maxFeePerGas: bigint;
|
|
16654
|
-
maxPriorityFeePerGas: bigint;
|
|
16655
|
-
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;
|
|
16656
|
-
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;
|
|
16698
|
+
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;
|
|
16699
|
+
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;
|
|
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
|
} | {
|
|
16702
|
+
to: Address | null;
|
|
16703
|
+
from: Address;
|
|
16704
|
+
gas: bigint;
|
|
16705
|
+
nonce: number;
|
|
16659
16706
|
type: "eip4844";
|
|
16660
16707
|
value: bigint;
|
|
16708
|
+
blobVersionedHashes: readonly Hex[];
|
|
16709
|
+
gasPrice?: undefined | undefined;
|
|
16710
|
+
maxFeePerBlobGas: bigint;
|
|
16711
|
+
maxFeePerGas: bigint;
|
|
16712
|
+
maxPriorityFeePerGas: bigint;
|
|
16713
|
+
accessList: viem.AccessList;
|
|
16714
|
+
authorizationList?: undefined | undefined;
|
|
16661
16715
|
yParity: number;
|
|
16662
|
-
from: Address;
|
|
16663
|
-
gas: bigint;
|
|
16664
16716
|
hash: viem.Hash;
|
|
16665
16717
|
input: Hex;
|
|
16666
|
-
nonce: number;
|
|
16667
16718
|
r: Hex;
|
|
16668
16719
|
s: Hex;
|
|
16669
|
-
to: Address | null;
|
|
16670
16720
|
typeHex: Hex | null;
|
|
16671
16721
|
v: bigint;
|
|
16672
|
-
accessList: viem.AccessList;
|
|
16673
|
-
authorizationList?: undefined | undefined;
|
|
16674
|
-
blobVersionedHashes: readonly Hex[];
|
|
16675
16722
|
chainId: number;
|
|
16676
|
-
|
|
16677
|
-
|
|
16678
|
-
maxFeePerGas: bigint;
|
|
16679
|
-
maxPriorityFeePerGas: bigint;
|
|
16680
|
-
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;
|
|
16681
|
-
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;
|
|
16723
|
+
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;
|
|
16724
|
+
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;
|
|
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
|
} | {
|
|
16727
|
+
to: Address | null;
|
|
16728
|
+
from: Address;
|
|
16729
|
+
gas: bigint;
|
|
16730
|
+
nonce: number;
|
|
16684
16731
|
type: "eip7702";
|
|
16685
16732
|
value: bigint;
|
|
16733
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16734
|
+
gasPrice?: undefined | undefined;
|
|
16735
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
16736
|
+
maxFeePerGas: bigint;
|
|
16737
|
+
maxPriorityFeePerGas: bigint;
|
|
16738
|
+
accessList: viem.AccessList;
|
|
16739
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
16686
16740
|
yParity: number;
|
|
16687
|
-
from: Address;
|
|
16688
|
-
gas: bigint;
|
|
16689
16741
|
hash: viem.Hash;
|
|
16690
16742
|
input: Hex;
|
|
16691
|
-
nonce: number;
|
|
16692
16743
|
r: Hex;
|
|
16693
16744
|
s: Hex;
|
|
16694
|
-
to: Address | null;
|
|
16695
16745
|
typeHex: Hex | null;
|
|
16696
16746
|
v: bigint;
|
|
16697
|
-
accessList: viem.AccessList;
|
|
16698
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
16699
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16700
16747
|
chainId: number;
|
|
16701
|
-
|
|
16702
|
-
|
|
16703
|
-
maxFeePerGas: bigint;
|
|
16704
|
-
maxPriorityFeePerGas: bigint;
|
|
16705
|
-
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;
|
|
16706
|
-
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;
|
|
16748
|
+
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;
|
|
16749
|
+
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;
|
|
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] : "
|
|
20350
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "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<{
|
|
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] : "
|
|
23773
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "fees" | "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>;
|
|
@@ -23854,8 +23897,8 @@ declare function tenderly_createVnet({
|
|
|
23854
23897
|
verifySiweMessage: (args: {
|
|
23855
23898
|
blockNumber?: bigint | undefined | undefined;
|
|
23856
23899
|
blockTag?: viem.BlockTag | undefined;
|
|
23857
|
-
address?: `0x${string}` | undefined;
|
|
23858
23900
|
nonce?: string | undefined | undefined;
|
|
23901
|
+
address?: `0x${string}` | undefined;
|
|
23859
23902
|
domain?: string | undefined | undefined;
|
|
23860
23903
|
scheme?: string | undefined | undefined;
|
|
23861
23904
|
time?: Date | undefined;
|
|
@@ -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] : "
|
|
27851
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "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<{
|
|
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] : "
|
|
31280
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "fees" | "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<{
|
|
@@ -31364,8 +31407,8 @@ declare function tenderly_createVnet({
|
|
|
31364
31407
|
address: "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9";
|
|
31365
31408
|
type: "json-rpc";
|
|
31366
31409
|
}, chainOverride, calls>) => Promise<{
|
|
31367
|
-
chainId: number;
|
|
31368
31410
|
id: string;
|
|
31411
|
+
chainId: number;
|
|
31369
31412
|
version: string;
|
|
31370
31413
|
atomic: boolean;
|
|
31371
31414
|
capabilities?: {
|
|
@@ -32694,17 +32737,13 @@ declare function tenderly_createVnet({
|
|
|
32694
32737
|
[x: string]: readonly viem.TypedDataParameter[];
|
|
32695
32738
|
[x: `string[${string}]`]: undefined;
|
|
32696
32739
|
[x: `function[${string}]`]: undefined;
|
|
32697
|
-
[x: `uint[${string}]`]: undefined;
|
|
32698
|
-
[x: `uint256[${string}]`]: undefined;
|
|
32699
|
-
[x: `int256[${string}]`]: undefined;
|
|
32700
32740
|
[x: `address[${string}]`]: undefined;
|
|
32701
32741
|
[x: `bool[${string}]`]: undefined;
|
|
32702
32742
|
[x: `bytes[${string}]`]: undefined;
|
|
32743
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
32703
32744
|
[x: `bytes1[${string}]`]: undefined;
|
|
32704
32745
|
[x: `bytes2[${string}]`]: undefined;
|
|
32705
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
32706
32746
|
[x: `bytes3[${string}]`]: undefined;
|
|
32707
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
32708
32747
|
[x: `bytes5[${string}]`]: undefined;
|
|
32709
32748
|
[x: `bytes6[${string}]`]: undefined;
|
|
32710
32749
|
[x: `bytes7[${string}]`]: undefined;
|
|
@@ -32722,6 +32761,7 @@ declare function tenderly_createVnet({
|
|
|
32722
32761
|
[x: `bytes19[${string}]`]: undefined;
|
|
32723
32762
|
[x: `bytes20[${string}]`]: undefined;
|
|
32724
32763
|
[x: `bytes21[${string}]`]: undefined;
|
|
32764
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
32725
32765
|
[x: `bytes23[${string}]`]: undefined;
|
|
32726
32766
|
[x: `bytes24[${string}]`]: undefined;
|
|
32727
32767
|
[x: `bytes25[${string}]`]: undefined;
|
|
@@ -32764,6 +32804,8 @@ declare function tenderly_createVnet({
|
|
|
32764
32804
|
[x: `int232[${string}]`]: undefined;
|
|
32765
32805
|
[x: `int240[${string}]`]: undefined;
|
|
32766
32806
|
[x: `int248[${string}]`]: undefined;
|
|
32807
|
+
[x: `int256[${string}]`]: undefined;
|
|
32808
|
+
[x: `uint[${string}]`]: undefined;
|
|
32767
32809
|
[x: `uint8[${string}]`]: undefined;
|
|
32768
32810
|
[x: `uint16[${string}]`]: undefined;
|
|
32769
32811
|
[x: `uint24[${string}]`]: undefined;
|
|
@@ -32795,17 +32837,15 @@ declare function tenderly_createVnet({
|
|
|
32795
32837
|
[x: `uint232[${string}]`]: undefined;
|
|
32796
32838
|
[x: `uint240[${string}]`]: undefined;
|
|
32797
32839
|
[x: `uint248[${string}]`]: undefined;
|
|
32840
|
+
[x: `uint256[${string}]`]: undefined;
|
|
32798
32841
|
string?: undefined;
|
|
32799
|
-
uint256?: undefined;
|
|
32800
|
-
int256?: undefined;
|
|
32801
32842
|
address?: undefined;
|
|
32802
32843
|
bool?: undefined;
|
|
32803
32844
|
bytes?: undefined;
|
|
32845
|
+
bytes4?: undefined;
|
|
32804
32846
|
bytes1?: undefined;
|
|
32805
32847
|
bytes2?: undefined;
|
|
32806
|
-
bytes22?: undefined;
|
|
32807
32848
|
bytes3?: undefined;
|
|
32808
|
-
bytes4?: undefined;
|
|
32809
32849
|
bytes5?: undefined;
|
|
32810
32850
|
bytes6?: undefined;
|
|
32811
32851
|
bytes7?: undefined;
|
|
@@ -32823,6 +32863,7 @@ declare function tenderly_createVnet({
|
|
|
32823
32863
|
bytes19?: undefined;
|
|
32824
32864
|
bytes20?: undefined;
|
|
32825
32865
|
bytes21?: undefined;
|
|
32866
|
+
bytes22?: undefined;
|
|
32826
32867
|
bytes23?: undefined;
|
|
32827
32868
|
bytes24?: undefined;
|
|
32828
32869
|
bytes25?: undefined;
|
|
@@ -32864,6 +32905,7 @@ declare function tenderly_createVnet({
|
|
|
32864
32905
|
int232?: undefined;
|
|
32865
32906
|
int240?: undefined;
|
|
32866
32907
|
int248?: undefined;
|
|
32908
|
+
int256?: undefined;
|
|
32867
32909
|
uint8?: undefined;
|
|
32868
32910
|
uint16?: undefined;
|
|
32869
32911
|
uint24?: undefined;
|
|
@@ -32895,6 +32937,7 @@ declare function tenderly_createVnet({
|
|
|
32895
32937
|
uint232?: undefined;
|
|
32896
32938
|
uint240?: undefined;
|
|
32897
32939
|
uint248?: undefined;
|
|
32940
|
+
uint256?: undefined;
|
|
32898
32941
|
} | {
|
|
32899
32942
|
[key: string]: unknown;
|
|
32900
32943
|
}, primaryType extends string>(args: viem.SignTypedDataParameters<typedData, primaryType, {
|
|
@@ -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"
|
|
33555
|
+
declare const getNetworkEnv: (chainId: SupportedChainIds) => "RPC_MAINNET" | "RPC_BNB" | "RPC_POLYGON" | "RPC_SONIC" | "RPC_ZKSYNC" | "RPC_SONEIUM" | "RPC_MEGAETH" | "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";
|
|
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
|
+
nonce: `0x${string}`;
|
|
33670
|
+
hash: `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";
|
|
@@ -33794,6 +33880,7 @@ declare const alchemyNetworkMap: {
|
|
|
33794
33880
|
readonly 534352: "scroll-mainnet";
|
|
33795
33881
|
readonly 560048: "eth-hoodi";
|
|
33796
33882
|
readonly 685685: "gensyn-testnet";
|
|
33883
|
+
readonly 688689: "pharos-atlantic";
|
|
33797
33884
|
readonly 763373: "ink-sepolia";
|
|
33798
33885
|
readonly 808813: "bob-sepolia";
|
|
33799
33886
|
readonly 5042002: "arc-testnet";
|
|
@@ -33825,8 +33912,6 @@ declare const quicknodeNetworkMap: {
|
|
|
33825
33912
|
readonly 130: "unichain-mainnet";
|
|
33826
33913
|
readonly 137: "matic";
|
|
33827
33914
|
readonly 146: "sonic-mainnet";
|
|
33828
|
-
readonly 164: "omni-omega";
|
|
33829
|
-
readonly 166: "omni-mainnet";
|
|
33830
33915
|
readonly 196: "xlayer-mainnet";
|
|
33831
33916
|
readonly 250: "fantom";
|
|
33832
33917
|
readonly 252: "fraxtal-mainnet";
|
|
@@ -33846,12 +33931,8 @@ declare const quicknodeNetworkMap: {
|
|
|
33846
33931
|
readonly 1328: "sei-atlantic";
|
|
33847
33932
|
readonly 1329: "sei-pacific";
|
|
33848
33933
|
readonly 1480: "vana-mainnet";
|
|
33849
|
-
readonly 1513: "story-testnet";
|
|
33850
|
-
readonly 1516: "story-odyssey";
|
|
33851
33934
|
readonly 1993: "b3-sepolia";
|
|
33852
|
-
readonly 2442: "zkevm-cardona";
|
|
33853
33935
|
readonly 2741: "abstract-mainnet";
|
|
33854
|
-
readonly 2810: "morph-holesky";
|
|
33855
33936
|
readonly 2818: "morph-mainnet";
|
|
33856
33937
|
readonly 3338: "peaq-mainnet";
|
|
33857
33938
|
readonly 4801: "worldchain-sepolia";
|
|
@@ -33867,8 +33948,6 @@ declare const quicknodeNetworkMap: {
|
|
|
33867
33948
|
readonly 13371: "imx-mainnet";
|
|
33868
33949
|
readonly 13473: "imx-testnet";
|
|
33869
33950
|
readonly 14800: "vana-moksha";
|
|
33870
|
-
readonly 16600: "0g-newton";
|
|
33871
|
-
readonly 17000: "ethereum-holesky";
|
|
33872
33951
|
readonly 34443: "mode-mainnet";
|
|
33873
33952
|
readonly 42161: "arbitrum-mainnet";
|
|
33874
33953
|
readonly 42170: "nova-mainnet";
|
|
@@ -33879,12 +33958,9 @@ declare const quicknodeNetworkMap: {
|
|
|
33879
33958
|
readonly 59144: "linea-mainnet";
|
|
33880
33959
|
readonly 80002: "matic-amoy";
|
|
33881
33960
|
readonly 80069: "bera-bepolia";
|
|
33882
|
-
readonly 80084: "bera-bartio";
|
|
33883
|
-
readonly 80085: "bera-artio";
|
|
33884
33961
|
readonly 80094: "bera-mainnet";
|
|
33885
33962
|
readonly 81457: "blast-mainnet";
|
|
33886
33963
|
readonly 84532: "base-sepolia";
|
|
33887
|
-
readonly 421613: "arbitrum-goerli";
|
|
33888
33964
|
readonly 421614: "arbitrum-sepolia";
|
|
33889
33965
|
readonly 534351: "scroll-testnet";
|
|
33890
33966
|
readonly 534352: "scroll-mainnet";
|
|
@@ -34785,10 +34861,6 @@ declare const blockscoutExplorers: {
|
|
|
34785
34861
|
readonly api: "https://bob-sepolia.explorer.gobob.xyz/api";
|
|
34786
34862
|
readonly explorer: "https://bob-sepolia.explorer.gobob.xyz/";
|
|
34787
34863
|
};
|
|
34788
|
-
readonly 113: {
|
|
34789
|
-
readonly api: "https://coston2-explorer.flare.network/api";
|
|
34790
|
-
readonly explorer: "https://coston2-explorer.flare.network/";
|
|
34791
|
-
};
|
|
34792
34864
|
readonly 114: {
|
|
34793
34865
|
readonly api: "https://coston2-explorer.flare.network/api";
|
|
34794
34866
|
readonly explorer: "https://coston2-explorer.flare.network/";
|
|
@@ -35422,8 +35494,8 @@ declare const blockscoutExplorers: {
|
|
|
35422
35494
|
readonly explorer: "https://testnet.bitciexplorer.com";
|
|
35423
35495
|
};
|
|
35424
35496
|
readonly 1919: {
|
|
35425
|
-
readonly api: "https://
|
|
35426
|
-
readonly explorer: "https://
|
|
35497
|
+
readonly api: "https://turkscan.com/api";
|
|
35498
|
+
readonly explorer: "https://turkscan.com";
|
|
35427
35499
|
};
|
|
35428
35500
|
readonly 1923: {
|
|
35429
35501
|
readonly api: "https://explorer.swellnetwork.io/api";
|
|
@@ -35817,10 +35889,6 @@ declare const blockscoutExplorers: {
|
|
|
35817
35889
|
readonly api: "https://explore.steamexchange.io/api";
|
|
35818
35890
|
readonly explorer: "https://explore.steamexchange.io/";
|
|
35819
35891
|
};
|
|
35820
|
-
readonly 6342: {
|
|
35821
|
-
readonly api: "https://megaeth-testnet.blockscout.com/api";
|
|
35822
|
-
readonly explorer: "https://megaeth-testnet.blockscout.com/";
|
|
35823
|
-
};
|
|
35824
35892
|
readonly 6343: {
|
|
35825
35893
|
readonly api: "https://megaeth-testnet-v2.blockscout.com/api";
|
|
35826
35894
|
readonly explorer: "https://megaeth-testnet-v2.blockscout.com/";
|
|
@@ -36929,10 +36997,6 @@ declare const blockscoutExplorers: {
|
|
|
36929
36997
|
readonly api: "https://explorer.saakuru.network/api";
|
|
36930
36998
|
readonly explorer: "https://explorer.saakuru.network/";
|
|
36931
36999
|
};
|
|
36932
|
-
readonly 7777777: {
|
|
36933
|
-
readonly api: "https://explorer.zora.energy/api";
|
|
36934
|
-
readonly explorer: "https://explorer.zora.energy/";
|
|
36935
|
-
};
|
|
36936
37000
|
readonly 7890785: {
|
|
36937
37001
|
readonly api: "https://blockscout.xga.com/api";
|
|
36938
37002
|
readonly explorer: "https://blockscout.xga.com/";
|
|
@@ -37182,6 +37246,11 @@ declare const blockscoutExplorers: {
|
|
|
37182
37246
|
//#region src/ecosystem/generated/chainlinkFeeds.d.ts
|
|
37183
37247
|
declare const chainlinkFeeds: {
|
|
37184
37248
|
readonly "1": readonly [{
|
|
37249
|
+
readonly contractAddress: "0x009b8b4D648cFCC813ecB70db0f31ce305DD4B32";
|
|
37250
|
+
readonly proxyAddress: "0x0C2e4Df738e99e8db80012f5bb2a303f3f48Ca74";
|
|
37251
|
+
readonly decimals: 6;
|
|
37252
|
+
readonly name: "JTRSY NAV";
|
|
37253
|
+
}, {
|
|
37185
37254
|
readonly contractAddress: "0x00f0eFB3d9dBe7fE91fee44aE09DAe5DFA65c382";
|
|
37186
37255
|
readonly proxyAddress: "0x75A0d3264a949C2C920d7F25Df174af1FaF73399";
|
|
37187
37256
|
readonly decimals: 8;
|
|
@@ -37352,6 +37421,11 @@ declare const chainlinkFeeds: {
|
|
|
37352
37421
|
readonly proxyAddress: "0x59c2287c8E848310c809C061a1Be0d1556eFF4e2";
|
|
37353
37422
|
readonly decimals: 8;
|
|
37354
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";
|
|
37355
37429
|
}, {
|
|
37356
37430
|
readonly contractAddress: "0x24e3c657c27DfC7ea6f9f58e86387D846b3BaA59";
|
|
37357
37431
|
readonly proxyAddress: "0xdbd020CAeF83eFd542f4De03e3cF0C28A4428bd5";
|
|
@@ -37377,6 +37451,11 @@ declare const chainlinkFeeds: {
|
|
|
37377
37451
|
readonly proxyAddress: "0xCfE54B5cD566aB89272946F602D76Ea879CAb4a8";
|
|
37378
37452
|
readonly decimals: 8;
|
|
37379
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)";
|
|
37380
37459
|
}, {
|
|
37381
37460
|
readonly contractAddress: "0x2a29c3696dD424d3e703F5F3f2D6Af86598e9303";
|
|
37382
37461
|
readonly proxyAddress: "0xdF2917806E30300537aEB49A7663062F4d1F2b5F";
|
|
@@ -37453,6 +37532,11 @@ declare const chainlinkFeeds: {
|
|
|
37453
37532
|
readonly proxyAddress: "0x8f1dF6D7F2db73eECE86a18b4381F4707b918FB1";
|
|
37454
37533
|
readonly decimals: 8;
|
|
37455
37534
|
readonly name: "PYUSD / USD";
|
|
37535
|
+
}, {
|
|
37536
|
+
readonly contractAddress: "0x3B4f49f4aa5491B5a60C0724467A67b4910aEAAc";
|
|
37537
|
+
readonly proxyAddress: "0x3F0543aA057BcAeA152Fe9462Cb3ffaB305a6F8D";
|
|
37538
|
+
readonly decimals: 18;
|
|
37539
|
+
readonly name: "KAG Reserves";
|
|
37456
37540
|
}, {
|
|
37457
37541
|
readonly contractAddress: "0x3C405e1FE8a6BE5d9b714B8C88Ad913F236B1639";
|
|
37458
37542
|
readonly proxyAddress: "0xE8E65Fb9116875012F5990Ecaab290B3531DbeB9";
|
|
@@ -37509,6 +37593,16 @@ declare const chainlinkFeeds: {
|
|
|
37509
37593
|
readonly decimals: 8;
|
|
37510
37594
|
readonly name: "SVR COMP / USD";
|
|
37511
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)";
|
|
37512
37606
|
}, {
|
|
37513
37607
|
readonly contractAddress: "0x48afBeDF849449b7B9eea101EdAbdc81417b04c8";
|
|
37514
37608
|
readonly proxyAddress: "0x194a9AaF2e0b67c35915cD01101585A33Fe25CAa";
|
|
@@ -37535,11 +37629,6 @@ declare const chainlinkFeeds: {
|
|
|
37535
37629
|
readonly proxyAddress: "0x17D054eCac33D91F7340645341eFB5DE9009F1C1";
|
|
37536
37630
|
readonly decimals: 18;
|
|
37537
37631
|
readonly name: "GRT / ETH";
|
|
37538
|
-
}, {
|
|
37539
|
-
readonly contractAddress: "0x506F678C8E426BA87427674f814AD2166c17981D";
|
|
37540
|
-
readonly proxyAddress: "0x160AC928A16C93eD4895C2De6f81ECcE9a7eB7b4";
|
|
37541
|
-
readonly decimals: 18;
|
|
37542
|
-
readonly name: "LRC / ETH";
|
|
37543
37632
|
}, {
|
|
37544
37633
|
readonly contractAddress: "0x50e1007404025e412F13eD1e1C1e6F57957F6A6F";
|
|
37545
37634
|
readonly proxyAddress: "0xe80baC615c38D01c101B0B1b943b05E20C8c2f76";
|
|
@@ -37681,6 +37770,11 @@ declare const chainlinkFeeds: {
|
|
|
37681
37770
|
readonly proxyAddress: "0xCc70F09A6CC17553b2E31954cD36E4A2d89501f7";
|
|
37682
37771
|
readonly decimals: 8;
|
|
37683
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)";
|
|
37684
37778
|
}, {
|
|
37685
37779
|
readonly contractAddress: "0x6795D4A47c9c8F4117b409D966259CdCf6A9Eb6E";
|
|
37686
37780
|
readonly proxyAddress: "0x9944D86CEB9160aF5C5feB251FD671923323f8C3";
|
|
@@ -37701,6 +37795,11 @@ declare const chainlinkFeeds: {
|
|
|
37701
37795
|
readonly proxyAddress: "0x6029F53A5Df21E5e70C460F5E4c9Aad20427B090";
|
|
37702
37796
|
readonly decimals: 2;
|
|
37703
37797
|
readonly name: "BUIDL NAV";
|
|
37798
|
+
}, {
|
|
37799
|
+
readonly contractAddress: "0x6C659766386874a46dacd7a9aEf04818FD3b13F0";
|
|
37800
|
+
readonly proxyAddress: "0x3f929667bdf783b99274F10465a89d6aF772736E";
|
|
37801
|
+
readonly decimals: 18;
|
|
37802
|
+
readonly name: "ZEC / USD";
|
|
37704
37803
|
}, {
|
|
37705
37804
|
readonly contractAddress: "0x6Cc5173Ffd8d674C64f2DC7237730Ff021829865";
|
|
37706
37805
|
readonly proxyAddress: "0x5C00128d4d1c2F4f652C267d7bcdD7aC99C16E16";
|
|
@@ -37716,6 +37815,11 @@ declare const chainlinkFeeds: {
|
|
|
37716
37815
|
readonly proxyAddress: "0xB51dB716F1558Be00dE3DdAe4a94C9b605dEA526";
|
|
37717
37816
|
readonly decimals: 18;
|
|
37718
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)";
|
|
37719
37823
|
}, {
|
|
37720
37824
|
readonly contractAddress: "0x6dFF3fE0bF312f54551788f843F06177fE89C4bd";
|
|
37721
37825
|
readonly proxyAddress: "0x03c68933f7a3F76875C0bc670a58e69294cDFD01";
|
|
@@ -37737,6 +37841,11 @@ declare const chainlinkFeeds: {
|
|
|
37737
37841
|
readonly proxyAddress: "0x656c0544eF4C98A6a98491833A89204Abb045d6b";
|
|
37738
37842
|
readonly decimals: 18;
|
|
37739
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)";
|
|
37740
37849
|
}, {
|
|
37741
37850
|
readonly contractAddress: "0x757EB2AF32c76621FEAE483c6458C04ba19906Ba";
|
|
37742
37851
|
readonly proxyAddress: "0xe108E75d6bA28F14EA51F24F886c0B6BBeca575a";
|
|
@@ -37860,6 +37969,11 @@ declare const chainlinkFeeds: {
|
|
|
37860
37969
|
readonly proxyAddress: "0xD10aBbC76679a20055E167BB80A24ac851b37056";
|
|
37861
37970
|
readonly decimals: 8;
|
|
37862
37971
|
readonly name: "APE / USD";
|
|
37972
|
+
}, {
|
|
37973
|
+
readonly contractAddress: "0x89fB24e1c41c74c712500B86399751b1DA463697";
|
|
37974
|
+
readonly proxyAddress: "0x0b9bD3eAac381A1a6731ff6598a50638E5CFFD25";
|
|
37975
|
+
readonly decimals: 8;
|
|
37976
|
+
readonly name: "CRDYX NAV";
|
|
37863
37977
|
}, {
|
|
37864
37978
|
readonly contractAddress: "0x8F73090a7c58B8BDcC9A93cBB6816e5cC4f01E8c";
|
|
37865
37979
|
readonly proxyAddress: "0xB9E1E3A9feFf48998E45Fa90847ed4D467E8BcfD";
|
|
@@ -37972,17 +38086,17 @@ declare const chainlinkFeeds: {
|
|
|
37972
38086
|
readonly proxyAddress: "0xB06A26DF4Ab5853AaCCF2d21FAa00B82362684C3";
|
|
37973
38087
|
readonly decimals: 1;
|
|
37974
38088
|
readonly name: "Real Final Sales to Private Domestic Purchasers — Percent Change (Annual Rate)";
|
|
37975
|
-
}, {
|
|
37976
|
-
readonly contractAddress: "0x9Bc91f0E55b0d6509F65fd8C4b34b89F23AEfA35";
|
|
37977
|
-
readonly proxyAddress: "0xF0985f7E2CaBFf22CecC5a71282a89582c382EFE";
|
|
37978
|
-
readonly decimals: 18;
|
|
37979
|
-
readonly name: "FTT / ETH";
|
|
37980
38089
|
}, {
|
|
37981
38090
|
readonly contractAddress: "0x9F6B06e826d3DF391285c695749F8f921F6972D9";
|
|
37982
38091
|
readonly proxyAddress: "0x89904B6fcF8dAD1e5DA47dFdF69fC38Ad6be0bd5";
|
|
37983
38092
|
readonly decimals: 8;
|
|
37984
38093
|
readonly name: "SVR TSLAon-USD (Calculated)";
|
|
37985
38094
|
readonly secondaryProxyAddress: "0xC557dcbc32A01a4FBf7b9E3107BAF283f059EDc7";
|
|
38095
|
+
}, {
|
|
38096
|
+
readonly contractAddress: "0x9b3a984d1abbe03845CBa7A895f1ff7f4209d59c";
|
|
38097
|
+
readonly proxyAddress: "0xaB5Dd7DD7669072a1Ef27c0ba241120A27A1aeC3";
|
|
38098
|
+
readonly decimals: 18;
|
|
38099
|
+
readonly name: "KAU Reserves";
|
|
37986
38100
|
}, {
|
|
37987
38101
|
readonly contractAddress: "0x9c7CF045f964B45FFC6AA0Ffbffd7bb6d1b470A3";
|
|
37988
38102
|
readonly proxyAddress: "0x3C7dB4D25deAb7c89660512C5494Dc9A3FC40f78";
|
|
@@ -38165,6 +38279,11 @@ declare const chainlinkFeeds: {
|
|
|
38165
38279
|
readonly proxyAddress: "0xb325F0730472204Ef9813cBdaf9D9e97A4a7b5F1";
|
|
38166
38280
|
readonly decimals: 18;
|
|
38167
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";
|
|
38168
38287
|
}, {
|
|
38169
38288
|
readonly contractAddress: "0xBae95c3247AA52738C52d2Df94ac6932b6b1907F";
|
|
38170
38289
|
readonly proxyAddress: "0x91b99C9b75aF469a71eE1AB528e8da994A5D7030";
|
|
@@ -38205,6 +38324,11 @@ declare const chainlinkFeeds: {
|
|
|
38205
38324
|
readonly proxyAddress: "0x86392dC19c0b719886221c78AB11eb8Cf5c52812";
|
|
38206
38325
|
readonly decimals: 18;
|
|
38207
38326
|
readonly name: "STETH / ETH";
|
|
38327
|
+
}, {
|
|
38328
|
+
readonly contractAddress: "0xCB44fa91012781Ff12D4c258508b470B97F82D41";
|
|
38329
|
+
readonly proxyAddress: "0xB00341502DfEA6Ced8A5786b4059d29dA5E4D1FD";
|
|
38330
|
+
readonly decimals: 18;
|
|
38331
|
+
readonly name: "AUSD / USD";
|
|
38208
38332
|
}, {
|
|
38209
38333
|
readonly contractAddress: "0xCe14fF0ACf4a1e7Eab6802C64D317e3fD989f3C6";
|
|
38210
38334
|
readonly proxyAddress: "0x60AEd7d20AC6328f7BA771aD58931c996aff30E8";
|
|
@@ -38215,6 +38339,11 @@ declare const chainlinkFeeds: {
|
|
|
38215
38339
|
readonly proxyAddress: "0xa34317DB73e77d453b1B8d04550c44D10e981C8e";
|
|
38216
38340
|
readonly decimals: 8;
|
|
38217
38341
|
readonly name: "CAD / USD";
|
|
38342
|
+
}, {
|
|
38343
|
+
readonly contractAddress: "0xD0e3f81D467A1383F582D36a26E03E48D54cE391";
|
|
38344
|
+
readonly proxyAddress: "0xd92095BAf79a6ca6533019e952aDe0d3C5834f4b";
|
|
38345
|
+
readonly decimals: 8;
|
|
38346
|
+
readonly name: "VBILL NAV";
|
|
38218
38347
|
}, {
|
|
38219
38348
|
readonly contractAddress: "0xD0f0efAfB63ce1e46ae1aF84BCFE2A2A175E6797";
|
|
38220
38349
|
readonly proxyAddress: "0xda9258AFc797Cd64d1b6FC651051224cdAB1B25E";
|
|
@@ -38310,6 +38439,11 @@ declare const chainlinkFeeds: {
|
|
|
38310
38439
|
readonly proxyAddress: "0xd27e6D02b72eB6FCe04Ad5690C419196B4EF2885";
|
|
38311
38440
|
readonly decimals: 8;
|
|
38312
38441
|
readonly name: "IBTA / USD";
|
|
38442
|
+
}, {
|
|
38443
|
+
readonly contractAddress: "0xa4dD65e17944d735CE35DfE12b92EAB8f679A510";
|
|
38444
|
+
readonly proxyAddress: "0x3BbccB2301759D2e4A5692bA72DAb4b75dC43B1a";
|
|
38445
|
+
readonly decimals: 6;
|
|
38446
|
+
readonly name: "JAAA NAV";
|
|
38313
38447
|
}, {
|
|
38314
38448
|
readonly contractAddress: "0xa685F0Bb86044e9c6A182A3689bBF8A98eB5764C";
|
|
38315
38449
|
readonly proxyAddress: "0x0c89c488e763AC2d69cB058CCAC7A8B283EE3DbA";
|
|
@@ -38325,6 +38459,11 @@ declare const chainlinkFeeds: {
|
|
|
38325
38459
|
readonly proxyAddress: "0x4ffC43a60e009B551865A93d232E33Fce9f01507";
|
|
38326
38460
|
readonly decimals: 8;
|
|
38327
38461
|
readonly name: "SOL / USD";
|
|
38462
|
+
}, {
|
|
38463
|
+
readonly contractAddress: "0xaF452c2EA72b6E08AB64a67133a13C4ED35343eb";
|
|
38464
|
+
readonly proxyAddress: "0xAFa801e508613be7CA88D2d0fDB3F84f4c1B0384";
|
|
38465
|
+
readonly decimals: 18;
|
|
38466
|
+
readonly name: "C1USD Reserves";
|
|
38328
38467
|
}, {
|
|
38329
38468
|
readonly contractAddress: "0xad88fc1A810379Ef4EFbF2D97EdE57e306178e5a";
|
|
38330
38469
|
readonly proxyAddress: "0xd82562bb17557231Cd871e1B2525F3AB8d63D409";
|
|
@@ -38411,11 +38550,6 @@ declare const chainlinkFeeds: {
|
|
|
38411
38550
|
readonly proxyAddress: "0x8dD1CD88F43aF196ae478e91b9F5E4Ac69A97C61";
|
|
38412
38551
|
readonly decimals: 18;
|
|
38413
38552
|
readonly name: "SHIB / ETH";
|
|
38414
|
-
}, {
|
|
38415
|
-
readonly contractAddress: "0xcD2d64424aBE57AB8c70d9f9253d0C6DffeBB2E7";
|
|
38416
|
-
readonly proxyAddress: "0xE3fd61Cd8935EAE81e1c31AF36D7134e411490Cd";
|
|
38417
|
-
readonly decimals: 8;
|
|
38418
|
-
readonly name: "OUSDT / USD";
|
|
38419
38553
|
}, {
|
|
38420
38554
|
readonly contractAddress: "0xcd07B31D85756098334eDdC92DE755dEae8FE62f";
|
|
38421
38555
|
readonly proxyAddress: "0xbd7F896e60B650C01caf2d7279a1148189A68884";
|
|
@@ -38510,6 +38644,11 @@ declare const chainlinkFeeds: {
|
|
|
38510
38644
|
readonly proxyAddress: "0x14E5FC91Ddb3f97C33013Cc9fA74F54062Ad1Aa1";
|
|
38511
38645
|
readonly decimals: 8;
|
|
38512
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";
|
|
38513
38652
|
}, {
|
|
38514
38653
|
readonly contractAddress: "0xf17CB308606999DF25F5d4B9f74bD9fe47A5b3b3";
|
|
38515
38654
|
readonly proxyAddress: "0xAbE7a3643615Ed32d3431e11E0Ee5A486Cb27d48";
|
|
@@ -38741,6 +38880,11 @@ declare const chainlinkFeeds: {
|
|
|
38741
38880
|
readonly proxyAddress: "0x48f2EcF0Bd180239AEF474a9da945F2e2d41daA3";
|
|
38742
38881
|
readonly decimals: 8;
|
|
38743
38882
|
readonly name: "APT / USD";
|
|
38883
|
+
}, {
|
|
38884
|
+
readonly contractAddress: "0x36D86c4D65B534375380a31749c3E8c0E8756bD8";
|
|
38885
|
+
readonly proxyAddress: "0xAE33e077a02071E62d342E449Afd9895b016d541";
|
|
38886
|
+
readonly decimals: 8;
|
|
38887
|
+
readonly name: "SAND / USD";
|
|
38744
38888
|
}, {
|
|
38745
38889
|
readonly contractAddress: "0x384547665C7BF2bb7927E67A8a321E9a0c91Fe59";
|
|
38746
38890
|
readonly proxyAddress: "0x89178957E9bD07934d7792fFc0CF39f11c8C2B1F";
|
|
@@ -38846,11 +38990,6 @@ declare const chainlinkFeeds: {
|
|
|
38846
38990
|
readonly proxyAddress: "0xCc232dcFAAE6354cE191Bd574108c1aD03f86450";
|
|
38847
38991
|
readonly decimals: 8;
|
|
38848
38992
|
readonly name: "LINK / USD";
|
|
38849
|
-
}, {
|
|
38850
|
-
readonly contractAddress: "0x5d1345669278128B77AF9662C5D6B5e0b2FFD54A";
|
|
38851
|
-
readonly proxyAddress: "0xAE33e077a02071E62d342E449Afd9895b016d541";
|
|
38852
|
-
readonly decimals: 8;
|
|
38853
|
-
readonly name: "SAND / USD";
|
|
38854
38993
|
}, {
|
|
38855
38994
|
readonly contractAddress: "0x5d782463840e3a2Ed55e425916d498319f289DEd";
|
|
38856
38995
|
readonly proxyAddress: "0xD7bC56BBF8D555936cb5121f38d1d362c586776A";
|
|
@@ -39031,11 +39170,6 @@ declare const chainlinkFeeds: {
|
|
|
39031
39170
|
readonly proxyAddress: "0xC663315f7aF904fbbB0F785c32046dFA03e85270";
|
|
39032
39171
|
readonly decimals: 8;
|
|
39033
39172
|
readonly name: "SOL / USD";
|
|
39034
|
-
}, {
|
|
39035
|
-
readonly contractAddress: "0x95836878f632c8797434a359ab3863892BF7eEcc";
|
|
39036
|
-
readonly proxyAddress: "0x60025324DAB37DB3A623ea59Cc567937821EeA12";
|
|
39037
|
-
readonly decimals: 8;
|
|
39038
|
-
readonly name: "OUSDT / USD";
|
|
39039
39173
|
}, {
|
|
39040
39174
|
readonly contractAddress: "0x962e192e23fcc5Ec59141b58B112e5Fe0e0B70C0";
|
|
39041
39175
|
readonly proxyAddress: "0x4e8e8F5b3d0f49e00F3DFb9CF827d1A0FBe33B21";
|
|
@@ -39211,11 +39345,6 @@ declare const chainlinkFeeds: {
|
|
|
39211
39345
|
readonly proxyAddress: "0x6f6cED6B096708C1276056fdBdb7BbDe07Ca462C";
|
|
39212
39346
|
readonly decimals: 8;
|
|
39213
39347
|
readonly name: "SEI / USD";
|
|
39214
|
-
}, {
|
|
39215
|
-
readonly contractAddress: "0xa2eb6Ece70Cf255624ed2B2158A7dbC4dc4b02Ad";
|
|
39216
|
-
readonly proxyAddress: "0x4244c9aE5B97269B7301B622E22932FA49fBb763";
|
|
39217
|
-
readonly decimals: 8;
|
|
39218
|
-
readonly name: "mooBIFI / USD";
|
|
39219
39348
|
}, {
|
|
39220
39349
|
readonly contractAddress: "0xa44681BdaE78DB54cAc3d7f862d6A5BaE8c79CbC";
|
|
39221
39350
|
readonly proxyAddress: "0xFC3b7bd4368b2919f67E437f8c6Ca42C7FD55dd5";
|
|
@@ -39672,11 +39801,6 @@ declare const chainlinkFeeds: {
|
|
|
39672
39801
|
readonly proxyAddress: "0xb056B7C804297279A9a673289264c17E6Dc6055d";
|
|
39673
39802
|
readonly decimals: 8;
|
|
39674
39803
|
readonly name: "ATOM / USD";
|
|
39675
|
-
}, {
|
|
39676
|
-
readonly contractAddress: "0x5A3b0851519Bfd72b681609137efF5b2E47C381b";
|
|
39677
|
-
readonly proxyAddress: "0x47e01580C537Cd47dA339eA3a4aFb5998CCf037C";
|
|
39678
|
-
readonly decimals: 8;
|
|
39679
|
-
readonly name: "SPELL / USD";
|
|
39680
39804
|
}, {
|
|
39681
39805
|
readonly contractAddress: "0x5A69d0948b0607401cC821704b7E99916bc9452E";
|
|
39682
39806
|
readonly proxyAddress: "0xbD4Bcf7DCFF34fd67525FceB3992cec53C23892A";
|
|
@@ -39746,6 +39870,11 @@ declare const chainlinkFeeds: {
|
|
|
39746
39870
|
readonly decimals: 18;
|
|
39747
39871
|
readonly name: "SVR TWT / BNB";
|
|
39748
39872
|
readonly secondaryProxyAddress: "0x1A083354421Da4e26D78D55DAfaeBf4CFc541dAf";
|
|
39873
|
+
}, {
|
|
39874
|
+
readonly contractAddress: "0x66815140e049C986Ca00fae75591958c4c322a5e";
|
|
39875
|
+
readonly proxyAddress: "0xfa54C1c5F62ea3a5653a0b1b7148E26008eA1501";
|
|
39876
|
+
readonly decimals: 18;
|
|
39877
|
+
readonly name: "XAUM Reference Rate";
|
|
39749
39878
|
}, {
|
|
39750
39879
|
readonly contractAddress: "0x67AF9BF189380E91bF59a4EA0c7cCd9B710d6786";
|
|
39751
39880
|
readonly proxyAddress: "0x337B4889fed5557595c37a45c1BB9b057cC670AE";
|
|
@@ -39958,11 +40087,6 @@ declare const chainlinkFeeds: {
|
|
|
39958
40087
|
readonly proxyAddress: "0x3f5fc2cb37dA3B351F7EF968d72bE2eC3e1da08e";
|
|
39959
40088
|
readonly decimals: 8;
|
|
39960
40089
|
readonly name: "LISUSD / USD";
|
|
39961
|
-
}, {
|
|
39962
|
-
readonly contractAddress: "0xA90204b8Cffa45EDbca42CB577CDF6fafAbF0d33";
|
|
39963
|
-
readonly proxyAddress: "0x9f1fD2cEf7b226D555A747DA0411F93c5fe74e13";
|
|
39964
|
-
readonly decimals: 8;
|
|
39965
|
-
readonly name: "VET / USD";
|
|
39966
40090
|
}, {
|
|
39967
40091
|
readonly contractAddress: "0xAA6778bD1313ff4BF4F07b671B3B89A12aDD0277";
|
|
39968
40092
|
readonly proxyAddress: "0x964261740356cB4aaD0C3D2003Ce808A4176a46d";
|
|
@@ -40113,6 +40237,11 @@ declare const chainlinkFeeds: {
|
|
|
40113
40237
|
readonly proxyAddress: "0x20123C6ebd45c6496102BeEA86e1a6616Ca547c6";
|
|
40114
40238
|
readonly decimals: 8;
|
|
40115
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";
|
|
40116
40245
|
}, {
|
|
40117
40246
|
readonly contractAddress: "0xF2cb4eaa89Efc51aa79bA31F815361EB47Be34c5";
|
|
40118
40247
|
readonly proxyAddress: "0xeDA73F8acb669274B15A977Cb0cdA57a84F18c2a";
|
|
@@ -41136,11 +41265,6 @@ declare const chainlinkFeeds: {
|
|
|
41136
41265
|
readonly proxyAddress: "0x5c3890e86f3E7Ed7F5390532De147953580f1605";
|
|
41137
41266
|
readonly decimals: 8;
|
|
41138
41267
|
readonly name: "USDe / USD";
|
|
41139
|
-
}, {
|
|
41140
|
-
readonly contractAddress: "0xbC71031a5588b6bDfEA3C2974bD6fa0F5b81d49b";
|
|
41141
|
-
readonly proxyAddress: "0xF626964Ba5e81405f47e8004F0b276Bb974742B5";
|
|
41142
|
-
readonly decimals: 8;
|
|
41143
|
-
readonly name: "BADGER / USD";
|
|
41144
41268
|
}, {
|
|
41145
41269
|
readonly contractAddress: "0xbc128024295Ed113926C4Dd49fb71964cfc9D516";
|
|
41146
41270
|
readonly proxyAddress: "0x692AE5510cA9070095A496dbcFBCDA99D4024Cd9";
|
|
@@ -41357,11 +41481,6 @@ declare const chainlinkFeeds: {
|
|
|
41357
41481
|
readonly proxyAddress: "0x852aE0B1Af1aAeDB0fC4428B4B24420780976ca8";
|
|
41358
41482
|
readonly decimals: 1;
|
|
41359
41483
|
readonly name: "PCE Price Index — Percent Change (Annual Rate)";
|
|
41360
|
-
}, {
|
|
41361
|
-
readonly contractAddress: "0xB70b802953462312A47c857b940991108F8d43De";
|
|
41362
|
-
readonly proxyAddress: "0x790181e93e9F4Eedb5b864860C12e4d2CffFe73B";
|
|
41363
|
-
readonly decimals: 8;
|
|
41364
|
-
readonly name: "OUSDT / USD";
|
|
41365
41484
|
}, {
|
|
41366
41485
|
readonly contractAddress: "0xBb223278eCE74329276099E71d0F0be70Ba74faC";
|
|
41367
41486
|
readonly proxyAddress: "0xCdF021EbD115b1B225801F4056c40F4Ff14A574d";
|
|
@@ -41755,11 +41874,6 @@ declare const chainlinkFeeds: {
|
|
|
41755
41874
|
readonly proxyAddress: "0x877654fE4da2FC54453a212aac601247b2A1B786";
|
|
41756
41875
|
readonly decimals: 18;
|
|
41757
41876
|
readonly name: "USR-USD Exchange Rate";
|
|
41758
|
-
}, {
|
|
41759
|
-
readonly contractAddress: "0x7DCcF223c077e8D1e2297d7788Bb6E62af89dFc9";
|
|
41760
|
-
readonly proxyAddress: "0xF049354158e13F6794A3cCD236694E0e1BD9AF79";
|
|
41761
|
-
readonly decimals: 8;
|
|
41762
|
-
readonly name: "OUSDT / USD";
|
|
41763
41877
|
}, {
|
|
41764
41878
|
readonly contractAddress: "0x842291cfbEf554fF48197316136dF9beA63Eaac6";
|
|
41765
41879
|
readonly proxyAddress: "0x4516fDa3259110EefAfC6fBcE266417B3F3b985a";
|
|
@@ -41826,11 +41940,6 @@ declare const chainlinkFeeds: {
|
|
|
41826
41940
|
readonly proxyAddress: "0x5166FC3adff16E99bb099834a1315e57C5444394";
|
|
41827
41941
|
readonly decimals: 8;
|
|
41828
41942
|
readonly name: "USDe / USD";
|
|
41829
|
-
}, {
|
|
41830
|
-
readonly contractAddress: "0x1019a076F73432AAb97A73CD04e4B6Ad968C09C2";
|
|
41831
|
-
readonly proxyAddress: "0xC5fD97adABf827e9FCC4ed936360f47080F35868";
|
|
41832
|
-
readonly decimals: 8;
|
|
41833
|
-
readonly name: "OUSDT / USD";
|
|
41834
41943
|
}, {
|
|
41835
41944
|
readonly contractAddress: "0x154650BD0B40E449214f9c544cE693889ae65f27";
|
|
41836
41945
|
readonly proxyAddress: "0xaDE1b9AbB98c6A542E4B49db2588a3Ec4bF7Cdf0";
|
|
@@ -42090,6 +42199,11 @@ declare const chainlinkFeeds: {
|
|
|
42090
42199
|
readonly proxyAddress: "0xb4482096e3cdE116C15fC0D700a73a58FEdeB8c0";
|
|
42091
42200
|
readonly decimals: 18;
|
|
42092
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";
|
|
42093
42207
|
}, {
|
|
42094
42208
|
readonly contractAddress: "0x21b1E4eA0E9AE2e79932662300eB12A0f90AbE59";
|
|
42095
42209
|
readonly proxyAddress: "0x591e79239a7d679378eC8c847e5038150364C78F";
|
|
@@ -42185,11 +42299,6 @@ declare const chainlinkFeeds: {
|
|
|
42185
42299
|
readonly proxyAddress: "0xc1a849217F3BaB97F1a46b990e369D6705B4be96";
|
|
42186
42300
|
readonly decimals: 18;
|
|
42187
42301
|
readonly name: "yUSD / USD Exchange Rate";
|
|
42188
|
-
}, {
|
|
42189
|
-
readonly contractAddress: "0x41F3a42270f161Ad1b25Cdb06bAd6cFC123E5C99";
|
|
42190
|
-
readonly proxyAddress: "0x2B1de6AD89847C11aF2ede14edB013AA79E94aC9";
|
|
42191
|
-
readonly decimals: 8;
|
|
42192
|
-
readonly name: "MAG7.SSI / USD";
|
|
42193
42302
|
}, {
|
|
42194
42303
|
readonly contractAddress: "0x43F92e6805196FA6cd7a19F3d769957f95Baa261";
|
|
42195
42304
|
readonly proxyAddress: "0xB366E8Efb9661323ff477CedF70f55F897D6cFeA";
|
|
@@ -42399,6 +42508,11 @@ declare const chainlinkFeeds: {
|
|
|
42399
42508
|
readonly proxyAddress: "0xd9c5B59A913d75AC44EB51b7E0F3f5B58816ECAc";
|
|
42400
42509
|
readonly decimals: 0;
|
|
42401
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";
|
|
42402
42516
|
}, {
|
|
42403
42517
|
readonly contractAddress: "0x801B6E7d186370EeE854F76481643c22c7d1da99";
|
|
42404
42518
|
readonly proxyAddress: "0xdEd37FC1400B8022968441356f771639ad1B23aA";
|
|
@@ -42640,11 +42754,6 @@ declare const chainlinkFeeds: {
|
|
|
42640
42754
|
readonly proxyAddress: "0xFCb2C36ac8A91cE9D3c94590ED239E1f683467fe";
|
|
42641
42755
|
readonly decimals: 8;
|
|
42642
42756
|
readonly name: "USDAI / USD";
|
|
42643
|
-
}, {
|
|
42644
|
-
readonly contractAddress: "0xF4f6843A8003417b04EAbDd7a1bAe2cAFCBF0aCC";
|
|
42645
|
-
readonly proxyAddress: "0x721F1B4dc604AEA0661Aa9982AB624e5756B31f2";
|
|
42646
|
-
readonly decimals: 8;
|
|
42647
|
-
readonly name: "mooBIFI / USD";
|
|
42648
42757
|
}, {
|
|
42649
42758
|
readonly contractAddress: "0xF929EC74AB71033792308dB7fbE82Eb87b42ac3E";
|
|
42650
42759
|
readonly proxyAddress: "0x95Eba7bE2f755a298984bd714822994f1d4B6313";
|
|
@@ -42737,6 +42846,11 @@ declare const chainlinkFeeds: {
|
|
|
42737
42846
|
readonly proxyAddress: "0xe2b3688371130f333443428Cf03f27Ce0378F9dC";
|
|
42738
42847
|
readonly decimals: 1;
|
|
42739
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";
|
|
42740
42854
|
}, {
|
|
42741
42855
|
readonly contractAddress: "0xe09bE26CF556F7211c16B75BE9fB4DB433A0d37E";
|
|
42742
42856
|
readonly proxyAddress: "0x06bdFe07E71C476157FC025d3cCD4BBe08e83EF9";
|
|
@@ -42878,6 +42992,11 @@ declare const chainlinkFeeds: {
|
|
|
42878
42992
|
readonly proxyAddress: "0x4050bD8263771f8BBded08C299BD944488a91AaD";
|
|
42879
42993
|
readonly decimals: 18;
|
|
42880
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";
|
|
42881
43000
|
}, {
|
|
42882
43001
|
readonly contractAddress: "0x126b9a529Dd6f14C62c494F6b6b5AA73d9f6F849";
|
|
42883
43002
|
readonly proxyAddress: "0x3609baAa0a9b1f0FE4d6CC01884585d0e191C3E3";
|
|
@@ -43057,6 +43176,11 @@ declare const chainlinkFeeds: {
|
|
|
43057
43176
|
readonly proxyAddress: "0x639Fe6ab55C921f74e7fac1ee960C0B6293ba612";
|
|
43058
43177
|
readonly decimals: 8;
|
|
43059
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";
|
|
43060
43184
|
}, {
|
|
43061
43185
|
readonly contractAddress: "0x37b300020b77d043F2A8cf7700f1b05d6d889090";
|
|
43062
43186
|
readonly proxyAddress: "0xf2215b9c35b1697B5f47e407c917a40D055E68d7";
|
|
@@ -43067,11 +43191,6 @@ declare const chainlinkFeeds: {
|
|
|
43067
43191
|
readonly proxyAddress: "0x054296f0D036b95531B4E14aFB578B80CFb41252";
|
|
43068
43192
|
readonly decimals: 8;
|
|
43069
43193
|
readonly name: "SNX / USD";
|
|
43070
|
-
}, {
|
|
43071
|
-
readonly contractAddress: "0x39fdD7815faDA275d666437D9571967Ef6417880";
|
|
43072
|
-
readonly proxyAddress: "0x05Bc6e5Fb110589bb366A3Cd7CdBe143EeBA2168";
|
|
43073
|
-
readonly decimals: 18;
|
|
43074
|
-
readonly name: "SWETH / ETH";
|
|
43075
43194
|
}, {
|
|
43076
43195
|
readonly contractAddress: "0x3A00c8Ffe6d87C00c55543f3a265E153bC50e754";
|
|
43077
43196
|
readonly proxyAddress: "0x9fa74925F21ad6C86d8f402EF490cFbA2Fa5e9bE";
|
|
@@ -43442,11 +43561,6 @@ declare const chainlinkFeeds: {
|
|
|
43442
43561
|
readonly proxyAddress: null;
|
|
43443
43562
|
readonly decimals: 18;
|
|
43444
43563
|
readonly name: "TRUMP/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43445
|
-
}, {
|
|
43446
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43447
|
-
readonly proxyAddress: null;
|
|
43448
|
-
readonly decimals: 18;
|
|
43449
|
-
readonly name: "CAT/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43450
43564
|
}, {
|
|
43451
43565
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43452
43566
|
readonly proxyAddress: null;
|
|
@@ -44426,12 +44540,6 @@ declare const chainlinkFeeds: {
|
|
|
44426
44540
|
readonly proxyAddress: "0x9ca3D04Bdf90Ddc0074Ea57d3e2D331CD4b2d5a2";
|
|
44427
44541
|
readonly decimals: 8;
|
|
44428
44542
|
readonly name: "solvBTC / BTC";
|
|
44429
|
-
}, {
|
|
44430
|
-
readonly contractAddress: "0x7399107Df5344E0b928e75f3ACfa90569eC20848";
|
|
44431
|
-
readonly proxyAddress: "0x16F384AeF73f3f3f7B566125b1f144Bc7c847b1E";
|
|
44432
|
-
readonly decimals: 8;
|
|
44433
|
-
readonly name: "SVR FRAX / USD";
|
|
44434
|
-
readonly secondaryProxyAddress: "0x7537F8c0f8F7E7def07BF9e91e636e55881C7A66";
|
|
44435
44543
|
}, {
|
|
44436
44544
|
readonly contractAddress: "0x73BBf768a429a4f80c47D0d22DdBCe5823c97d7a";
|
|
44437
44545
|
readonly proxyAddress: "0x052d4200b624b07262F574af26C71A6553996Ab5";
|
|
@@ -44915,6 +45023,16 @@ declare const chainlinkFeeds: {
|
|
|
44915
45023
|
readonly proxyAddress: "0xdc49F292ad1bb3DAb6C11363d74ED06F38b9bd9C";
|
|
44916
45024
|
readonly decimals: 8;
|
|
44917
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";
|
|
44918
45036
|
}, {
|
|
44919
45037
|
readonly contractAddress: "0xb98512d5a21e13cf27b84Cc90eA118AE14134A76";
|
|
44920
45038
|
readonly proxyAddress: "0x021126143D0B6e20Bb69beFcc860e7E523df8055";
|
|
@@ -45102,6 +45220,11 @@ declare const chainlinkFeeds: {
|
|
|
45102
45220
|
readonly proxyAddress: "0x066Ba4567C40cB315EAd257Bd86585bb4a74004f";
|
|
45103
45221
|
readonly decimals: 3;
|
|
45104
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";
|
|
45105
45228
|
}, {
|
|
45106
45229
|
readonly contractAddress: "0xf6bACC7750c23A34b996A355A6E78b17Fc4BaEdC";
|
|
45107
45230
|
readonly proxyAddress: "0x383b3624478124697BEF675F07cA37570b73992f";
|
|
@@ -45414,11 +45537,6 @@ declare const chainlinkFeeds: {
|
|
|
45414
45537
|
readonly proxyAddress: "0x69C2703b8F1A85a2EF6aBDd085699a9F909BE053";
|
|
45415
45538
|
readonly decimals: 8;
|
|
45416
45539
|
readonly name: "ADA / USD";
|
|
45417
|
-
}, {
|
|
45418
|
-
readonly contractAddress: "0x461b95e560697B0C83AB569f06034832a4b62707";
|
|
45419
|
-
readonly proxyAddress: "0x99311B4bf6D8E3D3B4b9fbdD09a1B0F4Ad8e06E9";
|
|
45420
|
-
readonly decimals: 8;
|
|
45421
|
-
readonly name: "BTC.b Proof of Reserves";
|
|
45422
45540
|
}, {
|
|
45423
45541
|
readonly contractAddress: "0x4A5cE69A1aDA639042B30e1574Eb9D6e939388A3";
|
|
45424
45542
|
readonly proxyAddress: "0x5C2d58627Fbe746f5ea24Ef6D618f09f8e3f0122";
|
|
@@ -46141,11 +46259,6 @@ declare const chainlinkFeeds: {
|
|
|
46141
46259
|
readonly proxyAddress: "0xE61Da4C909F7d86797a0D06Db63c34f76c9bCBDC";
|
|
46142
46260
|
readonly decimals: 18;
|
|
46143
46261
|
readonly name: "wstETH-stETH Exchange Rate";
|
|
46144
|
-
}, {
|
|
46145
|
-
readonly contractAddress: "0xD672b32F0AcDF22b850852D4Cd7c59bc920D523a";
|
|
46146
|
-
readonly proxyAddress: "0x3fBB86e564fC1303625BA88EaE55740f3A649d36";
|
|
46147
|
-
readonly decimals: 18;
|
|
46148
|
-
readonly name: "RETH / ETH";
|
|
46149
46262
|
}, {
|
|
46150
46263
|
readonly contractAddress: "0xD80196353308B3b0B34DA405b049F7F4f0E4C298";
|
|
46151
46264
|
readonly proxyAddress: "0x538E0fC727ce4604e25354D082890cdb5553d33B";
|
|
@@ -46176,6 +46289,11 @@ declare const chainlinkFeeds: {
|
|
|
46176
46289
|
readonly proxyAddress: "0x7e73693088d88694146ab30f1dA5903a4489e992";
|
|
46177
46290
|
readonly decimals: 8;
|
|
46178
46291
|
readonly name: "WBTC / BTC";
|
|
46292
|
+
}, {
|
|
46293
|
+
readonly contractAddress: "0xb5d6a076549Af9E436f4D18F495772204f746f34";
|
|
46294
|
+
readonly proxyAddress: "0x5df16dE72003c33dE38f8620BF91f0e7c4eE7300";
|
|
46295
|
+
readonly decimals: 18;
|
|
46296
|
+
readonly name: "EURC / USD";
|
|
46179
46297
|
}, {
|
|
46180
46298
|
readonly contractAddress: "0xeAEE2B0DA69DFf8977f2E73887509B51fbf9bBfd";
|
|
46181
46299
|
readonly proxyAddress: "0xd63624330Ed4e50dD65FeA45c08558F78a3d8abd";
|
|
@@ -46227,10 +46345,10 @@ declare const tenderlyNetworkMap: {
|
|
|
46227
46345
|
readonly 2201: "stable-testnet";
|
|
46228
46346
|
readonly 2523: "fraxtal-hoodi";
|
|
46229
46347
|
readonly 4202: "lisk-sepolia";
|
|
46348
|
+
readonly 4326: "megaeth";
|
|
46230
46349
|
readonly 4801: "worldchain-sepolia";
|
|
46231
46350
|
readonly 5000: "mantle";
|
|
46232
46351
|
readonly 5003: "mantle-sepolia";
|
|
46233
|
-
readonly 8008: "polynomial";
|
|
46234
46352
|
readonly 8453: "base";
|
|
46235
46353
|
readonly 9069: "af-nexus-mainnet";
|
|
46236
46354
|
readonly 9070: "af-nexus-testnet";
|
|
@@ -46262,7 +46380,6 @@ declare const tenderlyNetworkMap: {
|
|
|
46262
46380
|
readonly 59902: "metis-sepolia";
|
|
46263
46381
|
readonly 60808: "bob";
|
|
46264
46382
|
readonly 80002: "polygon-amoy";
|
|
46265
|
-
readonly 80008: "polynomial-sepolia";
|
|
46266
46383
|
readonly 80069: "bepolia";
|
|
46267
46384
|
readonly 80094: "berachain";
|
|
46268
46385
|
readonly 81457: "blast";
|
|
@@ -46280,7 +46397,6 @@ declare const tenderlyNetworkMap: {
|
|
|
46280
46397
|
readonly 11142220: "celo-sepolia";
|
|
46281
46398
|
readonly 11155111: "sepolia";
|
|
46282
46399
|
readonly 11155420: "optimism-sepolia";
|
|
46283
|
-
readonly 531050104: "sophon-testnet";
|
|
46284
46400
|
};
|
|
46285
46401
|
declare const tenderlyExplorerMap: {
|
|
46286
46402
|
readonly 1: "mainnet";
|
|
@@ -46330,12 +46446,12 @@ declare const tenderlyExplorerMap: {
|
|
|
46330
46446
|
readonly 2523: "fraxtal-hoodi";
|
|
46331
46447
|
readonly 3338: "peaq";
|
|
46332
46448
|
readonly 4202: "lisk-sepolia";
|
|
46449
|
+
readonly 4326: "megaeth";
|
|
46333
46450
|
readonly 4801: "worldchain-sepolia";
|
|
46334
46451
|
readonly 5000: "mantle";
|
|
46335
46452
|
readonly 5003: "mantle-sepolia";
|
|
46336
46453
|
readonly 7000: "zetachain";
|
|
46337
46454
|
readonly 7001: "zetachain-testnet";
|
|
46338
|
-
readonly 8008: "polynomial-mainnet";
|
|
46339
46455
|
readonly 8453: "base";
|
|
46340
46456
|
readonly 9069: "af-nexus-mainnet";
|
|
46341
46457
|
readonly 9070: "af-nexus-testnet";
|
|
@@ -46369,7 +46485,6 @@ declare const tenderlyExplorerMap: {
|
|
|
46369
46485
|
readonly 59902: "metis-sepolia";
|
|
46370
46486
|
readonly 60808: "bob";
|
|
46371
46487
|
readonly 80002: "polygon-amoy";
|
|
46372
|
-
readonly 80008: "polynomial-sepolia";
|
|
46373
46488
|
readonly 80069: "bepolia";
|
|
46374
46489
|
readonly 80094: "berachain";
|
|
46375
46490
|
readonly 81457: "blast";
|
|
@@ -46392,7 +46507,6 @@ declare const tenderlyExplorerMap: {
|
|
|
46392
46507
|
readonly 11155111: "sepolia";
|
|
46393
46508
|
readonly 11155420: "optimistic-sepolia";
|
|
46394
46509
|
readonly 13374202: "ethereal-testnet";
|
|
46395
|
-
readonly 531050104: "sophon-testnet";
|
|
46396
46510
|
};
|
|
46397
46511
|
//#endregion
|
|
46398
46512
|
//#region src/ecosystem/generated/snapshot-org/schema.d.ts
|
|
@@ -46404,352 +46518,637 @@ type Scalars = {
|
|
|
46404
46518
|
Float: number;
|
|
46405
46519
|
};
|
|
46406
46520
|
interface Query {
|
|
46521
|
+
/** Returns a single space by its ID (e.g. "ens.eth") */
|
|
46407
46522
|
space: (Space | null);
|
|
46523
|
+
/** Returns a list of spaces with optional filtering, ordering, and pagination */
|
|
46408
46524
|
spaces: ((Space | null)[] | null);
|
|
46525
|
+
/** Returns a ranked list of spaces with aggregated metrics */
|
|
46409
46526
|
ranking: (RankingObject | null);
|
|
46527
|
+
/** Returns a single proposal by its ID */
|
|
46410
46528
|
proposal: (Proposal$1 | null);
|
|
46529
|
+
/** Returns a list of proposals with optional filtering, ordering, and pagination */
|
|
46411
46530
|
proposals: ((Proposal$1 | null)[] | null);
|
|
46531
|
+
/** Returns a single vote by its ID */
|
|
46412
46532
|
vote: (Vote | null);
|
|
46533
|
+
/** Returns a list of votes with optional filtering, ordering, and pagination */
|
|
46413
46534
|
votes: ((Vote | null)[] | null);
|
|
46535
|
+
/** Returns a list of address aliases with optional filtering, ordering, and pagination */
|
|
46414
46536
|
aliases: ((Alias | null)[] | null);
|
|
46537
|
+
/** Returns the roles and permissions for a given address */
|
|
46415
46538
|
roles: ((Role | null)[] | null);
|
|
46539
|
+
/** Returns a list of space followers with optional filtering, ordering, and pagination */
|
|
46416
46540
|
follows: ((Follow | null)[] | null);
|
|
46541
|
+
/** Returns a list of proposal subscriptions with optional filtering, ordering, and pagination */
|
|
46417
46542
|
subscriptions: ((Subscription | null)[] | null);
|
|
46543
|
+
/** Returns a list of users with optional filtering, ordering, and pagination */
|
|
46418
46544
|
users: ((User | null)[] | null);
|
|
46545
|
+
/** Returns a list of delegate statements with optional filtering, ordering, and pagination */
|
|
46419
46546
|
statements: ((Statement | null)[] | null);
|
|
46547
|
+
/** Returns a single user by their address */
|
|
46420
46548
|
user: (User | null);
|
|
46549
|
+
/** Returns a single delegate statement by its ID */
|
|
46421
46550
|
statement: (Statement | null);
|
|
46551
|
+
/** Returns all available space skins */
|
|
46422
46552
|
skins: ((Item | null)[] | null);
|
|
46553
|
+
/** Returns all supported networks */
|
|
46423
46554
|
networks: ((Network | null)[] | null);
|
|
46555
|
+
/** Returns all available proposal validations */
|
|
46424
46556
|
validations: ((Item | null)[] | null);
|
|
46557
|
+
/** Returns all available plugins */
|
|
46425
46558
|
plugins: ((Item | null)[] | null);
|
|
46559
|
+
/** Returns all available voting strategies */
|
|
46426
46560
|
strategies: ((StrategyItem | null)[] | null);
|
|
46561
|
+
/** Returns a single voting strategy by its ID */
|
|
46427
46562
|
strategy: (StrategyItem | null);
|
|
46563
|
+
/** Calculates the voting power for a voter in a space, optionally for a specific proposal */
|
|
46428
46564
|
vp: (Vp | null);
|
|
46565
|
+
/** Returns a list of signed messages (envelopes) with optional filtering, ordering, and pagination */
|
|
46429
46566
|
messages: ((Message | null)[] | null);
|
|
46567
|
+
/** Returns leaderboard entries for spaces with optional filtering, ordering, and pagination */
|
|
46430
46568
|
leaderboards: ((Leaderboard | null)[] | null);
|
|
46569
|
+
/** Returns all available configuration options */
|
|
46431
46570
|
options: ((Option | null)[] | null);
|
|
46432
46571
|
__typename: 'Query';
|
|
46433
46572
|
}
|
|
46573
|
+
/** A signed message envelope submitted to the Snapshot sequencer */
|
|
46434
46574
|
interface Message {
|
|
46575
|
+
/** Message counter index, used for ordering */
|
|
46435
46576
|
mci: (Scalars['Int'] | null);
|
|
46577
|
+
/** Unique message identifier */
|
|
46436
46578
|
id: (Scalars['String'] | null);
|
|
46579
|
+
/** IPFS content identifier */
|
|
46437
46580
|
ipfs: (Scalars['String'] | null);
|
|
46581
|
+
/** Address of the message sender */
|
|
46438
46582
|
address: (Scalars['String'] | null);
|
|
46583
|
+
/** Protocol version */
|
|
46439
46584
|
version: (Scalars['String'] | null);
|
|
46585
|
+
/** Unix timestamp of when the message was submitted */
|
|
46440
46586
|
timestamp: (Scalars['Int'] | null);
|
|
46587
|
+
/** Space ID this message belongs to */
|
|
46441
46588
|
space: (Scalars['String'] | null);
|
|
46589
|
+
/** Message type (e.g. proposal, vote, delete-proposal) */
|
|
46442
46590
|
type: (Scalars['String'] | null);
|
|
46591
|
+
/** Cryptographic signature */
|
|
46443
46592
|
sig: (Scalars['String'] | null);
|
|
46593
|
+
/** Sequencer receipt */
|
|
46444
46594
|
receipt: (Scalars['String'] | null);
|
|
46445
46595
|
__typename: 'Message';
|
|
46446
46596
|
}
|
|
46447
46597
|
type OrderDirection = 'asc' | 'desc';
|
|
46598
|
+
/** A Snapshot space (DAO or community) with its configuration and metadata */
|
|
46448
46599
|
interface Space {
|
|
46600
|
+
/** Unique identifier for the space (e.g. "ens.eth") */
|
|
46449
46601
|
id: Scalars['String'];
|
|
46602
|
+
/** Display name of the space */
|
|
46450
46603
|
name: (Scalars['String'] | null);
|
|
46604
|
+
/** Whether the space is private */
|
|
46451
46605
|
private: (Scalars['Boolean'] | null);
|
|
46606
|
+
/** Description of the space */
|
|
46452
46607
|
about: (Scalars['String'] | null);
|
|
46608
|
+
/** URL of the space avatar image */
|
|
46453
46609
|
avatar: (Scalars['String'] | null);
|
|
46610
|
+
/** URL of the space cover image */
|
|
46454
46611
|
cover: (Scalars['String'] | null);
|
|
46612
|
+
/** URL to the space terms of service */
|
|
46455
46613
|
terms: (Scalars['String'] | null);
|
|
46614
|
+
/** Physical location of the organization */
|
|
46456
46615
|
location: (Scalars['String'] | null);
|
|
46616
|
+
/** Website URL */
|
|
46457
46617
|
website: (Scalars['String'] | null);
|
|
46618
|
+
/** Twitter/X handle */
|
|
46458
46619
|
twitter: (Scalars['String'] | null);
|
|
46620
|
+
/** GitHub organization or user */
|
|
46459
46621
|
github: (Scalars['String'] | null);
|
|
46622
|
+
/** Farcaster handle */
|
|
46460
46623
|
farcaster: (Scalars['String'] | null);
|
|
46624
|
+
/** CoinGecko identifier */
|
|
46461
46625
|
coingecko: (Scalars['String'] | null);
|
|
46626
|
+
/** Contact email */
|
|
46462
46627
|
email: (Scalars['String'] | null);
|
|
46628
|
+
/** URL to the discussions forum */
|
|
46463
46629
|
discussions: (Scalars['String'] | null);
|
|
46630
|
+
/** Discourse forum category ID */
|
|
46464
46631
|
discourseCategory: (Scalars['Int'] | null);
|
|
46632
|
+
/** Network ID the space primarily operates on */
|
|
46465
46633
|
network: (Scalars['String'] | null);
|
|
46634
|
+
/** Token symbol used in the space */
|
|
46466
46635
|
symbol: (Scalars['String'] | null);
|
|
46636
|
+
/** Custom skin/theme ID */
|
|
46467
46637
|
skin: (Scalars['String'] | null);
|
|
46638
|
+
/** Custom skin settings */
|
|
46468
46639
|
skinSettings: (SkinSettings | null);
|
|
46640
|
+
/** Custom domain for the space */
|
|
46469
46641
|
domain: (Scalars['String'] | null);
|
|
46642
|
+
/** Voting strategies used to calculate voting power */
|
|
46470
46643
|
strategies: ((Strategy | null)[] | null);
|
|
46644
|
+
/** List of admin addresses */
|
|
46471
46645
|
admins: ((Scalars['String'] | null)[] | null);
|
|
46646
|
+
/** List of member addresses */
|
|
46472
46647
|
members: ((Scalars['String'] | null)[] | null);
|
|
46648
|
+
/** List of moderator addresses */
|
|
46473
46649
|
moderators: ((Scalars['String'] | null)[] | null);
|
|
46650
|
+
/** Proposal filters configuration */
|
|
46474
46651
|
filters: (SpaceFilters | null);
|
|
46652
|
+
/** Enabled plugins configuration */
|
|
46475
46653
|
plugins: (Scalars['Any'] | null);
|
|
46654
|
+
/** Voting configuration */
|
|
46476
46655
|
voting: (SpaceVoting | null);
|
|
46656
|
+
/** Space categories */
|
|
46477
46657
|
categories: ((Scalars['String'] | null)[] | null);
|
|
46658
|
+
/** Proposal validation strategy */
|
|
46478
46659
|
validation: (Validation | null);
|
|
46660
|
+
/** Vote validation strategy */
|
|
46479
46661
|
voteValidation: (Validation | null);
|
|
46662
|
+
/** Delegation portal configuration */
|
|
46480
46663
|
delegationPortal: (DelegationPortal | null);
|
|
46664
|
+
/** Treasury addresses managed by the space */
|
|
46481
46665
|
treasuries: ((Treasury | null)[] | null);
|
|
46666
|
+
/** Labels that can be applied to proposals */
|
|
46482
46667
|
labels: ((Label | null)[] | null);
|
|
46668
|
+
/** Number of currently active proposals */
|
|
46483
46669
|
activeProposals: (Scalars['Int'] | null);
|
|
46670
|
+
/** Total number of proposals */
|
|
46484
46671
|
proposalsCount: (Scalars['Int'] | null);
|
|
46672
|
+
/** Number of proposals created in the last 24 hours */
|
|
46485
46673
|
proposalsCount1d: (Scalars['Int'] | null);
|
|
46674
|
+
/** Number of proposals created in the last 7 days */
|
|
46486
46675
|
proposalsCount7d: (Scalars['Int'] | null);
|
|
46676
|
+
/** Number of proposals created in the last 30 days */
|
|
46487
46677
|
proposalsCount30d: (Scalars['Int'] | null);
|
|
46678
|
+
/** Total number of followers */
|
|
46488
46679
|
followersCount: (Scalars['Int'] | null);
|
|
46680
|
+
/** Number of new followers in the last 7 days */
|
|
46489
46681
|
followersCount7d: (Scalars['Int'] | null);
|
|
46682
|
+
/** Total number of votes cast */
|
|
46490
46683
|
votesCount: (Scalars['Int'] | null);
|
|
46684
|
+
/** Number of votes cast in the last 7 days */
|
|
46491
46685
|
votesCount7d: (Scalars['Int'] | null);
|
|
46686
|
+
/** Parent space (for sub-spaces) */
|
|
46492
46687
|
parent: (Space | null);
|
|
46688
|
+
/** Child sub-spaces */
|
|
46493
46689
|
children: ((Space | null)[] | null);
|
|
46690
|
+
/** Voting guidelines link */
|
|
46494
46691
|
guidelines: (Scalars['String'] | null);
|
|
46692
|
+
/** Proposal template */
|
|
46495
46693
|
template: (Scalars['String'] | null);
|
|
46694
|
+
/** Whether the space is verified */
|
|
46496
46695
|
verified: (Scalars['Boolean'] | null);
|
|
46696
|
+
/** Whether the space has been flagged */
|
|
46497
46697
|
flagged: (Scalars['Boolean'] | null);
|
|
46698
|
+
/** Flag reason code */
|
|
46498
46699
|
flagCode: (Scalars['Int'] | null);
|
|
46700
|
+
/** Whether the space is hibernated (inactive) */
|
|
46499
46701
|
hibernated: (Scalars['Boolean'] | null);
|
|
46702
|
+
/** Whether turbo mode is enabled */
|
|
46500
46703
|
turbo: (Scalars['Boolean'] | null);
|
|
46704
|
+
/** Unix timestamp when turbo mode expires */
|
|
46501
46705
|
turboExpiration: (Scalars['Int'] | null);
|
|
46706
|
+
/** Ranking score */
|
|
46502
46707
|
rank: (Scalars['Float'] | null);
|
|
46708
|
+
/** Boost settings */
|
|
46503
46709
|
boost: (BoostSettings | null);
|
|
46710
|
+
/** Unix timestamp of when the space was created */
|
|
46504
46711
|
created: Scalars['Int'];
|
|
46505
46712
|
__typename: 'Space';
|
|
46506
46713
|
}
|
|
46714
|
+
/** Ranked list of spaces with aggregated metrics */
|
|
46507
46715
|
interface RankingObject {
|
|
46716
|
+
/** List of ranked spaces */
|
|
46508
46717
|
items: ((Space | null)[] | null);
|
|
46718
|
+
/** Aggregated metrics for the ranking query */
|
|
46509
46719
|
metrics: (Metrics | null);
|
|
46510
46720
|
__typename: 'RankingObject';
|
|
46511
46721
|
}
|
|
46722
|
+
/** Aggregated metrics for ranking queries */
|
|
46512
46723
|
interface Metrics {
|
|
46724
|
+
/** Total number of spaces matching the query */
|
|
46513
46725
|
total: (Scalars['Int'] | null);
|
|
46726
|
+
/** Breakdown of spaces by category */
|
|
46514
46727
|
categories: (Scalars['Any'] | null);
|
|
46515
46728
|
__typename: 'Metrics';
|
|
46516
46729
|
}
|
|
46730
|
+
/** Proposal filtering configuration for a space */
|
|
46517
46731
|
interface SpaceFilters {
|
|
46732
|
+
/** Minimum score required to create a proposal */
|
|
46518
46733
|
minScore: (Scalars['Float'] | null);
|
|
46734
|
+
/** Whether only members can create proposals */
|
|
46519
46735
|
onlyMembers: (Scalars['Boolean'] | null);
|
|
46520
46736
|
__typename: 'SpaceFilters';
|
|
46521
46737
|
}
|
|
46738
|
+
/** Voting configuration for a space */
|
|
46522
46739
|
interface SpaceVoting {
|
|
46740
|
+
/** Delay in seconds before voting starts after proposal creation */
|
|
46523
46741
|
delay: (Scalars['Int'] | null);
|
|
46742
|
+
/** Voting period duration in seconds */
|
|
46524
46743
|
period: (Scalars['Int'] | null);
|
|
46744
|
+
/** Default voting type (e.g. single-choice, weighted) */
|
|
46525
46745
|
type: (Scalars['String'] | null);
|
|
46746
|
+
/** Quorum threshold */
|
|
46526
46747
|
quorum: (Scalars['Float'] | null);
|
|
46748
|
+
/** How quorum is calculated */
|
|
46527
46749
|
quorumType: Scalars['String'];
|
|
46750
|
+
/** Whether votes are hidden until the voting period ends */
|
|
46528
46751
|
blind: (Scalars['Boolean'] | null);
|
|
46752
|
+
/** Whether the abstain option is hidden */
|
|
46529
46753
|
hideAbstain: (Scalars['Boolean'] | null);
|
|
46754
|
+
/** Privacy mode for votes (e.g. shutter) */
|
|
46530
46755
|
privacy: (Scalars['String'] | null);
|
|
46756
|
+
/** Whether aliased voting is enabled */
|
|
46531
46757
|
aliased: (Scalars['Boolean'] | null);
|
|
46532
46758
|
__typename: 'SpaceVoting';
|
|
46533
46759
|
}
|
|
46760
|
+
/** proposal created on a space */
|
|
46534
46761
|
interface Proposal$1 {
|
|
46762
|
+
/** Unique proposal identifier */
|
|
46535
46763
|
id: Scalars['String'];
|
|
46764
|
+
/** IPFS content identifier */
|
|
46536
46765
|
ipfs: (Scalars['String'] | null);
|
|
46766
|
+
/** Address of the proposal author */
|
|
46537
46767
|
author: Scalars['String'];
|
|
46768
|
+
/** Unix timestamp of when the proposal was created */
|
|
46538
46769
|
created: Scalars['Int'];
|
|
46770
|
+
/** Unix timestamp of the last update */
|
|
46539
46771
|
updated: (Scalars['Int'] | null);
|
|
46772
|
+
/** The space this proposal belongs to */
|
|
46540
46773
|
space: (Space | null);
|
|
46774
|
+
/** Network ID */
|
|
46541
46775
|
network: Scalars['String'];
|
|
46776
|
+
/** Token symbol */
|
|
46542
46777
|
symbol: Scalars['String'];
|
|
46778
|
+
/** Voting type (e.g. single-choice, approval, quadratic, ranked-choice, weighted, basic) */
|
|
46543
46779
|
type: (Scalars['String'] | null);
|
|
46780
|
+
/** Voting strategies used for this proposal */
|
|
46544
46781
|
strategies: (Strategy | null)[];
|
|
46782
|
+
/** Proposal validation strategy */
|
|
46545
46783
|
validation: (Validation | null);
|
|
46784
|
+
/** Enabled plugins */
|
|
46546
46785
|
plugins: Scalars['Any'];
|
|
46786
|
+
/** Proposal title */
|
|
46547
46787
|
title: Scalars['String'];
|
|
46788
|
+
/** Proposal body in Markdown */
|
|
46548
46789
|
body: (Scalars['String'] | null);
|
|
46790
|
+
/** URL to the discussion thread */
|
|
46549
46791
|
discussion: Scalars['String'];
|
|
46792
|
+
/** List of voting choices */
|
|
46550
46793
|
choices: (Scalars['String'] | null)[];
|
|
46794
|
+
/** Labels applied to this proposal */
|
|
46551
46795
|
labels: (Scalars['String'] | null)[];
|
|
46796
|
+
/** Unix timestamp of when voting starts */
|
|
46552
46797
|
start: Scalars['Int'];
|
|
46798
|
+
/** Unix timestamp of when voting ends */
|
|
46553
46799
|
end: Scalars['Int'];
|
|
46800
|
+
/** Quorum threshold */
|
|
46554
46801
|
quorum: Scalars['Float'];
|
|
46802
|
+
/** How quorum is calculated */
|
|
46555
46803
|
quorumType: Scalars['String'];
|
|
46804
|
+
/** Privacy mode for votes */
|
|
46556
46805
|
privacy: (Scalars['String'] | null);
|
|
46806
|
+
/** Block number snapshot for voting power calculation */
|
|
46557
46807
|
snapshot: (Scalars['Int'] | null);
|
|
46808
|
+
/** Current state of the proposal (active, pending, closed) */
|
|
46558
46809
|
state: (Scalars['String'] | null);
|
|
46810
|
+
/** Direct link to the proposal */
|
|
46559
46811
|
link: (Scalars['String'] | null);
|
|
46812
|
+
/** Application that created the proposal */
|
|
46560
46813
|
app: (Scalars['String'] | null);
|
|
46814
|
+
/** Vote scores per choice */
|
|
46561
46815
|
scores: ((Scalars['Float'] | null)[] | null);
|
|
46816
|
+
/** Vote scores broken down by strategy */
|
|
46562
46817
|
scores_by_strategy: (Scalars['Any'] | null);
|
|
46818
|
+
/** Scoring state (e.g. final, pending) */
|
|
46563
46819
|
scores_state: (Scalars['String'] | null);
|
|
46820
|
+
/** Total score across all choices */
|
|
46564
46821
|
scores_total: (Scalars['Float'] | null);
|
|
46822
|
+
/** Unix timestamp of when scores were last updated */
|
|
46565
46823
|
scores_updated: (Scalars['Int'] | null);
|
|
46824
|
+
/** Total monetary value of scores */
|
|
46566
46825
|
scores_total_value: (Scalars['Float'] | null);
|
|
46826
|
+
/** Voting power value breakdown by strategy */
|
|
46567
46827
|
vp_value_by_strategy: (Scalars['Any'] | null);
|
|
46828
|
+
/** Total number of votes */
|
|
46568
46829
|
votes: (Scalars['Int'] | null);
|
|
46830
|
+
/** Whether the proposal has been flagged */
|
|
46569
46831
|
flagged: (Scalars['Boolean'] | null);
|
|
46832
|
+
/** Flag reason code */
|
|
46570
46833
|
flagCode: (Scalars['Int'] | null);
|
|
46571
46834
|
__typename: 'Proposal';
|
|
46572
46835
|
}
|
|
46836
|
+
/** A voting strategy used to calculate voting power */
|
|
46573
46837
|
interface Strategy {
|
|
46838
|
+
/** Strategy identifier */
|
|
46574
46839
|
name: Scalars['String'];
|
|
46840
|
+
/** Network ID this strategy operates on */
|
|
46575
46841
|
network: (Scalars['String'] | null);
|
|
46842
|
+
/** Strategy-specific parameters */
|
|
46576
46843
|
params: (Scalars['Any'] | null);
|
|
46577
46844
|
__typename: 'Strategy';
|
|
46578
46845
|
}
|
|
46846
|
+
/** A validation strategy for proposals or votes */
|
|
46579
46847
|
interface Validation {
|
|
46848
|
+
/** Validation identifier */
|
|
46580
46849
|
name: Scalars['String'];
|
|
46850
|
+
/** Validation-specific parameters */
|
|
46581
46851
|
params: (Scalars['Any'] | null);
|
|
46582
46852
|
__typename: 'Validation';
|
|
46583
46853
|
}
|
|
46854
|
+
/** Delegation portal configuration */
|
|
46584
46855
|
interface DelegationPortal {
|
|
46856
|
+
/** Type of delegation */
|
|
46585
46857
|
delegationType: Scalars['String'];
|
|
46858
|
+
/** Delegation contract address */
|
|
46586
46859
|
delegationContract: Scalars['String'];
|
|
46860
|
+
/** Network of the delegation contract */
|
|
46587
46861
|
delegationNetwork: Scalars['String'];
|
|
46862
|
+
/** API endpoint for delegation data */
|
|
46588
46863
|
delegationApi: Scalars['String'];
|
|
46589
46864
|
__typename: 'DelegationPortal';
|
|
46590
46865
|
}
|
|
46866
|
+
/** A vote cast on a proposal */
|
|
46591
46867
|
interface Vote {
|
|
46868
|
+
/** Unique vote identifier */
|
|
46592
46869
|
id: Scalars['String'];
|
|
46870
|
+
/** IPFS content identifier */
|
|
46593
46871
|
ipfs: (Scalars['String'] | null);
|
|
46872
|
+
/** Address of the voter */
|
|
46594
46873
|
voter: Scalars['String'];
|
|
46874
|
+
/** Unix timestamp of when the vote was cast */
|
|
46595
46875
|
created: Scalars['Int'];
|
|
46876
|
+
/** The space this vote was cast in */
|
|
46596
46877
|
space: Space;
|
|
46878
|
+
/** The proposal this vote was cast on */
|
|
46597
46879
|
proposal: (Proposal$1 | null);
|
|
46880
|
+
/** The voter's choice (format depends on voting type) */
|
|
46598
46881
|
choice: Scalars['Any'];
|
|
46882
|
+
/** Additional vote metadata */
|
|
46599
46883
|
metadata: (Scalars['Any'] | null);
|
|
46884
|
+
/** Reason provided by the voter */
|
|
46600
46885
|
reason: (Scalars['String'] | null);
|
|
46886
|
+
/** Application used to cast the vote */
|
|
46601
46887
|
app: (Scalars['String'] | null);
|
|
46888
|
+
/** Voting power of the voter */
|
|
46602
46889
|
vp: (Scalars['Float'] | null);
|
|
46890
|
+
/** Voting power broken down by strategy */
|
|
46603
46891
|
vp_by_strategy: ((Scalars['Float'] | null)[] | null);
|
|
46892
|
+
/** Voting power state (e.g. final, pending) */
|
|
46604
46893
|
vp_state: (Scalars['String'] | null);
|
|
46894
|
+
/** Monetary value of the voting power */
|
|
46605
46895
|
vp_value: (Scalars['Float'] | null);
|
|
46606
46896
|
__typename: 'Vote';
|
|
46607
46897
|
}
|
|
46898
|
+
/** An address alias mapping */
|
|
46608
46899
|
interface Alias {
|
|
46900
|
+
/** Unique alias identifier */
|
|
46609
46901
|
id: Scalars['String'];
|
|
46902
|
+
/** IPFS content identifier */
|
|
46610
46903
|
ipfs: (Scalars['String'] | null);
|
|
46904
|
+
/** Primary address */
|
|
46611
46905
|
address: Scalars['String'];
|
|
46906
|
+
/** Aliased address */
|
|
46612
46907
|
alias: Scalars['String'];
|
|
46908
|
+
/** Unix timestamp of when the alias was created */
|
|
46613
46909
|
created: Scalars['Int'];
|
|
46614
46910
|
__typename: 'Alias';
|
|
46615
46911
|
}
|
|
46912
|
+
/** Role and permissions for an address in a space */
|
|
46616
46913
|
interface Role {
|
|
46914
|
+
/** Space ID */
|
|
46617
46915
|
space: (Scalars['String'] | null);
|
|
46916
|
+
/** List of permissions granted */
|
|
46618
46917
|
permissions: ((Scalars['String'] | null)[] | null);
|
|
46619
46918
|
__typename: 'Role';
|
|
46620
46919
|
}
|
|
46920
|
+
/** A follow relationship between an address and a space */
|
|
46621
46921
|
interface Follow {
|
|
46922
|
+
/** Unique follow identifier */
|
|
46622
46923
|
id: Scalars['String'];
|
|
46924
|
+
/** IPFS content identifier */
|
|
46623
46925
|
ipfs: (Scalars['String'] | null);
|
|
46926
|
+
/** Address of the follower */
|
|
46624
46927
|
follower: Scalars['String'];
|
|
46928
|
+
/** The space being followed */
|
|
46625
46929
|
space: Space;
|
|
46930
|
+
/** Network ID */
|
|
46626
46931
|
network: Scalars['String'];
|
|
46932
|
+
/** Unix timestamp of when the follow was created */
|
|
46627
46933
|
created: Scalars['Int'];
|
|
46628
46934
|
__typename: 'Follow';
|
|
46629
46935
|
}
|
|
46936
|
+
/** A subscription to a space's proposals */
|
|
46630
46937
|
interface Subscription {
|
|
46938
|
+
/** Unique subscription identifier */
|
|
46631
46939
|
id: Scalars['String'];
|
|
46940
|
+
/** IPFS content identifier */
|
|
46632
46941
|
ipfs: (Scalars['String'] | null);
|
|
46942
|
+
/** Address of the subscriber */
|
|
46633
46943
|
address: Scalars['String'];
|
|
46944
|
+
/** The space being subscribed to */
|
|
46634
46945
|
space: Space;
|
|
46946
|
+
/** Unix timestamp of when the subscription was created */
|
|
46635
46947
|
created: Scalars['Int'];
|
|
46636
46948
|
__typename: 'Subscription';
|
|
46637
46949
|
}
|
|
46950
|
+
/** A Snapshot user profile */
|
|
46638
46951
|
interface User {
|
|
46952
|
+
/** User address */
|
|
46639
46953
|
id: Scalars['String'];
|
|
46954
|
+
/** IPFS content identifier */
|
|
46640
46955
|
ipfs: (Scalars['String'] | null);
|
|
46956
|
+
/** Display name */
|
|
46641
46957
|
name: (Scalars['String'] | null);
|
|
46958
|
+
/** Bio or description */
|
|
46642
46959
|
about: (Scalars['String'] | null);
|
|
46960
|
+
/** Avatar image URL */
|
|
46643
46961
|
avatar: (Scalars['String'] | null);
|
|
46962
|
+
/** Cover image URL */
|
|
46644
46963
|
cover: (Scalars['String'] | null);
|
|
46964
|
+
/** GitHub handle */
|
|
46645
46965
|
github: (Scalars['String'] | null);
|
|
46966
|
+
/** Twitter/X handle */
|
|
46646
46967
|
twitter: (Scalars['String'] | null);
|
|
46968
|
+
/** Lens handle */
|
|
46647
46969
|
lens: (Scalars['String'] | null);
|
|
46970
|
+
/** Farcaster handle */
|
|
46648
46971
|
farcaster: (Scalars['String'] | null);
|
|
46972
|
+
/** Unix timestamp of when the profile was created */
|
|
46649
46973
|
created: (Scalars['Int'] | null);
|
|
46974
|
+
/** Total number of votes cast */
|
|
46650
46975
|
votesCount: (Scalars['Int'] | null);
|
|
46976
|
+
/** Total number of proposals created */
|
|
46651
46977
|
proposalsCount: (Scalars['Int'] | null);
|
|
46978
|
+
/** Unix timestamp of the user's most recent vote */
|
|
46652
46979
|
lastVote: (Scalars['Int'] | null);
|
|
46653
46980
|
__typename: 'User';
|
|
46654
46981
|
}
|
|
46982
|
+
/** A delegate statement */
|
|
46655
46983
|
interface Statement {
|
|
46984
|
+
/** Unique statement identifier */
|
|
46656
46985
|
id: Scalars['String'];
|
|
46986
|
+
/** IPFS content identifier */
|
|
46657
46987
|
ipfs: Scalars['String'];
|
|
46988
|
+
/** Space ID this statement belongs to */
|
|
46658
46989
|
space: Scalars['String'];
|
|
46990
|
+
/** Network ID */
|
|
46659
46991
|
network: (Scalars['String'] | null);
|
|
46992
|
+
/** Short bio of the delegate */
|
|
46660
46993
|
about: (Scalars['String'] | null);
|
|
46994
|
+
/** Delegate address */
|
|
46661
46995
|
delegate: (Scalars['String'] | null);
|
|
46996
|
+
/** Full delegate statement text */
|
|
46662
46997
|
statement: (Scalars['String'] | null);
|
|
46998
|
+
/** Discourse forum username */
|
|
46663
46999
|
discourse: (Scalars['String'] | null);
|
|
47000
|
+
/** Statement status */
|
|
46664
47001
|
status: (Scalars['String'] | null);
|
|
47002
|
+
/** Source of the statement */
|
|
46665
47003
|
source: (Scalars['String'] | null);
|
|
47004
|
+
/** Unix timestamp of when the statement was created */
|
|
46666
47005
|
created: Scalars['Int'];
|
|
47006
|
+
/** Unix timestamp of the last update */
|
|
46667
47007
|
updated: Scalars['Int'];
|
|
46668
47008
|
__typename: 'Statement';
|
|
46669
47009
|
}
|
|
47010
|
+
/** A reusable metadata item (skin, validation, plugin) */
|
|
46670
47011
|
interface Item {
|
|
47012
|
+
/** Item identifier */
|
|
46671
47013
|
id: Scalars['String'];
|
|
47014
|
+
/** Number of spaces using this item */
|
|
46672
47015
|
spacesCount: (Scalars['Int'] | null);
|
|
46673
47016
|
__typename: 'Item';
|
|
46674
47017
|
}
|
|
47018
|
+
/** A voting strategy with full metadata */
|
|
46675
47019
|
interface StrategyItem {
|
|
47020
|
+
/** Strategy identifier */
|
|
46676
47021
|
id: Scalars['String'];
|
|
47022
|
+
/** Display name */
|
|
46677
47023
|
name: (Scalars['String'] | null);
|
|
47024
|
+
/** Strategy author */
|
|
46678
47025
|
author: (Scalars['String'] | null);
|
|
47026
|
+
/** Strategy version */
|
|
46679
47027
|
version: (Scalars['String'] | null);
|
|
47028
|
+
/** JSON schema for strategy parameters */
|
|
46680
47029
|
schema: (Scalars['Any'] | null);
|
|
47030
|
+
/** Example configurations */
|
|
46681
47031
|
examples: ((Scalars['Any'] | null)[] | null);
|
|
47032
|
+
/** Description of the strategy */
|
|
46682
47033
|
about: (Scalars['String'] | null);
|
|
47034
|
+
/** Number of spaces using this strategy */
|
|
46683
47035
|
spacesCount: (Scalars['Int'] | null);
|
|
47036
|
+
/** Number of verified spaces using this strategy */
|
|
46684
47037
|
verifiedSpacesCount: (Scalars['Int'] | null);
|
|
47038
|
+
/** Whether voting power depend on other addresses or not */
|
|
46685
47039
|
override: (Scalars['Boolean'] | null);
|
|
47040
|
+
/** Whether the strategy is disabled */
|
|
46686
47041
|
disabled: (Scalars['Boolean'] | null);
|
|
46687
47042
|
__typename: 'StrategyItem';
|
|
46688
47043
|
}
|
|
47044
|
+
/** A treasury managed by a space */
|
|
46689
47045
|
interface Treasury {
|
|
47046
|
+
/** Treasury display name */
|
|
46690
47047
|
name: (Scalars['String'] | null);
|
|
47048
|
+
/** Treasury wallet address */
|
|
46691
47049
|
address: (Scalars['String'] | null);
|
|
47050
|
+
/** Network ID the treasury is on */
|
|
46692
47051
|
network: (Scalars['String'] | null);
|
|
46693
47052
|
__typename: 'Treasury';
|
|
46694
47053
|
}
|
|
47054
|
+
/** A label that can be applied to proposals */
|
|
46695
47055
|
interface Label {
|
|
47056
|
+
/** Label identifier */
|
|
46696
47057
|
id: (Scalars['String'] | null);
|
|
47058
|
+
/** Label display name */
|
|
46697
47059
|
name: (Scalars['String'] | null);
|
|
47060
|
+
/** Label description */
|
|
46698
47061
|
description: (Scalars['String'] | null);
|
|
47062
|
+
/** Hex color code */
|
|
46699
47063
|
color: (Scalars['String'] | null);
|
|
46700
47064
|
__typename: 'Label';
|
|
46701
47065
|
}
|
|
47066
|
+
/** Boost settings for a space */
|
|
46702
47067
|
interface BoostSettings {
|
|
47068
|
+
/** Whether boosting is enabled */
|
|
46703
47069
|
enabled: (Scalars['Boolean'] | null);
|
|
47070
|
+
/** Whether bribe-based boosting is enabled */
|
|
46704
47071
|
bribeEnabled: (Scalars['Boolean'] | null);
|
|
46705
47072
|
__typename: 'BoostSettings';
|
|
46706
47073
|
}
|
|
47074
|
+
/** Voting power information */
|
|
46707
47075
|
interface Vp {
|
|
47076
|
+
/** Total voting power */
|
|
46708
47077
|
vp: (Scalars['Float'] | null);
|
|
47078
|
+
/** Voting power broken down by strategy */
|
|
46709
47079
|
vp_by_strategy: ((Scalars['Float'] | null)[] | null);
|
|
47080
|
+
/** Voting power state (e.g. final, pending) */
|
|
46710
47081
|
vp_state: (Scalars['String'] | null);
|
|
46711
47082
|
__typename: 'Vp';
|
|
46712
47083
|
}
|
|
47084
|
+
/** Leaderboard entry for a user in a space */
|
|
46713
47085
|
interface Leaderboard {
|
|
47086
|
+
/** Space ID */
|
|
46714
47087
|
space: (Scalars['String'] | null);
|
|
47088
|
+
/** User address */
|
|
46715
47089
|
user: (Scalars['String'] | null);
|
|
47090
|
+
/** Number of proposals created */
|
|
46716
47091
|
proposalsCount: (Scalars['Int'] | null);
|
|
47092
|
+
/** Number of votes cast */
|
|
46717
47093
|
votesCount: (Scalars['Int'] | null);
|
|
47094
|
+
/** Unix timestamp of the user's most recent vote */
|
|
46718
47095
|
lastVote: (Scalars['Int'] | null);
|
|
47096
|
+
/** Monetary value of the user's voting power */
|
|
46719
47097
|
vpValue: (Scalars['Float'] | null);
|
|
46720
47098
|
__typename: 'Leaderboard';
|
|
46721
47099
|
}
|
|
47100
|
+
/** A configuration option */
|
|
46722
47101
|
interface Option {
|
|
47102
|
+
/** Option name */
|
|
46723
47103
|
name: (Scalars['String'] | null);
|
|
47104
|
+
/** Option value */
|
|
46724
47105
|
value: (Scalars['String'] | null);
|
|
46725
47106
|
__typename: 'Option';
|
|
46726
47107
|
}
|
|
47108
|
+
/** Custom theme settings for a space skin */
|
|
46727
47109
|
interface SkinSettings {
|
|
47110
|
+
/** Background color */
|
|
46728
47111
|
bg_color: (Scalars['String'] | null);
|
|
47112
|
+
/** Link color */
|
|
46729
47113
|
link_color: (Scalars['String'] | null);
|
|
47114
|
+
/** Text color */
|
|
46730
47115
|
text_color: (Scalars['String'] | null);
|
|
47116
|
+
/** Content area color */
|
|
46731
47117
|
content_color: (Scalars['String'] | null);
|
|
47118
|
+
/** Border color */
|
|
46732
47119
|
border_color: (Scalars['String'] | null);
|
|
47120
|
+
/** Heading color */
|
|
46733
47121
|
heading_color: (Scalars['String'] | null);
|
|
47122
|
+
/** Header color */
|
|
46734
47123
|
header_color: (Scalars['String'] | null);
|
|
47124
|
+
/** Primary accent color */
|
|
46735
47125
|
primary_color: (Scalars['String'] | null);
|
|
47126
|
+
/** Theme name (light or dark) */
|
|
46736
47127
|
theme: (Scalars['String'] | null);
|
|
47128
|
+
/** Custom logo URL */
|
|
46737
47129
|
logo: (Scalars['String'] | null);
|
|
46738
47130
|
__typename: 'SkinSettings';
|
|
46739
47131
|
}
|
|
47132
|
+
/** A blockchain network */
|
|
46740
47133
|
interface Network {
|
|
47134
|
+
/** Network chain ID */
|
|
46741
47135
|
id: Scalars['String'];
|
|
47136
|
+
/** Network display name */
|
|
46742
47137
|
name: Scalars['String'];
|
|
47138
|
+
/** Whether this is a premium network */
|
|
46743
47139
|
premium: (Scalars['Boolean'] | null);
|
|
47140
|
+
/** Number of spaces using this network */
|
|
46744
47141
|
spacesCount: (Scalars['Int'] | null);
|
|
46745
47142
|
__typename: 'Network';
|
|
46746
47143
|
}
|
|
46747
47144
|
interface QueryGenqlSelection {
|
|
47145
|
+
/** Returns a single space by its ID (e.g. "ens.eth") */
|
|
46748
47146
|
space?: (SpaceGenqlSelection & {
|
|
46749
47147
|
__args: {
|
|
46750
47148
|
id: Scalars['String'];
|
|
46751
47149
|
};
|
|
46752
47150
|
});
|
|
47151
|
+
/** Returns a list of spaces with optional filtering, ordering, and pagination */
|
|
46753
47152
|
spaces?: (SpaceGenqlSelection & {
|
|
46754
47153
|
__args?: {
|
|
46755
47154
|
first?: Scalars['Int'];
|
|
@@ -46759,6 +47158,7 @@ interface QueryGenqlSelection {
|
|
|
46759
47158
|
orderDirection?: (OrderDirection | null);
|
|
46760
47159
|
};
|
|
46761
47160
|
});
|
|
47161
|
+
/** Returns a ranked list of spaces with aggregated metrics */
|
|
46762
47162
|
ranking?: (RankingObjectGenqlSelection & {
|
|
46763
47163
|
__args?: {
|
|
46764
47164
|
first?: Scalars['Int'];
|
|
@@ -46766,11 +47166,13 @@ interface QueryGenqlSelection {
|
|
|
46766
47166
|
where?: (RankingWhere | null);
|
|
46767
47167
|
};
|
|
46768
47168
|
});
|
|
47169
|
+
/** Returns a single proposal by its ID */
|
|
46769
47170
|
proposal?: (ProposalGenqlSelection & {
|
|
46770
47171
|
__args: {
|
|
46771
47172
|
id: Scalars['String'];
|
|
46772
47173
|
};
|
|
46773
47174
|
});
|
|
47175
|
+
/** Returns a list of proposals with optional filtering, ordering, and pagination */
|
|
46774
47176
|
proposals?: (ProposalGenqlSelection & {
|
|
46775
47177
|
__args?: {
|
|
46776
47178
|
first?: Scalars['Int'];
|
|
@@ -46780,11 +47182,13 @@ interface QueryGenqlSelection {
|
|
|
46780
47182
|
orderDirection?: (OrderDirection | null);
|
|
46781
47183
|
};
|
|
46782
47184
|
});
|
|
47185
|
+
/** Returns a single vote by its ID */
|
|
46783
47186
|
vote?: (VoteGenqlSelection & {
|
|
46784
47187
|
__args: {
|
|
46785
47188
|
id: Scalars['String'];
|
|
46786
47189
|
};
|
|
46787
47190
|
});
|
|
47191
|
+
/** Returns a list of votes with optional filtering, ordering, and pagination */
|
|
46788
47192
|
votes?: (VoteGenqlSelection & {
|
|
46789
47193
|
__args?: {
|
|
46790
47194
|
first?: Scalars['Int'];
|
|
@@ -46794,6 +47198,7 @@ interface QueryGenqlSelection {
|
|
|
46794
47198
|
orderDirection?: (OrderDirection | null);
|
|
46795
47199
|
};
|
|
46796
47200
|
});
|
|
47201
|
+
/** Returns a list of address aliases with optional filtering, ordering, and pagination */
|
|
46797
47202
|
aliases?: (AliasGenqlSelection & {
|
|
46798
47203
|
__args?: {
|
|
46799
47204
|
first?: Scalars['Int'];
|
|
@@ -46803,11 +47208,13 @@ interface QueryGenqlSelection {
|
|
|
46803
47208
|
orderDirection?: (OrderDirection | null);
|
|
46804
47209
|
};
|
|
46805
47210
|
});
|
|
47211
|
+
/** Returns the roles and permissions for a given address */
|
|
46806
47212
|
roles?: (RoleGenqlSelection & {
|
|
46807
47213
|
__args: {
|
|
46808
47214
|
where: RolesWhere;
|
|
46809
47215
|
};
|
|
46810
47216
|
});
|
|
47217
|
+
/** Returns a list of space followers with optional filtering, ordering, and pagination */
|
|
46811
47218
|
follows?: (FollowGenqlSelection & {
|
|
46812
47219
|
__args?: {
|
|
46813
47220
|
first?: Scalars['Int'];
|
|
@@ -46817,6 +47224,7 @@ interface QueryGenqlSelection {
|
|
|
46817
47224
|
orderDirection?: (OrderDirection | null);
|
|
46818
47225
|
};
|
|
46819
47226
|
});
|
|
47227
|
+
/** Returns a list of proposal subscriptions with optional filtering, ordering, and pagination */
|
|
46820
47228
|
subscriptions?: (SubscriptionGenqlSelection & {
|
|
46821
47229
|
__args?: {
|
|
46822
47230
|
first?: Scalars['Int'];
|
|
@@ -46826,6 +47234,7 @@ interface QueryGenqlSelection {
|
|
|
46826
47234
|
orderDirection?: (OrderDirection | null);
|
|
46827
47235
|
};
|
|
46828
47236
|
});
|
|
47237
|
+
/** Returns a list of users with optional filtering, ordering, and pagination */
|
|
46829
47238
|
users?: (UserGenqlSelection & {
|
|
46830
47239
|
__args?: {
|
|
46831
47240
|
first?: Scalars['Int'];
|
|
@@ -46835,6 +47244,7 @@ interface QueryGenqlSelection {
|
|
|
46835
47244
|
orderDirection?: (OrderDirection | null);
|
|
46836
47245
|
};
|
|
46837
47246
|
});
|
|
47247
|
+
/** Returns a list of delegate statements with optional filtering, ordering, and pagination */
|
|
46838
47248
|
statements?: (StatementGenqlSelection & {
|
|
46839
47249
|
__args?: {
|
|
46840
47250
|
first?: Scalars['Int'];
|
|
@@ -46844,26 +47254,35 @@ interface QueryGenqlSelection {
|
|
|
46844
47254
|
orderDirection?: (OrderDirection | null);
|
|
46845
47255
|
};
|
|
46846
47256
|
});
|
|
47257
|
+
/** Returns a single user by their address */
|
|
46847
47258
|
user?: (UserGenqlSelection & {
|
|
46848
47259
|
__args: {
|
|
46849
47260
|
id: Scalars['String'];
|
|
46850
47261
|
};
|
|
46851
47262
|
});
|
|
47263
|
+
/** Returns a single delegate statement by its ID */
|
|
46852
47264
|
statement?: (StatementGenqlSelection & {
|
|
46853
47265
|
__args: {
|
|
46854
47266
|
id: Scalars['String'];
|
|
46855
47267
|
};
|
|
46856
47268
|
});
|
|
47269
|
+
/** Returns all available space skins */
|
|
46857
47270
|
skins?: ItemGenqlSelection;
|
|
47271
|
+
/** Returns all supported networks */
|
|
46858
47272
|
networks?: NetworkGenqlSelection;
|
|
47273
|
+
/** Returns all available proposal validations */
|
|
46859
47274
|
validations?: ItemGenqlSelection;
|
|
47275
|
+
/** Returns all available plugins */
|
|
46860
47276
|
plugins?: ItemGenqlSelection;
|
|
47277
|
+
/** Returns all available voting strategies */
|
|
46861
47278
|
strategies?: StrategyItemGenqlSelection;
|
|
47279
|
+
/** Returns a single voting strategy by its ID */
|
|
46862
47280
|
strategy?: (StrategyItemGenqlSelection & {
|
|
46863
47281
|
__args: {
|
|
46864
47282
|
id: Scalars['String'];
|
|
46865
47283
|
};
|
|
46866
47284
|
});
|
|
47285
|
+
/** Calculates the voting power for a voter in a space, optionally for a specific proposal */
|
|
46867
47286
|
vp?: (VpGenqlSelection & {
|
|
46868
47287
|
__args: {
|
|
46869
47288
|
voter: Scalars['String'];
|
|
@@ -46871,6 +47290,7 @@ interface QueryGenqlSelection {
|
|
|
46871
47290
|
proposal?: (Scalars['String'] | null);
|
|
46872
47291
|
};
|
|
46873
47292
|
});
|
|
47293
|
+
/** Returns a list of signed messages (envelopes) with optional filtering, ordering, and pagination */
|
|
46874
47294
|
messages?: (MessageGenqlSelection & {
|
|
46875
47295
|
__args?: {
|
|
46876
47296
|
first?: Scalars['Int'];
|
|
@@ -46880,6 +47300,7 @@ interface QueryGenqlSelection {
|
|
|
46880
47300
|
orderDirection?: (OrderDirection | null);
|
|
46881
47301
|
};
|
|
46882
47302
|
});
|
|
47303
|
+
/** Returns leaderboard entries for spaces with optional filtering, ordering, and pagination */
|
|
46883
47304
|
leaderboards?: (LeaderboardGenqlSelection & {
|
|
46884
47305
|
__args?: {
|
|
46885
47306
|
first?: Scalars['Int'];
|
|
@@ -46889,6 +47310,7 @@ interface QueryGenqlSelection {
|
|
|
46889
47310
|
orderDirection?: (OrderDirection | null);
|
|
46890
47311
|
};
|
|
46891
47312
|
});
|
|
47313
|
+
/** Returns all available configuration options */
|
|
46892
47314
|
options?: OptionGenqlSelection;
|
|
46893
47315
|
__typename?: boolean | number;
|
|
46894
47316
|
__scalar?: boolean | number;
|
|
@@ -46906,6 +47328,7 @@ interface SpaceWhere {
|
|
|
46906
47328
|
plugin?: (Scalars['String'] | null);
|
|
46907
47329
|
controller?: (Scalars['String'] | null);
|
|
46908
47330
|
verified?: (Scalars['Boolean'] | null);
|
|
47331
|
+
turbo?: (Scalars['Boolean'] | null);
|
|
46909
47332
|
domain?: (Scalars['String'] | null);
|
|
46910
47333
|
search?: (Scalars['String'] | null);
|
|
46911
47334
|
}
|
|
@@ -46938,16 +47361,27 @@ interface MessageWhere {
|
|
|
46938
47361
|
type?: (Scalars['String'] | null);
|
|
46939
47362
|
type_in?: ((Scalars['String'] | null)[] | null);
|
|
46940
47363
|
}
|
|
47364
|
+
/** A signed message envelope submitted to the Snapshot sequencer */
|
|
46941
47365
|
interface MessageGenqlSelection {
|
|
47366
|
+
/** Message counter index, used for ordering */
|
|
46942
47367
|
mci?: boolean | number;
|
|
47368
|
+
/** Unique message identifier */
|
|
46943
47369
|
id?: boolean | number;
|
|
47370
|
+
/** IPFS content identifier */
|
|
46944
47371
|
ipfs?: boolean | number;
|
|
47372
|
+
/** Address of the message sender */
|
|
46945
47373
|
address?: boolean | number;
|
|
47374
|
+
/** Protocol version */
|
|
46946
47375
|
version?: boolean | number;
|
|
47376
|
+
/** Unix timestamp of when the message was submitted */
|
|
46947
47377
|
timestamp?: boolean | number;
|
|
47378
|
+
/** Space ID this message belongs to */
|
|
46948
47379
|
space?: boolean | number;
|
|
47380
|
+
/** Message type (e.g. proposal, vote, delete-proposal) */
|
|
46949
47381
|
type?: boolean | number;
|
|
47382
|
+
/** Cryptographic signature */
|
|
46950
47383
|
sig?: boolean | number;
|
|
47384
|
+
/** Sequencer receipt */
|
|
46951
47385
|
receipt?: boolean | number;
|
|
46952
47386
|
__typename?: boolean | number;
|
|
46953
47387
|
__scalar?: boolean | number;
|
|
@@ -47159,327 +47593,574 @@ interface LeaderboardsWhere {
|
|
|
47159
47593
|
vote_count_lt?: ((Scalars['Int'] | null)[] | null);
|
|
47160
47594
|
vote_count_lte?: ((Scalars['Int'] | null)[] | null);
|
|
47161
47595
|
}
|
|
47596
|
+
/** A Snapshot space (DAO or community) with its configuration and metadata */
|
|
47162
47597
|
interface SpaceGenqlSelection {
|
|
47598
|
+
/** Unique identifier for the space (e.g. "ens.eth") */
|
|
47163
47599
|
id?: boolean | number;
|
|
47600
|
+
/** Display name of the space */
|
|
47164
47601
|
name?: boolean | number;
|
|
47602
|
+
/** Whether the space is private */
|
|
47165
47603
|
private?: boolean | number;
|
|
47604
|
+
/** Description of the space */
|
|
47166
47605
|
about?: boolean | number;
|
|
47606
|
+
/** URL of the space avatar image */
|
|
47167
47607
|
avatar?: boolean | number;
|
|
47608
|
+
/** URL of the space cover image */
|
|
47168
47609
|
cover?: boolean | number;
|
|
47610
|
+
/** URL to the space terms of service */
|
|
47169
47611
|
terms?: boolean | number;
|
|
47612
|
+
/** Physical location of the organization */
|
|
47170
47613
|
location?: boolean | number;
|
|
47614
|
+
/** Website URL */
|
|
47171
47615
|
website?: boolean | number;
|
|
47616
|
+
/** Twitter/X handle */
|
|
47172
47617
|
twitter?: boolean | number;
|
|
47618
|
+
/** GitHub organization or user */
|
|
47173
47619
|
github?: boolean | number;
|
|
47620
|
+
/** Farcaster handle */
|
|
47174
47621
|
farcaster?: boolean | number;
|
|
47622
|
+
/** CoinGecko identifier */
|
|
47175
47623
|
coingecko?: boolean | number;
|
|
47624
|
+
/** Contact email */
|
|
47176
47625
|
email?: boolean | number;
|
|
47626
|
+
/** URL to the discussions forum */
|
|
47177
47627
|
discussions?: boolean | number;
|
|
47628
|
+
/** Discourse forum category ID */
|
|
47178
47629
|
discourseCategory?: boolean | number;
|
|
47630
|
+
/** Network ID the space primarily operates on */
|
|
47179
47631
|
network?: boolean | number;
|
|
47632
|
+
/** Token symbol used in the space */
|
|
47180
47633
|
symbol?: boolean | number;
|
|
47634
|
+
/** Custom skin/theme ID */
|
|
47181
47635
|
skin?: boolean | number;
|
|
47636
|
+
/** Custom skin settings */
|
|
47182
47637
|
skinSettings?: SkinSettingsGenqlSelection;
|
|
47638
|
+
/** Custom domain for the space */
|
|
47183
47639
|
domain?: boolean | number;
|
|
47640
|
+
/** Voting strategies used to calculate voting power */
|
|
47184
47641
|
strategies?: StrategyGenqlSelection;
|
|
47642
|
+
/** List of admin addresses */
|
|
47185
47643
|
admins?: boolean | number;
|
|
47644
|
+
/** List of member addresses */
|
|
47186
47645
|
members?: boolean | number;
|
|
47646
|
+
/** List of moderator addresses */
|
|
47187
47647
|
moderators?: boolean | number;
|
|
47648
|
+
/** Proposal filters configuration */
|
|
47188
47649
|
filters?: SpaceFiltersGenqlSelection;
|
|
47650
|
+
/** Enabled plugins configuration */
|
|
47189
47651
|
plugins?: boolean | number;
|
|
47652
|
+
/** Voting configuration */
|
|
47190
47653
|
voting?: SpaceVotingGenqlSelection;
|
|
47654
|
+
/** Space categories */
|
|
47191
47655
|
categories?: boolean | number;
|
|
47656
|
+
/** Proposal validation strategy */
|
|
47192
47657
|
validation?: ValidationGenqlSelection;
|
|
47658
|
+
/** Vote validation strategy */
|
|
47193
47659
|
voteValidation?: ValidationGenqlSelection;
|
|
47660
|
+
/** Delegation portal configuration */
|
|
47194
47661
|
delegationPortal?: DelegationPortalGenqlSelection;
|
|
47662
|
+
/** Treasury addresses managed by the space */
|
|
47195
47663
|
treasuries?: TreasuryGenqlSelection;
|
|
47664
|
+
/** Labels that can be applied to proposals */
|
|
47196
47665
|
labels?: LabelGenqlSelection;
|
|
47666
|
+
/** Number of currently active proposals */
|
|
47197
47667
|
activeProposals?: boolean | number;
|
|
47668
|
+
/** Total number of proposals */
|
|
47198
47669
|
proposalsCount?: boolean | number;
|
|
47670
|
+
/** Number of proposals created in the last 24 hours */
|
|
47199
47671
|
proposalsCount1d?: boolean | number;
|
|
47672
|
+
/** Number of proposals created in the last 7 days */
|
|
47200
47673
|
proposalsCount7d?: boolean | number;
|
|
47674
|
+
/** Number of proposals created in the last 30 days */
|
|
47201
47675
|
proposalsCount30d?: boolean | number;
|
|
47676
|
+
/** Total number of followers */
|
|
47202
47677
|
followersCount?: boolean | number;
|
|
47678
|
+
/** Number of new followers in the last 7 days */
|
|
47203
47679
|
followersCount7d?: boolean | number;
|
|
47680
|
+
/** Total number of votes cast */
|
|
47204
47681
|
votesCount?: boolean | number;
|
|
47682
|
+
/** Number of votes cast in the last 7 days */
|
|
47205
47683
|
votesCount7d?: boolean | number;
|
|
47684
|
+
/** Parent space (for sub-spaces) */
|
|
47206
47685
|
parent?: SpaceGenqlSelection;
|
|
47686
|
+
/** Child sub-spaces */
|
|
47207
47687
|
children?: SpaceGenqlSelection;
|
|
47688
|
+
/** Voting guidelines link */
|
|
47208
47689
|
guidelines?: boolean | number;
|
|
47690
|
+
/** Proposal template */
|
|
47209
47691
|
template?: boolean | number;
|
|
47692
|
+
/** Whether the space is verified */
|
|
47210
47693
|
verified?: boolean | number;
|
|
47694
|
+
/** Whether the space has been flagged */
|
|
47211
47695
|
flagged?: boolean | number;
|
|
47696
|
+
/** Flag reason code */
|
|
47212
47697
|
flagCode?: boolean | number;
|
|
47698
|
+
/** Whether the space is hibernated (inactive) */
|
|
47213
47699
|
hibernated?: boolean | number;
|
|
47700
|
+
/** Whether turbo mode is enabled */
|
|
47214
47701
|
turbo?: boolean | number;
|
|
47702
|
+
/** Unix timestamp when turbo mode expires */
|
|
47215
47703
|
turboExpiration?: boolean | number;
|
|
47704
|
+
/** Ranking score */
|
|
47216
47705
|
rank?: boolean | number;
|
|
47706
|
+
/** Boost settings */
|
|
47217
47707
|
boost?: BoostSettingsGenqlSelection;
|
|
47708
|
+
/** Unix timestamp of when the space was created */
|
|
47218
47709
|
created?: boolean | number;
|
|
47219
47710
|
__typename?: boolean | number;
|
|
47220
47711
|
__scalar?: boolean | number;
|
|
47221
47712
|
}
|
|
47713
|
+
/** Ranked list of spaces with aggregated metrics */
|
|
47222
47714
|
interface RankingObjectGenqlSelection {
|
|
47715
|
+
/** List of ranked spaces */
|
|
47223
47716
|
items?: SpaceGenqlSelection;
|
|
47717
|
+
/** Aggregated metrics for the ranking query */
|
|
47224
47718
|
metrics?: MetricsGenqlSelection;
|
|
47225
47719
|
__typename?: boolean | number;
|
|
47226
47720
|
__scalar?: boolean | number;
|
|
47227
47721
|
}
|
|
47722
|
+
/** Aggregated metrics for ranking queries */
|
|
47228
47723
|
interface MetricsGenqlSelection {
|
|
47724
|
+
/** Total number of spaces matching the query */
|
|
47229
47725
|
total?: boolean | number;
|
|
47726
|
+
/** Breakdown of spaces by category */
|
|
47230
47727
|
categories?: boolean | number;
|
|
47231
47728
|
__typename?: boolean | number;
|
|
47232
47729
|
__scalar?: boolean | number;
|
|
47233
47730
|
}
|
|
47731
|
+
/** Proposal filtering configuration for a space */
|
|
47234
47732
|
interface SpaceFiltersGenqlSelection {
|
|
47733
|
+
/** Minimum score required to create a proposal */
|
|
47235
47734
|
minScore?: boolean | number;
|
|
47735
|
+
/** Whether only members can create proposals */
|
|
47236
47736
|
onlyMembers?: boolean | number;
|
|
47237
47737
|
__typename?: boolean | number;
|
|
47238
47738
|
__scalar?: boolean | number;
|
|
47239
47739
|
}
|
|
47740
|
+
/** Voting configuration for a space */
|
|
47240
47741
|
interface SpaceVotingGenqlSelection {
|
|
47742
|
+
/** Delay in seconds before voting starts after proposal creation */
|
|
47241
47743
|
delay?: boolean | number;
|
|
47744
|
+
/** Voting period duration in seconds */
|
|
47242
47745
|
period?: boolean | number;
|
|
47746
|
+
/** Default voting type (e.g. single-choice, weighted) */
|
|
47243
47747
|
type?: boolean | number;
|
|
47748
|
+
/** Quorum threshold */
|
|
47244
47749
|
quorum?: boolean | number;
|
|
47750
|
+
/** How quorum is calculated */
|
|
47245
47751
|
quorumType?: boolean | number;
|
|
47752
|
+
/** Whether votes are hidden until the voting period ends */
|
|
47246
47753
|
blind?: boolean | number;
|
|
47754
|
+
/** Whether the abstain option is hidden */
|
|
47247
47755
|
hideAbstain?: boolean | number;
|
|
47756
|
+
/** Privacy mode for votes (e.g. shutter) */
|
|
47248
47757
|
privacy?: boolean | number;
|
|
47758
|
+
/** Whether aliased voting is enabled */
|
|
47249
47759
|
aliased?: boolean | number;
|
|
47250
47760
|
__typename?: boolean | number;
|
|
47251
47761
|
__scalar?: boolean | number;
|
|
47252
47762
|
}
|
|
47763
|
+
/** proposal created on a space */
|
|
47253
47764
|
interface ProposalGenqlSelection {
|
|
47765
|
+
/** Unique proposal identifier */
|
|
47254
47766
|
id?: boolean | number;
|
|
47767
|
+
/** IPFS content identifier */
|
|
47255
47768
|
ipfs?: boolean | number;
|
|
47769
|
+
/** Address of the proposal author */
|
|
47256
47770
|
author?: boolean | number;
|
|
47771
|
+
/** Unix timestamp of when the proposal was created */
|
|
47257
47772
|
created?: boolean | number;
|
|
47773
|
+
/** Unix timestamp of the last update */
|
|
47258
47774
|
updated?: boolean | number;
|
|
47775
|
+
/** The space this proposal belongs to */
|
|
47259
47776
|
space?: SpaceGenqlSelection;
|
|
47777
|
+
/** Network ID */
|
|
47260
47778
|
network?: boolean | number;
|
|
47779
|
+
/** Token symbol */
|
|
47261
47780
|
symbol?: boolean | number;
|
|
47781
|
+
/** Voting type (e.g. single-choice, approval, quadratic, ranked-choice, weighted, basic) */
|
|
47262
47782
|
type?: boolean | number;
|
|
47783
|
+
/** Voting strategies used for this proposal */
|
|
47263
47784
|
strategies?: StrategyGenqlSelection;
|
|
47785
|
+
/** Proposal validation strategy */
|
|
47264
47786
|
validation?: ValidationGenqlSelection;
|
|
47787
|
+
/** Enabled plugins */
|
|
47265
47788
|
plugins?: boolean | number;
|
|
47789
|
+
/** Proposal title */
|
|
47266
47790
|
title?: boolean | number;
|
|
47791
|
+
/** Proposal body in Markdown */
|
|
47267
47792
|
body?: boolean | number;
|
|
47793
|
+
/** URL to the discussion thread */
|
|
47268
47794
|
discussion?: boolean | number;
|
|
47795
|
+
/** List of voting choices */
|
|
47269
47796
|
choices?: boolean | number;
|
|
47797
|
+
/** Labels applied to this proposal */
|
|
47270
47798
|
labels?: boolean | number;
|
|
47799
|
+
/** Unix timestamp of when voting starts */
|
|
47271
47800
|
start?: boolean | number;
|
|
47801
|
+
/** Unix timestamp of when voting ends */
|
|
47272
47802
|
end?: boolean | number;
|
|
47803
|
+
/** Quorum threshold */
|
|
47273
47804
|
quorum?: boolean | number;
|
|
47805
|
+
/** How quorum is calculated */
|
|
47274
47806
|
quorumType?: boolean | number;
|
|
47807
|
+
/** Privacy mode for votes */
|
|
47275
47808
|
privacy?: boolean | number;
|
|
47809
|
+
/** Block number snapshot for voting power calculation */
|
|
47276
47810
|
snapshot?: boolean | number;
|
|
47811
|
+
/** Current state of the proposal (active, pending, closed) */
|
|
47277
47812
|
state?: boolean | number;
|
|
47813
|
+
/** Direct link to the proposal */
|
|
47278
47814
|
link?: boolean | number;
|
|
47815
|
+
/** Application that created the proposal */
|
|
47279
47816
|
app?: boolean | number;
|
|
47817
|
+
/** Vote scores per choice */
|
|
47280
47818
|
scores?: boolean | number;
|
|
47819
|
+
/** Vote scores broken down by strategy */
|
|
47281
47820
|
scores_by_strategy?: boolean | number;
|
|
47821
|
+
/** Scoring state (e.g. final, pending) */
|
|
47282
47822
|
scores_state?: boolean | number;
|
|
47823
|
+
/** Total score across all choices */
|
|
47283
47824
|
scores_total?: boolean | number;
|
|
47825
|
+
/** Unix timestamp of when scores were last updated */
|
|
47284
47826
|
scores_updated?: boolean | number;
|
|
47827
|
+
/** Total monetary value of scores */
|
|
47285
47828
|
scores_total_value?: boolean | number;
|
|
47829
|
+
/** Voting power value breakdown by strategy */
|
|
47286
47830
|
vp_value_by_strategy?: boolean | number;
|
|
47831
|
+
/** Total number of votes */
|
|
47287
47832
|
votes?: boolean | number;
|
|
47833
|
+
/** Whether the proposal has been flagged */
|
|
47288
47834
|
flagged?: boolean | number;
|
|
47835
|
+
/** Flag reason code */
|
|
47289
47836
|
flagCode?: boolean | number;
|
|
47290
47837
|
__typename?: boolean | number;
|
|
47291
47838
|
__scalar?: boolean | number;
|
|
47292
47839
|
}
|
|
47840
|
+
/** A voting strategy used to calculate voting power */
|
|
47293
47841
|
interface StrategyGenqlSelection {
|
|
47842
|
+
/** Strategy identifier */
|
|
47294
47843
|
name?: boolean | number;
|
|
47844
|
+
/** Network ID this strategy operates on */
|
|
47295
47845
|
network?: boolean | number;
|
|
47846
|
+
/** Strategy-specific parameters */
|
|
47296
47847
|
params?: boolean | number;
|
|
47297
47848
|
__typename?: boolean | number;
|
|
47298
47849
|
__scalar?: boolean | number;
|
|
47299
47850
|
}
|
|
47851
|
+
/** A validation strategy for proposals or votes */
|
|
47300
47852
|
interface ValidationGenqlSelection {
|
|
47853
|
+
/** Validation identifier */
|
|
47301
47854
|
name?: boolean | number;
|
|
47855
|
+
/** Validation-specific parameters */
|
|
47302
47856
|
params?: boolean | number;
|
|
47303
47857
|
__typename?: boolean | number;
|
|
47304
47858
|
__scalar?: boolean | number;
|
|
47305
47859
|
}
|
|
47860
|
+
/** Delegation portal configuration */
|
|
47306
47861
|
interface DelegationPortalGenqlSelection {
|
|
47862
|
+
/** Type of delegation */
|
|
47307
47863
|
delegationType?: boolean | number;
|
|
47864
|
+
/** Delegation contract address */
|
|
47308
47865
|
delegationContract?: boolean | number;
|
|
47866
|
+
/** Network of the delegation contract */
|
|
47309
47867
|
delegationNetwork?: boolean | number;
|
|
47868
|
+
/** API endpoint for delegation data */
|
|
47310
47869
|
delegationApi?: boolean | number;
|
|
47311
47870
|
__typename?: boolean | number;
|
|
47312
47871
|
__scalar?: boolean | number;
|
|
47313
47872
|
}
|
|
47873
|
+
/** A vote cast on a proposal */
|
|
47314
47874
|
interface VoteGenqlSelection {
|
|
47875
|
+
/** Unique vote identifier */
|
|
47315
47876
|
id?: boolean | number;
|
|
47877
|
+
/** IPFS content identifier */
|
|
47316
47878
|
ipfs?: boolean | number;
|
|
47879
|
+
/** Address of the voter */
|
|
47317
47880
|
voter?: boolean | number;
|
|
47881
|
+
/** Unix timestamp of when the vote was cast */
|
|
47318
47882
|
created?: boolean | number;
|
|
47883
|
+
/** The space this vote was cast in */
|
|
47319
47884
|
space?: SpaceGenqlSelection;
|
|
47885
|
+
/** The proposal this vote was cast on */
|
|
47320
47886
|
proposal?: ProposalGenqlSelection;
|
|
47887
|
+
/** The voter's choice (format depends on voting type) */
|
|
47321
47888
|
choice?: boolean | number;
|
|
47889
|
+
/** Additional vote metadata */
|
|
47322
47890
|
metadata?: boolean | number;
|
|
47891
|
+
/** Reason provided by the voter */
|
|
47323
47892
|
reason?: boolean | number;
|
|
47893
|
+
/** Application used to cast the vote */
|
|
47324
47894
|
app?: boolean | number;
|
|
47895
|
+
/** Voting power of the voter */
|
|
47325
47896
|
vp?: boolean | number;
|
|
47897
|
+
/** Voting power broken down by strategy */
|
|
47326
47898
|
vp_by_strategy?: boolean | number;
|
|
47899
|
+
/** Voting power state (e.g. final, pending) */
|
|
47327
47900
|
vp_state?: boolean | number;
|
|
47901
|
+
/** Monetary value of the voting power */
|
|
47328
47902
|
vp_value?: boolean | number;
|
|
47329
47903
|
__typename?: boolean | number;
|
|
47330
47904
|
__scalar?: boolean | number;
|
|
47331
47905
|
}
|
|
47906
|
+
/** An address alias mapping */
|
|
47332
47907
|
interface AliasGenqlSelection {
|
|
47908
|
+
/** Unique alias identifier */
|
|
47333
47909
|
id?: boolean | number;
|
|
47910
|
+
/** IPFS content identifier */
|
|
47334
47911
|
ipfs?: boolean | number;
|
|
47912
|
+
/** Primary address */
|
|
47335
47913
|
address?: boolean | number;
|
|
47914
|
+
/** Aliased address */
|
|
47336
47915
|
alias?: boolean | number;
|
|
47916
|
+
/** Unix timestamp of when the alias was created */
|
|
47337
47917
|
created?: boolean | number;
|
|
47338
47918
|
__typename?: boolean | number;
|
|
47339
47919
|
__scalar?: boolean | number;
|
|
47340
47920
|
}
|
|
47921
|
+
/** Role and permissions for an address in a space */
|
|
47341
47922
|
interface RoleGenqlSelection {
|
|
47923
|
+
/** Space ID */
|
|
47342
47924
|
space?: boolean | number;
|
|
47925
|
+
/** List of permissions granted */
|
|
47343
47926
|
permissions?: boolean | number;
|
|
47344
47927
|
__typename?: boolean | number;
|
|
47345
47928
|
__scalar?: boolean | number;
|
|
47346
47929
|
}
|
|
47930
|
+
/** A follow relationship between an address and a space */
|
|
47347
47931
|
interface FollowGenqlSelection {
|
|
47932
|
+
/** Unique follow identifier */
|
|
47348
47933
|
id?: boolean | number;
|
|
47934
|
+
/** IPFS content identifier */
|
|
47349
47935
|
ipfs?: boolean | number;
|
|
47936
|
+
/** Address of the follower */
|
|
47350
47937
|
follower?: boolean | number;
|
|
47938
|
+
/** The space being followed */
|
|
47351
47939
|
space?: SpaceGenqlSelection;
|
|
47940
|
+
/** Network ID */
|
|
47352
47941
|
network?: boolean | number;
|
|
47942
|
+
/** Unix timestamp of when the follow was created */
|
|
47353
47943
|
created?: boolean | number;
|
|
47354
47944
|
__typename?: boolean | number;
|
|
47355
47945
|
__scalar?: boolean | number;
|
|
47356
47946
|
}
|
|
47947
|
+
/** A subscription to a space's proposals */
|
|
47357
47948
|
interface SubscriptionGenqlSelection {
|
|
47949
|
+
/** Unique subscription identifier */
|
|
47358
47950
|
id?: boolean | number;
|
|
47951
|
+
/** IPFS content identifier */
|
|
47359
47952
|
ipfs?: boolean | number;
|
|
47953
|
+
/** Address of the subscriber */
|
|
47360
47954
|
address?: boolean | number;
|
|
47955
|
+
/** The space being subscribed to */
|
|
47361
47956
|
space?: SpaceGenqlSelection;
|
|
47957
|
+
/** Unix timestamp of when the subscription was created */
|
|
47362
47958
|
created?: boolean | number;
|
|
47363
47959
|
__typename?: boolean | number;
|
|
47364
47960
|
__scalar?: boolean | number;
|
|
47365
47961
|
}
|
|
47962
|
+
/** A Snapshot user profile */
|
|
47366
47963
|
interface UserGenqlSelection {
|
|
47964
|
+
/** User address */
|
|
47367
47965
|
id?: boolean | number;
|
|
47966
|
+
/** IPFS content identifier */
|
|
47368
47967
|
ipfs?: boolean | number;
|
|
47968
|
+
/** Display name */
|
|
47369
47969
|
name?: boolean | number;
|
|
47970
|
+
/** Bio or description */
|
|
47370
47971
|
about?: boolean | number;
|
|
47972
|
+
/** Avatar image URL */
|
|
47371
47973
|
avatar?: boolean | number;
|
|
47974
|
+
/** Cover image URL */
|
|
47372
47975
|
cover?: boolean | number;
|
|
47976
|
+
/** GitHub handle */
|
|
47373
47977
|
github?: boolean | number;
|
|
47978
|
+
/** Twitter/X handle */
|
|
47374
47979
|
twitter?: boolean | number;
|
|
47980
|
+
/** Lens handle */
|
|
47375
47981
|
lens?: boolean | number;
|
|
47982
|
+
/** Farcaster handle */
|
|
47376
47983
|
farcaster?: boolean | number;
|
|
47984
|
+
/** Unix timestamp of when the profile was created */
|
|
47377
47985
|
created?: boolean | number;
|
|
47986
|
+
/** Total number of votes cast */
|
|
47378
47987
|
votesCount?: boolean | number;
|
|
47988
|
+
/** Total number of proposals created */
|
|
47379
47989
|
proposalsCount?: boolean | number;
|
|
47990
|
+
/** Unix timestamp of the user's most recent vote */
|
|
47380
47991
|
lastVote?: boolean | number;
|
|
47381
47992
|
__typename?: boolean | number;
|
|
47382
47993
|
__scalar?: boolean | number;
|
|
47383
47994
|
}
|
|
47995
|
+
/** A delegate statement */
|
|
47384
47996
|
interface StatementGenqlSelection {
|
|
47997
|
+
/** Unique statement identifier */
|
|
47385
47998
|
id?: boolean | number;
|
|
47999
|
+
/** IPFS content identifier */
|
|
47386
48000
|
ipfs?: boolean | number;
|
|
48001
|
+
/** Space ID this statement belongs to */
|
|
47387
48002
|
space?: boolean | number;
|
|
48003
|
+
/** Network ID */
|
|
47388
48004
|
network?: boolean | number;
|
|
48005
|
+
/** Short bio of the delegate */
|
|
47389
48006
|
about?: boolean | number;
|
|
48007
|
+
/** Delegate address */
|
|
47390
48008
|
delegate?: boolean | number;
|
|
48009
|
+
/** Full delegate statement text */
|
|
47391
48010
|
statement?: boolean | number;
|
|
48011
|
+
/** Discourse forum username */
|
|
47392
48012
|
discourse?: boolean | number;
|
|
48013
|
+
/** Statement status */
|
|
47393
48014
|
status?: boolean | number;
|
|
48015
|
+
/** Source of the statement */
|
|
47394
48016
|
source?: boolean | number;
|
|
48017
|
+
/** Unix timestamp of when the statement was created */
|
|
47395
48018
|
created?: boolean | number;
|
|
48019
|
+
/** Unix timestamp of the last update */
|
|
47396
48020
|
updated?: boolean | number;
|
|
47397
48021
|
__typename?: boolean | number;
|
|
47398
48022
|
__scalar?: boolean | number;
|
|
47399
48023
|
}
|
|
48024
|
+
/** A reusable metadata item (skin, validation, plugin) */
|
|
47400
48025
|
interface ItemGenqlSelection {
|
|
48026
|
+
/** Item identifier */
|
|
47401
48027
|
id?: boolean | number;
|
|
48028
|
+
/** Number of spaces using this item */
|
|
47402
48029
|
spacesCount?: boolean | number;
|
|
47403
48030
|
__typename?: boolean | number;
|
|
47404
48031
|
__scalar?: boolean | number;
|
|
47405
48032
|
}
|
|
48033
|
+
/** A voting strategy with full metadata */
|
|
47406
48034
|
interface StrategyItemGenqlSelection {
|
|
48035
|
+
/** Strategy identifier */
|
|
47407
48036
|
id?: boolean | number;
|
|
48037
|
+
/** Display name */
|
|
47408
48038
|
name?: boolean | number;
|
|
48039
|
+
/** Strategy author */
|
|
47409
48040
|
author?: boolean | number;
|
|
48041
|
+
/** Strategy version */
|
|
47410
48042
|
version?: boolean | number;
|
|
48043
|
+
/** JSON schema for strategy parameters */
|
|
47411
48044
|
schema?: boolean | number;
|
|
48045
|
+
/** Example configurations */
|
|
47412
48046
|
examples?: boolean | number;
|
|
48047
|
+
/** Description of the strategy */
|
|
47413
48048
|
about?: boolean | number;
|
|
48049
|
+
/** Number of spaces using this strategy */
|
|
47414
48050
|
spacesCount?: boolean | number;
|
|
48051
|
+
/** Number of verified spaces using this strategy */
|
|
47415
48052
|
verifiedSpacesCount?: boolean | number;
|
|
48053
|
+
/** Whether voting power depend on other addresses or not */
|
|
47416
48054
|
override?: boolean | number;
|
|
48055
|
+
/** Whether the strategy is disabled */
|
|
47417
48056
|
disabled?: boolean | number;
|
|
47418
48057
|
__typename?: boolean | number;
|
|
47419
48058
|
__scalar?: boolean | number;
|
|
47420
48059
|
}
|
|
48060
|
+
/** A treasury managed by a space */
|
|
47421
48061
|
interface TreasuryGenqlSelection {
|
|
48062
|
+
/** Treasury display name */
|
|
47422
48063
|
name?: boolean | number;
|
|
48064
|
+
/** Treasury wallet address */
|
|
47423
48065
|
address?: boolean | number;
|
|
48066
|
+
/** Network ID the treasury is on */
|
|
47424
48067
|
network?: boolean | number;
|
|
47425
48068
|
__typename?: boolean | number;
|
|
47426
48069
|
__scalar?: boolean | number;
|
|
47427
48070
|
}
|
|
48071
|
+
/** A label that can be applied to proposals */
|
|
47428
48072
|
interface LabelGenqlSelection {
|
|
48073
|
+
/** Label identifier */
|
|
47429
48074
|
id?: boolean | number;
|
|
48075
|
+
/** Label display name */
|
|
47430
48076
|
name?: boolean | number;
|
|
48077
|
+
/** Label description */
|
|
47431
48078
|
description?: boolean | number;
|
|
48079
|
+
/** Hex color code */
|
|
47432
48080
|
color?: boolean | number;
|
|
47433
48081
|
__typename?: boolean | number;
|
|
47434
48082
|
__scalar?: boolean | number;
|
|
47435
48083
|
}
|
|
48084
|
+
/** Boost settings for a space */
|
|
47436
48085
|
interface BoostSettingsGenqlSelection {
|
|
48086
|
+
/** Whether boosting is enabled */
|
|
47437
48087
|
enabled?: boolean | number;
|
|
48088
|
+
/** Whether bribe-based boosting is enabled */
|
|
47438
48089
|
bribeEnabled?: boolean | number;
|
|
47439
48090
|
__typename?: boolean | number;
|
|
47440
48091
|
__scalar?: boolean | number;
|
|
47441
48092
|
}
|
|
48093
|
+
/** Voting power information */
|
|
47442
48094
|
interface VpGenqlSelection {
|
|
48095
|
+
/** Total voting power */
|
|
47443
48096
|
vp?: boolean | number;
|
|
48097
|
+
/** Voting power broken down by strategy */
|
|
47444
48098
|
vp_by_strategy?: boolean | number;
|
|
48099
|
+
/** Voting power state (e.g. final, pending) */
|
|
47445
48100
|
vp_state?: boolean | number;
|
|
47446
48101
|
__typename?: boolean | number;
|
|
47447
48102
|
__scalar?: boolean | number;
|
|
47448
48103
|
}
|
|
48104
|
+
/** Leaderboard entry for a user in a space */
|
|
47449
48105
|
interface LeaderboardGenqlSelection {
|
|
48106
|
+
/** Space ID */
|
|
47450
48107
|
space?: boolean | number;
|
|
48108
|
+
/** User address */
|
|
47451
48109
|
user?: boolean | number;
|
|
48110
|
+
/** Number of proposals created */
|
|
47452
48111
|
proposalsCount?: boolean | number;
|
|
48112
|
+
/** Number of votes cast */
|
|
47453
48113
|
votesCount?: boolean | number;
|
|
48114
|
+
/** Unix timestamp of the user's most recent vote */
|
|
47454
48115
|
lastVote?: boolean | number;
|
|
48116
|
+
/** Monetary value of the user's voting power */
|
|
47455
48117
|
vpValue?: boolean | number;
|
|
47456
48118
|
__typename?: boolean | number;
|
|
47457
48119
|
__scalar?: boolean | number;
|
|
47458
48120
|
}
|
|
48121
|
+
/** A configuration option */
|
|
47459
48122
|
interface OptionGenqlSelection {
|
|
48123
|
+
/** Option name */
|
|
47460
48124
|
name?: boolean | number;
|
|
48125
|
+
/** Option value */
|
|
47461
48126
|
value?: boolean | number;
|
|
47462
48127
|
__typename?: boolean | number;
|
|
47463
48128
|
__scalar?: boolean | number;
|
|
47464
48129
|
}
|
|
48130
|
+
/** Custom theme settings for a space skin */
|
|
47465
48131
|
interface SkinSettingsGenqlSelection {
|
|
48132
|
+
/** Background color */
|
|
47466
48133
|
bg_color?: boolean | number;
|
|
48134
|
+
/** Link color */
|
|
47467
48135
|
link_color?: boolean | number;
|
|
48136
|
+
/** Text color */
|
|
47468
48137
|
text_color?: boolean | number;
|
|
48138
|
+
/** Content area color */
|
|
47469
48139
|
content_color?: boolean | number;
|
|
48140
|
+
/** Border color */
|
|
47470
48141
|
border_color?: boolean | number;
|
|
48142
|
+
/** Heading color */
|
|
47471
48143
|
heading_color?: boolean | number;
|
|
48144
|
+
/** Header color */
|
|
47472
48145
|
header_color?: boolean | number;
|
|
48146
|
+
/** Primary accent color */
|
|
47473
48147
|
primary_color?: boolean | number;
|
|
48148
|
+
/** Theme name (light or dark) */
|
|
47474
48149
|
theme?: boolean | number;
|
|
48150
|
+
/** Custom logo URL */
|
|
47475
48151
|
logo?: boolean | number;
|
|
47476
48152
|
__typename?: boolean | number;
|
|
47477
48153
|
__scalar?: boolean | number;
|
|
47478
48154
|
}
|
|
48155
|
+
/** A blockchain network */
|
|
47479
48156
|
interface NetworkGenqlSelection {
|
|
48157
|
+
/** Network chain ID */
|
|
47480
48158
|
id?: boolean | number;
|
|
48159
|
+
/** Network display name */
|
|
47481
48160
|
name?: boolean | number;
|
|
48161
|
+
/** Whether this is a premium network */
|
|
47482
48162
|
premium?: boolean | number;
|
|
48163
|
+
/** Number of spaces using this network */
|
|
47483
48164
|
spacesCount?: boolean | number;
|
|
47484
48165
|
__typename?: boolean | number;
|
|
47485
48166
|
__scalar?: boolean | number;
|
|
@@ -47771,5 +48452,5 @@ declare function addAssetPrice(client: Client, address: Address): Promise<string
|
|
|
47771
48452
|
*/
|
|
47772
48453
|
declare function getMdContractName(contracts: TenderlySimulationResponse["contracts"], address: Address): string;
|
|
47773
48454
|
//#endregion
|
|
47774
|
-
export { Aip, AssetInfo, BlockscoutStyleSourceCode, BundleParams, ChainId, ChainList, ContractObject, EVENT_DB, EtherscanStyleSourceCode, ExplorerConfig, 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, 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, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, 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, 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 };
|
|
48455
|
+
export { Aip, AssetInfo, BALANCER_VAULT_V2, BALANCER_VAULT_V3, BlockscoutStyleSourceCode, BundleParams, ChainId, ChainList, ContractObject, EVENT_DB, EtherscanStyleSourceCode, ExplorerConfig, 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, 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, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, 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, 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 };
|
|
47775
48456
|
//# sourceMappingURL=browser.d.mts.map
|