@bgd-labs/toolbox 0.2.15 → 0.2.17
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 +12 -5
- package/dist/browser.d.mts.map +1 -1
- package/dist/browser.mjs +10 -5
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +157 -142
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +3281 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -3
package/dist/index.d.mts
CHANGED
|
@@ -16324,8 +16324,8 @@ declare function tenderly_createVnet({
|
|
|
16324
16324
|
getBlobBaseFee: () => Promise<viem.GetBlobBaseFeeReturnType>;
|
|
16325
16325
|
getBlock: <includeTransactions extends boolean = false, blockTag extends viem.BlockTag = "latest">(args?: viem.GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
|
|
16326
16326
|
number: blockTag extends "pending" ? null : bigint;
|
|
16327
|
-
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
16328
16327
|
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
16328
|
+
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
16329
16329
|
logsBloom: blockTag extends "pending" ? null : `0x${string}`;
|
|
16330
16330
|
baseFeePerGas: bigint | null;
|
|
16331
16331
|
blobGasUsed: bigint;
|
|
@@ -16352,127 +16352,127 @@ declare function tenderly_createVnet({
|
|
|
16352
16352
|
transactions: includeTransactions extends true ? ({
|
|
16353
16353
|
type: "legacy";
|
|
16354
16354
|
value: bigint;
|
|
16355
|
-
|
|
16355
|
+
to: Address | null;
|
|
16356
16356
|
from: Address;
|
|
16357
16357
|
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;
|
|
16358
16367
|
hash: viem.Hash;
|
|
16359
16368
|
input: Hex;
|
|
16360
|
-
nonce: number;
|
|
16361
16369
|
r: Hex;
|
|
16362
16370
|
s: Hex;
|
|
16363
|
-
to: Address | null;
|
|
16364
16371
|
typeHex: Hex | null;
|
|
16365
16372
|
v: bigint;
|
|
16366
|
-
accessList?: undefined | undefined;
|
|
16367
|
-
authorizationList?: undefined | undefined;
|
|
16368
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16369
16373
|
chainId?: number | undefined;
|
|
16370
|
-
|
|
16371
|
-
|
|
16372
|
-
maxFeePerGas?: undefined | undefined;
|
|
16373
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16374
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
16375
|
-
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;
|
|
16374
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
|
|
16375
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
|
|
16376
16376
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
16377
16377
|
} | {
|
|
16378
16378
|
type: "eip2930";
|
|
16379
16379
|
value: bigint;
|
|
16380
|
-
|
|
16380
|
+
to: Address | null;
|
|
16381
16381
|
from: Address;
|
|
16382
16382
|
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;
|
|
16383
16392
|
hash: viem.Hash;
|
|
16384
16393
|
input: Hex;
|
|
16385
|
-
nonce: number;
|
|
16386
16394
|
r: Hex;
|
|
16387
16395
|
s: Hex;
|
|
16388
|
-
to: Address | null;
|
|
16389
16396
|
typeHex: Hex | null;
|
|
16390
16397
|
v: bigint;
|
|
16391
|
-
accessList: viem.AccessList;
|
|
16392
|
-
authorizationList?: undefined | undefined;
|
|
16393
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16394
16398
|
chainId: number;
|
|
16395
|
-
|
|
16396
|
-
|
|
16397
|
-
maxFeePerGas?: undefined | undefined;
|
|
16398
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16399
|
-
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;
|
|
16400
|
-
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;
|
|
16399
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
|
|
16400
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
|
|
16401
16401
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
16402
16402
|
} | {
|
|
16403
16403
|
type: "eip1559";
|
|
16404
16404
|
value: bigint;
|
|
16405
|
-
|
|
16405
|
+
to: Address | null;
|
|
16406
16406
|
from: Address;
|
|
16407
16407
|
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;
|
|
16408
16417
|
hash: viem.Hash;
|
|
16409
16418
|
input: Hex;
|
|
16410
|
-
nonce: number;
|
|
16411
16419
|
r: Hex;
|
|
16412
16420
|
s: Hex;
|
|
16413
|
-
to: Address | null;
|
|
16414
16421
|
typeHex: Hex | null;
|
|
16415
16422
|
v: bigint;
|
|
16416
|
-
accessList: viem.AccessList;
|
|
16417
|
-
authorizationList?: undefined | undefined;
|
|
16418
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16419
16423
|
chainId: number;
|
|
16420
|
-
|
|
16421
|
-
|
|
16422
|
-
maxFeePerGas: bigint;
|
|
16423
|
-
maxPriorityFeePerGas: bigint;
|
|
16424
|
-
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;
|
|
16425
|
-
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;
|
|
16424
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
|
|
16425
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
|
|
16426
16426
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
16427
16427
|
} | {
|
|
16428
16428
|
type: "eip4844";
|
|
16429
16429
|
value: bigint;
|
|
16430
|
-
|
|
16430
|
+
to: Address | null;
|
|
16431
16431
|
from: Address;
|
|
16432
16432
|
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;
|
|
16433
16442
|
hash: viem.Hash;
|
|
16434
16443
|
input: Hex;
|
|
16435
|
-
nonce: number;
|
|
16436
16444
|
r: Hex;
|
|
16437
16445
|
s: Hex;
|
|
16438
|
-
to: Address | null;
|
|
16439
16446
|
typeHex: Hex | null;
|
|
16440
16447
|
v: bigint;
|
|
16441
|
-
accessList: viem.AccessList;
|
|
16442
|
-
authorizationList?: undefined | undefined;
|
|
16443
|
-
blobVersionedHashes: readonly Hex[];
|
|
16444
16448
|
chainId: number;
|
|
16445
|
-
|
|
16446
|
-
|
|
16447
|
-
maxFeePerGas: bigint;
|
|
16448
|
-
maxPriorityFeePerGas: bigint;
|
|
16449
|
-
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;
|
|
16450
|
-
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;
|
|
16449
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
|
|
16450
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
|
|
16451
16451
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
16452
16452
|
} | {
|
|
16453
16453
|
type: "eip7702";
|
|
16454
16454
|
value: bigint;
|
|
16455
|
-
|
|
16455
|
+
to: Address | null;
|
|
16456
16456
|
from: Address;
|
|
16457
16457
|
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;
|
|
16458
16467
|
hash: viem.Hash;
|
|
16459
16468
|
input: Hex;
|
|
16460
|
-
nonce: number;
|
|
16461
16469
|
r: Hex;
|
|
16462
16470
|
s: Hex;
|
|
16463
|
-
to: Address | null;
|
|
16464
16471
|
typeHex: Hex | null;
|
|
16465
16472
|
v: bigint;
|
|
16466
|
-
accessList: viem.AccessList;
|
|
16467
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
16468
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16469
16473
|
chainId: number;
|
|
16470
|
-
|
|
16471
|
-
|
|
16472
|
-
maxFeePerGas: bigint;
|
|
16473
|
-
maxPriorityFeePerGas: bigint;
|
|
16474
|
-
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;
|
|
16475
|
-
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;
|
|
16474
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
|
|
16475
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
|
|
16476
16476
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
|
|
16477
16477
|
})[] : `0x${string}`[];
|
|
16478
16478
|
}>;
|
|
@@ -16559,127 +16559,127 @@ declare function tenderly_createVnet({
|
|
|
16559
16559
|
getTransaction: <blockTag extends viem.BlockTag = "latest">(args: viem.GetTransactionParameters<blockTag>) => Promise<{
|
|
16560
16560
|
type: "legacy";
|
|
16561
16561
|
value: bigint;
|
|
16562
|
-
|
|
16562
|
+
to: Address | null;
|
|
16563
16563
|
from: Address;
|
|
16564
16564
|
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;
|
|
16565
16574
|
hash: viem.Hash;
|
|
16566
16575
|
input: Hex;
|
|
16567
|
-
nonce: number;
|
|
16568
16576
|
r: Hex;
|
|
16569
16577
|
s: Hex;
|
|
16570
|
-
to: Address | null;
|
|
16571
16578
|
typeHex: Hex | null;
|
|
16572
16579
|
v: bigint;
|
|
16573
|
-
accessList?: undefined | undefined;
|
|
16574
|
-
authorizationList?: undefined | undefined;
|
|
16575
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16576
16580
|
chainId?: number | undefined;
|
|
16577
|
-
|
|
16578
|
-
|
|
16579
|
-
maxFeePerGas?: undefined | undefined;
|
|
16580
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16581
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
16582
|
-
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;
|
|
16581
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
|
|
16582
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
|
|
16583
16583
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
16584
16584
|
} | {
|
|
16585
16585
|
type: "eip2930";
|
|
16586
16586
|
value: bigint;
|
|
16587
|
-
|
|
16587
|
+
to: Address | null;
|
|
16588
16588
|
from: Address;
|
|
16589
16589
|
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;
|
|
16590
16599
|
hash: viem.Hash;
|
|
16591
16600
|
input: Hex;
|
|
16592
|
-
nonce: number;
|
|
16593
16601
|
r: Hex;
|
|
16594
16602
|
s: Hex;
|
|
16595
|
-
to: Address | null;
|
|
16596
16603
|
typeHex: Hex | null;
|
|
16597
16604
|
v: bigint;
|
|
16598
|
-
accessList: viem.AccessList;
|
|
16599
|
-
authorizationList?: undefined | undefined;
|
|
16600
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16601
16605
|
chainId: number;
|
|
16602
|
-
|
|
16603
|
-
|
|
16604
|
-
maxFeePerGas?: undefined | undefined;
|
|
16605
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
16606
|
-
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;
|
|
16607
|
-
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;
|
|
16606
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
|
|
16607
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
|
|
16608
16608
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
16609
16609
|
} | {
|
|
16610
16610
|
type: "eip1559";
|
|
16611
16611
|
value: bigint;
|
|
16612
|
-
|
|
16612
|
+
to: Address | null;
|
|
16613
16613
|
from: Address;
|
|
16614
16614
|
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;
|
|
16615
16624
|
hash: viem.Hash;
|
|
16616
16625
|
input: Hex;
|
|
16617
|
-
nonce: number;
|
|
16618
16626
|
r: Hex;
|
|
16619
16627
|
s: Hex;
|
|
16620
|
-
to: Address | null;
|
|
16621
16628
|
typeHex: Hex | null;
|
|
16622
16629
|
v: bigint;
|
|
16623
|
-
accessList: viem.AccessList;
|
|
16624
|
-
authorizationList?: undefined | undefined;
|
|
16625
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16626
16630
|
chainId: number;
|
|
16627
|
-
|
|
16628
|
-
|
|
16629
|
-
maxFeePerGas: bigint;
|
|
16630
|
-
maxPriorityFeePerGas: bigint;
|
|
16631
|
-
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;
|
|
16632
|
-
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;
|
|
16631
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
|
|
16632
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
|
|
16633
16633
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
16634
16634
|
} | {
|
|
16635
16635
|
type: "eip4844";
|
|
16636
16636
|
value: bigint;
|
|
16637
|
-
|
|
16637
|
+
to: Address | null;
|
|
16638
16638
|
from: Address;
|
|
16639
16639
|
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;
|
|
16640
16649
|
hash: viem.Hash;
|
|
16641
16650
|
input: Hex;
|
|
16642
|
-
nonce: number;
|
|
16643
16651
|
r: Hex;
|
|
16644
16652
|
s: Hex;
|
|
16645
|
-
to: Address | null;
|
|
16646
16653
|
typeHex: Hex | null;
|
|
16647
16654
|
v: bigint;
|
|
16648
|
-
accessList: viem.AccessList;
|
|
16649
|
-
authorizationList?: undefined | undefined;
|
|
16650
|
-
blobVersionedHashes: readonly Hex[];
|
|
16651
16655
|
chainId: number;
|
|
16652
|
-
|
|
16653
|
-
|
|
16654
|
-
maxFeePerGas: bigint;
|
|
16655
|
-
maxPriorityFeePerGas: bigint;
|
|
16656
|
-
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;
|
|
16657
|
-
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;
|
|
16656
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
|
|
16657
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
|
|
16658
16658
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
16659
16659
|
} | {
|
|
16660
16660
|
type: "eip7702";
|
|
16661
16661
|
value: bigint;
|
|
16662
|
-
|
|
16662
|
+
to: Address | null;
|
|
16663
16663
|
from: Address;
|
|
16664
16664
|
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;
|
|
16665
16674
|
hash: viem.Hash;
|
|
16666
16675
|
input: Hex;
|
|
16667
|
-
nonce: number;
|
|
16668
16676
|
r: Hex;
|
|
16669
16677
|
s: Hex;
|
|
16670
|
-
to: Address | null;
|
|
16671
16678
|
typeHex: Hex | null;
|
|
16672
16679
|
v: bigint;
|
|
16673
|
-
accessList: viem.AccessList;
|
|
16674
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
16675
|
-
blobVersionedHashes?: undefined | undefined;
|
|
16676
16680
|
chainId: number;
|
|
16677
|
-
|
|
16678
|
-
|
|
16679
|
-
maxFeePerGas: bigint;
|
|
16680
|
-
maxPriorityFeePerGas: bigint;
|
|
16681
|
-
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;
|
|
16682
|
-
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;
|
|
16681
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
|
|
16682
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
|
|
16683
16683
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
|
|
16684
16684
|
}>;
|
|
16685
16685
|
getTransactionConfirmations: (args: viem.GetTransactionConfirmationsParameters<{
|
|
@@ -20280,7 +20280,7 @@ declare function tenderly_createVnet({
|
|
|
20280
20280
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
20281
20281
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
20282
20282
|
chainId?: number | undefined;
|
|
20283
|
-
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "
|
|
20283
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") ? T_26 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_26 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (viem.UnionRequiredBy<Extract<viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<{
|
|
20284
20284
|
id: number;
|
|
20285
20285
|
blockExplorers?: {
|
|
20286
20286
|
[key: string]: {
|
|
@@ -23703,7 +23703,7 @@ declare function tenderly_createVnet({
|
|
|
23703
23703
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
23704
23704
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
23705
23705
|
chainId?: number | undefined;
|
|
23706
|
-
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "
|
|
23706
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K] } : never>;
|
|
23707
23707
|
readContract: <const abi extends viem.Abi | readonly unknown[], functionName extends viem.ContractFunctionName<abi, "pure" | "view">, const args extends viem.ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: viem.ReadContractParameters<abi, functionName, args>) => Promise<viem.ReadContractReturnType<abi, functionName, args>>;
|
|
23708
23708
|
sendRawTransaction: (args: viem.SendRawTransactionParameters) => Promise<viem.SendRawTransactionReturnType>;
|
|
23709
23709
|
sendRawTransactionSync: (args: viem.SendRawTransactionSyncParameters) => Promise<viem.TransactionReceipt>;
|
|
@@ -27781,7 +27781,7 @@ declare function tenderly_createVnet({
|
|
|
27781
27781
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
27782
27782
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
27783
27783
|
chainId?: number | undefined;
|
|
27784
|
-
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "
|
|
27784
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") ? T_26 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_26 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (viem.UnionRequiredBy<Extract<viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<{
|
|
27785
27785
|
id: number;
|
|
27786
27786
|
blockExplorers?: {
|
|
27787
27787
|
[key: string]: {
|
|
@@ -31210,7 +31210,7 @@ declare function tenderly_createVnet({
|
|
|
31210
31210
|
authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
|
|
31211
31211
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
31212
31212
|
chainId?: number | undefined;
|
|
31213
|
-
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "
|
|
31213
|
+
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K] } : never>;
|
|
31214
31214
|
requestAddresses: () => Promise<viem.RequestAddressesReturnType>;
|
|
31215
31215
|
requestPermissions: (args: viem.RequestPermissionsParameters) => Promise<viem.RequestPermissionsReturnType>;
|
|
31216
31216
|
sendCalls: <const calls extends readonly unknown[], chainOverride extends viem.Chain | undefined = undefined>(parameters: viem.SendCallsParameters<{
|
|
@@ -31340,8 +31340,8 @@ declare function tenderly_createVnet({
|
|
|
31340
31340
|
address: "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9";
|
|
31341
31341
|
type: "json-rpc";
|
|
31342
31342
|
}, chainOverride, calls>) => Promise<{
|
|
31343
|
-
chainId: number;
|
|
31344
31343
|
id: string;
|
|
31344
|
+
chainId: number;
|
|
31345
31345
|
version: string;
|
|
31346
31346
|
atomic: boolean;
|
|
31347
31347
|
capabilities?: {
|
|
@@ -32670,16 +32670,11 @@ declare function tenderly_createVnet({
|
|
|
32670
32670
|
[x: string]: readonly viem.TypedDataParameter[];
|
|
32671
32671
|
[x: `string[${string}]`]: undefined;
|
|
32672
32672
|
[x: `function[${string}]`]: undefined;
|
|
32673
|
-
[x: `uint[${string}]`]: undefined;
|
|
32674
|
-
[x: `uint256[${string}]`]: undefined;
|
|
32675
|
-
[x: `int256[${string}]`]: undefined;
|
|
32676
32673
|
[x: `address[${string}]`]: undefined;
|
|
32677
32674
|
[x: `bool[${string}]`]: undefined;
|
|
32678
32675
|
[x: `bytes[${string}]`]: undefined;
|
|
32679
32676
|
[x: `bytes1[${string}]`]: undefined;
|
|
32680
32677
|
[x: `bytes2[${string}]`]: undefined;
|
|
32681
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
32682
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
32683
32678
|
[x: `bytes3[${string}]`]: undefined;
|
|
32684
32679
|
[x: `bytes4[${string}]`]: undefined;
|
|
32685
32680
|
[x: `bytes5[${string}]`]: undefined;
|
|
@@ -32687,6 +32682,7 @@ declare function tenderly_createVnet({
|
|
|
32687
32682
|
[x: `bytes7[${string}]`]: undefined;
|
|
32688
32683
|
[x: `bytes8[${string}]`]: undefined;
|
|
32689
32684
|
[x: `bytes9[${string}]`]: undefined;
|
|
32685
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
32690
32686
|
[x: `bytes11[${string}]`]: undefined;
|
|
32691
32687
|
[x: `bytes12[${string}]`]: undefined;
|
|
32692
32688
|
[x: `bytes13[${string}]`]: undefined;
|
|
@@ -32698,6 +32694,7 @@ declare function tenderly_createVnet({
|
|
|
32698
32694
|
[x: `bytes19[${string}]`]: undefined;
|
|
32699
32695
|
[x: `bytes20[${string}]`]: undefined;
|
|
32700
32696
|
[x: `bytes21[${string}]`]: undefined;
|
|
32697
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
32701
32698
|
[x: `bytes23[${string}]`]: undefined;
|
|
32702
32699
|
[x: `bytes24[${string}]`]: undefined;
|
|
32703
32700
|
[x: `bytes25[${string}]`]: undefined;
|
|
@@ -32740,6 +32737,8 @@ declare function tenderly_createVnet({
|
|
|
32740
32737
|
[x: `int232[${string}]`]: undefined;
|
|
32741
32738
|
[x: `int240[${string}]`]: undefined;
|
|
32742
32739
|
[x: `int248[${string}]`]: undefined;
|
|
32740
|
+
[x: `int256[${string}]`]: undefined;
|
|
32741
|
+
[x: `uint[${string}]`]: undefined;
|
|
32743
32742
|
[x: `uint8[${string}]`]: undefined;
|
|
32744
32743
|
[x: `uint16[${string}]`]: undefined;
|
|
32745
32744
|
[x: `uint24[${string}]`]: undefined;
|
|
@@ -32771,16 +32770,13 @@ declare function tenderly_createVnet({
|
|
|
32771
32770
|
[x: `uint232[${string}]`]: undefined;
|
|
32772
32771
|
[x: `uint240[${string}]`]: undefined;
|
|
32773
32772
|
[x: `uint248[${string}]`]: undefined;
|
|
32773
|
+
[x: `uint256[${string}]`]: undefined;
|
|
32774
32774
|
string?: undefined;
|
|
32775
|
-
uint256?: undefined;
|
|
32776
|
-
int256?: undefined;
|
|
32777
32775
|
address?: undefined;
|
|
32778
32776
|
bool?: undefined;
|
|
32779
32777
|
bytes?: undefined;
|
|
32780
32778
|
bytes1?: undefined;
|
|
32781
32779
|
bytes2?: undefined;
|
|
32782
|
-
bytes10?: undefined;
|
|
32783
|
-
bytes22?: undefined;
|
|
32784
32780
|
bytes3?: undefined;
|
|
32785
32781
|
bytes4?: undefined;
|
|
32786
32782
|
bytes5?: undefined;
|
|
@@ -32788,6 +32784,7 @@ declare function tenderly_createVnet({
|
|
|
32788
32784
|
bytes7?: undefined;
|
|
32789
32785
|
bytes8?: undefined;
|
|
32790
32786
|
bytes9?: undefined;
|
|
32787
|
+
bytes10?: undefined;
|
|
32791
32788
|
bytes11?: undefined;
|
|
32792
32789
|
bytes12?: undefined;
|
|
32793
32790
|
bytes13?: undefined;
|
|
@@ -32799,6 +32796,7 @@ declare function tenderly_createVnet({
|
|
|
32799
32796
|
bytes19?: undefined;
|
|
32800
32797
|
bytes20?: undefined;
|
|
32801
32798
|
bytes21?: undefined;
|
|
32799
|
+
bytes22?: undefined;
|
|
32802
32800
|
bytes23?: undefined;
|
|
32803
32801
|
bytes24?: undefined;
|
|
32804
32802
|
bytes25?: undefined;
|
|
@@ -32840,6 +32838,7 @@ declare function tenderly_createVnet({
|
|
|
32840
32838
|
int232?: undefined;
|
|
32841
32839
|
int240?: undefined;
|
|
32842
32840
|
int248?: undefined;
|
|
32841
|
+
int256?: undefined;
|
|
32843
32842
|
uint8?: undefined;
|
|
32844
32843
|
uint16?: undefined;
|
|
32845
32844
|
uint24?: undefined;
|
|
@@ -32871,6 +32870,7 @@ declare function tenderly_createVnet({
|
|
|
32871
32870
|
uint232?: undefined;
|
|
32872
32871
|
uint240?: undefined;
|
|
32873
32872
|
uint248?: undefined;
|
|
32873
|
+
uint256?: undefined;
|
|
32874
32874
|
} | {
|
|
32875
32875
|
[key: string]: unknown;
|
|
32876
32876
|
}, primaryType extends string>(args: viem.SignTypedDataParameters<typedData, primaryType, {
|
|
@@ -33485,7 +33485,7 @@ declare const publicRPCs: {
|
|
|
33485
33485
|
readonly 57073: "https://ink-public.nodies.app";
|
|
33486
33486
|
};
|
|
33487
33487
|
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)[];
|
|
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" | "
|
|
33488
|
+
declare const getNetworkEnv: (chainId: SupportedChainIds) => "RPC_MAINNET" | "RPC_BNB" | "RPC_POLYGON" | "RPC_SONIC" | "RPC_ZKSYNC" | "RPC_SONEIUM" | "RPC_MANTLE" | "RPC_BASE" | "RPC_PLASMA" | "RPC_ARBITRUM" | "RPC_CELO" | "RPC_INK" | "RPC_LINEA" | "RPC_BOB" | "RPC_SEPOLIA" | "RPC_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
33489
|
declare function getExplicitRPC(chainId: SupportedChainIds): string;
|
|
33490
33490
|
declare function getAlchemyRPC(chainId: SupportedChainIds, alchemyKey: string): string;
|
|
33491
33491
|
declare function getPublicRpc(chainId: SupportedChainIds): "https://eth.llamarpc.com" | "https://polygon.llamarpc.com" | "https://base.llamarpc.com" | "https://binance.llamarpc.com" | "https://andromeda.metis.io/?owner=1088" | "https://rpc.ankr.com/gnosis" | "https://rpc.scroll.io" | "https://mainnet.era.zksync.io" | "https://rpc.ftm.tools" | "https://api.avax.network/ext/bc/C/rpc" | "https://rpc.linea.build" | "https://rpc.gobob.xyz" | "https://rpc.plasma.to" | "https://ink-public.nodies.app";
|
|
@@ -33703,7 +33703,6 @@ declare const alchemyNetworkMap: {
|
|
|
33703
33703
|
readonly 1868: "soneium-mainnet";
|
|
33704
33704
|
readonly 1946: "soneium-minato";
|
|
33705
33705
|
readonly 2020: "ronin-mainnet";
|
|
33706
|
-
readonly 2021: "ronin-saigon";
|
|
33707
33706
|
readonly 2201: "stable-testnet";
|
|
33708
33707
|
readonly 2442: "polygonzkevm-cardona";
|
|
33709
33708
|
readonly 2523: "frax-sepolia";
|
|
@@ -33763,6 +33762,7 @@ declare const alchemyNetworkMap: {
|
|
|
33763
33762
|
readonly 81457: "blast-mainnet";
|
|
33764
33763
|
readonly 84532: "base-sepolia";
|
|
33765
33764
|
readonly 99999: "adi-testnet";
|
|
33765
|
+
readonly 202601: "ronin-saigon";
|
|
33766
33766
|
readonly 421614: "arb-sepolia";
|
|
33767
33767
|
readonly 510525: "clankermon-mainnet";
|
|
33768
33768
|
readonly 534351: "scroll-sepolia";
|
|
@@ -33782,9 +33782,7 @@ declare const alchemyNetworkMap: {
|
|
|
33782
33782
|
readonly 351243127: "xmtp-ropsten";
|
|
33783
33783
|
readonly 666666666: "degen-mainnet";
|
|
33784
33784
|
readonly 728126428: "tron-mainnet";
|
|
33785
|
-
readonly 994873017: "lumia-prism";
|
|
33786
33785
|
readonly 999999999: "zora-sepolia";
|
|
33787
|
-
readonly 2030232745: "lumia-beam";
|
|
33788
33786
|
readonly 3448148188: "tron-testnet";
|
|
33789
33787
|
readonly null: "sui-testnet";
|
|
33790
33788
|
};
|
|
@@ -35254,6 +35252,10 @@ declare const blockscoutExplorers: {
|
|
|
35254
35252
|
readonly api: "https://aiascan.com/api";
|
|
35255
35253
|
readonly explorer: "https://aiascan.com";
|
|
35256
35254
|
};
|
|
35255
|
+
readonly 1330: {
|
|
35256
|
+
readonly api: "https://onnscan.com/api";
|
|
35257
|
+
readonly explorer: "https://onnscan.com";
|
|
35258
|
+
};
|
|
35257
35259
|
readonly 1338: {
|
|
35258
35260
|
readonly api: "https://blockscout.atlantischain.network/api";
|
|
35259
35261
|
readonly explorer: "https://blockscout.atlantischain.network/";
|
|
@@ -46726,7 +46728,7 @@ declare const chainlinkFeeds: {
|
|
|
46726
46728
|
};
|
|
46727
46729
|
//#endregion
|
|
46728
46730
|
//#region src/ecosystem/generated/hyperRPC.d.ts
|
|
46729
|
-
declare const hyperRPCSupportedNetworks: readonly [1, 10, 14, 30, 42, 50, 51, 56, 97, 100, 130, 137, 143, 146, 148, 169, 204, 250, 252, 255, 288, 324, 480, 841, 999, 1101, 1135, 1284, 1328, 1329, 1750,
|
|
46731
|
+
declare const hyperRPCSupportedNetworks: readonly [1, 10, 14, 30, 42, 50, 51, 56, 97, 100, 130, 137, 143, 146, 148, 169, 204, 250, 252, 255, 288, 324, 480, 841, 999, 1101, 1135, 1284, 1328, 1329, 1750, 1868, 1923, 2741, 2818, 4114, 4200, 4201, 4326, 5000, 5115, 5330, 6342, 6343, 6767, 7000, 7560, 8453, 9745, 9889, 10143, 10200, 14601, 17000, 33111, 34443, 36888, 42161, 42170, 42220, 43113, 43114, 48900, 50104, 57073, 59144, 80002, 80094, 81457, 84532, 88888, 98866, 421614, 534352, 560048, 5042002, 7225878, 7777777, 11155111, 11155420, 168587773, 531050104, 1184075182, 1313161554, 1660990954, 1666600000];
|
|
46730
46732
|
//#endregion
|
|
46731
46733
|
//#region src/ecosystem/generated/tenderly.d.ts
|
|
46732
46734
|
declare const tenderlyNetworkMap: {
|
|
@@ -46774,6 +46776,7 @@ declare const tenderlyNetworkMap: {
|
|
|
46774
46776
|
readonly 9745: "plasma";
|
|
46775
46777
|
readonly 9746: "plasma-testnet";
|
|
46776
46778
|
readonly 10143: "monad-testnet";
|
|
46779
|
+
readonly 10200: "gnosis-chiado-testnet";
|
|
46777
46780
|
readonly 11069: "interval-testnet";
|
|
46778
46781
|
readonly 13371: "immutable";
|
|
46779
46782
|
readonly 13473: "immutable-testnet";
|
|
@@ -46861,7 +46864,6 @@ declare const tenderlyExplorerMap: {
|
|
|
46861
46864
|
readonly 1946: "soneium-minato";
|
|
46862
46865
|
readonly 1952: "xlayer-testnet";
|
|
46863
46866
|
readonly 2020: "ronin";
|
|
46864
|
-
readonly 2021: "ronin-testnet";
|
|
46865
46867
|
readonly 2201: "stable-testnet";
|
|
46866
46868
|
readonly 2391: "tac-spb-testnet";
|
|
46867
46869
|
readonly 2523: "fraxtal-hoodi";
|
|
@@ -46880,6 +46882,7 @@ declare const tenderlyExplorerMap: {
|
|
|
46880
46882
|
readonly 9746: "plasma-testnet";
|
|
46881
46883
|
readonly 9990: "peaq-agung-testnet";
|
|
46882
46884
|
readonly 10143: "monad-testnet";
|
|
46885
|
+
readonly 10200: "gnosis-chiado-testnet";
|
|
46883
46886
|
readonly 11011: "shape-sepolia";
|
|
46884
46887
|
readonly 11069: "interval-testnet";
|
|
46885
46888
|
readonly 13371: "immutable";
|
|
@@ -47137,6 +47140,7 @@ interface Vote {
|
|
|
47137
47140
|
vp: (Scalars['Float'] | null);
|
|
47138
47141
|
vp_by_strategy: ((Scalars['Float'] | null)[] | null);
|
|
47139
47142
|
vp_state: (Scalars['String'] | null);
|
|
47143
|
+
vp_value: (Scalars['Float'] | null);
|
|
47140
47144
|
__typename: 'Vote';
|
|
47141
47145
|
}
|
|
47142
47146
|
interface Alias {
|
|
@@ -47250,6 +47254,7 @@ interface Leaderboard {
|
|
|
47250
47254
|
proposalsCount: (Scalars['Int'] | null);
|
|
47251
47255
|
votesCount: (Scalars['Int'] | null);
|
|
47252
47256
|
lastVote: (Scalars['Int'] | null);
|
|
47257
|
+
vpValue: (Scalars['Float'] | null);
|
|
47253
47258
|
__typename: 'Leaderboard';
|
|
47254
47259
|
}
|
|
47255
47260
|
interface Option {
|
|
@@ -47858,6 +47863,7 @@ interface VoteGenqlSelection {
|
|
|
47858
47863
|
vp?: boolean | number;
|
|
47859
47864
|
vp_by_strategy?: boolean | number;
|
|
47860
47865
|
vp_state?: boolean | number;
|
|
47866
|
+
vp_value?: boolean | number;
|
|
47861
47867
|
__typename?: boolean | number;
|
|
47862
47868
|
__scalar?: boolean | number;
|
|
47863
47869
|
}
|
|
@@ -47984,6 +47990,7 @@ interface LeaderboardGenqlSelection {
|
|
|
47984
47990
|
proposalsCount?: boolean | number;
|
|
47985
47991
|
votesCount?: boolean | number;
|
|
47986
47992
|
lastVote?: boolean | number;
|
|
47993
|
+
vpValue?: boolean | number;
|
|
47987
47994
|
__typename?: boolean | number;
|
|
47988
47995
|
__scalar?: boolean | number;
|
|
47989
47996
|
}
|
|
@@ -48334,5 +48341,13 @@ declare function foundry_getStorageLayout(input: string): FoundryStorage;
|
|
|
48334
48341
|
declare function foundry_format(input: string): string;
|
|
48335
48342
|
declare function diffFoundryStorageLayout(layoutBefore: FoundryStorage, layoutAfter: FoundryStorage): string;
|
|
48336
48343
|
//#endregion
|
|
48337
|
-
|
|
48344
|
+
//#region src/ecosystem/ipfs.d.ts
|
|
48345
|
+
/**
|
|
48346
|
+
* Generates an IPFS CIDv0 hash for the given content
|
|
48347
|
+
* @param content - String or Uint8Array to hash
|
|
48348
|
+
* @returns IPFS CIDv0 hash (starts with "Qm")
|
|
48349
|
+
*/
|
|
48350
|
+
declare function hash(content: string | Uint8Array): Promise<string>;
|
|
48351
|
+
//#endregion
|
|
48352
|
+
export { Aip, AssetInfo, BlockscoutStyleSourceCode, BundleParams, ChainId, ChainList, ContractObject, EVENT_DB, EtherscanStyleSourceCode, ExplorerConfig, FoundryStorage, GenericIndexerArgs, GovernanceContract, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAccessControl_ABI, IAggregatorInterface_ABI, ICLRatePriceCapAdapter_ABI, ICLSynchronicityPriceAdapterBaseToPeg_ABI, ICLSynchronicityPriceAdapterPegToBase_ABI, ICLSynchronicityPriceAdapter_ABI, ICollector_ABI, IDefaultInterestRateStrategyV2_ABI, IERC1967_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IGovernance_ABI, IOwnable_ABI, IPausableUpgradeable_ABI, IPayloadsController_ABI, IPendlePriceCapAdapter_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IPriceCapAdapterBase_ABI, IPriceCapAdapterStable_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, ISafe_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IUmbrellaStakeToken_ABI, IUmbrella_ABI, IWithGuardian_ABI, IWrappedTokenGatewayV3_ABI, IncentivizedERC20_ABI, IndexerTopicState, Input, LTV_PRECISION, Payload, PayloadState, PayloadsControllerContract, Proposal, ProposalState, RAY, ReserveConfiguration, SECONDS_PER_YEAR, SelfdestructCheckState, SoltypeElement, SoltypeType, StandardJsonInput, StateDiff, StateObject, Storage, StorageType, SupportedChainIds, TenderlyLog, TenderlyLogRaw, TenderlySimRequest, TenderlySimulationResponse, TenderlySimulationResponseObject, TenderlyStackTrace, Tenderly_createVnetParamsResponse, Trace, TransactionInfo, Umbrella_IRewardsController_ABI, Umbrella_IRewardsDistributor_ABI, VerificationStatus, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, addAssetPrice, addAssetSymbol, alchemyNetworkMap, alchemySupportedChainIds, assetIndexesToAsset, assetToBase, bitmapToIndexes, blockscoutExplorers, bytes32ToAddress, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, diffFoundryStorageLayout, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, foundry_format, foundry_getStandardJsonInput, foundry_getStorageLayout, genericIndexer, getAlchemyRPC, getBits, getBytesValue, getClient, getCompleteReserveConfiguration, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getDynamicArraySlot, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getMdContractName, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getObjectDiff, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSolidityStorageSlotAddress, getSolidityStorageSlotBytes, getSolidityStorageSlotUint, getSourceCode, getTenderlyRpc, getVerificationStatus, hash, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseFrontmatterMd, parseLogs, prettifyNumber, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderMarkdownStateDiffReport, renderTenderlyReport, routescanExplorers, selfDestructStatusToString, setBits, snapshotClient, tenderlyExplorerMap, tenderlyNetworkMap, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_logsToAbiLogs, tenderly_pingExplorer, tenderly_sim, tenderly_simVnet, toAddressLink, toBinaryString, toTxLink, transformTenderlyStateDiff, validateAip, verificationStatusToString, wadDiv, wadToRay };
|
|
48338
48353
|
//# sourceMappingURL=index.d.mts.map
|