@bgd-labs/toolbox 0.2.19 → 0.2.20
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 +136 -698
- package/dist/browser.d.mts.map +1 -1
- package/dist/browser.mjs +3 -676
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +3 -565
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +3 -676
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/browser.d.mts
CHANGED
|
@@ -16348,8 +16348,8 @@ declare function tenderly_createVnet({
|
|
|
16348
16348
|
getBlobBaseFee: () => Promise<viem.GetBlobBaseFeeReturnType>;
|
|
16349
16349
|
getBlock: <includeTransactions extends boolean = false, blockTag extends viem.BlockTag = "latest">(args?: viem.GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
|
|
16350
16350
|
number: blockTag extends "pending" ? null : bigint;
|
|
16351
|
-
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
16352
16351
|
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
16352
|
+
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
16353
16353
|
logsBloom: blockTag extends "pending" ? null : `0x${string}`;
|
|
16354
16354
|
baseFeePerGas: bigint | null;
|
|
16355
16355
|
blobGasUsed: bigint;
|
|
@@ -16376,127 +16376,127 @@ declare function tenderly_createVnet({
|
|
|
16376
16376
|
transactions: includeTransactions extends true ? ({
|
|
16377
16377
|
type: "legacy";
|
|
16378
16378
|
value: bigint;
|
|
16379
|
-
|
|
16379
|
+
yParity?: undefined | undefined;
|
|
16380
16380
|
from: Address;
|
|
16381
16381
|
gas: bigint;
|
|
16382
|
-
nonce: number;
|
|
16383
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16384
|
-
gasPrice: bigint;
|
|
16385
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16386
|
-
maxFeePerGas?: undefined | undefined;
|
|
16387
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16388
|
-
accessList?: undefined | undefined;
|
|
16389
|
-
authorizationList?: undefined | undefined;
|
|
16390
|
-
yParity?: undefined | undefined;
|
|
16391
16382
|
hash: viem.Hash;
|
|
16392
16383
|
input: Hex;
|
|
16384
|
+
nonce: number;
|
|
16393
16385
|
r: Hex;
|
|
16394
16386
|
s: Hex;
|
|
16387
|
+
to: Address | null;
|
|
16395
16388
|
typeHex: Hex | null;
|
|
16396
16389
|
v: bigint;
|
|
16390
|
+
accessList?: undefined | undefined;
|
|
16391
|
+
authorizationList?: undefined | undefined;
|
|
16392
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16397
16393
|
chainId?: number | undefined;
|
|
16398
|
-
|
|
16399
|
-
|
|
16394
|
+
gasPrice: bigint;
|
|
16395
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
16400
16400
|
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
16401
|
} | {
|
|
16402
16402
|
type: "eip2930";
|
|
16403
16403
|
value: bigint;
|
|
16404
|
-
|
|
16404
|
+
yParity: number;
|
|
16405
16405
|
from: Address;
|
|
16406
16406
|
gas: bigint;
|
|
16407
|
-
nonce: number;
|
|
16408
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16409
|
-
gasPrice: bigint;
|
|
16410
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16411
|
-
maxFeePerGas?: undefined | undefined;
|
|
16412
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16413
|
-
accessList: viem.AccessList;
|
|
16414
|
-
authorizationList?: undefined | undefined;
|
|
16415
|
-
yParity: number;
|
|
16416
16407
|
hash: viem.Hash;
|
|
16417
16408
|
input: Hex;
|
|
16409
|
+
nonce: number;
|
|
16418
16410
|
r: Hex;
|
|
16419
16411
|
s: Hex;
|
|
16412
|
+
to: Address | null;
|
|
16420
16413
|
typeHex: Hex | null;
|
|
16421
16414
|
v: bigint;
|
|
16415
|
+
accessList: viem.AccessList;
|
|
16416
|
+
authorizationList?: undefined | undefined;
|
|
16417
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16422
16418
|
chainId: number;
|
|
16423
|
-
|
|
16424
|
-
|
|
16419
|
+
gasPrice: bigint;
|
|
16420
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
16425
16425
|
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
16426
|
} | {
|
|
16427
16427
|
type: "eip1559";
|
|
16428
16428
|
value: bigint;
|
|
16429
|
-
|
|
16429
|
+
yParity: number;
|
|
16430
16430
|
from: Address;
|
|
16431
16431
|
gas: bigint;
|
|
16432
|
-
nonce: number;
|
|
16433
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16434
|
-
gasPrice?: undefined | undefined;
|
|
16435
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16436
|
-
maxFeePerGas: bigint;
|
|
16437
|
-
maxPriorityFeePerGas: bigint;
|
|
16438
|
-
accessList: viem.AccessList;
|
|
16439
|
-
authorizationList?: undefined | undefined;
|
|
16440
|
-
yParity: number;
|
|
16441
16432
|
hash: viem.Hash;
|
|
16442
16433
|
input: Hex;
|
|
16434
|
+
nonce: number;
|
|
16443
16435
|
r: Hex;
|
|
16444
16436
|
s: Hex;
|
|
16437
|
+
to: Address | null;
|
|
16445
16438
|
typeHex: Hex | null;
|
|
16446
16439
|
v: bigint;
|
|
16440
|
+
accessList: viem.AccessList;
|
|
16441
|
+
authorizationList?: undefined | undefined;
|
|
16442
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16447
16443
|
chainId: number;
|
|
16448
|
-
|
|
16449
|
-
|
|
16444
|
+
gasPrice?: undefined | undefined;
|
|
16445
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
16450
16450
|
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
16451
|
} | {
|
|
16452
16452
|
type: "eip4844";
|
|
16453
16453
|
value: bigint;
|
|
16454
|
-
|
|
16454
|
+
yParity: number;
|
|
16455
16455
|
from: Address;
|
|
16456
16456
|
gas: bigint;
|
|
16457
|
-
nonce: number;
|
|
16458
|
-
blobVersionedHashes: readonly Hex[];
|
|
16459
|
-
gasPrice?: undefined | undefined;
|
|
16460
|
-
maxFeePerBlobGas: bigint;
|
|
16461
|
-
maxFeePerGas: bigint;
|
|
16462
|
-
maxPriorityFeePerGas: bigint;
|
|
16463
|
-
accessList: viem.AccessList;
|
|
16464
|
-
authorizationList?: undefined | undefined;
|
|
16465
|
-
yParity: number;
|
|
16466
16457
|
hash: viem.Hash;
|
|
16467
16458
|
input: Hex;
|
|
16459
|
+
nonce: number;
|
|
16468
16460
|
r: Hex;
|
|
16469
16461
|
s: Hex;
|
|
16462
|
+
to: Address | null;
|
|
16470
16463
|
typeHex: Hex | null;
|
|
16471
16464
|
v: bigint;
|
|
16465
|
+
accessList: viem.AccessList;
|
|
16466
|
+
authorizationList?: undefined | undefined;
|
|
16467
|
+
blobVersionedHashes: readonly Hex[];
|
|
16472
16468
|
chainId: number;
|
|
16473
|
-
|
|
16474
|
-
|
|
16469
|
+
gasPrice?: undefined | undefined;
|
|
16470
|
+
maxFeePerBlobGas: bigint;
|
|
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;
|
|
16475
16475
|
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
16476
|
} | {
|
|
16477
16477
|
type: "eip7702";
|
|
16478
16478
|
value: bigint;
|
|
16479
|
-
|
|
16479
|
+
yParity: number;
|
|
16480
16480
|
from: Address;
|
|
16481
16481
|
gas: bigint;
|
|
16482
|
-
nonce: number;
|
|
16483
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16484
|
-
gasPrice?: undefined | undefined;
|
|
16485
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16486
|
-
maxFeePerGas: bigint;
|
|
16487
|
-
maxPriorityFeePerGas: bigint;
|
|
16488
|
-
accessList: viem.AccessList;
|
|
16489
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
16490
|
-
yParity: number;
|
|
16491
16482
|
hash: viem.Hash;
|
|
16492
16483
|
input: Hex;
|
|
16484
|
+
nonce: number;
|
|
16493
16485
|
r: Hex;
|
|
16494
16486
|
s: Hex;
|
|
16487
|
+
to: Address | null;
|
|
16495
16488
|
typeHex: Hex | null;
|
|
16496
16489
|
v: bigint;
|
|
16490
|
+
accessList: viem.AccessList;
|
|
16491
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
16492
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16497
16493
|
chainId: number;
|
|
16498
|
-
|
|
16499
|
-
|
|
16494
|
+
gasPrice?: undefined | undefined;
|
|
16495
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
16500
16500
|
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
16501
|
})[] : `0x${string}`[];
|
|
16502
16502
|
}>;
|
|
@@ -16583,127 +16583,127 @@ declare function tenderly_createVnet({
|
|
|
16583
16583
|
getTransaction: <blockTag extends viem.BlockTag = "latest">(args: viem.GetTransactionParameters<blockTag>) => Promise<{
|
|
16584
16584
|
type: "legacy";
|
|
16585
16585
|
value: bigint;
|
|
16586
|
-
|
|
16586
|
+
yParity?: undefined | undefined;
|
|
16587
16587
|
from: Address;
|
|
16588
16588
|
gas: bigint;
|
|
16589
|
-
nonce: number;
|
|
16590
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16591
|
-
gasPrice: bigint;
|
|
16592
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16593
|
-
maxFeePerGas?: undefined | undefined;
|
|
16594
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16595
|
-
accessList?: undefined | undefined;
|
|
16596
|
-
authorizationList?: undefined | undefined;
|
|
16597
|
-
yParity?: undefined | undefined;
|
|
16598
16589
|
hash: viem.Hash;
|
|
16599
16590
|
input: Hex;
|
|
16591
|
+
nonce: number;
|
|
16600
16592
|
r: Hex;
|
|
16601
16593
|
s: Hex;
|
|
16594
|
+
to: Address | null;
|
|
16602
16595
|
typeHex: Hex | null;
|
|
16603
16596
|
v: bigint;
|
|
16597
|
+
accessList?: undefined | undefined;
|
|
16598
|
+
authorizationList?: undefined | undefined;
|
|
16599
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16604
16600
|
chainId?: number | undefined;
|
|
16605
|
-
|
|
16606
|
-
|
|
16601
|
+
gasPrice: bigint;
|
|
16602
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
16607
16607
|
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
16608
|
} | {
|
|
16609
16609
|
type: "eip2930";
|
|
16610
16610
|
value: bigint;
|
|
16611
|
-
|
|
16611
|
+
yParity: number;
|
|
16612
16612
|
from: Address;
|
|
16613
16613
|
gas: bigint;
|
|
16614
|
-
nonce: number;
|
|
16615
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16616
|
-
gasPrice: bigint;
|
|
16617
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16618
|
-
maxFeePerGas?: undefined | undefined;
|
|
16619
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16620
|
-
accessList: viem.AccessList;
|
|
16621
|
-
authorizationList?: undefined | undefined;
|
|
16622
|
-
yParity: number;
|
|
16623
16614
|
hash: viem.Hash;
|
|
16624
16615
|
input: Hex;
|
|
16616
|
+
nonce: number;
|
|
16625
16617
|
r: Hex;
|
|
16626
16618
|
s: Hex;
|
|
16619
|
+
to: Address | null;
|
|
16627
16620
|
typeHex: Hex | null;
|
|
16628
16621
|
v: bigint;
|
|
16622
|
+
accessList: viem.AccessList;
|
|
16623
|
+
authorizationList?: undefined | undefined;
|
|
16624
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16629
16625
|
chainId: number;
|
|
16630
|
-
|
|
16631
|
-
|
|
16626
|
+
gasPrice: bigint;
|
|
16627
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
16632
16632
|
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
16633
|
} | {
|
|
16634
16634
|
type: "eip1559";
|
|
16635
16635
|
value: bigint;
|
|
16636
|
-
|
|
16636
|
+
yParity: number;
|
|
16637
16637
|
from: Address;
|
|
16638
16638
|
gas: bigint;
|
|
16639
|
-
nonce: number;
|
|
16640
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16641
|
-
gasPrice?: undefined | undefined;
|
|
16642
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16643
|
-
maxFeePerGas: bigint;
|
|
16644
|
-
maxPriorityFeePerGas: bigint;
|
|
16645
|
-
accessList: viem.AccessList;
|
|
16646
|
-
authorizationList?: undefined | undefined;
|
|
16647
|
-
yParity: number;
|
|
16648
16639
|
hash: viem.Hash;
|
|
16649
16640
|
input: Hex;
|
|
16641
|
+
nonce: number;
|
|
16650
16642
|
r: Hex;
|
|
16651
16643
|
s: Hex;
|
|
16644
|
+
to: Address | null;
|
|
16652
16645
|
typeHex: Hex | null;
|
|
16653
16646
|
v: bigint;
|
|
16647
|
+
accessList: viem.AccessList;
|
|
16648
|
+
authorizationList?: undefined | undefined;
|
|
16649
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16654
16650
|
chainId: number;
|
|
16655
|
-
|
|
16656
|
-
|
|
16651
|
+
gasPrice?: undefined | undefined;
|
|
16652
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
16657
16657
|
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
16658
|
} | {
|
|
16659
16659
|
type: "eip4844";
|
|
16660
16660
|
value: bigint;
|
|
16661
|
-
|
|
16661
|
+
yParity: number;
|
|
16662
16662
|
from: Address;
|
|
16663
16663
|
gas: bigint;
|
|
16664
|
-
nonce: number;
|
|
16665
|
-
blobVersionedHashes: readonly Hex[];
|
|
16666
|
-
gasPrice?: undefined | undefined;
|
|
16667
|
-
maxFeePerBlobGas: bigint;
|
|
16668
|
-
maxFeePerGas: bigint;
|
|
16669
|
-
maxPriorityFeePerGas: bigint;
|
|
16670
|
-
accessList: viem.AccessList;
|
|
16671
|
-
authorizationList?: undefined | undefined;
|
|
16672
|
-
yParity: number;
|
|
16673
16664
|
hash: viem.Hash;
|
|
16674
16665
|
input: Hex;
|
|
16666
|
+
nonce: number;
|
|
16675
16667
|
r: Hex;
|
|
16676
16668
|
s: Hex;
|
|
16669
|
+
to: Address | null;
|
|
16677
16670
|
typeHex: Hex | null;
|
|
16678
16671
|
v: bigint;
|
|
16672
|
+
accessList: viem.AccessList;
|
|
16673
|
+
authorizationList?: undefined | undefined;
|
|
16674
|
+
blobVersionedHashes: readonly Hex[];
|
|
16679
16675
|
chainId: number;
|
|
16680
|
-
|
|
16681
|
-
|
|
16676
|
+
gasPrice?: undefined | undefined;
|
|
16677
|
+
maxFeePerBlobGas: bigint;
|
|
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;
|
|
16682
16682
|
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
16683
|
} | {
|
|
16684
16684
|
type: "eip7702";
|
|
16685
16685
|
value: bigint;
|
|
16686
|
-
|
|
16686
|
+
yParity: number;
|
|
16687
16687
|
from: Address;
|
|
16688
16688
|
gas: bigint;
|
|
16689
|
-
nonce: number;
|
|
16690
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16691
|
-
gasPrice?: undefined | undefined;
|
|
16692
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16693
|
-
maxFeePerGas: bigint;
|
|
16694
|
-
maxPriorityFeePerGas: bigint;
|
|
16695
|
-
accessList: viem.AccessList;
|
|
16696
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
16697
|
-
yParity: number;
|
|
16698
16689
|
hash: viem.Hash;
|
|
16699
16690
|
input: Hex;
|
|
16691
|
+
nonce: number;
|
|
16700
16692
|
r: Hex;
|
|
16701
16693
|
s: Hex;
|
|
16694
|
+
to: Address | null;
|
|
16702
16695
|
typeHex: Hex | null;
|
|
16703
16696
|
v: bigint;
|
|
16697
|
+
accessList: viem.AccessList;
|
|
16698
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
16699
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16704
16700
|
chainId: number;
|
|
16705
|
-
|
|
16706
|
-
|
|
16701
|
+
gasPrice?: undefined | undefined;
|
|
16702
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
16707
16707
|
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
16708
|
}>;
|
|
16709
16709
|
getTransactionConfirmations: (args: viem.GetTransactionConfirmationsParameters<{
|
|
@@ -20304,7 +20304,7 @@ declare function tenderly_createVnet({
|
|
|
20304
20304
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
20305
20305
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
20306
20306
|
chainId?: number | undefined;
|
|
20307
|
-
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "
|
|
20307
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") ? T_26 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_26 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (viem.UnionRequiredBy<Extract<viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<{
|
|
20308
20308
|
id: number;
|
|
20309
20309
|
blockExplorers?: {
|
|
20310
20310
|
[key: string]: {
|
|
@@ -23727,7 +23727,7 @@ declare function tenderly_createVnet({
|
|
|
23727
23727
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
23728
23728
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
23729
23729
|
chainId?: number | undefined;
|
|
23730
|
-
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "
|
|
23730
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K] } : never>;
|
|
23731
23731
|
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
23732
|
sendRawTransaction: (args: viem.SendRawTransactionParameters) => Promise<viem.SendRawTransactionReturnType>;
|
|
23733
23733
|
sendRawTransactionSync: (args: viem.SendRawTransactionSyncParameters) => Promise<viem.TransactionReceipt>;
|
|
@@ -27805,7 +27805,7 @@ declare function tenderly_createVnet({
|
|
|
27805
27805
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
27806
27806
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
27807
27807
|
chainId?: number | undefined;
|
|
27808
|
-
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "
|
|
27808
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") ? T_26 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_26 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (viem.UnionRequiredBy<Extract<viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<{
|
|
27809
27809
|
id: number;
|
|
27810
27810
|
blockExplorers?: {
|
|
27811
27811
|
[key: string]: {
|
|
@@ -31234,7 +31234,7 @@ declare function tenderly_createVnet({
|
|
|
31234
31234
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
31235
31235
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
31236
31236
|
chainId?: number | undefined;
|
|
31237
|
-
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "
|
|
31237
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K] } : never>;
|
|
31238
31238
|
requestAddresses: () => Promise<viem.RequestAddressesReturnType>;
|
|
31239
31239
|
requestPermissions: (args: viem.RequestPermissionsParameters) => Promise<viem.RequestPermissionsReturnType>;
|
|
31240
31240
|
sendCalls: <const calls extends readonly unknown[], chainOverride extends viem.Chain | undefined = undefined>(parameters: viem.SendCallsParameters<{
|
|
@@ -31364,8 +31364,8 @@ declare function tenderly_createVnet({
|
|
|
31364
31364
|
address: "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9";
|
|
31365
31365
|
type: "json-rpc";
|
|
31366
31366
|
}, chainOverride, calls>) => Promise<{
|
|
31367
|
-
id: string;
|
|
31368
31367
|
chainId: number;
|
|
31368
|
+
id: string;
|
|
31369
31369
|
version: string;
|
|
31370
31370
|
atomic: boolean;
|
|
31371
31371
|
capabilities?: {
|
|
@@ -32694,11 +32694,15 @@ declare function tenderly_createVnet({
|
|
|
32694
32694
|
[x: string]: readonly viem.TypedDataParameter[];
|
|
32695
32695
|
[x: `string[${string}]`]: undefined;
|
|
32696
32696
|
[x: `function[${string}]`]: undefined;
|
|
32697
|
+
[x: `uint[${string}]`]: undefined;
|
|
32698
|
+
[x: `uint256[${string}]`]: undefined;
|
|
32699
|
+
[x: `int256[${string}]`]: undefined;
|
|
32697
32700
|
[x: `address[${string}]`]: undefined;
|
|
32698
32701
|
[x: `bool[${string}]`]: undefined;
|
|
32699
32702
|
[x: `bytes[${string}]`]: undefined;
|
|
32700
32703
|
[x: `bytes1[${string}]`]: undefined;
|
|
32701
32704
|
[x: `bytes2[${string}]`]: undefined;
|
|
32705
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
32702
32706
|
[x: `bytes3[${string}]`]: undefined;
|
|
32703
32707
|
[x: `bytes4[${string}]`]: undefined;
|
|
32704
32708
|
[x: `bytes5[${string}]`]: undefined;
|
|
@@ -32718,7 +32722,6 @@ declare function tenderly_createVnet({
|
|
|
32718
32722
|
[x: `bytes19[${string}]`]: undefined;
|
|
32719
32723
|
[x: `bytes20[${string}]`]: undefined;
|
|
32720
32724
|
[x: `bytes21[${string}]`]: undefined;
|
|
32721
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
32722
32725
|
[x: `bytes23[${string}]`]: undefined;
|
|
32723
32726
|
[x: `bytes24[${string}]`]: undefined;
|
|
32724
32727
|
[x: `bytes25[${string}]`]: undefined;
|
|
@@ -32761,8 +32764,6 @@ declare function tenderly_createVnet({
|
|
|
32761
32764
|
[x: `int232[${string}]`]: undefined;
|
|
32762
32765
|
[x: `int240[${string}]`]: undefined;
|
|
32763
32766
|
[x: `int248[${string}]`]: undefined;
|
|
32764
|
-
[x: `int256[${string}]`]: undefined;
|
|
32765
|
-
[x: `uint[${string}]`]: undefined;
|
|
32766
32767
|
[x: `uint8[${string}]`]: undefined;
|
|
32767
32768
|
[x: `uint16[${string}]`]: undefined;
|
|
32768
32769
|
[x: `uint24[${string}]`]: undefined;
|
|
@@ -32794,13 +32795,15 @@ declare function tenderly_createVnet({
|
|
|
32794
32795
|
[x: `uint232[${string}]`]: undefined;
|
|
32795
32796
|
[x: `uint240[${string}]`]: undefined;
|
|
32796
32797
|
[x: `uint248[${string}]`]: undefined;
|
|
32797
|
-
[x: `uint256[${string}]`]: undefined;
|
|
32798
32798
|
string?: undefined;
|
|
32799
|
+
uint256?: undefined;
|
|
32800
|
+
int256?: undefined;
|
|
32799
32801
|
address?: undefined;
|
|
32800
32802
|
bool?: undefined;
|
|
32801
32803
|
bytes?: undefined;
|
|
32802
32804
|
bytes1?: undefined;
|
|
32803
32805
|
bytes2?: undefined;
|
|
32806
|
+
bytes22?: undefined;
|
|
32804
32807
|
bytes3?: undefined;
|
|
32805
32808
|
bytes4?: undefined;
|
|
32806
32809
|
bytes5?: undefined;
|
|
@@ -32820,7 +32823,6 @@ declare function tenderly_createVnet({
|
|
|
32820
32823
|
bytes19?: undefined;
|
|
32821
32824
|
bytes20?: undefined;
|
|
32822
32825
|
bytes21?: undefined;
|
|
32823
|
-
bytes22?: undefined;
|
|
32824
32826
|
bytes23?: undefined;
|
|
32825
32827
|
bytes24?: undefined;
|
|
32826
32828
|
bytes25?: undefined;
|
|
@@ -32862,7 +32864,6 @@ declare function tenderly_createVnet({
|
|
|
32862
32864
|
int232?: undefined;
|
|
32863
32865
|
int240?: undefined;
|
|
32864
32866
|
int248?: undefined;
|
|
32865
|
-
int256?: undefined;
|
|
32866
32867
|
uint8?: undefined;
|
|
32867
32868
|
uint16?: undefined;
|
|
32868
32869
|
uint24?: undefined;
|
|
@@ -32894,7 +32895,6 @@ declare function tenderly_createVnet({
|
|
|
32894
32895
|
uint232?: undefined;
|
|
32895
32896
|
uint240?: undefined;
|
|
32896
32897
|
uint248?: undefined;
|
|
32897
|
-
uint256?: undefined;
|
|
32898
32898
|
} | {
|
|
32899
32899
|
[key: string]: unknown;
|
|
32900
32900
|
}, primaryType extends string>(args: viem.SignTypedDataParameters<typedData, primaryType, {
|
|
@@ -33772,6 +33772,7 @@ declare const alchemyNetworkMap: {
|
|
|
33772
33772
|
readonly 42431: "tempo-moderato";
|
|
33773
33773
|
readonly 43113: "avax-fuji";
|
|
33774
33774
|
readonly 43114: "avax-mainnet";
|
|
33775
|
+
readonly 46630: "robinhood-testnet";
|
|
33775
33776
|
readonly 53302: "superseed-sepolia";
|
|
33776
33777
|
readonly 57054: "sonic-blaze";
|
|
33777
33778
|
readonly 57073: "ink-mainnet";
|
|
@@ -34040,7 +34041,7 @@ declare const etherscanExplorers: {
|
|
|
34040
34041
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34041
34042
|
readonly explorer: "https://opbnb-testnet.bscscan.com/";
|
|
34042
34043
|
};
|
|
34043
|
-
readonly
|
|
34044
|
+
readonly 6343: {
|
|
34044
34045
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34045
34046
|
readonly explorer: "https://testnet-mega.etherscan.io/";
|
|
34046
34047
|
};
|
|
@@ -34080,10 +34081,6 @@ declare const etherscanExplorers: {
|
|
|
34080
34081
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34081
34082
|
readonly explorer: "https://arbiscan.io/";
|
|
34082
34083
|
};
|
|
34083
|
-
readonly 42170: {
|
|
34084
|
-
readonly api: "https://api.etherscan.io/v2/api";
|
|
34085
|
-
readonly explorer: "https://nova.arbiscan.io/";
|
|
34086
|
-
};
|
|
34087
34084
|
readonly 42220: {
|
|
34088
34085
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34089
34086
|
readonly explorer: "https://celoscan.io/";
|
|
@@ -34228,10 +34225,6 @@ declare const routescanExplorers: {
|
|
|
34228
34225
|
readonly api: "https://api.routescan.io/v2/network/mainnet/evm/252/etherscan";
|
|
34229
34226
|
readonly explorer: "252.routescan.io";
|
|
34230
34227
|
};
|
|
34231
|
-
readonly 254: {
|
|
34232
|
-
readonly api: "https://api.routescan.io/v2/network/mainnet/evm/254/etherscan";
|
|
34233
|
-
readonly explorer: "254.routescan.io";
|
|
34234
|
-
};
|
|
34235
34228
|
readonly 288: {
|
|
34236
34229
|
readonly api: "https://api.routescan.io/v2/network/mainnet/evm/288/etherscan";
|
|
34237
34230
|
readonly explorer: "288.routescan.io";
|
|
@@ -37323,11 +37316,6 @@ declare const chainlinkFeeds: {
|
|
|
37323
37316
|
readonly proxyAddress: "0xD41390267Afec3fA5b4c0B3aA6c706556CCE75ec";
|
|
37324
37317
|
readonly decimals: 8;
|
|
37325
37318
|
readonly name: "C3M / EUR";
|
|
37326
|
-
}, {
|
|
37327
|
-
readonly contractAddress: "0x1E37adeFCfF644B69E717ce536D2dE407879D809";
|
|
37328
|
-
readonly proxyAddress: "0x3b41D5571468904D4e53b6a8d93A6BaC43f02dC9";
|
|
37329
|
-
readonly decimals: 18;
|
|
37330
|
-
readonly name: "PERP / ETH";
|
|
37331
37319
|
}, {
|
|
37332
37320
|
readonly contractAddress: "0x1E726556244D772d1d50cacb19B87E7205fA509E";
|
|
37333
37321
|
readonly proxyAddress: "0xF017fcB346A1885194689bA23Eff2fE6fA5C483b";
|
|
@@ -37989,11 +37977,6 @@ declare const chainlinkFeeds: {
|
|
|
37989
37977
|
readonly proxyAddress: "0xF0985f7E2CaBFf22CecC5a71282a89582c382EFE";
|
|
37990
37978
|
readonly decimals: 18;
|
|
37991
37979
|
readonly name: "FTT / ETH";
|
|
37992
|
-
}, {
|
|
37993
|
-
readonly contractAddress: "0x9E3AABA3B04264DD009437F48eBFD70713dd0667";
|
|
37994
|
-
readonly proxyAddress: "0xAcFCF155a0de611414C510D43446c27a4EE6a758";
|
|
37995
|
-
readonly decimals: 8;
|
|
37996
|
-
readonly name: "WAMPL / USD";
|
|
37997
37980
|
}, {
|
|
37998
37981
|
readonly contractAddress: "0x9F6B06e826d3DF391285c695749F8f921F6972D9";
|
|
37999
37982
|
readonly proxyAddress: "0x89904B6fcF8dAD1e5DA47dFdF69fC38Ad6be0bd5";
|
|
@@ -38017,11 +38000,6 @@ declare const chainlinkFeeds: {
|
|
|
38017
38000
|
readonly decimals: 8;
|
|
38018
38001
|
readonly name: "AAVE SVR USDT / USD";
|
|
38019
38002
|
readonly secondaryProxyAddress: "0x62c2ab773B7324ad9e030D777989B3b5d5c54c0A";
|
|
38020
|
-
}, {
|
|
38021
|
-
readonly contractAddress: "0x9e6e40dC0A35D6eD96BB09D928261EB598523645";
|
|
38022
|
-
readonly proxyAddress: "0x58921Ac140522867bf50b9E009599Da0CA4A2379";
|
|
38023
|
-
readonly decimals: 18;
|
|
38024
|
-
readonly name: "BADGER / ETH";
|
|
38025
38003
|
}, {
|
|
38026
38004
|
readonly contractAddress: "0xA0B5260BDfD1011C4bcdc7A099C75BFf6340B38C";
|
|
38027
38005
|
readonly proxyAddress: "0xBcE206caE7f0ec07b545EddE332A47C2F75bbeb3";
|
|
@@ -38162,11 +38140,6 @@ declare const chainlinkFeeds: {
|
|
|
38162
38140
|
readonly proxyAddress: "0x32EaFC72772821936BCc9b8A32dC394fEFcDBfD9";
|
|
38163
38141
|
readonly decimals: 0;
|
|
38164
38142
|
readonly name: "Arbitrum Healthcheck";
|
|
38165
|
-
}, {
|
|
38166
|
-
readonly contractAddress: "0xAfDA097A70d1AF8D93874Dd8cD55b7E082b5ee57";
|
|
38167
|
-
readonly proxyAddress: "0x46cE854814ea38A4857AeA23aE7759b3A7970e4a";
|
|
38168
|
-
readonly decimals: 18;
|
|
38169
|
-
readonly name: "xSolvBTC NAV";
|
|
38170
38143
|
}, {
|
|
38171
38144
|
readonly contractAddress: "0xB30Aae40B630500D5c8140B7d1E5Bb1d61C86B64";
|
|
38172
38145
|
readonly proxyAddress: "0xD93571A6201978976e37c4A0F7bE17806f2Feab2";
|
|
@@ -38312,11 +38285,6 @@ declare const chainlinkFeeds: {
|
|
|
38312
38285
|
readonly proxyAddress: "0x7Fa89217C9bA5eb1307Aca6B84E99ed9220e076F";
|
|
38313
38286
|
readonly decimals: 0;
|
|
38314
38287
|
readonly name: "Celo Healthcheck";
|
|
38315
|
-
}, {
|
|
38316
|
-
readonly contractAddress: "0xF4cF94EB58b2a6eFd05A39dbdc5B02Cf33A509D8";
|
|
38317
|
-
readonly proxyAddress: "0xd95044Eb392CdE502b1F903Fc978317462049E52";
|
|
38318
|
-
readonly decimals: 8;
|
|
38319
|
-
readonly name: "ATH / USD";
|
|
38320
38288
|
}, {
|
|
38321
38289
|
readonly contractAddress: "0xF69C2CdFa50C970235d059DfeEE767b27E02F260";
|
|
38322
38290
|
readonly proxyAddress: "0x64c4c1BF5ec145CB6095A289249592B5bb007098";
|
|
@@ -38408,11 +38376,6 @@ declare const chainlinkFeeds: {
|
|
|
38408
38376
|
readonly proxyAddress: "0xBAEbEFc1D023c0feCcc047Bff42E75F15Ff213E6";
|
|
38409
38377
|
readonly decimals: 8;
|
|
38410
38378
|
readonly name: "IMX / USD";
|
|
38411
|
-
}, {
|
|
38412
|
-
readonly contractAddress: "0xc4f25Fed1c2C5973947d5C90f7C9a32353ceEb22";
|
|
38413
|
-
readonly proxyAddress: "0x14d04Fff8D21bd62987a5cE9ce543d2F1edF5D3E";
|
|
38414
|
-
readonly decimals: 18;
|
|
38415
|
-
readonly name: "FRAX / ETH";
|
|
38416
38379
|
}, {
|
|
38417
38380
|
readonly contractAddress: "0xc778E9686F0fde6Fe4D7d8fE4B481463Fce898fD";
|
|
38418
38381
|
readonly proxyAddress: "0xDC3EA94CD0AC27d9A86C180091e7f78C683d3699";
|
|
@@ -38608,11 +38571,6 @@ declare const chainlinkFeeds: {
|
|
|
38608
38571
|
readonly proxyAddress: "0x7CFB4fac1a2FDB1267F8bc17FADc12804AC13CFE";
|
|
38609
38572
|
readonly decimals: 8;
|
|
38610
38573
|
readonly name: "ONE / USD";
|
|
38611
|
-
}, {
|
|
38612
|
-
readonly contractAddress: "0x0542BbBfbc26A86EA92d2b7f6Da07DAf0CA091eD";
|
|
38613
|
-
readonly proxyAddress: "0x2fF1EB7D0ceC35959F0248E9354c3248c6683D9b";
|
|
38614
|
-
readonly decimals: 8;
|
|
38615
|
-
readonly name: "FLOW / USD";
|
|
38616
38574
|
}, {
|
|
38617
38575
|
readonly contractAddress: "0x057B4ffE41aFb2104C3355a8396bab7c64E4017F";
|
|
38618
38576
|
readonly proxyAddress: "0x5a61374950D4BFa5a3D4f2CA36FC1d23A92b6f21";
|
|
@@ -38713,11 +38671,6 @@ declare const chainlinkFeeds: {
|
|
|
38713
38671
|
readonly proxyAddress: "0x73A3919a69eFCd5b19df8348c6740bB1446F5ed0";
|
|
38714
38672
|
readonly decimals: 8;
|
|
38715
38673
|
readonly name: "MIMATIC / USD";
|
|
38716
|
-
}, {
|
|
38717
|
-
readonly contractAddress: "0x1C1df24f0d06415fc3F58b1c1fDadd5fC85d2950";
|
|
38718
|
-
readonly proxyAddress: "0x0ded608AFc23724f614B76955bbd9dFe7dDdc828";
|
|
38719
|
-
readonly decimals: 8;
|
|
38720
|
-
readonly name: "MATIC / USD";
|
|
38721
38674
|
}, {
|
|
38722
38675
|
readonly contractAddress: "0x1C4f2b051fdBE353d17c58Eca8FFb2fe15b5Da71";
|
|
38723
38676
|
readonly proxyAddress: "0x14d2d3a82AeD4019FddDfe07E8bdc485fb0d2249";
|
|
@@ -38808,11 +38761,6 @@ declare const chainlinkFeeds: {
|
|
|
38808
38761
|
readonly proxyAddress: "0xfa042d5F474d7A39454C594CCfE014Ea011495f2";
|
|
38809
38762
|
readonly decimals: 8;
|
|
38810
38763
|
readonly name: "GRT / USD";
|
|
38811
|
-
}, {
|
|
38812
|
-
readonly contractAddress: "0x44f690526B76D91072fb0427B0A24b882E612455";
|
|
38813
|
-
readonly proxyAddress: "0x30D9d31C1ac29Bc2c2c312c1bCa9F8b3D60e2376";
|
|
38814
|
-
readonly decimals: 8;
|
|
38815
|
-
readonly name: "BAL / USD";
|
|
38816
38764
|
}, {
|
|
38817
38765
|
readonly contractAddress: "0x4713B96931c490F1B66D25cc2ac96Eb0AAFa2ac3";
|
|
38818
38766
|
readonly proxyAddress: "0x0f2Ed59657e391746C1a097BDa98F2aBb94b1120";
|
|
@@ -39298,11 +39246,6 @@ declare const chainlinkFeeds: {
|
|
|
39298
39246
|
readonly proxyAddress: "0x2FF8822F371b283604369700d6F06da3fBb31064";
|
|
39299
39247
|
readonly decimals: 8;
|
|
39300
39248
|
readonly name: "ZEC / USD";
|
|
39301
|
-
}, {
|
|
39302
|
-
readonly contractAddress: "0xb413D63Ac2e38a5A1C18834F20b958745dBeb998";
|
|
39303
|
-
readonly proxyAddress: "0x7F102e5b4C32e0861293E97DE85e6E0dB3530605";
|
|
39304
|
-
readonly decimals: 8;
|
|
39305
|
-
readonly name: "WELL / USD";
|
|
39306
39249
|
}, {
|
|
39307
39250
|
readonly contractAddress: "0xb785e9aa87cDB29cC11a3f2b8bd17E6279275A35";
|
|
39308
39251
|
readonly proxyAddress: "0x517C2557c29F7c53Aa5F97a1DAE465E0d5C174AA";
|
|
@@ -39455,11 +39398,6 @@ declare const chainlinkFeeds: {
|
|
|
39455
39398
|
readonly proxyAddress: "0x14Ae6B76cd940Fa449381cdC9f3a098A3D39A730";
|
|
39456
39399
|
readonly decimals: 18;
|
|
39457
39400
|
readonly name: "savBTC / avBTC Exchange Rate";
|
|
39458
|
-
}, {
|
|
39459
|
-
readonly contractAddress: "0x1640C1a6984f744E069b65d5657c075935474d63";
|
|
39460
|
-
readonly proxyAddress: "0xf7E7c0ffCB11dAC6eCA1434C67faB9aE000e10a7";
|
|
39461
|
-
readonly decimals: 8;
|
|
39462
|
-
readonly name: "WING / USD";
|
|
39463
39401
|
}, {
|
|
39464
39402
|
readonly contractAddress: "0x17d041D20a0b8693aA95c99FCdc5A2bd0126FDB3";
|
|
39465
39403
|
readonly proxyAddress: "0x1a269eA1b209DA2c12bDCDab22635C9e6C5028B2";
|
|
@@ -39633,11 +39571,6 @@ declare const chainlinkFeeds: {
|
|
|
39633
39571
|
readonly proxyAddress: "0xdC156E0Ec3C166cdE3d4Ab9912B79e1b916E3CB7";
|
|
39634
39572
|
readonly decimals: 18;
|
|
39635
39573
|
readonly name: "sUSDX / USDX Exchange Rate";
|
|
39636
|
-
}, {
|
|
39637
|
-
readonly contractAddress: "0x43CB601A5869Fc67f5D3389fE91C6c6fBC6F880b";
|
|
39638
|
-
readonly proxyAddress: "0x9e7377E194E41d63795907c92c3EB351a2eb0233";
|
|
39639
|
-
readonly decimals: 8;
|
|
39640
|
-
readonly name: "WIN / USD";
|
|
39641
39574
|
}, {
|
|
39642
39575
|
readonly contractAddress: "0x44b24057e1cF7a58c86d06dFb12C83806DB7cA95";
|
|
39643
39576
|
readonly proxyAddress: "0xd97aB9e5bD461eBcD55009791C410294f7B42Cdb";
|
|
@@ -40082,11 +40015,6 @@ declare const chainlinkFeeds: {
|
|
|
40082
40015
|
readonly proxyAddress: "0xa3334A9762090E827413A7495AfeCE76F41dFc06";
|
|
40083
40016
|
readonly decimals: 8;
|
|
40084
40017
|
readonly name: "TUSD / USD";
|
|
40085
|
-
}, {
|
|
40086
|
-
readonly contractAddress: "0xBD25C33FFA560129E6346454faF0e8deBD0c0288";
|
|
40087
|
-
readonly proxyAddress: "0x0E9D55932893Fb1308882C7857285B2B0bcc4f4a";
|
|
40088
|
-
readonly decimals: 8;
|
|
40089
|
-
readonly name: "FXS / USD";
|
|
40090
40018
|
}, {
|
|
40091
40019
|
readonly contractAddress: "0xC5E353BEd3a74cE79210aC6819355e8531616876";
|
|
40092
40020
|
readonly proxyAddress: "0x4c75d01cfa4D998770b399246400a6dc40FB9645";
|
|
@@ -40127,11 +40055,6 @@ declare const chainlinkFeeds: {
|
|
|
40127
40055
|
readonly proxyAddress: "0xBF63F430A79D4036A5900C19818aFf1fa710f206";
|
|
40128
40056
|
readonly decimals: 8;
|
|
40129
40057
|
readonly name: "XVS / USD";
|
|
40130
|
-
}, {
|
|
40131
|
-
readonly contractAddress: "0xD377b4D1ef943d0414Cc072ddAC1299940222A24";
|
|
40132
|
-
readonly proxyAddress: "0xcF95796f3016801A1dA5C518Fc7A59C51dcEf793";
|
|
40133
|
-
readonly decimals: 8;
|
|
40134
|
-
readonly name: "ONG / USD";
|
|
40135
40058
|
}, {
|
|
40136
40059
|
readonly contractAddress: "0xDD746F1C05207D1478dC217F4e832786ABEd5C80";
|
|
40137
40060
|
readonly proxyAddress: "0x84210d9013A30C6ab169e28840A6CC54B60fa042";
|
|
@@ -40215,11 +40138,6 @@ declare const chainlinkFeeds: {
|
|
|
40215
40138
|
readonly proxyAddress: "0x2a548935a323Bb7329a5E3F1667B979f16Bc890b";
|
|
40216
40139
|
readonly decimals: 18;
|
|
40217
40140
|
readonly name: "BCH / BNB";
|
|
40218
|
-
}, {
|
|
40219
|
-
readonly contractAddress: "0xFaA69Fc5efd347b9D6FD4709F7618d4E1449cA74";
|
|
40220
|
-
readonly proxyAddress: "0x7CA57b0cA6367191c94C8914d7Df09A57655905f";
|
|
40221
|
-
readonly decimals: 8;
|
|
40222
|
-
readonly name: "MATIC / USD";
|
|
40223
40141
|
}, {
|
|
40224
40142
|
readonly contractAddress: "0xFbBc7E59dd02ADa97FfB0f85C36cE14B1A3Fdfc2";
|
|
40225
40143
|
readonly proxyAddress: "0x08E70777b982a58D23D05E3D7714f44837c06A21";
|
|
@@ -40255,11 +40173,6 @@ declare const chainlinkFeeds: {
|
|
|
40255
40173
|
readonly proxyAddress: "0xb7Ed5bE7977d61E83534230f3256C021e0fae0B6";
|
|
40256
40174
|
readonly decimals: 8;
|
|
40257
40175
|
readonly name: "AAPL / USD";
|
|
40258
|
-
}, {
|
|
40259
|
-
readonly contractAddress: "0xb208D9Ee1703674b7Ced85b615Db69d65430aF67";
|
|
40260
|
-
readonly proxyAddress: "0x13A9c98b07F098c5319f4FF786eB16E22DC738e1";
|
|
40261
|
-
readonly decimals: 8;
|
|
40262
|
-
readonly name: "FRAX / USD";
|
|
40263
40176
|
}, {
|
|
40264
40177
|
readonly contractAddress: "0xb3Ea5aFbd958dB1d36b007e8B5DcD7cD33C5Db02";
|
|
40265
40178
|
readonly proxyAddress: "0x0Db8945f9aEf5651fa5bd52314C5aAe78DfDe540";
|
|
@@ -40537,11 +40450,6 @@ declare const chainlinkFeeds: {
|
|
|
40537
40450
|
readonly proxyAddress: "0x6D42cc26756C34F26BEcDD9b30a279cE9Ea8296E";
|
|
40538
40451
|
readonly decimals: 8;
|
|
40539
40452
|
readonly name: "BNB / USD";
|
|
40540
|
-
}, {
|
|
40541
|
-
readonly contractAddress: "0x9C1Dc429a8d8F10C8ebA522b608bC27F58d6ABE2";
|
|
40542
|
-
readonly proxyAddress: "0x27d4D36968a2BD1Cc3406D99cB1DF50561dBf2a4";
|
|
40543
|
-
readonly decimals: 8;
|
|
40544
|
-
readonly name: "REN / USD";
|
|
40545
40453
|
}, {
|
|
40546
40454
|
readonly contractAddress: "0xB660dC68D4cf26F5ac1c1fDcD9e57d648FCf13d9";
|
|
40547
40455
|
readonly proxyAddress: "0x2997eBa3d9c2447c36107bB0F082b8c33566b49c";
|
|
@@ -41524,11 +41432,6 @@ declare const chainlinkFeeds: {
|
|
|
41524
41432
|
readonly proxyAddress: "0xd3b87e6F953B1126056b914A8CBE78035fB3E241";
|
|
41525
41433
|
readonly decimals: 18;
|
|
41526
41434
|
readonly name: "PumpBTC / BTC Exchange Rate";
|
|
41527
|
-
}, {
|
|
41528
|
-
readonly contractAddress: "0xb35dC10BF66F82D3efD8f08BE49c3BEC31c6efe4";
|
|
41529
|
-
readonly proxyAddress: "0x30caC44b395eB969C9CA0d44dF39e6E0aE8f8D94";
|
|
41530
|
-
readonly decimals: 18;
|
|
41531
|
-
readonly name: "OS / S";
|
|
41532
41435
|
}, {
|
|
41533
41436
|
readonly contractAddress: "0xc40650248C96027e8A7a86Cf96aA492004873E5d";
|
|
41534
41437
|
readonly proxyAddress: "0x8f0240dc9C7644D121D370d8ee61FF9F2356521E";
|
|
@@ -41544,11 +41447,6 @@ declare const chainlinkFeeds: {
|
|
|
41544
41447
|
readonly proxyAddress: "0x960BDD1dFD20d7c98fa482D793C3dedD73A113a3";
|
|
41545
41448
|
readonly decimals: 18;
|
|
41546
41449
|
readonly name: "uniBTC / BTC Exchange Rate";
|
|
41547
|
-
}, {
|
|
41548
|
-
readonly contractAddress: "0xd1B3e5248aF8781c1338D1Ea278618fB58955017";
|
|
41549
|
-
readonly proxyAddress: "0x3cf9E4860bafe8e29eC8e1bC073436C5519684f4";
|
|
41550
|
-
readonly decimals: 8;
|
|
41551
|
-
readonly name: "scBTC / BTC";
|
|
41552
41450
|
}, {
|
|
41553
41451
|
readonly contractAddress: "0xd7221b10FBBC1e1ba95Fd0B4D031C15f7F365296";
|
|
41554
41452
|
readonly proxyAddress: "0xfdee80dec97AF9AddcDccD208eC09d7Ea5eEbB9a";
|
|
@@ -41808,11 +41706,6 @@ declare const chainlinkFeeds: {
|
|
|
41808
41706
|
readonly name: "frxETH / ETH Exchange Rate High";
|
|
41809
41707
|
}];
|
|
41810
41708
|
readonly "1868": readonly [{
|
|
41811
|
-
readonly contractAddress: "0x0101EF4292188d0082121ED61854F25e4b79C600";
|
|
41812
|
-
readonly proxyAddress: "0xEEDE303b8602Db7556eD57BDf7133A6bAADa294D";
|
|
41813
|
-
readonly decimals: 18;
|
|
41814
|
-
readonly name: "pufETH / ETH";
|
|
41815
|
-
}, {
|
|
41816
41709
|
readonly contractAddress: "0x0c617263C40231731f1264b8Ee5aA96A29eeA99F";
|
|
41817
41710
|
readonly proxyAddress: "0x884E2819193d8c8993036290D5a8778Dbe3942f2";
|
|
41818
41711
|
readonly decimals: 8;
|
|
@@ -42363,11 +42256,6 @@ declare const chainlinkFeeds: {
|
|
|
42363
42256
|
readonly proxyAddress: "0x9f0C1dD78C4CBdF5b9cf923a549A201EdC676D34";
|
|
42364
42257
|
readonly decimals: 8;
|
|
42365
42258
|
readonly name: "XRP / USD";
|
|
42366
|
-
}, {
|
|
42367
|
-
readonly contractAddress: "0x55012EF027ae9b4E2bb5a5f529E5a1184Bcc998D";
|
|
42368
|
-
readonly proxyAddress: "0x91D7AEd72bF772A0DA30199B925aCB866ACD3D9e";
|
|
42369
|
-
readonly decimals: 8;
|
|
42370
|
-
readonly name: "OGN / USD";
|
|
42371
42259
|
}, {
|
|
42372
42260
|
readonly contractAddress: "0x5526525178A842eB07e54cAE0d30c967d74bd0b7";
|
|
42373
42261
|
readonly proxyAddress: "0x1E6A29666288a310326B37d823Fe4Ea3937424D2";
|
|
@@ -42480,11 +42368,6 @@ declare const chainlinkFeeds: {
|
|
|
42480
42368
|
readonly proxyAddress: "0xe3971Ed6F1A5903321479Ef3148B5950c0612075";
|
|
42481
42369
|
readonly decimals: 8;
|
|
42482
42370
|
readonly name: "SNX / USD";
|
|
42483
|
-
}, {
|
|
42484
|
-
readonly contractAddress: "0x74E60B98A3FCaBcDDC66C5727Ab4bCccbad10ce7";
|
|
42485
|
-
readonly proxyAddress: "0x8eC6a128a430f7A850165bcF18facc9520a9873F";
|
|
42486
|
-
readonly decimals: 8;
|
|
42487
|
-
readonly name: "VVV / USD";
|
|
42488
42371
|
}, {
|
|
42489
42372
|
readonly contractAddress: "0x74f70D08c92f1cd4Ed70B9aa3F8edC0bA5496a01";
|
|
42490
42373
|
readonly proxyAddress: "0x5E988c11a4f92155C30D9fb69Ed75597f712B113";
|
|
@@ -42568,11 +42451,6 @@ declare const chainlinkFeeds: {
|
|
|
42568
42451
|
readonly decimals: 18;
|
|
42569
42452
|
readonly name: "AAVE SVR LBTC / BTC Exchange Rate";
|
|
42570
42453
|
readonly secondaryProxyAddress: "0xA6E3b91196afC536E4944B78aBb7DA41E7e18d6b";
|
|
42571
|
-
}, {
|
|
42572
|
-
readonly contractAddress: "0x8E6ec3E7d1E50db38D5690dF501530D5B2d0b58A";
|
|
42573
|
-
readonly proxyAddress: "0x90F3676B40F6dc2C1E074985D0544Bb8e1815B00";
|
|
42574
|
-
readonly decimals: 8;
|
|
42575
|
-
readonly name: "CTX / USD";
|
|
42576
42454
|
}, {
|
|
42577
42455
|
readonly contractAddress: "0x8b535cC811c4E4c9CFf85b823479B1616CB5C7B5";
|
|
42578
42456
|
readonly proxyAddress: "0x1E6c22AAA11F507af12034A5Dc4126A6A25DC8d2";
|
|
@@ -42599,11 +42477,6 @@ declare const chainlinkFeeds: {
|
|
|
42599
42477
|
readonly decimals: 18;
|
|
42600
42478
|
readonly name: "AAVE SVR WSTETH / STETH Exchange Rate";
|
|
42601
42479
|
readonly secondaryProxyAddress: "0x2d4b8B1083a7C278B4C45c598De155e5f9b7A8D5";
|
|
42602
|
-
}, {
|
|
42603
|
-
readonly contractAddress: "0x9465CF4b4032080434E397F42fB99A8446c35376";
|
|
42604
|
-
readonly proxyAddress: "0xd5Ec94430eF4170D819E0996BC53ed40d31638d8";
|
|
42605
|
-
readonly decimals: 8;
|
|
42606
|
-
readonly name: "USD+ / USD";
|
|
42607
42480
|
}, {
|
|
42608
42481
|
readonly contractAddress: "0x97100bac08Ef1532401041b5F864B4De999ab6D4";
|
|
42609
42482
|
readonly proxyAddress: "0xC8D5D660bb585b68fa0263EeD7B4224a5FC99669";
|
|
@@ -42711,21 +42584,11 @@ declare const chainlinkFeeds: {
|
|
|
42711
42584
|
readonly proxyAddress: "0x2a18E2d46Cb067b69e0759dB39b16597fC42D962";
|
|
42712
42585
|
readonly decimals: 1;
|
|
42713
42586
|
readonly name: "PCE Price Index — Percent Change (Annual Rate)";
|
|
42714
|
-
}, {
|
|
42715
|
-
readonly contractAddress: "0xCe14fF0ACf4a1e7Eab6802C64D317e3fD989f3C6";
|
|
42716
|
-
readonly proxyAddress: "0x1fC950BbC12E93c15A3eEb62db978eb3cC567943";
|
|
42717
|
-
readonly decimals: 8;
|
|
42718
|
-
readonly name: "SYND / USD";
|
|
42719
42587
|
}, {
|
|
42720
42588
|
readonly contractAddress: "0xD0407a6524C7d9075E0b040dCEf4696129B2C3B4";
|
|
42721
42589
|
readonly proxyAddress: "0xeDC243c7E3c1A9dAf067C90641D2346d2694d2e5";
|
|
42722
42590
|
readonly decimals: 18;
|
|
42723
42591
|
readonly name: "LSETH / ETH";
|
|
42724
|
-
}, {
|
|
42725
|
-
readonly contractAddress: "0xD27766C20dF630a7D7e1e5885ae581FB0e61828A";
|
|
42726
|
-
readonly proxyAddress: "0xe25969e2Fa633a0C027fAB8F30Fc9C6A90D60B48";
|
|
42727
|
-
readonly decimals: 8;
|
|
42728
|
-
readonly name: "USDz / USD";
|
|
42729
42592
|
}, {
|
|
42730
42593
|
readonly contractAddress: "0xD41A2B9575eD27D38EC9B75B4d0DD9632a72e45b";
|
|
42731
42594
|
readonly proxyAddress: "0x5218Ebeb96bD2bAFe21F9b143f5672552629ba79";
|
|
@@ -43178,11 +43041,6 @@ declare const chainlinkFeeds: {
|
|
|
43178
43041
|
readonly decimals: 8;
|
|
43179
43042
|
readonly name: "AAVE SVR EURC / USD";
|
|
43180
43043
|
readonly secondaryProxyAddress: "0x86e5D529Cb7cAeF5C475Aab0727a84739E12EA3F";
|
|
43181
|
-
}, {
|
|
43182
|
-
readonly contractAddress: "0x338D614Af8c05eF9d77a33E9D33A92b770809ED4";
|
|
43183
|
-
readonly proxyAddress: "0x6548a81E640C000150e06AB413fB3F772682e9c5";
|
|
43184
|
-
readonly decimals: 8;
|
|
43185
|
-
readonly name: "USD+ / USD";
|
|
43186
43044
|
}, {
|
|
43187
43045
|
readonly contractAddress: "0x34EA4fc62510bd81a72399309f717B96F740A4AE";
|
|
43188
43046
|
readonly proxyAddress: "0x7A58648CAeA88e042767823723aF266DC6c4c4D9";
|
|
@@ -43249,36 +43107,16 @@ declare const chainlinkFeeds: {
|
|
|
43249
43107
|
readonly proxyAddress: null;
|
|
43250
43108
|
readonly decimals: 18;
|
|
43251
43109
|
readonly name: "ASTR/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43252
|
-
}, {
|
|
43253
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43254
|
-
readonly proxyAddress: null;
|
|
43255
|
-
readonly decimals: 18;
|
|
43256
|
-
readonly name: "REZ/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43257
|
-
}, {
|
|
43258
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43259
|
-
readonly proxyAddress: null;
|
|
43260
|
-
readonly decimals: 18;
|
|
43261
|
-
readonly name: "WOO/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43262
43110
|
}, {
|
|
43263
43111
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43264
43112
|
readonly proxyAddress: null;
|
|
43265
43113
|
readonly decimals: 18;
|
|
43266
43114
|
readonly name: "BONK/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43267
|
-
}, {
|
|
43268
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43269
|
-
readonly proxyAddress: null;
|
|
43270
|
-
readonly decimals: 18;
|
|
43271
|
-
readonly name: "PEOPLE/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43272
43115
|
}, {
|
|
43273
43116
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43274
43117
|
readonly proxyAddress: null;
|
|
43275
43118
|
readonly decimals: 18;
|
|
43276
43119
|
readonly name: "ATOM/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43277
|
-
}, {
|
|
43278
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43279
|
-
readonly proxyAddress: null;
|
|
43280
|
-
readonly decimals: 18;
|
|
43281
|
-
readonly name: "XAI/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43282
43120
|
}, {
|
|
43283
43121
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43284
43122
|
readonly proxyAddress: null;
|
|
@@ -43299,11 +43137,6 @@ declare const chainlinkFeeds: {
|
|
|
43299
43137
|
readonly proxyAddress: null;
|
|
43300
43138
|
readonly decimals: 18;
|
|
43301
43139
|
readonly name: "ORDER/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43302
|
-
}, {
|
|
43303
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43304
|
-
readonly proxyAddress: null;
|
|
43305
|
-
readonly decimals: 18;
|
|
43306
|
-
readonly name: "BIGTIME/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43307
43140
|
}, {
|
|
43308
43141
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43309
43142
|
readonly proxyAddress: null;
|
|
@@ -43314,11 +43147,6 @@ declare const chainlinkFeeds: {
|
|
|
43314
43147
|
readonly proxyAddress: null;
|
|
43315
43148
|
readonly decimals: 18;
|
|
43316
43149
|
readonly name: "ADA/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43317
|
-
}, {
|
|
43318
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43319
|
-
readonly proxyAddress: null;
|
|
43320
|
-
readonly decimals: 18;
|
|
43321
|
-
readonly name: "NOT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43322
43150
|
}, {
|
|
43323
43151
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43324
43152
|
readonly proxyAddress: null;
|
|
@@ -43329,11 +43157,6 @@ declare const chainlinkFeeds: {
|
|
|
43329
43157
|
readonly proxyAddress: null;
|
|
43330
43158
|
readonly decimals: 18;
|
|
43331
43159
|
readonly name: "PENDLE/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43332
|
-
}, {
|
|
43333
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43334
|
-
readonly proxyAddress: null;
|
|
43335
|
-
readonly decimals: 18;
|
|
43336
|
-
readonly name: "PIXEL/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43337
43160
|
}, {
|
|
43338
43161
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43339
43162
|
readonly proxyAddress: null;
|
|
@@ -43369,36 +43192,6 @@ declare const chainlinkFeeds: {
|
|
|
43369
43192
|
readonly proxyAddress: null;
|
|
43370
43193
|
readonly decimals: 18;
|
|
43371
43194
|
readonly name: "MELANIA/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43372
|
-
}, {
|
|
43373
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43374
|
-
readonly proxyAddress: null;
|
|
43375
|
-
readonly decimals: 18;
|
|
43376
|
-
readonly name: "BLUR/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43377
|
-
}, {
|
|
43378
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43379
|
-
readonly proxyAddress: null;
|
|
43380
|
-
readonly decimals: 18;
|
|
43381
|
-
readonly name: "HOT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43382
|
-
}, {
|
|
43383
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43384
|
-
readonly proxyAddress: null;
|
|
43385
|
-
readonly decimals: 18;
|
|
43386
|
-
readonly name: "MOG/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43387
|
-
}, {
|
|
43388
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43389
|
-
readonly proxyAddress: null;
|
|
43390
|
-
readonly decimals: 18;
|
|
43391
|
-
readonly name: "STG/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43392
|
-
}, {
|
|
43393
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43394
|
-
readonly proxyAddress: null;
|
|
43395
|
-
readonly decimals: 18;
|
|
43396
|
-
readonly name: "IQ/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43397
|
-
}, {
|
|
43398
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43399
|
-
readonly proxyAddress: null;
|
|
43400
|
-
readonly decimals: 18;
|
|
43401
|
-
readonly name: "ILV/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43402
43195
|
}, {
|
|
43403
43196
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43404
43197
|
readonly proxyAddress: null;
|
|
@@ -43454,16 +43247,6 @@ declare const chainlinkFeeds: {
|
|
|
43454
43247
|
readonly proxyAddress: null;
|
|
43455
43248
|
readonly decimals: 18;
|
|
43456
43249
|
readonly name: "QNT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43457
|
-
}, {
|
|
43458
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43459
|
-
readonly proxyAddress: null;
|
|
43460
|
-
readonly decimals: 18;
|
|
43461
|
-
readonly name: "AI/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43462
|
-
}, {
|
|
43463
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43464
|
-
readonly proxyAddress: null;
|
|
43465
|
-
readonly decimals: 18;
|
|
43466
|
-
readonly name: "C98/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43467
43250
|
}, {
|
|
43468
43251
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43469
43252
|
readonly proxyAddress: null;
|
|
@@ -43474,11 +43257,6 @@ declare const chainlinkFeeds: {
|
|
|
43474
43257
|
readonly proxyAddress: null;
|
|
43475
43258
|
readonly decimals: 18;
|
|
43476
43259
|
readonly name: "PAXG/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43477
|
-
}, {
|
|
43478
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43479
|
-
readonly proxyAddress: null;
|
|
43480
|
-
readonly decimals: 18;
|
|
43481
|
-
readonly name: "EDU/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43482
43260
|
}, {
|
|
43483
43261
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43484
43262
|
readonly proxyAddress: null;
|
|
@@ -43494,16 +43272,6 @@ declare const chainlinkFeeds: {
|
|
|
43494
43272
|
readonly proxyAddress: null;
|
|
43495
43273
|
readonly decimals: 18;
|
|
43496
43274
|
readonly name: "ICP/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43497
|
-
}, {
|
|
43498
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43499
|
-
readonly proxyAddress: null;
|
|
43500
|
-
readonly decimals: 18;
|
|
43501
|
-
readonly name: "MERL/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43502
|
-
}, {
|
|
43503
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43504
|
-
readonly proxyAddress: null;
|
|
43505
|
-
readonly decimals: 18;
|
|
43506
|
-
readonly name: "BLAST/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43507
43275
|
}, {
|
|
43508
43276
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43509
43277
|
readonly proxyAddress: null;
|
|
@@ -43529,11 +43297,6 @@ declare const chainlinkFeeds: {
|
|
|
43529
43297
|
readonly proxyAddress: null;
|
|
43530
43298
|
readonly decimals: 18;
|
|
43531
43299
|
readonly name: "BNB/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43532
|
-
}, {
|
|
43533
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43534
|
-
readonly proxyAddress: null;
|
|
43535
|
-
readonly decimals: 18;
|
|
43536
|
-
readonly name: "LPT/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43537
43300
|
}, {
|
|
43538
43301
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43539
43302
|
readonly proxyAddress: null;
|
|
@@ -43549,11 +43312,6 @@ declare const chainlinkFeeds: {
|
|
|
43549
43312
|
readonly proxyAddress: null;
|
|
43550
43313
|
readonly decimals: 18;
|
|
43551
43314
|
readonly name: "VIRTUAL/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43552
|
-
}, {
|
|
43553
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43554
|
-
readonly proxyAddress: null;
|
|
43555
|
-
readonly decimals: 18;
|
|
43556
|
-
readonly name: "IO/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43557
43315
|
}, {
|
|
43558
43316
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43559
43317
|
readonly proxyAddress: null;
|
|
@@ -43564,21 +43322,6 @@ declare const chainlinkFeeds: {
|
|
|
43564
43322
|
readonly proxyAddress: null;
|
|
43565
43323
|
readonly decimals: 18;
|
|
43566
43324
|
readonly name: "GOAT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43567
|
-
}, {
|
|
43568
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43569
|
-
readonly proxyAddress: null;
|
|
43570
|
-
readonly decimals: 18;
|
|
43571
|
-
readonly name: "RDNT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43572
|
-
}, {
|
|
43573
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43574
|
-
readonly proxyAddress: null;
|
|
43575
|
-
readonly decimals: 18;
|
|
43576
|
-
readonly name: "TOKEN/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43577
|
-
}, {
|
|
43578
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43579
|
-
readonly proxyAddress: null;
|
|
43580
|
-
readonly decimals: 18;
|
|
43581
|
-
readonly name: "ZEREBRO/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43582
43325
|
}, {
|
|
43583
43326
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43584
43327
|
readonly proxyAddress: null;
|
|
@@ -43589,16 +43332,6 @@ declare const chainlinkFeeds: {
|
|
|
43589
43332
|
readonly proxyAddress: null;
|
|
43590
43333
|
readonly decimals: 18;
|
|
43591
43334
|
readonly name: "LINK/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43592
|
-
}, {
|
|
43593
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43594
|
-
readonly proxyAddress: null;
|
|
43595
|
-
readonly decimals: 18;
|
|
43596
|
-
readonly name: "POLYX/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43597
|
-
}, {
|
|
43598
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43599
|
-
readonly proxyAddress: null;
|
|
43600
|
-
readonly decimals: 18;
|
|
43601
|
-
readonly name: "ARKM/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43602
43335
|
}, {
|
|
43603
43336
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43604
43337
|
readonly proxyAddress: null;
|
|
@@ -43629,11 +43362,6 @@ declare const chainlinkFeeds: {
|
|
|
43629
43362
|
readonly proxyAddress: null;
|
|
43630
43363
|
readonly decimals: 18;
|
|
43631
43364
|
readonly name: "PENGU/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43632
|
-
}, {
|
|
43633
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43634
|
-
readonly proxyAddress: null;
|
|
43635
|
-
readonly decimals: 18;
|
|
43636
|
-
readonly name: "BB/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43637
43365
|
}, {
|
|
43638
43366
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43639
43367
|
readonly proxyAddress: null;
|
|
@@ -43674,26 +43402,11 @@ declare const chainlinkFeeds: {
|
|
|
43674
43402
|
readonly proxyAddress: null;
|
|
43675
43403
|
readonly decimals: 18;
|
|
43676
43404
|
readonly name: "TURBO/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43677
|
-
}, {
|
|
43678
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43679
|
-
readonly proxyAddress: null;
|
|
43680
|
-
readonly decimals: 18;
|
|
43681
|
-
readonly name: "ETHFI/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43682
43405
|
}, {
|
|
43683
43406
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43684
43407
|
readonly proxyAddress: null;
|
|
43685
43408
|
readonly decimals: 18;
|
|
43686
43409
|
readonly name: "PEPE/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43687
|
-
}, {
|
|
43688
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43689
|
-
readonly proxyAddress: null;
|
|
43690
|
-
readonly decimals: 18;
|
|
43691
|
-
readonly name: "HMSTR/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43692
|
-
}, {
|
|
43693
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43694
|
-
readonly proxyAddress: null;
|
|
43695
|
-
readonly decimals: 18;
|
|
43696
|
-
readonly name: "MANTA/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43697
43410
|
}, {
|
|
43698
43411
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43699
43412
|
readonly proxyAddress: null;
|
|
@@ -43724,11 +43437,6 @@ declare const chainlinkFeeds: {
|
|
|
43724
43437
|
readonly proxyAddress: null;
|
|
43725
43438
|
readonly decimals: 18;
|
|
43726
43439
|
readonly name: "SUI/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43727
|
-
}, {
|
|
43728
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43729
|
-
readonly proxyAddress: null;
|
|
43730
|
-
readonly decimals: 18;
|
|
43731
|
-
readonly name: "MANA/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43732
43440
|
}, {
|
|
43733
43441
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43734
43442
|
readonly proxyAddress: null;
|
|
@@ -43744,11 +43452,6 @@ declare const chainlinkFeeds: {
|
|
|
43744
43452
|
readonly proxyAddress: null;
|
|
43745
43453
|
readonly decimals: 18;
|
|
43746
43454
|
readonly name: "KNC/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43747
|
-
}, {
|
|
43748
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43749
|
-
readonly proxyAddress: null;
|
|
43750
|
-
readonly decimals: 18;
|
|
43751
|
-
readonly name: "ID/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43752
43455
|
}, {
|
|
43753
43456
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43754
43457
|
readonly proxyAddress: null;
|
|
@@ -43764,16 +43467,6 @@ declare const chainlinkFeeds: {
|
|
|
43764
43467
|
readonly proxyAddress: null;
|
|
43765
43468
|
readonly decimals: 18;
|
|
43766
43469
|
readonly name: "DAI/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43767
|
-
}, {
|
|
43768
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43769
|
-
readonly proxyAddress: null;
|
|
43770
|
-
readonly decimals: 18;
|
|
43771
|
-
readonly name: "CYBER/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43772
|
-
}, {
|
|
43773
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43774
|
-
readonly proxyAddress: null;
|
|
43775
|
-
readonly decimals: 18;
|
|
43776
|
-
readonly name: "CHR/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43777
43470
|
}, {
|
|
43778
43471
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43779
43472
|
readonly proxyAddress: null;
|
|
@@ -43789,11 +43482,6 @@ declare const chainlinkFeeds: {
|
|
|
43789
43482
|
readonly proxyAddress: null;
|
|
43790
43483
|
readonly decimals: 18;
|
|
43791
43484
|
readonly name: "W/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43792
|
-
}, {
|
|
43793
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43794
|
-
readonly proxyAddress: null;
|
|
43795
|
-
readonly decimals: 18;
|
|
43796
|
-
readonly name: "POPCAT/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43797
43485
|
}, {
|
|
43798
43486
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43799
43487
|
readonly proxyAddress: null;
|
|
@@ -43829,21 +43517,6 @@ declare const chainlinkFeeds: {
|
|
|
43829
43517
|
readonly proxyAddress: null;
|
|
43830
43518
|
readonly decimals: 18;
|
|
43831
43519
|
readonly name: "RENDER/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43832
|
-
}, {
|
|
43833
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43834
|
-
readonly proxyAddress: null;
|
|
43835
|
-
readonly decimals: 18;
|
|
43836
|
-
readonly name: "MAV/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43837
|
-
}, {
|
|
43838
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43839
|
-
readonly proxyAddress: null;
|
|
43840
|
-
readonly decimals: 18;
|
|
43841
|
-
readonly name: "ENS/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43842
|
-
}, {
|
|
43843
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43844
|
-
readonly proxyAddress: null;
|
|
43845
|
-
readonly decimals: 18;
|
|
43846
|
-
readonly name: "HOOK/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43847
43520
|
}, {
|
|
43848
43521
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43849
43522
|
readonly proxyAddress: null;
|
|
@@ -43864,16 +43537,6 @@ declare const chainlinkFeeds: {
|
|
|
43864
43537
|
readonly proxyAddress: null;
|
|
43865
43538
|
readonly decimals: 18;
|
|
43866
43539
|
readonly name: "DYDX/USD-RefPrice-DStaging-Premium-Global-003";
|
|
43867
|
-
}, {
|
|
43868
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43869
|
-
readonly proxyAddress: null;
|
|
43870
|
-
readonly decimals: 18;
|
|
43871
|
-
readonly name: "ALT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43872
|
-
}, {
|
|
43873
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43874
|
-
readonly proxyAddress: null;
|
|
43875
|
-
readonly decimals: 18;
|
|
43876
|
-
readonly name: "COMP/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43877
43540
|
}, {
|
|
43878
43541
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43879
43542
|
readonly proxyAddress: null;
|
|
@@ -43899,11 +43562,6 @@ declare const chainlinkFeeds: {
|
|
|
43899
43562
|
readonly proxyAddress: null;
|
|
43900
43563
|
readonly decimals: 18;
|
|
43901
43564
|
readonly name: "JUP/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43902
|
-
}, {
|
|
43903
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43904
|
-
readonly proxyAddress: null;
|
|
43905
|
-
readonly decimals: 18;
|
|
43906
|
-
readonly name: "ACE/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43907
43565
|
}, {
|
|
43908
43566
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43909
43567
|
readonly proxyAddress: null;
|
|
@@ -44116,36 +43774,11 @@ declare const chainlinkFeeds: {
|
|
|
44116
43774
|
readonly proxyAddress: "0xe7C53FFd03Eb6ceF7d208bC4C13446c76d1E5884";
|
|
44117
43775
|
readonly decimals: 8;
|
|
44118
43776
|
readonly name: "COMP / USD";
|
|
44119
|
-
}, {
|
|
44120
|
-
readonly contractAddress: "0x53368bC6a7eB4f4AF3d6974520FEba0295A5daAb";
|
|
44121
|
-
readonly proxyAddress: "0xBE5eA816870D11239c543F84b71439511D70B94f";
|
|
44122
|
-
readonly decimals: 8;
|
|
44123
|
-
readonly name: "BAL / USD";
|
|
44124
43777
|
}, {
|
|
44125
43778
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44126
43779
|
readonly proxyAddress: null;
|
|
44127
43780
|
readonly decimals: 18;
|
|
44128
43781
|
readonly name: "GALA/USD-RefPrice-DS-Premium-Global-003";
|
|
44129
|
-
}, {
|
|
44130
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44131
|
-
readonly proxyAddress: null;
|
|
44132
|
-
readonly decimals: 18;
|
|
44133
|
-
readonly name: "POLYX/USD-RefPrice-DS-Premium-Global-003";
|
|
44134
|
-
}, {
|
|
44135
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44136
|
-
readonly proxyAddress: null;
|
|
44137
|
-
readonly decimals: 18;
|
|
44138
|
-
readonly name: "HOOK/USD-RefPrice-DS-Premium-Global-003";
|
|
44139
|
-
}, {
|
|
44140
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44141
|
-
readonly proxyAddress: null;
|
|
44142
|
-
readonly decimals: 18;
|
|
44143
|
-
readonly name: "ACE/USD-RefPrice-DS-Premium-Global-003";
|
|
44144
|
-
}, {
|
|
44145
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44146
|
-
readonly proxyAddress: null;
|
|
44147
|
-
readonly decimals: 18;
|
|
44148
|
-
readonly name: "BLUR/USD-RefPrice-DS-Premium-Global-003";
|
|
44149
43782
|
}, {
|
|
44150
43783
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44151
43784
|
readonly proxyAddress: null;
|
|
@@ -44156,21 +43789,11 @@ declare const chainlinkFeeds: {
|
|
|
44156
43789
|
readonly proxyAddress: null;
|
|
44157
43790
|
readonly decimals: 18;
|
|
44158
43791
|
readonly name: "SATS/USD-RefPrice-DS-Premium-Global-003";
|
|
44159
|
-
}, {
|
|
44160
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44161
|
-
readonly proxyAddress: null;
|
|
44162
|
-
readonly decimals: 18;
|
|
44163
|
-
readonly name: "CHR/USD-RefPrice-DS-Premium-Global-003";
|
|
44164
43792
|
}, {
|
|
44165
43793
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44166
43794
|
readonly proxyAddress: null;
|
|
44167
43795
|
readonly decimals: 18;
|
|
44168
43796
|
readonly name: "STRK/USD-RefPrice-DS-Premium-Global-003";
|
|
44169
|
-
}, {
|
|
44170
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44171
|
-
readonly proxyAddress: null;
|
|
44172
|
-
readonly decimals: 18;
|
|
44173
|
-
readonly name: "BB/USD-RefPrice-DS-Premium-Global-003";
|
|
44174
43797
|
}, {
|
|
44175
43798
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44176
43799
|
readonly proxyAddress: null;
|
|
@@ -44186,11 +43809,6 @@ declare const chainlinkFeeds: {
|
|
|
44186
43809
|
readonly proxyAddress: null;
|
|
44187
43810
|
readonly decimals: 18;
|
|
44188
43811
|
readonly name: "TRX/USD-RefPrice-DS-Premium-Global-003";
|
|
44189
|
-
}, {
|
|
44190
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44191
|
-
readonly proxyAddress: null;
|
|
44192
|
-
readonly decimals: 18;
|
|
44193
|
-
readonly name: "ID/USD-RefPrice-DS-Premium-Global-003";
|
|
44194
43812
|
}, {
|
|
44195
43813
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44196
43814
|
readonly proxyAddress: null;
|
|
@@ -44216,11 +43834,6 @@ declare const chainlinkFeeds: {
|
|
|
44216
43834
|
readonly proxyAddress: null;
|
|
44217
43835
|
readonly decimals: 18;
|
|
44218
43836
|
readonly name: "JTO/USD-RefPrice-DS-Premium-Global-003";
|
|
44219
|
-
}, {
|
|
44220
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44221
|
-
readonly proxyAddress: null;
|
|
44222
|
-
readonly decimals: 18;
|
|
44223
|
-
readonly name: "MANA/USD-RefPrice-DS-Premium-Global-003";
|
|
44224
43837
|
}, {
|
|
44225
43838
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44226
43839
|
readonly proxyAddress: null;
|
|
@@ -44236,21 +43849,11 @@ declare const chainlinkFeeds: {
|
|
|
44236
43849
|
readonly proxyAddress: null;
|
|
44237
43850
|
readonly decimals: 18;
|
|
44238
43851
|
readonly name: "JUP/USD-RefPrice-DS-Premium-Global-003";
|
|
44239
|
-
}, {
|
|
44240
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44241
|
-
readonly proxyAddress: null;
|
|
44242
|
-
readonly decimals: 18;
|
|
44243
|
-
readonly name: "MOG/USD-RefPrice-DS-Premium-Global-003";
|
|
44244
43852
|
}, {
|
|
44245
43853
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44246
43854
|
readonly proxyAddress: null;
|
|
44247
43855
|
readonly decimals: 18;
|
|
44248
43856
|
readonly name: "SAND/USD-RefPrice-DS-Premium-Global-003";
|
|
44249
|
-
}, {
|
|
44250
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44251
|
-
readonly proxyAddress: null;
|
|
44252
|
-
readonly decimals: 18;
|
|
44253
|
-
readonly name: "REZ/USD-RefPrice-DS-Premium-Global-003";
|
|
44254
43857
|
}, {
|
|
44255
43858
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44256
43859
|
readonly proxyAddress: null;
|
|
@@ -44311,11 +43914,6 @@ declare const chainlinkFeeds: {
|
|
|
44311
43914
|
readonly proxyAddress: null;
|
|
44312
43915
|
readonly decimals: 18;
|
|
44313
43916
|
readonly name: "BRETT/USD-RefPrice-DS-Premium-Global-003";
|
|
44314
|
-
}, {
|
|
44315
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44316
|
-
readonly proxyAddress: null;
|
|
44317
|
-
readonly decimals: 18;
|
|
44318
|
-
readonly name: "IO/USD-RefPrice-DS-Premium-Global-003";
|
|
44319
43917
|
}, {
|
|
44320
43918
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44321
43919
|
readonly proxyAddress: null;
|
|
@@ -44351,41 +43949,16 @@ declare const chainlinkFeeds: {
|
|
|
44351
43949
|
readonly proxyAddress: null;
|
|
44352
43950
|
readonly decimals: 18;
|
|
44353
43951
|
readonly name: "TIA/USD-RefPrice-DS-Premium-Global-003";
|
|
44354
|
-
}, {
|
|
44355
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44356
|
-
readonly proxyAddress: null;
|
|
44357
|
-
readonly decimals: 18;
|
|
44358
|
-
readonly name: "MERL/USD-RefPrice-DS-Premium-Global-003";
|
|
44359
|
-
}, {
|
|
44360
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44361
|
-
readonly proxyAddress: null;
|
|
44362
|
-
readonly decimals: 18;
|
|
44363
|
-
readonly name: "STG/USD-RefPrice-DS-Premium-Global-003";
|
|
44364
43952
|
}, {
|
|
44365
43953
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44366
43954
|
readonly proxyAddress: null;
|
|
44367
43955
|
readonly decimals: 18;
|
|
44368
43956
|
readonly name: "RENDER/USD-RefPrice-DS-Premium-Global-003";
|
|
44369
|
-
}, {
|
|
44370
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44371
|
-
readonly proxyAddress: null;
|
|
44372
|
-
readonly decimals: 18;
|
|
44373
|
-
readonly name: "PEOPLE/USD-RefPrice-DS-Premium-Global-003";
|
|
44374
|
-
}, {
|
|
44375
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44376
|
-
readonly proxyAddress: null;
|
|
44377
|
-
readonly decimals: 18;
|
|
44378
|
-
readonly name: "XAI/USD-RefPrice-DS-Premium-Global-003";
|
|
44379
43957
|
}, {
|
|
44380
43958
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44381
43959
|
readonly proxyAddress: null;
|
|
44382
43960
|
readonly decimals: 18;
|
|
44383
43961
|
readonly name: "XTZ/USD-RefPrice-DS-Premium-Global-003";
|
|
44384
|
-
}, {
|
|
44385
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44386
|
-
readonly proxyAddress: null;
|
|
44387
|
-
readonly decimals: 18;
|
|
44388
|
-
readonly name: "NOT/USD-RefPrice-DS-Premium-Global-003";
|
|
44389
43962
|
}, {
|
|
44390
43963
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44391
43964
|
readonly proxyAddress: null;
|
|
@@ -44421,21 +43994,6 @@ declare const chainlinkFeeds: {
|
|
|
44421
43994
|
readonly proxyAddress: null;
|
|
44422
43995
|
readonly decimals: 18;
|
|
44423
43996
|
readonly name: "GRT/USD-RefPrice-DS-Premium-Global-003";
|
|
44424
|
-
}, {
|
|
44425
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44426
|
-
readonly proxyAddress: null;
|
|
44427
|
-
readonly decimals: 18;
|
|
44428
|
-
readonly name: "EDU/USD-RefPrice-DS-Premium-Global-003";
|
|
44429
|
-
}, {
|
|
44430
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44431
|
-
readonly proxyAddress: null;
|
|
44432
|
-
readonly decimals: 18;
|
|
44433
|
-
readonly name: "CYBER/USD-RefPrice-DS-Premium-Global-003";
|
|
44434
|
-
}, {
|
|
44435
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44436
|
-
readonly proxyAddress: null;
|
|
44437
|
-
readonly decimals: 18;
|
|
44438
|
-
readonly name: "WOO/USD-RefPrice-DS-Premium-Global-003";
|
|
44439
43997
|
}, {
|
|
44440
43998
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44441
43999
|
readonly proxyAddress: null;
|
|
@@ -44456,11 +44014,6 @@ declare const chainlinkFeeds: {
|
|
|
44456
44014
|
readonly proxyAddress: null;
|
|
44457
44015
|
readonly decimals: 18;
|
|
44458
44016
|
readonly name: "UNI/USD-RefPrice-DS-Premium-Global-003";
|
|
44459
|
-
}, {
|
|
44460
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44461
|
-
readonly proxyAddress: null;
|
|
44462
|
-
readonly decimals: 18;
|
|
44463
|
-
readonly name: "ETHFI/USD-RefPrice-DS-Premium-Global-003";
|
|
44464
44017
|
}, {
|
|
44465
44018
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44466
44019
|
readonly proxyAddress: null;
|
|
@@ -44496,21 +44049,6 @@ declare const chainlinkFeeds: {
|
|
|
44496
44049
|
readonly proxyAddress: null;
|
|
44497
44050
|
readonly decimals: 18;
|
|
44498
44051
|
readonly name: "ONDO/USD-RefPrice-DS-Premium-Global-003";
|
|
44499
|
-
}, {
|
|
44500
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44501
|
-
readonly proxyAddress: null;
|
|
44502
|
-
readonly decimals: 18;
|
|
44503
|
-
readonly name: "C98/USD-RefPrice-DS-Premium-Global-003";
|
|
44504
|
-
}, {
|
|
44505
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44506
|
-
readonly proxyAddress: null;
|
|
44507
|
-
readonly decimals: 18;
|
|
44508
|
-
readonly name: "BIGTIME/USD-RefPrice-DS-Premium-Global-003";
|
|
44509
|
-
}, {
|
|
44510
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44511
|
-
readonly proxyAddress: null;
|
|
44512
|
-
readonly decimals: 18;
|
|
44513
|
-
readonly name: "RDNT/USD-RefPrice-DS-Premium-Global-003";
|
|
44514
44052
|
}, {
|
|
44515
44053
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44516
44054
|
readonly proxyAddress: null;
|
|
@@ -44521,11 +44059,6 @@ declare const chainlinkFeeds: {
|
|
|
44521
44059
|
readonly proxyAddress: null;
|
|
44522
44060
|
readonly decimals: 18;
|
|
44523
44061
|
readonly name: "VIRTUAL/USD-RefPrice-DS-Premium-Global-003";
|
|
44524
|
-
}, {
|
|
44525
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44526
|
-
readonly proxyAddress: null;
|
|
44527
|
-
readonly decimals: 18;
|
|
44528
|
-
readonly name: "MANTA/USD-RefPrice-DS-Premium-Global-003";
|
|
44529
44062
|
}, {
|
|
44530
44063
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44531
44064
|
readonly proxyAddress: null;
|
|
@@ -44536,11 +44069,6 @@ declare const chainlinkFeeds: {
|
|
|
44536
44069
|
readonly proxyAddress: null;
|
|
44537
44070
|
readonly decimals: 18;
|
|
44538
44071
|
readonly name: "MKR/USD-RefPrice-DS-Premium-Global-003";
|
|
44539
|
-
}, {
|
|
44540
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44541
|
-
readonly proxyAddress: null;
|
|
44542
|
-
readonly decimals: 18;
|
|
44543
|
-
readonly name: "BLAST/USD-RefPrice-DS-Premium-Global-003";
|
|
44544
44072
|
}, {
|
|
44545
44073
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44546
44074
|
readonly proxyAddress: null;
|
|
@@ -44556,21 +44084,6 @@ declare const chainlinkFeeds: {
|
|
|
44556
44084
|
readonly proxyAddress: null;
|
|
44557
44085
|
readonly decimals: 18;
|
|
44558
44086
|
readonly name: "ZEC/USD-RefPrice-DS-Premium-Global-003";
|
|
44559
|
-
}, {
|
|
44560
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44561
|
-
readonly proxyAddress: null;
|
|
44562
|
-
readonly decimals: 18;
|
|
44563
|
-
readonly name: "ENS/USD-RefPrice-DS-Premium-Global-003";
|
|
44564
|
-
}, {
|
|
44565
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44566
|
-
readonly proxyAddress: null;
|
|
44567
|
-
readonly decimals: 18;
|
|
44568
|
-
readonly name: "ILV/USD-RefPrice-DS-Premium-Global-003";
|
|
44569
|
-
}, {
|
|
44570
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44571
|
-
readonly proxyAddress: null;
|
|
44572
|
-
readonly decimals: 18;
|
|
44573
|
-
readonly name: "HMSTR/USD-RefPrice-DS-Premium-Global-003";
|
|
44574
44087
|
}, {
|
|
44575
44088
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44576
44089
|
readonly proxyAddress: null;
|
|
@@ -44601,11 +44114,6 @@ declare const chainlinkFeeds: {
|
|
|
44601
44114
|
readonly proxyAddress: null;
|
|
44602
44115
|
readonly decimals: 18;
|
|
44603
44116
|
readonly name: "AVAX/USD-RefPrice-DS-Premium-Global-003";
|
|
44604
|
-
}, {
|
|
44605
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44606
|
-
readonly proxyAddress: null;
|
|
44607
|
-
readonly decimals: 18;
|
|
44608
|
-
readonly name: "COMP/USD-RefPrice-DS-Premium-Global-003";
|
|
44609
44117
|
}, {
|
|
44610
44118
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44611
44119
|
readonly proxyAddress: null;
|
|
@@ -44626,11 +44134,6 @@ declare const chainlinkFeeds: {
|
|
|
44626
44134
|
readonly proxyAddress: null;
|
|
44627
44135
|
readonly decimals: 18;
|
|
44628
44136
|
readonly name: "OP/USD-RefPrice-DS-Premium-Global-003";
|
|
44629
|
-
}, {
|
|
44630
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44631
|
-
readonly proxyAddress: null;
|
|
44632
|
-
readonly decimals: 18;
|
|
44633
|
-
readonly name: "TOKEN/USD-RefPrice-DS-Premium-Global-003";
|
|
44634
44137
|
}, {
|
|
44635
44138
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44636
44139
|
readonly proxyAddress: null;
|
|
@@ -44651,11 +44154,6 @@ declare const chainlinkFeeds: {
|
|
|
44651
44154
|
readonly proxyAddress: null;
|
|
44652
44155
|
readonly decimals: 18;
|
|
44653
44156
|
readonly name: "ORDER/USD-RefPrice-DS-Premium-Global-003";
|
|
44654
|
-
}, {
|
|
44655
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44656
|
-
readonly proxyAddress: null;
|
|
44657
|
-
readonly decimals: 18;
|
|
44658
|
-
readonly name: "MAV/USD-RefPrice-DS-Premium-Global-003";
|
|
44659
44157
|
}, {
|
|
44660
44158
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44661
44159
|
readonly proxyAddress: null;
|
|
@@ -44671,21 +44169,11 @@ declare const chainlinkFeeds: {
|
|
|
44671
44169
|
readonly proxyAddress: null;
|
|
44672
44170
|
readonly decimals: 18;
|
|
44673
44171
|
readonly name: "BERA/USD-RefPrice-DS-Premium-Global-003";
|
|
44674
|
-
}, {
|
|
44675
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44676
|
-
readonly proxyAddress: null;
|
|
44677
|
-
readonly decimals: 18;
|
|
44678
|
-
readonly name: "ZEREBRO/USD-RefPrice-DS-Premium-Global-003";
|
|
44679
44172
|
}, {
|
|
44680
44173
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44681
44174
|
readonly proxyAddress: null;
|
|
44682
44175
|
readonly decimals: 18;
|
|
44683
44176
|
readonly name: "ATOM/USD-RefPrice-DS-Premium-Global-003";
|
|
44684
|
-
}, {
|
|
44685
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44686
|
-
readonly proxyAddress: null;
|
|
44687
|
-
readonly decimals: 18;
|
|
44688
|
-
readonly name: "PIXEL/USD-RefPrice-DS-Premium-Global-003";
|
|
44689
44177
|
}, {
|
|
44690
44178
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44691
44179
|
readonly proxyAddress: null;
|
|
@@ -44721,31 +44209,16 @@ declare const chainlinkFeeds: {
|
|
|
44721
44209
|
readonly proxyAddress: null;
|
|
44722
44210
|
readonly decimals: 18;
|
|
44723
44211
|
readonly name: "ORDI/USD-RefPrice-DS-Premium-Global-003";
|
|
44724
|
-
}, {
|
|
44725
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44726
|
-
readonly proxyAddress: null;
|
|
44727
|
-
readonly decimals: 18;
|
|
44728
|
-
readonly name: "IQ/USD-RefPrice-DS-Premium-Global-003";
|
|
44729
44212
|
}, {
|
|
44730
44213
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44731
44214
|
readonly proxyAddress: null;
|
|
44732
44215
|
readonly decimals: 18;
|
|
44733
44216
|
readonly name: "EGLD/USD-RefPrice-DS-Premium-Global-003";
|
|
44734
|
-
}, {
|
|
44735
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44736
|
-
readonly proxyAddress: null;
|
|
44737
|
-
readonly decimals: 18;
|
|
44738
|
-
readonly name: "ALT/USD-RefPrice-DS-Premium-Global-003";
|
|
44739
44217
|
}, {
|
|
44740
44218
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44741
44219
|
readonly proxyAddress: null;
|
|
44742
44220
|
readonly decimals: 18;
|
|
44743
44221
|
readonly name: "DOGS/USD-RefPrice-DS-Premium-Global-003";
|
|
44744
|
-
}, {
|
|
44745
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44746
|
-
readonly proxyAddress: null;
|
|
44747
|
-
readonly decimals: 18;
|
|
44748
|
-
readonly name: "HOT/USD-RefPrice-DS-Premium-Global-003";
|
|
44749
44222
|
}, {
|
|
44750
44223
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44751
44224
|
readonly proxyAddress: null;
|
|
@@ -44761,11 +44234,6 @@ declare const chainlinkFeeds: {
|
|
|
44761
44234
|
readonly proxyAddress: null;
|
|
44762
44235
|
readonly decimals: 18;
|
|
44763
44236
|
readonly name: "SCR/USD-RefPrice-DS-Premium-Global-003";
|
|
44764
|
-
}, {
|
|
44765
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44766
|
-
readonly proxyAddress: null;
|
|
44767
|
-
readonly decimals: 18;
|
|
44768
|
-
readonly name: "ARKM/USD-RefPrice-DS-Premium-Global-003";
|
|
44769
44237
|
}, {
|
|
44770
44238
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44771
44239
|
readonly proxyAddress: null;
|
|
@@ -44781,11 +44249,6 @@ declare const chainlinkFeeds: {
|
|
|
44781
44249
|
readonly proxyAddress: null;
|
|
44782
44250
|
readonly decimals: 18;
|
|
44783
44251
|
readonly name: "ZRO/USD-RefPrice-DS-Premium-Global-003";
|
|
44784
|
-
}, {
|
|
44785
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44786
|
-
readonly proxyAddress: null;
|
|
44787
|
-
readonly decimals: 18;
|
|
44788
|
-
readonly name: "AI/USD-RefPrice-DS-Premium-Global-003";
|
|
44789
44252
|
}, {
|
|
44790
44253
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44791
44254
|
readonly proxyAddress: null;
|
|
@@ -45074,11 +44537,6 @@ declare const chainlinkFeeds: {
|
|
|
45074
44537
|
readonly proxyAddress: "0xE8f8AfE4b56c6C421F691bfAc225cE61b2C7CD05";
|
|
45075
44538
|
readonly decimals: 8;
|
|
45076
44539
|
readonly name: "TRY / USD";
|
|
45077
|
-
}, {
|
|
45078
|
-
readonly contractAddress: "0x884720E3da9094190dC25911B4e0E61D79562788";
|
|
45079
|
-
readonly proxyAddress: "0x8883045300Eaf3b1Bb1b3b17F9B4d70EfF50212a";
|
|
45080
|
-
readonly decimals: 18;
|
|
45081
|
-
readonly name: "ULTI / USD";
|
|
45082
44540
|
}, {
|
|
45083
44541
|
readonly contractAddress: "0x8ABe008B267C82199EC81E7f80eE4DC3A3545c82";
|
|
45084
44542
|
readonly proxyAddress: "0x9eE96caa9972c801058CAA8E23419fc6516FbF7e";
|
|
@@ -45104,11 +44562,6 @@ declare const chainlinkFeeds: {
|
|
|
45104
44562
|
readonly proxyAddress: "0x2483326d19f780Fb082f333Fe124e4C075B207ba";
|
|
45105
44563
|
readonly decimals: 18;
|
|
45106
44564
|
readonly name: "sUSDS / USDS Exchange Rate";
|
|
45107
|
-
}, {
|
|
45108
|
-
readonly contractAddress: "0x8f99f05E0a5Fa19579525A60801A0F473adB1CE1";
|
|
45109
|
-
readonly proxyAddress: "0x300b0990Ba191a1AeBef6e5Ed8B5B308C0B2d0c9";
|
|
45110
|
-
readonly decimals: 8;
|
|
45111
|
-
readonly name: "XVS / USD";
|
|
45112
44565
|
}, {
|
|
45113
44566
|
readonly contractAddress: "0x920d90b3953B3C90b06ebE8579B0215d6801DA54";
|
|
45114
44567
|
readonly proxyAddress: "0xe4c31C5B118d8aA92433eD1c7EC70afb430cd730";
|
|
@@ -45400,11 +44853,6 @@ declare const chainlinkFeeds: {
|
|
|
45400
44853
|
readonly proxyAddress: "0xDC1a8F77Cdc46D1Fb7F22F94dFCA4dDBf566fA23";
|
|
45401
44854
|
readonly decimals: 1;
|
|
45402
44855
|
readonly name: "Real GDP — Percent Change (Annual Rate)";
|
|
45403
|
-
}, {
|
|
45404
|
-
readonly contractAddress: "0xa44BCD128E99188565c4849cdfFEea9C773f74ec";
|
|
45405
|
-
readonly proxyAddress: "0x04180965a782E487d0632013ABa488A472243542";
|
|
45406
|
-
readonly decimals: 8;
|
|
45407
|
-
readonly name: "JOE / USD";
|
|
45408
44856
|
}, {
|
|
45409
44857
|
readonly contractAddress: "0xa4598924ca0cbEbB2D850684a9BFc0a7D1D848EB";
|
|
45410
44858
|
readonly proxyAddress: "0x1f5C0C2CD2e9Ad1eE475660AF0bBa27aE7d87f5e";
|
|
@@ -45659,11 +45107,6 @@ declare const chainlinkFeeds: {
|
|
|
45659
45107
|
readonly proxyAddress: "0x383b3624478124697BEF675F07cA37570b73992f";
|
|
45660
45108
|
readonly decimals: 8;
|
|
45661
45109
|
readonly name: "SPELL / USD";
|
|
45662
|
-
}, {
|
|
45663
|
-
readonly contractAddress: "0xf8C6DE435CF8d06897a4A66b21df623D06d2A761";
|
|
45664
|
-
readonly proxyAddress: "0x36a121448D74Fa81450c992A1a44B9b7377CD3a5";
|
|
45665
|
-
readonly decimals: 8;
|
|
45666
|
-
readonly name: "FXS / USD";
|
|
45667
45110
|
}, {
|
|
45668
45111
|
readonly contractAddress: "0xf8abb3c41A3b21687Ad862C9Fd00D007E413EEAA";
|
|
45669
45112
|
readonly proxyAddress: "0x6FfBc6339DD46a7e0513D4887106349214C05505";
|
|
@@ -45876,11 +45319,6 @@ declare const chainlinkFeeds: {
|
|
|
45876
45319
|
readonly proxyAddress: "0xCF60B4E089eA1ABA29C01b017b38c2f7D69Eb36B";
|
|
45877
45320
|
readonly decimals: 18;
|
|
45878
45321
|
readonly name: "WSTETH / ETH";
|
|
45879
|
-
}, {
|
|
45880
|
-
readonly contractAddress: "0x15505bcC6D3c6f8F3cfC3d6D96f5A6301A08D2cc";
|
|
45881
|
-
readonly proxyAddress: "0x7B0ca9A6D03FE0467A31Ca850f5bcA51e027B3aF";
|
|
45882
|
-
readonly decimals: 8;
|
|
45883
|
-
readonly name: "ALPHA / USD";
|
|
45884
45322
|
}, {
|
|
45885
45323
|
readonly contractAddress: "0x184CCa2bA7015052424Fa2f509fB252926789D7C";
|
|
45886
45324
|
readonly proxyAddress: "0x7Ee401373A92f885a7C3A53CF46dbe661eaFb1C0";
|
|
@@ -46786,7 +46224,6 @@ declare const tenderlyNetworkMap: {
|
|
|
46786
46224
|
readonly 1924: "swellchain-sepolia";
|
|
46787
46225
|
readonly 1946: "soneium-minato";
|
|
46788
46226
|
readonly 2020: "ronin";
|
|
46789
|
-
readonly 2021: "ronin-testnet";
|
|
46790
46227
|
readonly 2201: "stable-testnet";
|
|
46791
46228
|
readonly 2523: "fraxtal-hoodi";
|
|
46792
46229
|
readonly 4202: "lisk-sepolia";
|
|
@@ -46941,6 +46378,7 @@ declare const tenderlyExplorerMap: {
|
|
|
46941
46378
|
readonly 98867: "plume-testnet";
|
|
46942
46379
|
readonly 167000: "taiko-mainnet";
|
|
46943
46380
|
readonly 167013: "taiko-hoodi";
|
|
46381
|
+
readonly 202601: "ronin-testnet";
|
|
46944
46382
|
readonly 421614: "arbitrum-sepolia";
|
|
46945
46383
|
readonly 534351: "scroll-sepolia";
|
|
46946
46384
|
readonly 534352: "scroll-mainnet";
|