@bgd-labs/toolbox 0.2.18 → 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 +171 -709
- package/dist/browser.d.mts.map +1 -1
- package/dist/browser.mjs +124 -769
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +28 -566
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +124 -769
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/browser.d.mts
CHANGED
|
@@ -15543,6 +15543,30 @@ declare function validateAip(content: string): {
|
|
|
15543
15543
|
snapshot?: string;
|
|
15544
15544
|
};
|
|
15545
15545
|
//#endregion
|
|
15546
|
+
//#region src/aave/umbrella/rewards.d.ts
|
|
15547
|
+
declare function getEmissionPerSecondScaled(maxEmissionPerSecondScaled: bigint, targetLiquidity: bigint, totalAssets: bigint): bigint;
|
|
15548
|
+
declare function calculateAccruedRewards({
|
|
15549
|
+
accrued,
|
|
15550
|
+
userIndex,
|
|
15551
|
+
reserveIndex,
|
|
15552
|
+
userBalance,
|
|
15553
|
+
emissionPerSecond,
|
|
15554
|
+
lastUpdateTimestamp,
|
|
15555
|
+
distributionEnd,
|
|
15556
|
+
totalSupply,
|
|
15557
|
+
currentTimestamp
|
|
15558
|
+
}: {
|
|
15559
|
+
accrued: bigint;
|
|
15560
|
+
userIndex: bigint;
|
|
15561
|
+
reserveIndex: bigint;
|
|
15562
|
+
userBalance: bigint;
|
|
15563
|
+
emissionPerSecond: bigint;
|
|
15564
|
+
lastUpdateTimestamp: bigint;
|
|
15565
|
+
distributionEnd: bigint;
|
|
15566
|
+
totalSupply: bigint;
|
|
15567
|
+
currentTimestamp: bigint;
|
|
15568
|
+
}): bigint;
|
|
15569
|
+
//#endregion
|
|
15546
15570
|
//#region src/math/binary.d.ts
|
|
15547
15571
|
/**
|
|
15548
15572
|
* In solidity it is a quite common practice to encode bit variables in bitmaps opposed to bool structs.
|
|
@@ -16324,8 +16348,8 @@ declare function tenderly_createVnet({
|
|
|
16324
16348
|
getBlobBaseFee: () => Promise<viem.GetBlobBaseFeeReturnType>;
|
|
16325
16349
|
getBlock: <includeTransactions extends boolean = false, blockTag extends viem.BlockTag = "latest">(args?: viem.GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
|
|
16326
16350
|
number: blockTag extends "pending" ? null : bigint;
|
|
16327
|
-
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
16328
16351
|
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
16352
|
+
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
16329
16353
|
logsBloom: blockTag extends "pending" ? null : `0x${string}`;
|
|
16330
16354
|
baseFeePerGas: bigint | null;
|
|
16331
16355
|
blobGasUsed: bigint;
|
|
@@ -16352,127 +16376,127 @@ declare function tenderly_createVnet({
|
|
|
16352
16376
|
transactions: includeTransactions extends true ? ({
|
|
16353
16377
|
type: "legacy";
|
|
16354
16378
|
value: bigint;
|
|
16355
|
-
|
|
16379
|
+
yParity?: undefined | undefined;
|
|
16356
16380
|
from: Address;
|
|
16357
16381
|
gas: bigint;
|
|
16358
|
-
nonce: number;
|
|
16359
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16360
|
-
gasPrice: bigint;
|
|
16361
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16362
|
-
maxFeePerGas?: undefined | undefined;
|
|
16363
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16364
|
-
accessList?: undefined | undefined;
|
|
16365
|
-
authorizationList?: undefined | undefined;
|
|
16366
|
-
yParity?: undefined | undefined;
|
|
16367
16382
|
hash: viem.Hash;
|
|
16368
16383
|
input: Hex;
|
|
16384
|
+
nonce: number;
|
|
16369
16385
|
r: Hex;
|
|
16370
16386
|
s: Hex;
|
|
16387
|
+
to: Address | null;
|
|
16371
16388
|
typeHex: Hex | null;
|
|
16372
16389
|
v: bigint;
|
|
16390
|
+
accessList?: undefined | undefined;
|
|
16391
|
+
authorizationList?: undefined | undefined;
|
|
16392
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16373
16393
|
chainId?: number | undefined;
|
|
16374
|
-
|
|
16375
|
-
|
|
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;
|
|
16376
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;
|
|
16377
16401
|
} | {
|
|
16378
16402
|
type: "eip2930";
|
|
16379
16403
|
value: bigint;
|
|
16380
|
-
|
|
16404
|
+
yParity: number;
|
|
16381
16405
|
from: Address;
|
|
16382
16406
|
gas: bigint;
|
|
16383
|
-
nonce: number;
|
|
16384
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16385
|
-
gasPrice: bigint;
|
|
16386
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16387
|
-
maxFeePerGas?: undefined | undefined;
|
|
16388
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16389
|
-
accessList: viem.AccessList;
|
|
16390
|
-
authorizationList?: undefined | undefined;
|
|
16391
|
-
yParity: number;
|
|
16392
16407
|
hash: viem.Hash;
|
|
16393
16408
|
input: Hex;
|
|
16409
|
+
nonce: number;
|
|
16394
16410
|
r: Hex;
|
|
16395
16411
|
s: Hex;
|
|
16412
|
+
to: Address | null;
|
|
16396
16413
|
typeHex: Hex | null;
|
|
16397
16414
|
v: bigint;
|
|
16415
|
+
accessList: viem.AccessList;
|
|
16416
|
+
authorizationList?: undefined | undefined;
|
|
16417
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16398
16418
|
chainId: number;
|
|
16399
|
-
|
|
16400
|
-
|
|
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;
|
|
16401
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;
|
|
16402
16426
|
} | {
|
|
16403
16427
|
type: "eip1559";
|
|
16404
16428
|
value: bigint;
|
|
16405
|
-
|
|
16429
|
+
yParity: number;
|
|
16406
16430
|
from: Address;
|
|
16407
16431
|
gas: bigint;
|
|
16408
|
-
nonce: number;
|
|
16409
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16410
|
-
gasPrice?: undefined | undefined;
|
|
16411
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16412
|
-
maxFeePerGas: bigint;
|
|
16413
|
-
maxPriorityFeePerGas: bigint;
|
|
16414
|
-
accessList: viem.AccessList;
|
|
16415
|
-
authorizationList?: undefined | undefined;
|
|
16416
|
-
yParity: number;
|
|
16417
16432
|
hash: viem.Hash;
|
|
16418
16433
|
input: Hex;
|
|
16434
|
+
nonce: number;
|
|
16419
16435
|
r: Hex;
|
|
16420
16436
|
s: Hex;
|
|
16437
|
+
to: Address | null;
|
|
16421
16438
|
typeHex: Hex | null;
|
|
16422
16439
|
v: bigint;
|
|
16440
|
+
accessList: viem.AccessList;
|
|
16441
|
+
authorizationList?: undefined | undefined;
|
|
16442
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16423
16443
|
chainId: number;
|
|
16424
|
-
|
|
16425
|
-
|
|
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;
|
|
16426
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;
|
|
16427
16451
|
} | {
|
|
16428
16452
|
type: "eip4844";
|
|
16429
16453
|
value: bigint;
|
|
16430
|
-
|
|
16454
|
+
yParity: number;
|
|
16431
16455
|
from: Address;
|
|
16432
16456
|
gas: bigint;
|
|
16433
|
-
nonce: number;
|
|
16434
|
-
blobVersionedHashes: readonly Hex[];
|
|
16435
|
-
gasPrice?: undefined | undefined;
|
|
16436
|
-
maxFeePerBlobGas: bigint;
|
|
16437
|
-
maxFeePerGas: bigint;
|
|
16438
|
-
maxPriorityFeePerGas: bigint;
|
|
16439
|
-
accessList: viem.AccessList;
|
|
16440
|
-
authorizationList?: undefined | undefined;
|
|
16441
|
-
yParity: number;
|
|
16442
16457
|
hash: viem.Hash;
|
|
16443
16458
|
input: Hex;
|
|
16459
|
+
nonce: number;
|
|
16444
16460
|
r: Hex;
|
|
16445
16461
|
s: Hex;
|
|
16462
|
+
to: Address | null;
|
|
16446
16463
|
typeHex: Hex | null;
|
|
16447
16464
|
v: bigint;
|
|
16465
|
+
accessList: viem.AccessList;
|
|
16466
|
+
authorizationList?: undefined | undefined;
|
|
16467
|
+
blobVersionedHashes: readonly Hex[];
|
|
16448
16468
|
chainId: number;
|
|
16449
|
-
|
|
16450
|
-
|
|
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;
|
|
16451
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;
|
|
16452
16476
|
} | {
|
|
16453
16477
|
type: "eip7702";
|
|
16454
16478
|
value: bigint;
|
|
16455
|
-
|
|
16479
|
+
yParity: number;
|
|
16456
16480
|
from: Address;
|
|
16457
16481
|
gas: bigint;
|
|
16458
|
-
nonce: number;
|
|
16459
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16460
|
-
gasPrice?: undefined | undefined;
|
|
16461
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16462
|
-
maxFeePerGas: bigint;
|
|
16463
|
-
maxPriorityFeePerGas: bigint;
|
|
16464
|
-
accessList: viem.AccessList;
|
|
16465
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
16466
|
-
yParity: number;
|
|
16467
16482
|
hash: viem.Hash;
|
|
16468
16483
|
input: Hex;
|
|
16484
|
+
nonce: number;
|
|
16469
16485
|
r: Hex;
|
|
16470
16486
|
s: Hex;
|
|
16487
|
+
to: Address | null;
|
|
16471
16488
|
typeHex: Hex | null;
|
|
16472
16489
|
v: bigint;
|
|
16490
|
+
accessList: viem.AccessList;
|
|
16491
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
16492
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16473
16493
|
chainId: number;
|
|
16474
|
-
|
|
16475
|
-
|
|
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;
|
|
16476
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;
|
|
16477
16501
|
})[] : `0x${string}`[];
|
|
16478
16502
|
}>;
|
|
@@ -16559,127 +16583,127 @@ declare function tenderly_createVnet({
|
|
|
16559
16583
|
getTransaction: <blockTag extends viem.BlockTag = "latest">(args: viem.GetTransactionParameters<blockTag>) => Promise<{
|
|
16560
16584
|
type: "legacy";
|
|
16561
16585
|
value: bigint;
|
|
16562
|
-
|
|
16586
|
+
yParity?: undefined | undefined;
|
|
16563
16587
|
from: Address;
|
|
16564
16588
|
gas: bigint;
|
|
16565
|
-
nonce: number;
|
|
16566
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16567
|
-
gasPrice: bigint;
|
|
16568
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16569
|
-
maxFeePerGas?: undefined | undefined;
|
|
16570
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16571
|
-
accessList?: undefined | undefined;
|
|
16572
|
-
authorizationList?: undefined | undefined;
|
|
16573
|
-
yParity?: undefined | undefined;
|
|
16574
16589
|
hash: viem.Hash;
|
|
16575
16590
|
input: Hex;
|
|
16591
|
+
nonce: number;
|
|
16576
16592
|
r: Hex;
|
|
16577
16593
|
s: Hex;
|
|
16594
|
+
to: Address | null;
|
|
16578
16595
|
typeHex: Hex | null;
|
|
16579
16596
|
v: bigint;
|
|
16597
|
+
accessList?: undefined | undefined;
|
|
16598
|
+
authorizationList?: undefined | undefined;
|
|
16599
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16580
16600
|
chainId?: number | undefined;
|
|
16581
|
-
|
|
16582
|
-
|
|
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;
|
|
16583
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;
|
|
16584
16608
|
} | {
|
|
16585
16609
|
type: "eip2930";
|
|
16586
16610
|
value: bigint;
|
|
16587
|
-
|
|
16611
|
+
yParity: number;
|
|
16588
16612
|
from: Address;
|
|
16589
16613
|
gas: bigint;
|
|
16590
|
-
nonce: number;
|
|
16591
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16592
|
-
gasPrice: bigint;
|
|
16593
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16594
|
-
maxFeePerGas?: undefined | undefined;
|
|
16595
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16596
|
-
accessList: viem.AccessList;
|
|
16597
|
-
authorizationList?: undefined | undefined;
|
|
16598
|
-
yParity: number;
|
|
16599
16614
|
hash: viem.Hash;
|
|
16600
16615
|
input: Hex;
|
|
16616
|
+
nonce: number;
|
|
16601
16617
|
r: Hex;
|
|
16602
16618
|
s: Hex;
|
|
16619
|
+
to: Address | null;
|
|
16603
16620
|
typeHex: Hex | null;
|
|
16604
16621
|
v: bigint;
|
|
16622
|
+
accessList: viem.AccessList;
|
|
16623
|
+
authorizationList?: undefined | undefined;
|
|
16624
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16605
16625
|
chainId: number;
|
|
16606
|
-
|
|
16607
|
-
|
|
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;
|
|
16608
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;
|
|
16609
16633
|
} | {
|
|
16610
16634
|
type: "eip1559";
|
|
16611
16635
|
value: bigint;
|
|
16612
|
-
|
|
16636
|
+
yParity: number;
|
|
16613
16637
|
from: Address;
|
|
16614
16638
|
gas: bigint;
|
|
16615
|
-
nonce: number;
|
|
16616
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16617
|
-
gasPrice?: undefined | undefined;
|
|
16618
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16619
|
-
maxFeePerGas: bigint;
|
|
16620
|
-
maxPriorityFeePerGas: bigint;
|
|
16621
|
-
accessList: viem.AccessList;
|
|
16622
|
-
authorizationList?: undefined | undefined;
|
|
16623
|
-
yParity: number;
|
|
16624
16639
|
hash: viem.Hash;
|
|
16625
16640
|
input: Hex;
|
|
16641
|
+
nonce: number;
|
|
16626
16642
|
r: Hex;
|
|
16627
16643
|
s: Hex;
|
|
16644
|
+
to: Address | null;
|
|
16628
16645
|
typeHex: Hex | null;
|
|
16629
16646
|
v: bigint;
|
|
16647
|
+
accessList: viem.AccessList;
|
|
16648
|
+
authorizationList?: undefined | undefined;
|
|
16649
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16630
16650
|
chainId: number;
|
|
16631
|
-
|
|
16632
|
-
|
|
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;
|
|
16633
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;
|
|
16634
16658
|
} | {
|
|
16635
16659
|
type: "eip4844";
|
|
16636
16660
|
value: bigint;
|
|
16637
|
-
|
|
16661
|
+
yParity: number;
|
|
16638
16662
|
from: Address;
|
|
16639
16663
|
gas: bigint;
|
|
16640
|
-
nonce: number;
|
|
16641
|
-
blobVersionedHashes: readonly Hex[];
|
|
16642
|
-
gasPrice?: undefined | undefined;
|
|
16643
|
-
maxFeePerBlobGas: bigint;
|
|
16644
|
-
maxFeePerGas: bigint;
|
|
16645
|
-
maxPriorityFeePerGas: bigint;
|
|
16646
|
-
accessList: viem.AccessList;
|
|
16647
|
-
authorizationList?: undefined | undefined;
|
|
16648
|
-
yParity: number;
|
|
16649
16664
|
hash: viem.Hash;
|
|
16650
16665
|
input: Hex;
|
|
16666
|
+
nonce: number;
|
|
16651
16667
|
r: Hex;
|
|
16652
16668
|
s: Hex;
|
|
16669
|
+
to: Address | null;
|
|
16653
16670
|
typeHex: Hex | null;
|
|
16654
16671
|
v: bigint;
|
|
16672
|
+
accessList: viem.AccessList;
|
|
16673
|
+
authorizationList?: undefined | undefined;
|
|
16674
|
+
blobVersionedHashes: readonly Hex[];
|
|
16655
16675
|
chainId: number;
|
|
16656
|
-
|
|
16657
|
-
|
|
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;
|
|
16658
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;
|
|
16659
16683
|
} | {
|
|
16660
16684
|
type: "eip7702";
|
|
16661
16685
|
value: bigint;
|
|
16662
|
-
|
|
16686
|
+
yParity: number;
|
|
16663
16687
|
from: Address;
|
|
16664
16688
|
gas: bigint;
|
|
16665
|
-
nonce: number;
|
|
16666
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16667
|
-
gasPrice?: undefined | undefined;
|
|
16668
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
16669
|
-
maxFeePerGas: bigint;
|
|
16670
|
-
maxPriorityFeePerGas: bigint;
|
|
16671
|
-
accessList: viem.AccessList;
|
|
16672
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
16673
|
-
yParity: number;
|
|
16674
16689
|
hash: viem.Hash;
|
|
16675
16690
|
input: Hex;
|
|
16691
|
+
nonce: number;
|
|
16676
16692
|
r: Hex;
|
|
16677
16693
|
s: Hex;
|
|
16694
|
+
to: Address | null;
|
|
16678
16695
|
typeHex: Hex | null;
|
|
16679
16696
|
v: bigint;
|
|
16697
|
+
accessList: viem.AccessList;
|
|
16698
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
16699
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16680
16700
|
chainId: number;
|
|
16681
|
-
|
|
16682
|
-
|
|
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;
|
|
16683
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;
|
|
16684
16708
|
}>;
|
|
16685
16709
|
getTransactionConfirmations: (args: viem.GetTransactionConfirmationsParameters<{
|
|
@@ -20280,7 +20304,7 @@ declare function tenderly_createVnet({
|
|
|
20280
20304
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
20281
20305
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
20282
20306
|
chainId?: number | undefined;
|
|
20283
|
-
}, (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<{
|
|
20284
20308
|
id: number;
|
|
20285
20309
|
blockExplorers?: {
|
|
20286
20310
|
[key: string]: {
|
|
@@ -23703,7 +23727,7 @@ declare function tenderly_createVnet({
|
|
|
23703
23727
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
23704
23728
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
23705
23729
|
chainId?: number | undefined;
|
|
23706
|
-
}, (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>;
|
|
23707
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>>;
|
|
23708
23732
|
sendRawTransaction: (args: viem.SendRawTransactionParameters) => Promise<viem.SendRawTransactionReturnType>;
|
|
23709
23733
|
sendRawTransactionSync: (args: viem.SendRawTransactionSyncParameters) => Promise<viem.TransactionReceipt>;
|
|
@@ -27781,7 +27805,7 @@ declare function tenderly_createVnet({
|
|
|
27781
27805
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
27782
27806
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
27783
27807
|
chainId?: number | undefined;
|
|
27784
|
-
}, (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<{
|
|
27785
27809
|
id: number;
|
|
27786
27810
|
blockExplorers?: {
|
|
27787
27811
|
[key: string]: {
|
|
@@ -31210,7 +31234,7 @@ declare function tenderly_createVnet({
|
|
|
31210
31234
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
31211
31235
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
31212
31236
|
chainId?: number | undefined;
|
|
31213
|
-
}, (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>;
|
|
31214
31238
|
requestAddresses: () => Promise<viem.RequestAddressesReturnType>;
|
|
31215
31239
|
requestPermissions: (args: viem.RequestPermissionsParameters) => Promise<viem.RequestPermissionsReturnType>;
|
|
31216
31240
|
sendCalls: <const calls extends readonly unknown[], chainOverride extends viem.Chain | undefined = undefined>(parameters: viem.SendCallsParameters<{
|
|
@@ -31340,8 +31364,8 @@ declare function tenderly_createVnet({
|
|
|
31340
31364
|
address: "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9";
|
|
31341
31365
|
type: "json-rpc";
|
|
31342
31366
|
}, chainOverride, calls>) => Promise<{
|
|
31343
|
-
id: string;
|
|
31344
31367
|
chainId: number;
|
|
31368
|
+
id: string;
|
|
31345
31369
|
version: string;
|
|
31346
31370
|
atomic: boolean;
|
|
31347
31371
|
capabilities?: {
|
|
@@ -32670,21 +32694,23 @@ declare function tenderly_createVnet({
|
|
|
32670
32694
|
[x: string]: readonly viem.TypedDataParameter[];
|
|
32671
32695
|
[x: `string[${string}]`]: undefined;
|
|
32672
32696
|
[x: `function[${string}]`]: undefined;
|
|
32697
|
+
[x: `uint[${string}]`]: undefined;
|
|
32698
|
+
[x: `uint256[${string}]`]: undefined;
|
|
32699
|
+
[x: `int256[${string}]`]: undefined;
|
|
32673
32700
|
[x: `address[${string}]`]: undefined;
|
|
32674
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
32675
32701
|
[x: `bool[${string}]`]: undefined;
|
|
32676
32702
|
[x: `bytes[${string}]`]: undefined;
|
|
32677
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
32678
32703
|
[x: `bytes1[${string}]`]: undefined;
|
|
32679
|
-
[x: `bytes5[${string}]`]: undefined;
|
|
32680
32704
|
[x: `bytes2[${string}]`]: undefined;
|
|
32705
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
32681
32706
|
[x: `bytes3[${string}]`]: undefined;
|
|
32682
32707
|
[x: `bytes4[${string}]`]: undefined;
|
|
32683
|
-
[x: `
|
|
32708
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
32684
32709
|
[x: `bytes6[${string}]`]: undefined;
|
|
32685
32710
|
[x: `bytes7[${string}]`]: undefined;
|
|
32686
32711
|
[x: `bytes8[${string}]`]: undefined;
|
|
32687
32712
|
[x: `bytes9[${string}]`]: undefined;
|
|
32713
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
32688
32714
|
[x: `bytes11[${string}]`]: undefined;
|
|
32689
32715
|
[x: `bytes12[${string}]`]: undefined;
|
|
32690
32716
|
[x: `bytes13[${string}]`]: undefined;
|
|
@@ -32696,7 +32722,6 @@ declare function tenderly_createVnet({
|
|
|
32696
32722
|
[x: `bytes19[${string}]`]: undefined;
|
|
32697
32723
|
[x: `bytes20[${string}]`]: undefined;
|
|
32698
32724
|
[x: `bytes21[${string}]`]: undefined;
|
|
32699
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
32700
32725
|
[x: `bytes23[${string}]`]: undefined;
|
|
32701
32726
|
[x: `bytes24[${string}]`]: undefined;
|
|
32702
32727
|
[x: `bytes25[${string}]`]: undefined;
|
|
@@ -32704,7 +32729,9 @@ declare function tenderly_createVnet({
|
|
|
32704
32729
|
[x: `bytes27[${string}]`]: undefined;
|
|
32705
32730
|
[x: `bytes28[${string}]`]: undefined;
|
|
32706
32731
|
[x: `bytes29[${string}]`]: undefined;
|
|
32732
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
32707
32733
|
[x: `bytes31[${string}]`]: undefined;
|
|
32734
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
32708
32735
|
[x: `int[${string}]`]: undefined;
|
|
32709
32736
|
[x: `int8[${string}]`]: undefined;
|
|
32710
32737
|
[x: `int16[${string}]`]: undefined;
|
|
@@ -32737,8 +32764,6 @@ declare function tenderly_createVnet({
|
|
|
32737
32764
|
[x: `int232[${string}]`]: undefined;
|
|
32738
32765
|
[x: `int240[${string}]`]: undefined;
|
|
32739
32766
|
[x: `int248[${string}]`]: undefined;
|
|
32740
|
-
[x: `int256[${string}]`]: undefined;
|
|
32741
|
-
[x: `uint[${string}]`]: undefined;
|
|
32742
32767
|
[x: `uint8[${string}]`]: undefined;
|
|
32743
32768
|
[x: `uint16[${string}]`]: undefined;
|
|
32744
32769
|
[x: `uint24[${string}]`]: undefined;
|
|
@@ -32770,23 +32795,23 @@ declare function tenderly_createVnet({
|
|
|
32770
32795
|
[x: `uint232[${string}]`]: undefined;
|
|
32771
32796
|
[x: `uint240[${string}]`]: undefined;
|
|
32772
32797
|
[x: `uint248[${string}]`]: undefined;
|
|
32773
|
-
[x: `uint256[${string}]`]: undefined;
|
|
32774
32798
|
string?: undefined;
|
|
32799
|
+
uint256?: undefined;
|
|
32800
|
+
int256?: undefined;
|
|
32775
32801
|
address?: undefined;
|
|
32776
|
-
bytes32?: undefined;
|
|
32777
32802
|
bool?: undefined;
|
|
32778
32803
|
bytes?: undefined;
|
|
32779
|
-
bytes10?: undefined;
|
|
32780
32804
|
bytes1?: undefined;
|
|
32781
|
-
bytes5?: undefined;
|
|
32782
32805
|
bytes2?: undefined;
|
|
32806
|
+
bytes22?: undefined;
|
|
32783
32807
|
bytes3?: undefined;
|
|
32784
32808
|
bytes4?: undefined;
|
|
32785
|
-
|
|
32809
|
+
bytes5?: undefined;
|
|
32786
32810
|
bytes6?: undefined;
|
|
32787
32811
|
bytes7?: undefined;
|
|
32788
32812
|
bytes8?: undefined;
|
|
32789
32813
|
bytes9?: undefined;
|
|
32814
|
+
bytes10?: undefined;
|
|
32790
32815
|
bytes11?: undefined;
|
|
32791
32816
|
bytes12?: undefined;
|
|
32792
32817
|
bytes13?: undefined;
|
|
@@ -32798,7 +32823,6 @@ declare function tenderly_createVnet({
|
|
|
32798
32823
|
bytes19?: undefined;
|
|
32799
32824
|
bytes20?: undefined;
|
|
32800
32825
|
bytes21?: undefined;
|
|
32801
|
-
bytes22?: undefined;
|
|
32802
32826
|
bytes23?: undefined;
|
|
32803
32827
|
bytes24?: undefined;
|
|
32804
32828
|
bytes25?: undefined;
|
|
@@ -32806,7 +32830,9 @@ declare function tenderly_createVnet({
|
|
|
32806
32830
|
bytes27?: undefined;
|
|
32807
32831
|
bytes28?: undefined;
|
|
32808
32832
|
bytes29?: undefined;
|
|
32833
|
+
bytes30?: undefined;
|
|
32809
32834
|
bytes31?: undefined;
|
|
32835
|
+
bytes32?: undefined;
|
|
32810
32836
|
int8?: undefined;
|
|
32811
32837
|
int16?: undefined;
|
|
32812
32838
|
int24?: undefined;
|
|
@@ -32838,7 +32864,6 @@ declare function tenderly_createVnet({
|
|
|
32838
32864
|
int232?: undefined;
|
|
32839
32865
|
int240?: undefined;
|
|
32840
32866
|
int248?: undefined;
|
|
32841
|
-
int256?: undefined;
|
|
32842
32867
|
uint8?: undefined;
|
|
32843
32868
|
uint16?: undefined;
|
|
32844
32869
|
uint24?: undefined;
|
|
@@ -32870,7 +32895,6 @@ declare function tenderly_createVnet({
|
|
|
32870
32895
|
uint232?: undefined;
|
|
32871
32896
|
uint240?: undefined;
|
|
32872
32897
|
uint248?: undefined;
|
|
32873
|
-
uint256?: undefined;
|
|
32874
32898
|
} | {
|
|
32875
32899
|
[key: string]: unknown;
|
|
32876
32900
|
}, primaryType extends string>(args: viem.SignTypedDataParameters<typedData, primaryType, {
|
|
@@ -33484,8 +33508,8 @@ declare const publicRPCs: {
|
|
|
33484
33508
|
readonly 9745: "https://rpc.plasma.to";
|
|
33485
33509
|
readonly 57073: "https://ink-public.nodies.app";
|
|
33486
33510
|
};
|
|
33487
|
-
declare const alchemySupportedChainIds: (
|
|
33488
|
-
declare const getNetworkEnv: (chainId: SupportedChainIds) => "RPC_MAINNET" | "RPC_BNB" | "RPC_POLYGON" | "RPC_SONIC" | "RPC_ZKSYNC" | "RPC_SONEIUM" | "RPC_MANTLE" | "RPC_BASE" | "RPC_PLASMA" | "RPC_ARBITRUM" | "RPC_CELO" | "RPC_INK" | "RPC_LINEA" | "RPC_BOB" | "RPC_SEPOLIA" | "
|
|
33511
|
+
declare const alchemySupportedChainIds: (1 | 10 | 56 | 42220 | 137 | 80002 | 43114 | 43113 | 42161 | 421614 | 250 | 4002 | 11155420 | 1666600000 | 11155111 | 534352 | 534351 | 146 | 5000 | 1088 | 8453 | 84532 | 100 | 1101 | 324 | 59144 | 57073 | 1868 | 60808 | 9745 | 196 | 4326)[];
|
|
33512
|
+
declare const getNetworkEnv: (chainId: SupportedChainIds) => "RPC_MAINNET" | "RPC_BNB" | "RPC_POLYGON" | "RPC_SONIC" | "RPC_ZKSYNC" | "RPC_SONEIUM" | "RPC_MANTLE" | "RPC_BASE" | "RPC_PLASMA" | "RPC_ARBITRUM" | "RPC_CELO" | "RPC_INK" | "RPC_LINEA" | "RPC_BOB" | "RPC_SEPOLIA" | "RPC_POLYGON_AMOY" | "RPC_AVALANCHE" | "RPC_AVALANCHE_FUJI" | "RPC_ARBITRUM_SEPOLIA" | "RPC_FANTOM" | "RPC_FANTOM_TESTNET" | "RPC_OPTIMISM" | "RPC_OPTIMISM_SEPOLIA" | "RPC_HARMONY" | "RPC_SCROLL" | "RPC_SCROLL_SEPOLIA" | "RPC_METIS" | "RPC_BASE_SEPOLIA" | "RPC_GNOSIS" | "RPC_ZKEVM" | "RPC_XLAYER" | "RPC_MEGAETH";
|
|
33489
33513
|
declare function getExplicitRPC(chainId: SupportedChainIds): string;
|
|
33490
33514
|
declare function getAlchemyRPC(chainId: SupportedChainIds, alchemyKey: string): string;
|
|
33491
33515
|
declare function getPublicRpc(chainId: SupportedChainIds): "https://eth.llamarpc.com" | "https://polygon.llamarpc.com" | "https://base.llamarpc.com" | "https://binance.llamarpc.com" | "https://andromeda.metis.io/?owner=1088" | "https://rpc.ankr.com/gnosis" | "https://rpc.scroll.io" | "https://mainnet.era.zksync.io" | "https://rpc.ftm.tools" | "https://api.avax.network/ext/bc/C/rpc" | "https://rpc.linea.build" | "https://rpc.gobob.xyz" | "https://rpc.plasma.to" | "https://ink-public.nodies.app";
|
|
@@ -33748,6 +33772,7 @@ declare const alchemyNetworkMap: {
|
|
|
33748
33772
|
readonly 42431: "tempo-moderato";
|
|
33749
33773
|
readonly 43113: "avax-fuji";
|
|
33750
33774
|
readonly 43114: "avax-mainnet";
|
|
33775
|
+
readonly 46630: "robinhood-testnet";
|
|
33751
33776
|
readonly 53302: "superseed-sepolia";
|
|
33752
33777
|
readonly 57054: "sonic-blaze";
|
|
33753
33778
|
readonly 57073: "ink-mainnet";
|
|
@@ -34016,7 +34041,7 @@ declare const etherscanExplorers: {
|
|
|
34016
34041
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34017
34042
|
readonly explorer: "https://opbnb-testnet.bscscan.com/";
|
|
34018
34043
|
};
|
|
34019
|
-
readonly
|
|
34044
|
+
readonly 6343: {
|
|
34020
34045
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34021
34046
|
readonly explorer: "https://testnet-mega.etherscan.io/";
|
|
34022
34047
|
};
|
|
@@ -34056,10 +34081,6 @@ declare const etherscanExplorers: {
|
|
|
34056
34081
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34057
34082
|
readonly explorer: "https://arbiscan.io/";
|
|
34058
34083
|
};
|
|
34059
|
-
readonly 42170: {
|
|
34060
|
-
readonly api: "https://api.etherscan.io/v2/api";
|
|
34061
|
-
readonly explorer: "https://nova.arbiscan.io/";
|
|
34062
|
-
};
|
|
34063
34084
|
readonly 42220: {
|
|
34064
34085
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34065
34086
|
readonly explorer: "https://celoscan.io/";
|
|
@@ -34204,10 +34225,6 @@ declare const routescanExplorers: {
|
|
|
34204
34225
|
readonly api: "https://api.routescan.io/v2/network/mainnet/evm/252/etherscan";
|
|
34205
34226
|
readonly explorer: "252.routescan.io";
|
|
34206
34227
|
};
|
|
34207
|
-
readonly 254: {
|
|
34208
|
-
readonly api: "https://api.routescan.io/v2/network/mainnet/evm/254/etherscan";
|
|
34209
|
-
readonly explorer: "254.routescan.io";
|
|
34210
|
-
};
|
|
34211
34228
|
readonly 288: {
|
|
34212
34229
|
readonly api: "https://api.routescan.io/v2/network/mainnet/evm/288/etherscan";
|
|
34213
34230
|
readonly explorer: "288.routescan.io";
|
|
@@ -37299,11 +37316,6 @@ declare const chainlinkFeeds: {
|
|
|
37299
37316
|
readonly proxyAddress: "0xD41390267Afec3fA5b4c0B3aA6c706556CCE75ec";
|
|
37300
37317
|
readonly decimals: 8;
|
|
37301
37318
|
readonly name: "C3M / EUR";
|
|
37302
|
-
}, {
|
|
37303
|
-
readonly contractAddress: "0x1E37adeFCfF644B69E717ce536D2dE407879D809";
|
|
37304
|
-
readonly proxyAddress: "0x3b41D5571468904D4e53b6a8d93A6BaC43f02dC9";
|
|
37305
|
-
readonly decimals: 18;
|
|
37306
|
-
readonly name: "PERP / ETH";
|
|
37307
37319
|
}, {
|
|
37308
37320
|
readonly contractAddress: "0x1E726556244D772d1d50cacb19B87E7205fA509E";
|
|
37309
37321
|
readonly proxyAddress: "0xF017fcB346A1885194689bA23Eff2fE6fA5C483b";
|
|
@@ -37965,11 +37977,6 @@ declare const chainlinkFeeds: {
|
|
|
37965
37977
|
readonly proxyAddress: "0xF0985f7E2CaBFf22CecC5a71282a89582c382EFE";
|
|
37966
37978
|
readonly decimals: 18;
|
|
37967
37979
|
readonly name: "FTT / ETH";
|
|
37968
|
-
}, {
|
|
37969
|
-
readonly contractAddress: "0x9E3AABA3B04264DD009437F48eBFD70713dd0667";
|
|
37970
|
-
readonly proxyAddress: "0xAcFCF155a0de611414C510D43446c27a4EE6a758";
|
|
37971
|
-
readonly decimals: 8;
|
|
37972
|
-
readonly name: "WAMPL / USD";
|
|
37973
37980
|
}, {
|
|
37974
37981
|
readonly contractAddress: "0x9F6B06e826d3DF391285c695749F8f921F6972D9";
|
|
37975
37982
|
readonly proxyAddress: "0x89904B6fcF8dAD1e5DA47dFdF69fC38Ad6be0bd5";
|
|
@@ -37993,11 +38000,6 @@ declare const chainlinkFeeds: {
|
|
|
37993
38000
|
readonly decimals: 8;
|
|
37994
38001
|
readonly name: "AAVE SVR USDT / USD";
|
|
37995
38002
|
readonly secondaryProxyAddress: "0x62c2ab773B7324ad9e030D777989B3b5d5c54c0A";
|
|
37996
|
-
}, {
|
|
37997
|
-
readonly contractAddress: "0x9e6e40dC0A35D6eD96BB09D928261EB598523645";
|
|
37998
|
-
readonly proxyAddress: "0x58921Ac140522867bf50b9E009599Da0CA4A2379";
|
|
37999
|
-
readonly decimals: 18;
|
|
38000
|
-
readonly name: "BADGER / ETH";
|
|
38001
38003
|
}, {
|
|
38002
38004
|
readonly contractAddress: "0xA0B5260BDfD1011C4bcdc7A099C75BFf6340B38C";
|
|
38003
38005
|
readonly proxyAddress: "0xBcE206caE7f0ec07b545EddE332A47C2F75bbeb3";
|
|
@@ -38138,11 +38140,6 @@ declare const chainlinkFeeds: {
|
|
|
38138
38140
|
readonly proxyAddress: "0x32EaFC72772821936BCc9b8A32dC394fEFcDBfD9";
|
|
38139
38141
|
readonly decimals: 0;
|
|
38140
38142
|
readonly name: "Arbitrum Healthcheck";
|
|
38141
|
-
}, {
|
|
38142
|
-
readonly contractAddress: "0xAfDA097A70d1AF8D93874Dd8cD55b7E082b5ee57";
|
|
38143
|
-
readonly proxyAddress: "0x46cE854814ea38A4857AeA23aE7759b3A7970e4a";
|
|
38144
|
-
readonly decimals: 18;
|
|
38145
|
-
readonly name: "xSolvBTC NAV";
|
|
38146
38143
|
}, {
|
|
38147
38144
|
readonly contractAddress: "0xB30Aae40B630500D5c8140B7d1E5Bb1d61C86B64";
|
|
38148
38145
|
readonly proxyAddress: "0xD93571A6201978976e37c4A0F7bE17806f2Feab2";
|
|
@@ -38288,11 +38285,6 @@ declare const chainlinkFeeds: {
|
|
|
38288
38285
|
readonly proxyAddress: "0x7Fa89217C9bA5eb1307Aca6B84E99ed9220e076F";
|
|
38289
38286
|
readonly decimals: 0;
|
|
38290
38287
|
readonly name: "Celo Healthcheck";
|
|
38291
|
-
}, {
|
|
38292
|
-
readonly contractAddress: "0xF4cF94EB58b2a6eFd05A39dbdc5B02Cf33A509D8";
|
|
38293
|
-
readonly proxyAddress: "0xd95044Eb392CdE502b1F903Fc978317462049E52";
|
|
38294
|
-
readonly decimals: 8;
|
|
38295
|
-
readonly name: "ATH / USD";
|
|
38296
38288
|
}, {
|
|
38297
38289
|
readonly contractAddress: "0xF69C2CdFa50C970235d059DfeEE767b27E02F260";
|
|
38298
38290
|
readonly proxyAddress: "0x64c4c1BF5ec145CB6095A289249592B5bb007098";
|
|
@@ -38384,11 +38376,6 @@ declare const chainlinkFeeds: {
|
|
|
38384
38376
|
readonly proxyAddress: "0xBAEbEFc1D023c0feCcc047Bff42E75F15Ff213E6";
|
|
38385
38377
|
readonly decimals: 8;
|
|
38386
38378
|
readonly name: "IMX / USD";
|
|
38387
|
-
}, {
|
|
38388
|
-
readonly contractAddress: "0xc4f25Fed1c2C5973947d5C90f7C9a32353ceEb22";
|
|
38389
|
-
readonly proxyAddress: "0x14d04Fff8D21bd62987a5cE9ce543d2F1edF5D3E";
|
|
38390
|
-
readonly decimals: 18;
|
|
38391
|
-
readonly name: "FRAX / ETH";
|
|
38392
38379
|
}, {
|
|
38393
38380
|
readonly contractAddress: "0xc778E9686F0fde6Fe4D7d8fE4B481463Fce898fD";
|
|
38394
38381
|
readonly proxyAddress: "0xDC3EA94CD0AC27d9A86C180091e7f78C683d3699";
|
|
@@ -38584,11 +38571,6 @@ declare const chainlinkFeeds: {
|
|
|
38584
38571
|
readonly proxyAddress: "0x7CFB4fac1a2FDB1267F8bc17FADc12804AC13CFE";
|
|
38585
38572
|
readonly decimals: 8;
|
|
38586
38573
|
readonly name: "ONE / USD";
|
|
38587
|
-
}, {
|
|
38588
|
-
readonly contractAddress: "0x0542BbBfbc26A86EA92d2b7f6Da07DAf0CA091eD";
|
|
38589
|
-
readonly proxyAddress: "0x2fF1EB7D0ceC35959F0248E9354c3248c6683D9b";
|
|
38590
|
-
readonly decimals: 8;
|
|
38591
|
-
readonly name: "FLOW / USD";
|
|
38592
38574
|
}, {
|
|
38593
38575
|
readonly contractAddress: "0x057B4ffE41aFb2104C3355a8396bab7c64E4017F";
|
|
38594
38576
|
readonly proxyAddress: "0x5a61374950D4BFa5a3D4f2CA36FC1d23A92b6f21";
|
|
@@ -38689,11 +38671,6 @@ declare const chainlinkFeeds: {
|
|
|
38689
38671
|
readonly proxyAddress: "0x73A3919a69eFCd5b19df8348c6740bB1446F5ed0";
|
|
38690
38672
|
readonly decimals: 8;
|
|
38691
38673
|
readonly name: "MIMATIC / USD";
|
|
38692
|
-
}, {
|
|
38693
|
-
readonly contractAddress: "0x1C1df24f0d06415fc3F58b1c1fDadd5fC85d2950";
|
|
38694
|
-
readonly proxyAddress: "0x0ded608AFc23724f614B76955bbd9dFe7dDdc828";
|
|
38695
|
-
readonly decimals: 8;
|
|
38696
|
-
readonly name: "MATIC / USD";
|
|
38697
38674
|
}, {
|
|
38698
38675
|
readonly contractAddress: "0x1C4f2b051fdBE353d17c58Eca8FFb2fe15b5Da71";
|
|
38699
38676
|
readonly proxyAddress: "0x14d2d3a82AeD4019FddDfe07E8bdc485fb0d2249";
|
|
@@ -38784,11 +38761,6 @@ declare const chainlinkFeeds: {
|
|
|
38784
38761
|
readonly proxyAddress: "0xfa042d5F474d7A39454C594CCfE014Ea011495f2";
|
|
38785
38762
|
readonly decimals: 8;
|
|
38786
38763
|
readonly name: "GRT / USD";
|
|
38787
|
-
}, {
|
|
38788
|
-
readonly contractAddress: "0x44f690526B76D91072fb0427B0A24b882E612455";
|
|
38789
|
-
readonly proxyAddress: "0x30D9d31C1ac29Bc2c2c312c1bCa9F8b3D60e2376";
|
|
38790
|
-
readonly decimals: 8;
|
|
38791
|
-
readonly name: "BAL / USD";
|
|
38792
38764
|
}, {
|
|
38793
38765
|
readonly contractAddress: "0x4713B96931c490F1B66D25cc2ac96Eb0AAFa2ac3";
|
|
38794
38766
|
readonly proxyAddress: "0x0f2Ed59657e391746C1a097BDa98F2aBb94b1120";
|
|
@@ -39274,11 +39246,6 @@ declare const chainlinkFeeds: {
|
|
|
39274
39246
|
readonly proxyAddress: "0x2FF8822F371b283604369700d6F06da3fBb31064";
|
|
39275
39247
|
readonly decimals: 8;
|
|
39276
39248
|
readonly name: "ZEC / USD";
|
|
39277
|
-
}, {
|
|
39278
|
-
readonly contractAddress: "0xb413D63Ac2e38a5A1C18834F20b958745dBeb998";
|
|
39279
|
-
readonly proxyAddress: "0x7F102e5b4C32e0861293E97DE85e6E0dB3530605";
|
|
39280
|
-
readonly decimals: 8;
|
|
39281
|
-
readonly name: "WELL / USD";
|
|
39282
39249
|
}, {
|
|
39283
39250
|
readonly contractAddress: "0xb785e9aa87cDB29cC11a3f2b8bd17E6279275A35";
|
|
39284
39251
|
readonly proxyAddress: "0x517C2557c29F7c53Aa5F97a1DAE465E0d5C174AA";
|
|
@@ -39431,11 +39398,6 @@ declare const chainlinkFeeds: {
|
|
|
39431
39398
|
readonly proxyAddress: "0x14Ae6B76cd940Fa449381cdC9f3a098A3D39A730";
|
|
39432
39399
|
readonly decimals: 18;
|
|
39433
39400
|
readonly name: "savBTC / avBTC Exchange Rate";
|
|
39434
|
-
}, {
|
|
39435
|
-
readonly contractAddress: "0x1640C1a6984f744E069b65d5657c075935474d63";
|
|
39436
|
-
readonly proxyAddress: "0xf7E7c0ffCB11dAC6eCA1434C67faB9aE000e10a7";
|
|
39437
|
-
readonly decimals: 8;
|
|
39438
|
-
readonly name: "WING / USD";
|
|
39439
39401
|
}, {
|
|
39440
39402
|
readonly contractAddress: "0x17d041D20a0b8693aA95c99FCdc5A2bd0126FDB3";
|
|
39441
39403
|
readonly proxyAddress: "0x1a269eA1b209DA2c12bDCDab22635C9e6C5028B2";
|
|
@@ -39609,11 +39571,6 @@ declare const chainlinkFeeds: {
|
|
|
39609
39571
|
readonly proxyAddress: "0xdC156E0Ec3C166cdE3d4Ab9912B79e1b916E3CB7";
|
|
39610
39572
|
readonly decimals: 18;
|
|
39611
39573
|
readonly name: "sUSDX / USDX Exchange Rate";
|
|
39612
|
-
}, {
|
|
39613
|
-
readonly contractAddress: "0x43CB601A5869Fc67f5D3389fE91C6c6fBC6F880b";
|
|
39614
|
-
readonly proxyAddress: "0x9e7377E194E41d63795907c92c3EB351a2eb0233";
|
|
39615
|
-
readonly decimals: 8;
|
|
39616
|
-
readonly name: "WIN / USD";
|
|
39617
39574
|
}, {
|
|
39618
39575
|
readonly contractAddress: "0x44b24057e1cF7a58c86d06dFb12C83806DB7cA95";
|
|
39619
39576
|
readonly proxyAddress: "0xd97aB9e5bD461eBcD55009791C410294f7B42Cdb";
|
|
@@ -40058,11 +40015,6 @@ declare const chainlinkFeeds: {
|
|
|
40058
40015
|
readonly proxyAddress: "0xa3334A9762090E827413A7495AfeCE76F41dFc06";
|
|
40059
40016
|
readonly decimals: 8;
|
|
40060
40017
|
readonly name: "TUSD / USD";
|
|
40061
|
-
}, {
|
|
40062
|
-
readonly contractAddress: "0xBD25C33FFA560129E6346454faF0e8deBD0c0288";
|
|
40063
|
-
readonly proxyAddress: "0x0E9D55932893Fb1308882C7857285B2B0bcc4f4a";
|
|
40064
|
-
readonly decimals: 8;
|
|
40065
|
-
readonly name: "FXS / USD";
|
|
40066
40018
|
}, {
|
|
40067
40019
|
readonly contractAddress: "0xC5E353BEd3a74cE79210aC6819355e8531616876";
|
|
40068
40020
|
readonly proxyAddress: "0x4c75d01cfa4D998770b399246400a6dc40FB9645";
|
|
@@ -40103,11 +40055,6 @@ declare const chainlinkFeeds: {
|
|
|
40103
40055
|
readonly proxyAddress: "0xBF63F430A79D4036A5900C19818aFf1fa710f206";
|
|
40104
40056
|
readonly decimals: 8;
|
|
40105
40057
|
readonly name: "XVS / USD";
|
|
40106
|
-
}, {
|
|
40107
|
-
readonly contractAddress: "0xD377b4D1ef943d0414Cc072ddAC1299940222A24";
|
|
40108
|
-
readonly proxyAddress: "0xcF95796f3016801A1dA5C518Fc7A59C51dcEf793";
|
|
40109
|
-
readonly decimals: 8;
|
|
40110
|
-
readonly name: "ONG / USD";
|
|
40111
40058
|
}, {
|
|
40112
40059
|
readonly contractAddress: "0xDD746F1C05207D1478dC217F4e832786ABEd5C80";
|
|
40113
40060
|
readonly proxyAddress: "0x84210d9013A30C6ab169e28840A6CC54B60fa042";
|
|
@@ -40191,11 +40138,6 @@ declare const chainlinkFeeds: {
|
|
|
40191
40138
|
readonly proxyAddress: "0x2a548935a323Bb7329a5E3F1667B979f16Bc890b";
|
|
40192
40139
|
readonly decimals: 18;
|
|
40193
40140
|
readonly name: "BCH / BNB";
|
|
40194
|
-
}, {
|
|
40195
|
-
readonly contractAddress: "0xFaA69Fc5efd347b9D6FD4709F7618d4E1449cA74";
|
|
40196
|
-
readonly proxyAddress: "0x7CA57b0cA6367191c94C8914d7Df09A57655905f";
|
|
40197
|
-
readonly decimals: 8;
|
|
40198
|
-
readonly name: "MATIC / USD";
|
|
40199
40141
|
}, {
|
|
40200
40142
|
readonly contractAddress: "0xFbBc7E59dd02ADa97FfB0f85C36cE14B1A3Fdfc2";
|
|
40201
40143
|
readonly proxyAddress: "0x08E70777b982a58D23D05E3D7714f44837c06A21";
|
|
@@ -40231,11 +40173,6 @@ declare const chainlinkFeeds: {
|
|
|
40231
40173
|
readonly proxyAddress: "0xb7Ed5bE7977d61E83534230f3256C021e0fae0B6";
|
|
40232
40174
|
readonly decimals: 8;
|
|
40233
40175
|
readonly name: "AAPL / USD";
|
|
40234
|
-
}, {
|
|
40235
|
-
readonly contractAddress: "0xb208D9Ee1703674b7Ced85b615Db69d65430aF67";
|
|
40236
|
-
readonly proxyAddress: "0x13A9c98b07F098c5319f4FF786eB16E22DC738e1";
|
|
40237
|
-
readonly decimals: 8;
|
|
40238
|
-
readonly name: "FRAX / USD";
|
|
40239
40176
|
}, {
|
|
40240
40177
|
readonly contractAddress: "0xb3Ea5aFbd958dB1d36b007e8B5DcD7cD33C5Db02";
|
|
40241
40178
|
readonly proxyAddress: "0x0Db8945f9aEf5651fa5bd52314C5aAe78DfDe540";
|
|
@@ -40513,11 +40450,6 @@ declare const chainlinkFeeds: {
|
|
|
40513
40450
|
readonly proxyAddress: "0x6D42cc26756C34F26BEcDD9b30a279cE9Ea8296E";
|
|
40514
40451
|
readonly decimals: 8;
|
|
40515
40452
|
readonly name: "BNB / USD";
|
|
40516
|
-
}, {
|
|
40517
|
-
readonly contractAddress: "0x9C1Dc429a8d8F10C8ebA522b608bC27F58d6ABE2";
|
|
40518
|
-
readonly proxyAddress: "0x27d4D36968a2BD1Cc3406D99cB1DF50561dBf2a4";
|
|
40519
|
-
readonly decimals: 8;
|
|
40520
|
-
readonly name: "REN / USD";
|
|
40521
40453
|
}, {
|
|
40522
40454
|
readonly contractAddress: "0xB660dC68D4cf26F5ac1c1fDcD9e57d648FCf13d9";
|
|
40523
40455
|
readonly proxyAddress: "0x2997eBa3d9c2447c36107bB0F082b8c33566b49c";
|
|
@@ -41500,11 +41432,6 @@ declare const chainlinkFeeds: {
|
|
|
41500
41432
|
readonly proxyAddress: "0xd3b87e6F953B1126056b914A8CBE78035fB3E241";
|
|
41501
41433
|
readonly decimals: 18;
|
|
41502
41434
|
readonly name: "PumpBTC / BTC Exchange Rate";
|
|
41503
|
-
}, {
|
|
41504
|
-
readonly contractAddress: "0xb35dC10BF66F82D3efD8f08BE49c3BEC31c6efe4";
|
|
41505
|
-
readonly proxyAddress: "0x30caC44b395eB969C9CA0d44dF39e6E0aE8f8D94";
|
|
41506
|
-
readonly decimals: 18;
|
|
41507
|
-
readonly name: "OS / S";
|
|
41508
41435
|
}, {
|
|
41509
41436
|
readonly contractAddress: "0xc40650248C96027e8A7a86Cf96aA492004873E5d";
|
|
41510
41437
|
readonly proxyAddress: "0x8f0240dc9C7644D121D370d8ee61FF9F2356521E";
|
|
@@ -41520,11 +41447,6 @@ declare const chainlinkFeeds: {
|
|
|
41520
41447
|
readonly proxyAddress: "0x960BDD1dFD20d7c98fa482D793C3dedD73A113a3";
|
|
41521
41448
|
readonly decimals: 18;
|
|
41522
41449
|
readonly name: "uniBTC / BTC Exchange Rate";
|
|
41523
|
-
}, {
|
|
41524
|
-
readonly contractAddress: "0xd1B3e5248aF8781c1338D1Ea278618fB58955017";
|
|
41525
|
-
readonly proxyAddress: "0x3cf9E4860bafe8e29eC8e1bC073436C5519684f4";
|
|
41526
|
-
readonly decimals: 8;
|
|
41527
|
-
readonly name: "scBTC / BTC";
|
|
41528
41450
|
}, {
|
|
41529
41451
|
readonly contractAddress: "0xd7221b10FBBC1e1ba95Fd0B4D031C15f7F365296";
|
|
41530
41452
|
readonly proxyAddress: "0xfdee80dec97AF9AddcDccD208eC09d7Ea5eEbB9a";
|
|
@@ -41784,11 +41706,6 @@ declare const chainlinkFeeds: {
|
|
|
41784
41706
|
readonly name: "frxETH / ETH Exchange Rate High";
|
|
41785
41707
|
}];
|
|
41786
41708
|
readonly "1868": readonly [{
|
|
41787
|
-
readonly contractAddress: "0x0101EF4292188d0082121ED61854F25e4b79C600";
|
|
41788
|
-
readonly proxyAddress: "0xEEDE303b8602Db7556eD57BDf7133A6bAADa294D";
|
|
41789
|
-
readonly decimals: 18;
|
|
41790
|
-
readonly name: "pufETH / ETH";
|
|
41791
|
-
}, {
|
|
41792
41709
|
readonly contractAddress: "0x0c617263C40231731f1264b8Ee5aA96A29eeA99F";
|
|
41793
41710
|
readonly proxyAddress: "0x884E2819193d8c8993036290D5a8778Dbe3942f2";
|
|
41794
41711
|
readonly decimals: 8;
|
|
@@ -42339,11 +42256,6 @@ declare const chainlinkFeeds: {
|
|
|
42339
42256
|
readonly proxyAddress: "0x9f0C1dD78C4CBdF5b9cf923a549A201EdC676D34";
|
|
42340
42257
|
readonly decimals: 8;
|
|
42341
42258
|
readonly name: "XRP / USD";
|
|
42342
|
-
}, {
|
|
42343
|
-
readonly contractAddress: "0x55012EF027ae9b4E2bb5a5f529E5a1184Bcc998D";
|
|
42344
|
-
readonly proxyAddress: "0x91D7AEd72bF772A0DA30199B925aCB866ACD3D9e";
|
|
42345
|
-
readonly decimals: 8;
|
|
42346
|
-
readonly name: "OGN / USD";
|
|
42347
42259
|
}, {
|
|
42348
42260
|
readonly contractAddress: "0x5526525178A842eB07e54cAE0d30c967d74bd0b7";
|
|
42349
42261
|
readonly proxyAddress: "0x1E6A29666288a310326B37d823Fe4Ea3937424D2";
|
|
@@ -42456,11 +42368,6 @@ declare const chainlinkFeeds: {
|
|
|
42456
42368
|
readonly proxyAddress: "0xe3971Ed6F1A5903321479Ef3148B5950c0612075";
|
|
42457
42369
|
readonly decimals: 8;
|
|
42458
42370
|
readonly name: "SNX / USD";
|
|
42459
|
-
}, {
|
|
42460
|
-
readonly contractAddress: "0x74E60B98A3FCaBcDDC66C5727Ab4bCccbad10ce7";
|
|
42461
|
-
readonly proxyAddress: "0x8eC6a128a430f7A850165bcF18facc9520a9873F";
|
|
42462
|
-
readonly decimals: 8;
|
|
42463
|
-
readonly name: "VVV / USD";
|
|
42464
42371
|
}, {
|
|
42465
42372
|
readonly contractAddress: "0x74f70D08c92f1cd4Ed70B9aa3F8edC0bA5496a01";
|
|
42466
42373
|
readonly proxyAddress: "0x5E988c11a4f92155C30D9fb69Ed75597f712B113";
|
|
@@ -42544,11 +42451,6 @@ declare const chainlinkFeeds: {
|
|
|
42544
42451
|
readonly decimals: 18;
|
|
42545
42452
|
readonly name: "AAVE SVR LBTC / BTC Exchange Rate";
|
|
42546
42453
|
readonly secondaryProxyAddress: "0xA6E3b91196afC536E4944B78aBb7DA41E7e18d6b";
|
|
42547
|
-
}, {
|
|
42548
|
-
readonly contractAddress: "0x8E6ec3E7d1E50db38D5690dF501530D5B2d0b58A";
|
|
42549
|
-
readonly proxyAddress: "0x90F3676B40F6dc2C1E074985D0544Bb8e1815B00";
|
|
42550
|
-
readonly decimals: 8;
|
|
42551
|
-
readonly name: "CTX / USD";
|
|
42552
42454
|
}, {
|
|
42553
42455
|
readonly contractAddress: "0x8b535cC811c4E4c9CFf85b823479B1616CB5C7B5";
|
|
42554
42456
|
readonly proxyAddress: "0x1E6c22AAA11F507af12034A5Dc4126A6A25DC8d2";
|
|
@@ -42575,11 +42477,6 @@ declare const chainlinkFeeds: {
|
|
|
42575
42477
|
readonly decimals: 18;
|
|
42576
42478
|
readonly name: "AAVE SVR WSTETH / STETH Exchange Rate";
|
|
42577
42479
|
readonly secondaryProxyAddress: "0x2d4b8B1083a7C278B4C45c598De155e5f9b7A8D5";
|
|
42578
|
-
}, {
|
|
42579
|
-
readonly contractAddress: "0x9465CF4b4032080434E397F42fB99A8446c35376";
|
|
42580
|
-
readonly proxyAddress: "0xd5Ec94430eF4170D819E0996BC53ed40d31638d8";
|
|
42581
|
-
readonly decimals: 8;
|
|
42582
|
-
readonly name: "USD+ / USD";
|
|
42583
42480
|
}, {
|
|
42584
42481
|
readonly contractAddress: "0x97100bac08Ef1532401041b5F864B4De999ab6D4";
|
|
42585
42482
|
readonly proxyAddress: "0xC8D5D660bb585b68fa0263EeD7B4224a5FC99669";
|
|
@@ -42687,21 +42584,11 @@ declare const chainlinkFeeds: {
|
|
|
42687
42584
|
readonly proxyAddress: "0x2a18E2d46Cb067b69e0759dB39b16597fC42D962";
|
|
42688
42585
|
readonly decimals: 1;
|
|
42689
42586
|
readonly name: "PCE Price Index — Percent Change (Annual Rate)";
|
|
42690
|
-
}, {
|
|
42691
|
-
readonly contractAddress: "0xCe14fF0ACf4a1e7Eab6802C64D317e3fD989f3C6";
|
|
42692
|
-
readonly proxyAddress: "0x1fC950BbC12E93c15A3eEb62db978eb3cC567943";
|
|
42693
|
-
readonly decimals: 8;
|
|
42694
|
-
readonly name: "SYND / USD";
|
|
42695
42587
|
}, {
|
|
42696
42588
|
readonly contractAddress: "0xD0407a6524C7d9075E0b040dCEf4696129B2C3B4";
|
|
42697
42589
|
readonly proxyAddress: "0xeDC243c7E3c1A9dAf067C90641D2346d2694d2e5";
|
|
42698
42590
|
readonly decimals: 18;
|
|
42699
42591
|
readonly name: "LSETH / ETH";
|
|
42700
|
-
}, {
|
|
42701
|
-
readonly contractAddress: "0xD27766C20dF630a7D7e1e5885ae581FB0e61828A";
|
|
42702
|
-
readonly proxyAddress: "0xe25969e2Fa633a0C027fAB8F30Fc9C6A90D60B48";
|
|
42703
|
-
readonly decimals: 8;
|
|
42704
|
-
readonly name: "USDz / USD";
|
|
42705
42592
|
}, {
|
|
42706
42593
|
readonly contractAddress: "0xD41A2B9575eD27D38EC9B75B4d0DD9632a72e45b";
|
|
42707
42594
|
readonly proxyAddress: "0x5218Ebeb96bD2bAFe21F9b143f5672552629ba79";
|
|
@@ -43154,11 +43041,6 @@ declare const chainlinkFeeds: {
|
|
|
43154
43041
|
readonly decimals: 8;
|
|
43155
43042
|
readonly name: "AAVE SVR EURC / USD";
|
|
43156
43043
|
readonly secondaryProxyAddress: "0x86e5D529Cb7cAeF5C475Aab0727a84739E12EA3F";
|
|
43157
|
-
}, {
|
|
43158
|
-
readonly contractAddress: "0x338D614Af8c05eF9d77a33E9D33A92b770809ED4";
|
|
43159
|
-
readonly proxyAddress: "0x6548a81E640C000150e06AB413fB3F772682e9c5";
|
|
43160
|
-
readonly decimals: 8;
|
|
43161
|
-
readonly name: "USD+ / USD";
|
|
43162
43044
|
}, {
|
|
43163
43045
|
readonly contractAddress: "0x34EA4fc62510bd81a72399309f717B96F740A4AE";
|
|
43164
43046
|
readonly proxyAddress: "0x7A58648CAeA88e042767823723aF266DC6c4c4D9";
|
|
@@ -43225,36 +43107,16 @@ declare const chainlinkFeeds: {
|
|
|
43225
43107
|
readonly proxyAddress: null;
|
|
43226
43108
|
readonly decimals: 18;
|
|
43227
43109
|
readonly name: "ASTR/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43228
|
-
}, {
|
|
43229
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43230
|
-
readonly proxyAddress: null;
|
|
43231
|
-
readonly decimals: 18;
|
|
43232
|
-
readonly name: "REZ/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43233
|
-
}, {
|
|
43234
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43235
|
-
readonly proxyAddress: null;
|
|
43236
|
-
readonly decimals: 18;
|
|
43237
|
-
readonly name: "WOO/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43238
43110
|
}, {
|
|
43239
43111
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43240
43112
|
readonly proxyAddress: null;
|
|
43241
43113
|
readonly decimals: 18;
|
|
43242
43114
|
readonly name: "BONK/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43243
|
-
}, {
|
|
43244
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43245
|
-
readonly proxyAddress: null;
|
|
43246
|
-
readonly decimals: 18;
|
|
43247
|
-
readonly name: "PEOPLE/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43248
43115
|
}, {
|
|
43249
43116
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43250
43117
|
readonly proxyAddress: null;
|
|
43251
43118
|
readonly decimals: 18;
|
|
43252
43119
|
readonly name: "ATOM/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43253
|
-
}, {
|
|
43254
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43255
|
-
readonly proxyAddress: null;
|
|
43256
|
-
readonly decimals: 18;
|
|
43257
|
-
readonly name: "XAI/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43258
43120
|
}, {
|
|
43259
43121
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43260
43122
|
readonly proxyAddress: null;
|
|
@@ -43275,11 +43137,6 @@ declare const chainlinkFeeds: {
|
|
|
43275
43137
|
readonly proxyAddress: null;
|
|
43276
43138
|
readonly decimals: 18;
|
|
43277
43139
|
readonly name: "ORDER/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43278
|
-
}, {
|
|
43279
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43280
|
-
readonly proxyAddress: null;
|
|
43281
|
-
readonly decimals: 18;
|
|
43282
|
-
readonly name: "BIGTIME/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43283
43140
|
}, {
|
|
43284
43141
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43285
43142
|
readonly proxyAddress: null;
|
|
@@ -43290,11 +43147,6 @@ declare const chainlinkFeeds: {
|
|
|
43290
43147
|
readonly proxyAddress: null;
|
|
43291
43148
|
readonly decimals: 18;
|
|
43292
43149
|
readonly name: "ADA/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43293
|
-
}, {
|
|
43294
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43295
|
-
readonly proxyAddress: null;
|
|
43296
|
-
readonly decimals: 18;
|
|
43297
|
-
readonly name: "NOT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43298
43150
|
}, {
|
|
43299
43151
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43300
43152
|
readonly proxyAddress: null;
|
|
@@ -43305,11 +43157,6 @@ declare const chainlinkFeeds: {
|
|
|
43305
43157
|
readonly proxyAddress: null;
|
|
43306
43158
|
readonly decimals: 18;
|
|
43307
43159
|
readonly name: "PENDLE/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43308
|
-
}, {
|
|
43309
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43310
|
-
readonly proxyAddress: null;
|
|
43311
|
-
readonly decimals: 18;
|
|
43312
|
-
readonly name: "PIXEL/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43313
43160
|
}, {
|
|
43314
43161
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43315
43162
|
readonly proxyAddress: null;
|
|
@@ -43345,36 +43192,6 @@ declare const chainlinkFeeds: {
|
|
|
43345
43192
|
readonly proxyAddress: null;
|
|
43346
43193
|
readonly decimals: 18;
|
|
43347
43194
|
readonly name: "MELANIA/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43348
|
-
}, {
|
|
43349
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43350
|
-
readonly proxyAddress: null;
|
|
43351
|
-
readonly decimals: 18;
|
|
43352
|
-
readonly name: "BLUR/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43353
|
-
}, {
|
|
43354
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43355
|
-
readonly proxyAddress: null;
|
|
43356
|
-
readonly decimals: 18;
|
|
43357
|
-
readonly name: "HOT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43358
|
-
}, {
|
|
43359
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43360
|
-
readonly proxyAddress: null;
|
|
43361
|
-
readonly decimals: 18;
|
|
43362
|
-
readonly name: "MOG/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43363
|
-
}, {
|
|
43364
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43365
|
-
readonly proxyAddress: null;
|
|
43366
|
-
readonly decimals: 18;
|
|
43367
|
-
readonly name: "STG/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43368
|
-
}, {
|
|
43369
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43370
|
-
readonly proxyAddress: null;
|
|
43371
|
-
readonly decimals: 18;
|
|
43372
|
-
readonly name: "IQ/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43373
|
-
}, {
|
|
43374
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43375
|
-
readonly proxyAddress: null;
|
|
43376
|
-
readonly decimals: 18;
|
|
43377
|
-
readonly name: "ILV/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43378
43195
|
}, {
|
|
43379
43196
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43380
43197
|
readonly proxyAddress: null;
|
|
@@ -43430,16 +43247,6 @@ declare const chainlinkFeeds: {
|
|
|
43430
43247
|
readonly proxyAddress: null;
|
|
43431
43248
|
readonly decimals: 18;
|
|
43432
43249
|
readonly name: "QNT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43433
|
-
}, {
|
|
43434
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43435
|
-
readonly proxyAddress: null;
|
|
43436
|
-
readonly decimals: 18;
|
|
43437
|
-
readonly name: "AI/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43438
|
-
}, {
|
|
43439
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43440
|
-
readonly proxyAddress: null;
|
|
43441
|
-
readonly decimals: 18;
|
|
43442
|
-
readonly name: "C98/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43443
43250
|
}, {
|
|
43444
43251
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43445
43252
|
readonly proxyAddress: null;
|
|
@@ -43450,11 +43257,6 @@ declare const chainlinkFeeds: {
|
|
|
43450
43257
|
readonly proxyAddress: null;
|
|
43451
43258
|
readonly decimals: 18;
|
|
43452
43259
|
readonly name: "PAXG/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43453
|
-
}, {
|
|
43454
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43455
|
-
readonly proxyAddress: null;
|
|
43456
|
-
readonly decimals: 18;
|
|
43457
|
-
readonly name: "EDU/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43458
43260
|
}, {
|
|
43459
43261
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43460
43262
|
readonly proxyAddress: null;
|
|
@@ -43470,16 +43272,6 @@ declare const chainlinkFeeds: {
|
|
|
43470
43272
|
readonly proxyAddress: null;
|
|
43471
43273
|
readonly decimals: 18;
|
|
43472
43274
|
readonly name: "ICP/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43473
|
-
}, {
|
|
43474
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43475
|
-
readonly proxyAddress: null;
|
|
43476
|
-
readonly decimals: 18;
|
|
43477
|
-
readonly name: "MERL/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43478
|
-
}, {
|
|
43479
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43480
|
-
readonly proxyAddress: null;
|
|
43481
|
-
readonly decimals: 18;
|
|
43482
|
-
readonly name: "BLAST/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43483
43275
|
}, {
|
|
43484
43276
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43485
43277
|
readonly proxyAddress: null;
|
|
@@ -43505,11 +43297,6 @@ declare const chainlinkFeeds: {
|
|
|
43505
43297
|
readonly proxyAddress: null;
|
|
43506
43298
|
readonly decimals: 18;
|
|
43507
43299
|
readonly name: "BNB/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43508
|
-
}, {
|
|
43509
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43510
|
-
readonly proxyAddress: null;
|
|
43511
|
-
readonly decimals: 18;
|
|
43512
|
-
readonly name: "LPT/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43513
43300
|
}, {
|
|
43514
43301
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43515
43302
|
readonly proxyAddress: null;
|
|
@@ -43525,11 +43312,6 @@ declare const chainlinkFeeds: {
|
|
|
43525
43312
|
readonly proxyAddress: null;
|
|
43526
43313
|
readonly decimals: 18;
|
|
43527
43314
|
readonly name: "VIRTUAL/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43528
|
-
}, {
|
|
43529
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43530
|
-
readonly proxyAddress: null;
|
|
43531
|
-
readonly decimals: 18;
|
|
43532
|
-
readonly name: "IO/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43533
43315
|
}, {
|
|
43534
43316
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43535
43317
|
readonly proxyAddress: null;
|
|
@@ -43540,21 +43322,6 @@ declare const chainlinkFeeds: {
|
|
|
43540
43322
|
readonly proxyAddress: null;
|
|
43541
43323
|
readonly decimals: 18;
|
|
43542
43324
|
readonly name: "GOAT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43543
|
-
}, {
|
|
43544
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43545
|
-
readonly proxyAddress: null;
|
|
43546
|
-
readonly decimals: 18;
|
|
43547
|
-
readonly name: "RDNT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43548
|
-
}, {
|
|
43549
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43550
|
-
readonly proxyAddress: null;
|
|
43551
|
-
readonly decimals: 18;
|
|
43552
|
-
readonly name: "TOKEN/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43553
|
-
}, {
|
|
43554
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43555
|
-
readonly proxyAddress: null;
|
|
43556
|
-
readonly decimals: 18;
|
|
43557
|
-
readonly name: "ZEREBRO/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43558
43325
|
}, {
|
|
43559
43326
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43560
43327
|
readonly proxyAddress: null;
|
|
@@ -43565,16 +43332,6 @@ declare const chainlinkFeeds: {
|
|
|
43565
43332
|
readonly proxyAddress: null;
|
|
43566
43333
|
readonly decimals: 18;
|
|
43567
43334
|
readonly name: "LINK/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43568
|
-
}, {
|
|
43569
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43570
|
-
readonly proxyAddress: null;
|
|
43571
|
-
readonly decimals: 18;
|
|
43572
|
-
readonly name: "POLYX/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43573
|
-
}, {
|
|
43574
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43575
|
-
readonly proxyAddress: null;
|
|
43576
|
-
readonly decimals: 18;
|
|
43577
|
-
readonly name: "ARKM/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43578
43335
|
}, {
|
|
43579
43336
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43580
43337
|
readonly proxyAddress: null;
|
|
@@ -43605,11 +43362,6 @@ declare const chainlinkFeeds: {
|
|
|
43605
43362
|
readonly proxyAddress: null;
|
|
43606
43363
|
readonly decimals: 18;
|
|
43607
43364
|
readonly name: "PENGU/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43608
|
-
}, {
|
|
43609
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43610
|
-
readonly proxyAddress: null;
|
|
43611
|
-
readonly decimals: 18;
|
|
43612
|
-
readonly name: "BB/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43613
43365
|
}, {
|
|
43614
43366
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43615
43367
|
readonly proxyAddress: null;
|
|
@@ -43650,26 +43402,11 @@ declare const chainlinkFeeds: {
|
|
|
43650
43402
|
readonly proxyAddress: null;
|
|
43651
43403
|
readonly decimals: 18;
|
|
43652
43404
|
readonly name: "TURBO/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43653
|
-
}, {
|
|
43654
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43655
|
-
readonly proxyAddress: null;
|
|
43656
|
-
readonly decimals: 18;
|
|
43657
|
-
readonly name: "ETHFI/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43658
43405
|
}, {
|
|
43659
43406
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43660
43407
|
readonly proxyAddress: null;
|
|
43661
43408
|
readonly decimals: 18;
|
|
43662
43409
|
readonly name: "PEPE/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43663
|
-
}, {
|
|
43664
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43665
|
-
readonly proxyAddress: null;
|
|
43666
|
-
readonly decimals: 18;
|
|
43667
|
-
readonly name: "HMSTR/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43668
|
-
}, {
|
|
43669
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43670
|
-
readonly proxyAddress: null;
|
|
43671
|
-
readonly decimals: 18;
|
|
43672
|
-
readonly name: "MANTA/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43673
43410
|
}, {
|
|
43674
43411
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43675
43412
|
readonly proxyAddress: null;
|
|
@@ -43700,11 +43437,6 @@ declare const chainlinkFeeds: {
|
|
|
43700
43437
|
readonly proxyAddress: null;
|
|
43701
43438
|
readonly decimals: 18;
|
|
43702
43439
|
readonly name: "SUI/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43703
|
-
}, {
|
|
43704
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43705
|
-
readonly proxyAddress: null;
|
|
43706
|
-
readonly decimals: 18;
|
|
43707
|
-
readonly name: "MANA/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43708
43440
|
}, {
|
|
43709
43441
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43710
43442
|
readonly proxyAddress: null;
|
|
@@ -43720,11 +43452,6 @@ declare const chainlinkFeeds: {
|
|
|
43720
43452
|
readonly proxyAddress: null;
|
|
43721
43453
|
readonly decimals: 18;
|
|
43722
43454
|
readonly name: "KNC/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43723
|
-
}, {
|
|
43724
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43725
|
-
readonly proxyAddress: null;
|
|
43726
|
-
readonly decimals: 18;
|
|
43727
|
-
readonly name: "ID/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43728
43455
|
}, {
|
|
43729
43456
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43730
43457
|
readonly proxyAddress: null;
|
|
@@ -43740,16 +43467,6 @@ declare const chainlinkFeeds: {
|
|
|
43740
43467
|
readonly proxyAddress: null;
|
|
43741
43468
|
readonly decimals: 18;
|
|
43742
43469
|
readonly name: "DAI/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43743
|
-
}, {
|
|
43744
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43745
|
-
readonly proxyAddress: null;
|
|
43746
|
-
readonly decimals: 18;
|
|
43747
|
-
readonly name: "CYBER/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43748
|
-
}, {
|
|
43749
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43750
|
-
readonly proxyAddress: null;
|
|
43751
|
-
readonly decimals: 18;
|
|
43752
|
-
readonly name: "CHR/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43753
43470
|
}, {
|
|
43754
43471
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43755
43472
|
readonly proxyAddress: null;
|
|
@@ -43765,11 +43482,6 @@ declare const chainlinkFeeds: {
|
|
|
43765
43482
|
readonly proxyAddress: null;
|
|
43766
43483
|
readonly decimals: 18;
|
|
43767
43484
|
readonly name: "W/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43768
|
-
}, {
|
|
43769
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43770
|
-
readonly proxyAddress: null;
|
|
43771
|
-
readonly decimals: 18;
|
|
43772
|
-
readonly name: "POPCAT/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43773
43485
|
}, {
|
|
43774
43486
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43775
43487
|
readonly proxyAddress: null;
|
|
@@ -43805,21 +43517,6 @@ declare const chainlinkFeeds: {
|
|
|
43805
43517
|
readonly proxyAddress: null;
|
|
43806
43518
|
readonly decimals: 18;
|
|
43807
43519
|
readonly name: "RENDER/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43808
|
-
}, {
|
|
43809
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43810
|
-
readonly proxyAddress: null;
|
|
43811
|
-
readonly decimals: 18;
|
|
43812
|
-
readonly name: "MAV/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43813
|
-
}, {
|
|
43814
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43815
|
-
readonly proxyAddress: null;
|
|
43816
|
-
readonly decimals: 18;
|
|
43817
|
-
readonly name: "ENS/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43818
|
-
}, {
|
|
43819
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43820
|
-
readonly proxyAddress: null;
|
|
43821
|
-
readonly decimals: 18;
|
|
43822
|
-
readonly name: "HOOK/USD-RefPrice-DSstaging-Premium-Global-003-dead";
|
|
43823
43520
|
}, {
|
|
43824
43521
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43825
43522
|
readonly proxyAddress: null;
|
|
@@ -43840,16 +43537,6 @@ declare const chainlinkFeeds: {
|
|
|
43840
43537
|
readonly proxyAddress: null;
|
|
43841
43538
|
readonly decimals: 18;
|
|
43842
43539
|
readonly name: "DYDX/USD-RefPrice-DStaging-Premium-Global-003";
|
|
43843
|
-
}, {
|
|
43844
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43845
|
-
readonly proxyAddress: null;
|
|
43846
|
-
readonly decimals: 18;
|
|
43847
|
-
readonly name: "ALT/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43848
|
-
}, {
|
|
43849
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43850
|
-
readonly proxyAddress: null;
|
|
43851
|
-
readonly decimals: 18;
|
|
43852
|
-
readonly name: "COMP/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43853
43540
|
}, {
|
|
43854
43541
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43855
43542
|
readonly proxyAddress: null;
|
|
@@ -43875,11 +43562,6 @@ declare const chainlinkFeeds: {
|
|
|
43875
43562
|
readonly proxyAddress: null;
|
|
43876
43563
|
readonly decimals: 18;
|
|
43877
43564
|
readonly name: "JUP/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43878
|
-
}, {
|
|
43879
|
-
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43880
|
-
readonly proxyAddress: null;
|
|
43881
|
-
readonly decimals: 18;
|
|
43882
|
-
readonly name: "ACE/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
43883
43565
|
}, {
|
|
43884
43566
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
43885
43567
|
readonly proxyAddress: null;
|
|
@@ -44092,36 +43774,11 @@ declare const chainlinkFeeds: {
|
|
|
44092
43774
|
readonly proxyAddress: "0xe7C53FFd03Eb6ceF7d208bC4C13446c76d1E5884";
|
|
44093
43775
|
readonly decimals: 8;
|
|
44094
43776
|
readonly name: "COMP / USD";
|
|
44095
|
-
}, {
|
|
44096
|
-
readonly contractAddress: "0x53368bC6a7eB4f4AF3d6974520FEba0295A5daAb";
|
|
44097
|
-
readonly proxyAddress: "0xBE5eA816870D11239c543F84b71439511D70B94f";
|
|
44098
|
-
readonly decimals: 8;
|
|
44099
|
-
readonly name: "BAL / USD";
|
|
44100
43777
|
}, {
|
|
44101
43778
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44102
43779
|
readonly proxyAddress: null;
|
|
44103
43780
|
readonly decimals: 18;
|
|
44104
43781
|
readonly name: "GALA/USD-RefPrice-DS-Premium-Global-003";
|
|
44105
|
-
}, {
|
|
44106
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44107
|
-
readonly proxyAddress: null;
|
|
44108
|
-
readonly decimals: 18;
|
|
44109
|
-
readonly name: "POLYX/USD-RefPrice-DS-Premium-Global-003";
|
|
44110
|
-
}, {
|
|
44111
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44112
|
-
readonly proxyAddress: null;
|
|
44113
|
-
readonly decimals: 18;
|
|
44114
|
-
readonly name: "HOOK/USD-RefPrice-DS-Premium-Global-003";
|
|
44115
|
-
}, {
|
|
44116
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44117
|
-
readonly proxyAddress: null;
|
|
44118
|
-
readonly decimals: 18;
|
|
44119
|
-
readonly name: "ACE/USD-RefPrice-DS-Premium-Global-003";
|
|
44120
|
-
}, {
|
|
44121
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44122
|
-
readonly proxyAddress: null;
|
|
44123
|
-
readonly decimals: 18;
|
|
44124
|
-
readonly name: "BLUR/USD-RefPrice-DS-Premium-Global-003";
|
|
44125
43782
|
}, {
|
|
44126
43783
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44127
43784
|
readonly proxyAddress: null;
|
|
@@ -44132,21 +43789,11 @@ declare const chainlinkFeeds: {
|
|
|
44132
43789
|
readonly proxyAddress: null;
|
|
44133
43790
|
readonly decimals: 18;
|
|
44134
43791
|
readonly name: "SATS/USD-RefPrice-DS-Premium-Global-003";
|
|
44135
|
-
}, {
|
|
44136
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44137
|
-
readonly proxyAddress: null;
|
|
44138
|
-
readonly decimals: 18;
|
|
44139
|
-
readonly name: "CHR/USD-RefPrice-DS-Premium-Global-003";
|
|
44140
43792
|
}, {
|
|
44141
43793
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44142
43794
|
readonly proxyAddress: null;
|
|
44143
43795
|
readonly decimals: 18;
|
|
44144
43796
|
readonly name: "STRK/USD-RefPrice-DS-Premium-Global-003";
|
|
44145
|
-
}, {
|
|
44146
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44147
|
-
readonly proxyAddress: null;
|
|
44148
|
-
readonly decimals: 18;
|
|
44149
|
-
readonly name: "BB/USD-RefPrice-DS-Premium-Global-003";
|
|
44150
43797
|
}, {
|
|
44151
43798
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44152
43799
|
readonly proxyAddress: null;
|
|
@@ -44162,11 +43809,6 @@ declare const chainlinkFeeds: {
|
|
|
44162
43809
|
readonly proxyAddress: null;
|
|
44163
43810
|
readonly decimals: 18;
|
|
44164
43811
|
readonly name: "TRX/USD-RefPrice-DS-Premium-Global-003";
|
|
44165
|
-
}, {
|
|
44166
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44167
|
-
readonly proxyAddress: null;
|
|
44168
|
-
readonly decimals: 18;
|
|
44169
|
-
readonly name: "ID/USD-RefPrice-DS-Premium-Global-003";
|
|
44170
43812
|
}, {
|
|
44171
43813
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44172
43814
|
readonly proxyAddress: null;
|
|
@@ -44192,11 +43834,6 @@ declare const chainlinkFeeds: {
|
|
|
44192
43834
|
readonly proxyAddress: null;
|
|
44193
43835
|
readonly decimals: 18;
|
|
44194
43836
|
readonly name: "JTO/USD-RefPrice-DS-Premium-Global-003";
|
|
44195
|
-
}, {
|
|
44196
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44197
|
-
readonly proxyAddress: null;
|
|
44198
|
-
readonly decimals: 18;
|
|
44199
|
-
readonly name: "MANA/USD-RefPrice-DS-Premium-Global-003";
|
|
44200
43837
|
}, {
|
|
44201
43838
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44202
43839
|
readonly proxyAddress: null;
|
|
@@ -44212,21 +43849,11 @@ declare const chainlinkFeeds: {
|
|
|
44212
43849
|
readonly proxyAddress: null;
|
|
44213
43850
|
readonly decimals: 18;
|
|
44214
43851
|
readonly name: "JUP/USD-RefPrice-DS-Premium-Global-003";
|
|
44215
|
-
}, {
|
|
44216
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44217
|
-
readonly proxyAddress: null;
|
|
44218
|
-
readonly decimals: 18;
|
|
44219
|
-
readonly name: "MOG/USD-RefPrice-DS-Premium-Global-003";
|
|
44220
43852
|
}, {
|
|
44221
43853
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44222
43854
|
readonly proxyAddress: null;
|
|
44223
43855
|
readonly decimals: 18;
|
|
44224
43856
|
readonly name: "SAND/USD-RefPrice-DS-Premium-Global-003";
|
|
44225
|
-
}, {
|
|
44226
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44227
|
-
readonly proxyAddress: null;
|
|
44228
|
-
readonly decimals: 18;
|
|
44229
|
-
readonly name: "REZ/USD-RefPrice-DS-Premium-Global-003";
|
|
44230
43857
|
}, {
|
|
44231
43858
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44232
43859
|
readonly proxyAddress: null;
|
|
@@ -44287,11 +43914,6 @@ declare const chainlinkFeeds: {
|
|
|
44287
43914
|
readonly proxyAddress: null;
|
|
44288
43915
|
readonly decimals: 18;
|
|
44289
43916
|
readonly name: "BRETT/USD-RefPrice-DS-Premium-Global-003";
|
|
44290
|
-
}, {
|
|
44291
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44292
|
-
readonly proxyAddress: null;
|
|
44293
|
-
readonly decimals: 18;
|
|
44294
|
-
readonly name: "IO/USD-RefPrice-DS-Premium-Global-003";
|
|
44295
43917
|
}, {
|
|
44296
43918
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44297
43919
|
readonly proxyAddress: null;
|
|
@@ -44327,41 +43949,16 @@ declare const chainlinkFeeds: {
|
|
|
44327
43949
|
readonly proxyAddress: null;
|
|
44328
43950
|
readonly decimals: 18;
|
|
44329
43951
|
readonly name: "TIA/USD-RefPrice-DS-Premium-Global-003";
|
|
44330
|
-
}, {
|
|
44331
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44332
|
-
readonly proxyAddress: null;
|
|
44333
|
-
readonly decimals: 18;
|
|
44334
|
-
readonly name: "MERL/USD-RefPrice-DS-Premium-Global-003";
|
|
44335
|
-
}, {
|
|
44336
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44337
|
-
readonly proxyAddress: null;
|
|
44338
|
-
readonly decimals: 18;
|
|
44339
|
-
readonly name: "STG/USD-RefPrice-DS-Premium-Global-003";
|
|
44340
43952
|
}, {
|
|
44341
43953
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44342
43954
|
readonly proxyAddress: null;
|
|
44343
43955
|
readonly decimals: 18;
|
|
44344
43956
|
readonly name: "RENDER/USD-RefPrice-DS-Premium-Global-003";
|
|
44345
|
-
}, {
|
|
44346
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44347
|
-
readonly proxyAddress: null;
|
|
44348
|
-
readonly decimals: 18;
|
|
44349
|
-
readonly name: "PEOPLE/USD-RefPrice-DS-Premium-Global-003";
|
|
44350
|
-
}, {
|
|
44351
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44352
|
-
readonly proxyAddress: null;
|
|
44353
|
-
readonly decimals: 18;
|
|
44354
|
-
readonly name: "XAI/USD-RefPrice-DS-Premium-Global-003";
|
|
44355
43957
|
}, {
|
|
44356
43958
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44357
43959
|
readonly proxyAddress: null;
|
|
44358
43960
|
readonly decimals: 18;
|
|
44359
43961
|
readonly name: "XTZ/USD-RefPrice-DS-Premium-Global-003";
|
|
44360
|
-
}, {
|
|
44361
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44362
|
-
readonly proxyAddress: null;
|
|
44363
|
-
readonly decimals: 18;
|
|
44364
|
-
readonly name: "NOT/USD-RefPrice-DS-Premium-Global-003";
|
|
44365
43962
|
}, {
|
|
44366
43963
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44367
43964
|
readonly proxyAddress: null;
|
|
@@ -44397,21 +43994,6 @@ declare const chainlinkFeeds: {
|
|
|
44397
43994
|
readonly proxyAddress: null;
|
|
44398
43995
|
readonly decimals: 18;
|
|
44399
43996
|
readonly name: "GRT/USD-RefPrice-DS-Premium-Global-003";
|
|
44400
|
-
}, {
|
|
44401
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44402
|
-
readonly proxyAddress: null;
|
|
44403
|
-
readonly decimals: 18;
|
|
44404
|
-
readonly name: "EDU/USD-RefPrice-DS-Premium-Global-003";
|
|
44405
|
-
}, {
|
|
44406
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44407
|
-
readonly proxyAddress: null;
|
|
44408
|
-
readonly decimals: 18;
|
|
44409
|
-
readonly name: "CYBER/USD-RefPrice-DS-Premium-Global-003";
|
|
44410
|
-
}, {
|
|
44411
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44412
|
-
readonly proxyAddress: null;
|
|
44413
|
-
readonly decimals: 18;
|
|
44414
|
-
readonly name: "WOO/USD-RefPrice-DS-Premium-Global-003";
|
|
44415
43997
|
}, {
|
|
44416
43998
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44417
43999
|
readonly proxyAddress: null;
|
|
@@ -44432,11 +44014,6 @@ declare const chainlinkFeeds: {
|
|
|
44432
44014
|
readonly proxyAddress: null;
|
|
44433
44015
|
readonly decimals: 18;
|
|
44434
44016
|
readonly name: "UNI/USD-RefPrice-DS-Premium-Global-003";
|
|
44435
|
-
}, {
|
|
44436
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44437
|
-
readonly proxyAddress: null;
|
|
44438
|
-
readonly decimals: 18;
|
|
44439
|
-
readonly name: "ETHFI/USD-RefPrice-DS-Premium-Global-003";
|
|
44440
44017
|
}, {
|
|
44441
44018
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44442
44019
|
readonly proxyAddress: null;
|
|
@@ -44472,21 +44049,6 @@ declare const chainlinkFeeds: {
|
|
|
44472
44049
|
readonly proxyAddress: null;
|
|
44473
44050
|
readonly decimals: 18;
|
|
44474
44051
|
readonly name: "ONDO/USD-RefPrice-DS-Premium-Global-003";
|
|
44475
|
-
}, {
|
|
44476
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44477
|
-
readonly proxyAddress: null;
|
|
44478
|
-
readonly decimals: 18;
|
|
44479
|
-
readonly name: "C98/USD-RefPrice-DS-Premium-Global-003";
|
|
44480
|
-
}, {
|
|
44481
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44482
|
-
readonly proxyAddress: null;
|
|
44483
|
-
readonly decimals: 18;
|
|
44484
|
-
readonly name: "BIGTIME/USD-RefPrice-DS-Premium-Global-003";
|
|
44485
|
-
}, {
|
|
44486
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44487
|
-
readonly proxyAddress: null;
|
|
44488
|
-
readonly decimals: 18;
|
|
44489
|
-
readonly name: "RDNT/USD-RefPrice-DS-Premium-Global-003";
|
|
44490
44052
|
}, {
|
|
44491
44053
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44492
44054
|
readonly proxyAddress: null;
|
|
@@ -44497,11 +44059,6 @@ declare const chainlinkFeeds: {
|
|
|
44497
44059
|
readonly proxyAddress: null;
|
|
44498
44060
|
readonly decimals: 18;
|
|
44499
44061
|
readonly name: "VIRTUAL/USD-RefPrice-DS-Premium-Global-003";
|
|
44500
|
-
}, {
|
|
44501
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44502
|
-
readonly proxyAddress: null;
|
|
44503
|
-
readonly decimals: 18;
|
|
44504
|
-
readonly name: "MANTA/USD-RefPrice-DS-Premium-Global-003";
|
|
44505
44062
|
}, {
|
|
44506
44063
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44507
44064
|
readonly proxyAddress: null;
|
|
@@ -44512,11 +44069,6 @@ declare const chainlinkFeeds: {
|
|
|
44512
44069
|
readonly proxyAddress: null;
|
|
44513
44070
|
readonly decimals: 18;
|
|
44514
44071
|
readonly name: "MKR/USD-RefPrice-DS-Premium-Global-003";
|
|
44515
|
-
}, {
|
|
44516
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44517
|
-
readonly proxyAddress: null;
|
|
44518
|
-
readonly decimals: 18;
|
|
44519
|
-
readonly name: "BLAST/USD-RefPrice-DS-Premium-Global-003";
|
|
44520
44072
|
}, {
|
|
44521
44073
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44522
44074
|
readonly proxyAddress: null;
|
|
@@ -44532,21 +44084,6 @@ declare const chainlinkFeeds: {
|
|
|
44532
44084
|
readonly proxyAddress: null;
|
|
44533
44085
|
readonly decimals: 18;
|
|
44534
44086
|
readonly name: "ZEC/USD-RefPrice-DS-Premium-Global-003";
|
|
44535
|
-
}, {
|
|
44536
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44537
|
-
readonly proxyAddress: null;
|
|
44538
|
-
readonly decimals: 18;
|
|
44539
|
-
readonly name: "ENS/USD-RefPrice-DS-Premium-Global-003";
|
|
44540
|
-
}, {
|
|
44541
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44542
|
-
readonly proxyAddress: null;
|
|
44543
|
-
readonly decimals: 18;
|
|
44544
|
-
readonly name: "ILV/USD-RefPrice-DS-Premium-Global-003";
|
|
44545
|
-
}, {
|
|
44546
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44547
|
-
readonly proxyAddress: null;
|
|
44548
|
-
readonly decimals: 18;
|
|
44549
|
-
readonly name: "HMSTR/USD-RefPrice-DS-Premium-Global-003";
|
|
44550
44087
|
}, {
|
|
44551
44088
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44552
44089
|
readonly proxyAddress: null;
|
|
@@ -44577,11 +44114,6 @@ declare const chainlinkFeeds: {
|
|
|
44577
44114
|
readonly proxyAddress: null;
|
|
44578
44115
|
readonly decimals: 18;
|
|
44579
44116
|
readonly name: "AVAX/USD-RefPrice-DS-Premium-Global-003";
|
|
44580
|
-
}, {
|
|
44581
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44582
|
-
readonly proxyAddress: null;
|
|
44583
|
-
readonly decimals: 18;
|
|
44584
|
-
readonly name: "COMP/USD-RefPrice-DS-Premium-Global-003";
|
|
44585
44117
|
}, {
|
|
44586
44118
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44587
44119
|
readonly proxyAddress: null;
|
|
@@ -44602,11 +44134,6 @@ declare const chainlinkFeeds: {
|
|
|
44602
44134
|
readonly proxyAddress: null;
|
|
44603
44135
|
readonly decimals: 18;
|
|
44604
44136
|
readonly name: "OP/USD-RefPrice-DS-Premium-Global-003";
|
|
44605
|
-
}, {
|
|
44606
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44607
|
-
readonly proxyAddress: null;
|
|
44608
|
-
readonly decimals: 18;
|
|
44609
|
-
readonly name: "TOKEN/USD-RefPrice-DS-Premium-Global-003";
|
|
44610
44137
|
}, {
|
|
44611
44138
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44612
44139
|
readonly proxyAddress: null;
|
|
@@ -44627,11 +44154,6 @@ declare const chainlinkFeeds: {
|
|
|
44627
44154
|
readonly proxyAddress: null;
|
|
44628
44155
|
readonly decimals: 18;
|
|
44629
44156
|
readonly name: "ORDER/USD-RefPrice-DS-Premium-Global-003";
|
|
44630
|
-
}, {
|
|
44631
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44632
|
-
readonly proxyAddress: null;
|
|
44633
|
-
readonly decimals: 18;
|
|
44634
|
-
readonly name: "MAV/USD-RefPrice-DS-Premium-Global-003";
|
|
44635
44157
|
}, {
|
|
44636
44158
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44637
44159
|
readonly proxyAddress: null;
|
|
@@ -44647,21 +44169,11 @@ declare const chainlinkFeeds: {
|
|
|
44647
44169
|
readonly proxyAddress: null;
|
|
44648
44170
|
readonly decimals: 18;
|
|
44649
44171
|
readonly name: "BERA/USD-RefPrice-DS-Premium-Global-003";
|
|
44650
|
-
}, {
|
|
44651
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44652
|
-
readonly proxyAddress: null;
|
|
44653
|
-
readonly decimals: 18;
|
|
44654
|
-
readonly name: "ZEREBRO/USD-RefPrice-DS-Premium-Global-003";
|
|
44655
44172
|
}, {
|
|
44656
44173
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44657
44174
|
readonly proxyAddress: null;
|
|
44658
44175
|
readonly decimals: 18;
|
|
44659
44176
|
readonly name: "ATOM/USD-RefPrice-DS-Premium-Global-003";
|
|
44660
|
-
}, {
|
|
44661
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44662
|
-
readonly proxyAddress: null;
|
|
44663
|
-
readonly decimals: 18;
|
|
44664
|
-
readonly name: "PIXEL/USD-RefPrice-DS-Premium-Global-003";
|
|
44665
44177
|
}, {
|
|
44666
44178
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44667
44179
|
readonly proxyAddress: null;
|
|
@@ -44697,31 +44209,16 @@ declare const chainlinkFeeds: {
|
|
|
44697
44209
|
readonly proxyAddress: null;
|
|
44698
44210
|
readonly decimals: 18;
|
|
44699
44211
|
readonly name: "ORDI/USD-RefPrice-DS-Premium-Global-003";
|
|
44700
|
-
}, {
|
|
44701
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44702
|
-
readonly proxyAddress: null;
|
|
44703
|
-
readonly decimals: 18;
|
|
44704
|
-
readonly name: "IQ/USD-RefPrice-DS-Premium-Global-003";
|
|
44705
44212
|
}, {
|
|
44706
44213
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44707
44214
|
readonly proxyAddress: null;
|
|
44708
44215
|
readonly decimals: 18;
|
|
44709
44216
|
readonly name: "EGLD/USD-RefPrice-DS-Premium-Global-003";
|
|
44710
|
-
}, {
|
|
44711
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44712
|
-
readonly proxyAddress: null;
|
|
44713
|
-
readonly decimals: 18;
|
|
44714
|
-
readonly name: "ALT/USD-RefPrice-DS-Premium-Global-003";
|
|
44715
44217
|
}, {
|
|
44716
44218
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44717
44219
|
readonly proxyAddress: null;
|
|
44718
44220
|
readonly decimals: 18;
|
|
44719
44221
|
readonly name: "DOGS/USD-RefPrice-DS-Premium-Global-003";
|
|
44720
|
-
}, {
|
|
44721
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44722
|
-
readonly proxyAddress: null;
|
|
44723
|
-
readonly decimals: 18;
|
|
44724
|
-
readonly name: "HOT/USD-RefPrice-DS-Premium-Global-003";
|
|
44725
44222
|
}, {
|
|
44726
44223
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44727
44224
|
readonly proxyAddress: null;
|
|
@@ -44737,11 +44234,6 @@ declare const chainlinkFeeds: {
|
|
|
44737
44234
|
readonly proxyAddress: null;
|
|
44738
44235
|
readonly decimals: 18;
|
|
44739
44236
|
readonly name: "SCR/USD-RefPrice-DS-Premium-Global-003";
|
|
44740
|
-
}, {
|
|
44741
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44742
|
-
readonly proxyAddress: null;
|
|
44743
|
-
readonly decimals: 18;
|
|
44744
|
-
readonly name: "ARKM/USD-RefPrice-DS-Premium-Global-003";
|
|
44745
44237
|
}, {
|
|
44746
44238
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44747
44239
|
readonly proxyAddress: null;
|
|
@@ -44757,11 +44249,6 @@ declare const chainlinkFeeds: {
|
|
|
44757
44249
|
readonly proxyAddress: null;
|
|
44758
44250
|
readonly decimals: 18;
|
|
44759
44251
|
readonly name: "ZRO/USD-RefPrice-DS-Premium-Global-003";
|
|
44760
|
-
}, {
|
|
44761
|
-
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44762
|
-
readonly proxyAddress: null;
|
|
44763
|
-
readonly decimals: 18;
|
|
44764
|
-
readonly name: "AI/USD-RefPrice-DS-Premium-Global-003";
|
|
44765
44252
|
}, {
|
|
44766
44253
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
44767
44254
|
readonly proxyAddress: null;
|
|
@@ -45050,11 +44537,6 @@ declare const chainlinkFeeds: {
|
|
|
45050
44537
|
readonly proxyAddress: "0xE8f8AfE4b56c6C421F691bfAc225cE61b2C7CD05";
|
|
45051
44538
|
readonly decimals: 8;
|
|
45052
44539
|
readonly name: "TRY / USD";
|
|
45053
|
-
}, {
|
|
45054
|
-
readonly contractAddress: "0x884720E3da9094190dC25911B4e0E61D79562788";
|
|
45055
|
-
readonly proxyAddress: "0x8883045300Eaf3b1Bb1b3b17F9B4d70EfF50212a";
|
|
45056
|
-
readonly decimals: 18;
|
|
45057
|
-
readonly name: "ULTI / USD";
|
|
45058
44540
|
}, {
|
|
45059
44541
|
readonly contractAddress: "0x8ABe008B267C82199EC81E7f80eE4DC3A3545c82";
|
|
45060
44542
|
readonly proxyAddress: "0x9eE96caa9972c801058CAA8E23419fc6516FbF7e";
|
|
@@ -45080,11 +44562,6 @@ declare const chainlinkFeeds: {
|
|
|
45080
44562
|
readonly proxyAddress: "0x2483326d19f780Fb082f333Fe124e4C075B207ba";
|
|
45081
44563
|
readonly decimals: 18;
|
|
45082
44564
|
readonly name: "sUSDS / USDS Exchange Rate";
|
|
45083
|
-
}, {
|
|
45084
|
-
readonly contractAddress: "0x8f99f05E0a5Fa19579525A60801A0F473adB1CE1";
|
|
45085
|
-
readonly proxyAddress: "0x300b0990Ba191a1AeBef6e5Ed8B5B308C0B2d0c9";
|
|
45086
|
-
readonly decimals: 8;
|
|
45087
|
-
readonly name: "XVS / USD";
|
|
45088
44565
|
}, {
|
|
45089
44566
|
readonly contractAddress: "0x920d90b3953B3C90b06ebE8579B0215d6801DA54";
|
|
45090
44567
|
readonly proxyAddress: "0xe4c31C5B118d8aA92433eD1c7EC70afb430cd730";
|
|
@@ -45376,11 +44853,6 @@ declare const chainlinkFeeds: {
|
|
|
45376
44853
|
readonly proxyAddress: "0xDC1a8F77Cdc46D1Fb7F22F94dFCA4dDBf566fA23";
|
|
45377
44854
|
readonly decimals: 1;
|
|
45378
44855
|
readonly name: "Real GDP — Percent Change (Annual Rate)";
|
|
45379
|
-
}, {
|
|
45380
|
-
readonly contractAddress: "0xa44BCD128E99188565c4849cdfFEea9C773f74ec";
|
|
45381
|
-
readonly proxyAddress: "0x04180965a782E487d0632013ABa488A472243542";
|
|
45382
|
-
readonly decimals: 8;
|
|
45383
|
-
readonly name: "JOE / USD";
|
|
45384
44856
|
}, {
|
|
45385
44857
|
readonly contractAddress: "0xa4598924ca0cbEbB2D850684a9BFc0a7D1D848EB";
|
|
45386
44858
|
readonly proxyAddress: "0x1f5C0C2CD2e9Ad1eE475660AF0bBa27aE7d87f5e";
|
|
@@ -45635,11 +45107,6 @@ declare const chainlinkFeeds: {
|
|
|
45635
45107
|
readonly proxyAddress: "0x383b3624478124697BEF675F07cA37570b73992f";
|
|
45636
45108
|
readonly decimals: 8;
|
|
45637
45109
|
readonly name: "SPELL / USD";
|
|
45638
|
-
}, {
|
|
45639
|
-
readonly contractAddress: "0xf8C6DE435CF8d06897a4A66b21df623D06d2A761";
|
|
45640
|
-
readonly proxyAddress: "0x36a121448D74Fa81450c992A1a44B9b7377CD3a5";
|
|
45641
|
-
readonly decimals: 8;
|
|
45642
|
-
readonly name: "FXS / USD";
|
|
45643
45110
|
}, {
|
|
45644
45111
|
readonly contractAddress: "0xf8abb3c41A3b21687Ad862C9Fd00D007E413EEAA";
|
|
45645
45112
|
readonly proxyAddress: "0x6FfBc6339DD46a7e0513D4887106349214C05505";
|
|
@@ -45852,11 +45319,6 @@ declare const chainlinkFeeds: {
|
|
|
45852
45319
|
readonly proxyAddress: "0xCF60B4E089eA1ABA29C01b017b38c2f7D69Eb36B";
|
|
45853
45320
|
readonly decimals: 18;
|
|
45854
45321
|
readonly name: "WSTETH / ETH";
|
|
45855
|
-
}, {
|
|
45856
|
-
readonly contractAddress: "0x15505bcC6D3c6f8F3cfC3d6D96f5A6301A08D2cc";
|
|
45857
|
-
readonly proxyAddress: "0x7B0ca9A6D03FE0467A31Ca850f5bcA51e027B3aF";
|
|
45858
|
-
readonly decimals: 8;
|
|
45859
|
-
readonly name: "ALPHA / USD";
|
|
45860
45322
|
}, {
|
|
45861
45323
|
readonly contractAddress: "0x184CCa2bA7015052424Fa2f509fB252926789D7C";
|
|
45862
45324
|
readonly proxyAddress: "0x7Ee401373A92f885a7C3A53CF46dbe661eaFb1C0";
|
|
@@ -46762,7 +46224,6 @@ declare const tenderlyNetworkMap: {
|
|
|
46762
46224
|
readonly 1924: "swellchain-sepolia";
|
|
46763
46225
|
readonly 1946: "soneium-minato";
|
|
46764
46226
|
readonly 2020: "ronin";
|
|
46765
|
-
readonly 2021: "ronin-testnet";
|
|
46766
46227
|
readonly 2201: "stable-testnet";
|
|
46767
46228
|
readonly 2523: "fraxtal-hoodi";
|
|
46768
46229
|
readonly 4202: "lisk-sepolia";
|
|
@@ -46917,6 +46378,7 @@ declare const tenderlyExplorerMap: {
|
|
|
46917
46378
|
readonly 98867: "plume-testnet";
|
|
46918
46379
|
readonly 167000: "taiko-mainnet";
|
|
46919
46380
|
readonly 167013: "taiko-hoodi";
|
|
46381
|
+
readonly 202601: "ronin-testnet";
|
|
46920
46382
|
readonly 421614: "arbitrum-sepolia";
|
|
46921
46383
|
readonly 534351: "scroll-sepolia";
|
|
46922
46384
|
readonly 534352: "scroll-mainnet";
|
|
@@ -48309,5 +47771,5 @@ declare function addAssetPrice(client: Client, address: Address): Promise<string
|
|
|
48309
47771
|
*/
|
|
48310
47772
|
declare function getMdContractName(contracts: TenderlySimulationResponse["contracts"], address: Address): string;
|
|
48311
47773
|
//#endregion
|
|
48312
|
-
export { Aip, AssetInfo, BlockscoutStyleSourceCode, BundleParams, ChainId, ChainList, ContractObject, EVENT_DB, EtherscanStyleSourceCode, ExplorerConfig, GenericIndexerArgs, GovernanceContract, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAccessControl_ABI, IAggregatorInterface_ABI, ICLRatePriceCapAdapter_ABI, ICLSynchronicityPriceAdapterBaseToPeg_ABI, ICLSynchronicityPriceAdapterPegToBase_ABI, ICLSynchronicityPriceAdapter_ABI, ICollector_ABI, IDefaultInterestRateStrategyV2_ABI, IERC1967_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IGovernance_ABI, IOwnable_ABI, IPausableUpgradeable_ABI, IPayloadsController_ABI, IPendlePriceCapAdapter_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IPriceCapAdapterBase_ABI, IPriceCapAdapterStable_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, ISafe_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IUmbrellaStakeToken_ABI, IUmbrella_ABI, IWithGuardian_ABI, IWrappedTokenGatewayV3_ABI, IncentivizedERC20_ABI, IndexerTopicState, Input, KNOWN_ROLES, LTV_PRECISION, Payload, PayloadState, PayloadsControllerContract, Proposal, ProposalState, RAY, ReserveConfiguration, SECONDS_PER_YEAR, SelfdestructCheckState, SoltypeElement, SoltypeType, StandardJsonInput, StateDiff, StateObject, SupportedChainIds, TenderlyLog, TenderlyLogRaw, TenderlySimRequest, TenderlySimulationResponse, TenderlySimulationResponseObject, TenderlyStackTrace, Tenderly_createVnetParamsResponse, Trace, TransactionInfo, Umbrella_IRewardsController_ABI, Umbrella_IRewardsDistributor_ABI, VerificationStatus, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, addAssetPrice, addAssetSymbol, alchemyNetworkMap, alchemySupportedChainIds, assetIndexesToAsset, assetToBase, bitmapToIndexes, blockscoutExplorers, bytes32ToAddress, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, genericIndexer, getAlchemyRPC, getBits, getBytesValue, getClient, getCompleteReserveConfiguration, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getDynamicArraySlot, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getMdContractName, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getObjectDiff, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSolidityStorageSlotAddress, getSolidityStorageSlotBytes, getSolidityStorageSlotUint, getSourceCode, getTenderlyRpc, getVerificationStatus, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseFrontmatterMd, parseLogs, prettifyNumber, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderMarkdownStateDiffReport, renderTenderlyReport, routescanExplorers, selfDestructStatusToString, setBits, snapshotClient, tenderlyExplorerMap, tenderlyNetworkMap, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_logsToAbiLogs, tenderly_pingExplorer, tenderly_sim, tenderly_simVnet, toAddressLink, toBinaryString, toTxLink, transformTenderlyStateDiff, validateAip, verificationStatusToString, wadDiv, wadToRay };
|
|
47774
|
+
export { Aip, AssetInfo, BlockscoutStyleSourceCode, BundleParams, ChainId, ChainList, ContractObject, EVENT_DB, EtherscanStyleSourceCode, ExplorerConfig, GenericIndexerArgs, GovernanceContract, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAccessControl_ABI, IAggregatorInterface_ABI, ICLRatePriceCapAdapter_ABI, ICLSynchronicityPriceAdapterBaseToPeg_ABI, ICLSynchronicityPriceAdapterPegToBase_ABI, ICLSynchronicityPriceAdapter_ABI, ICollector_ABI, IDefaultInterestRateStrategyV2_ABI, IERC1967_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IGovernance_ABI, IOwnable_ABI, IPausableUpgradeable_ABI, IPayloadsController_ABI, IPendlePriceCapAdapter_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IPriceCapAdapterBase_ABI, IPriceCapAdapterStable_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, ISafe_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IUmbrellaStakeToken_ABI, IUmbrella_ABI, IWithGuardian_ABI, IWrappedTokenGatewayV3_ABI, IncentivizedERC20_ABI, IndexerTopicState, Input, KNOWN_ROLES, LTV_PRECISION, Payload, PayloadState, PayloadsControllerContract, Proposal, ProposalState, RAY, ReserveConfiguration, SECONDS_PER_YEAR, SelfdestructCheckState, SoltypeElement, SoltypeType, StandardJsonInput, StateDiff, StateObject, SupportedChainIds, TenderlyLog, TenderlyLogRaw, TenderlySimRequest, TenderlySimulationResponse, TenderlySimulationResponseObject, TenderlyStackTrace, Tenderly_createVnetParamsResponse, Trace, TransactionInfo, Umbrella_IRewardsController_ABI, Umbrella_IRewardsDistributor_ABI, VerificationStatus, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, addAssetPrice, addAssetSymbol, alchemyNetworkMap, alchemySupportedChainIds, assetIndexesToAsset, assetToBase, bitmapToIndexes, blockscoutExplorers, bytes32ToAddress, calculateAccruedRewards, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, genericIndexer, getAlchemyRPC, getBits, getBytesValue, getClient, getCompleteReserveConfiguration, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getDynamicArraySlot, getEmissionPerSecondScaled, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getMdContractName, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getObjectDiff, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSolidityStorageSlotAddress, getSolidityStorageSlotBytes, getSolidityStorageSlotUint, getSourceCode, getTenderlyRpc, getVerificationStatus, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseFrontmatterMd, parseLogs, prettifyNumber, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderMarkdownStateDiffReport, renderTenderlyReport, routescanExplorers, selfDestructStatusToString, setBits, snapshotClient, tenderlyExplorerMap, tenderlyNetworkMap, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_logsToAbiLogs, tenderly_pingExplorer, tenderly_sim, tenderly_simVnet, toAddressLink, toBinaryString, toTxLink, transformTenderlyStateDiff, validateAip, verificationStatusToString, wadDiv, wadToRay };
|
|
48313
47775
|
//# sourceMappingURL=browser.d.mts.map
|