@bgd-labs/toolbox 0.2.16 → 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 +110 -103
- 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 +29 -14
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +3281 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/browser.d.mts
CHANGED
|
@@ -16324,10 +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
|
-
size: bigint;
|
|
16328
16327
|
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
16329
16328
|
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
16330
|
-
gasUsed: bigint;
|
|
16331
16329
|
logsBloom: blockTag extends "pending" ? null : `0x${string}`;
|
|
16332
16330
|
baseFeePerGas: bigint | null;
|
|
16333
16331
|
blobGasUsed: bigint;
|
|
@@ -16335,6 +16333,7 @@ declare function tenderly_createVnet({
|
|
|
16335
16333
|
excessBlobGas: bigint;
|
|
16336
16334
|
extraData: Hex;
|
|
16337
16335
|
gasLimit: bigint;
|
|
16336
|
+
gasUsed: bigint;
|
|
16338
16337
|
miner: Address;
|
|
16339
16338
|
mixHash: viem.Hash;
|
|
16340
16339
|
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
@@ -16342,6 +16341,7 @@ declare function tenderly_createVnet({
|
|
|
16342
16341
|
receiptsRoot: Hex;
|
|
16343
16342
|
sealFields: Hex[];
|
|
16344
16343
|
sha3Uncles: viem.Hash;
|
|
16344
|
+
size: bigint;
|
|
16345
16345
|
stateRoot: viem.Hash;
|
|
16346
16346
|
timestamp: bigint;
|
|
16347
16347
|
totalDifficulty: bigint | null;
|
|
@@ -16350,127 +16350,127 @@ declare function tenderly_createVnet({
|
|
|
16350
16350
|
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
16351
16351
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
16352
16352
|
transactions: includeTransactions extends true ? ({
|
|
16353
|
-
s: Hex;
|
|
16354
16353
|
type: "legacy";
|
|
16355
|
-
|
|
16354
|
+
value: bigint;
|
|
16355
|
+
to: Address | null;
|
|
16356
16356
|
from: Address;
|
|
16357
16357
|
gas: bigint;
|
|
16358
16358
|
nonce: number;
|
|
16359
|
-
to: Address | null;
|
|
16360
|
-
value: bigint;
|
|
16361
|
-
v: bigint;
|
|
16362
|
-
yParity?: undefined | undefined;
|
|
16363
16359
|
blobVersionedHashes?: undefined | undefined;
|
|
16364
16360
|
gasPrice: bigint;
|
|
16365
16361
|
maxFeePerBlobGas?: undefined | undefined;
|
|
16366
16362
|
maxFeePerGas?: undefined | undefined;
|
|
16367
16363
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
16368
|
-
chainId?: number | undefined;
|
|
16369
16364
|
accessList?: undefined | undefined;
|
|
16370
16365
|
authorizationList?: undefined | undefined;
|
|
16366
|
+
yParity?: undefined | undefined;
|
|
16371
16367
|
hash: viem.Hash;
|
|
16372
16368
|
input: Hex;
|
|
16369
|
+
r: Hex;
|
|
16370
|
+
s: Hex;
|
|
16373
16371
|
typeHex: Hex | null;
|
|
16372
|
+
v: bigint;
|
|
16373
|
+
chainId?: number | undefined;
|
|
16374
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
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
|
-
s: Hex;
|
|
16379
16378
|
type: "eip2930";
|
|
16380
|
-
|
|
16379
|
+
value: bigint;
|
|
16380
|
+
to: Address | null;
|
|
16381
16381
|
from: Address;
|
|
16382
16382
|
gas: bigint;
|
|
16383
16383
|
nonce: number;
|
|
16384
|
-
to: Address | null;
|
|
16385
|
-
value: bigint;
|
|
16386
|
-
v: bigint;
|
|
16387
|
-
yParity: number;
|
|
16388
16384
|
blobVersionedHashes?: undefined | undefined;
|
|
16389
16385
|
gasPrice: bigint;
|
|
16390
16386
|
maxFeePerBlobGas?: undefined | undefined;
|
|
16391
16387
|
maxFeePerGas?: undefined | undefined;
|
|
16392
16388
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
16393
|
-
chainId: number;
|
|
16394
16389
|
accessList: viem.AccessList;
|
|
16395
16390
|
authorizationList?: undefined | undefined;
|
|
16391
|
+
yParity: number;
|
|
16396
16392
|
hash: viem.Hash;
|
|
16397
16393
|
input: Hex;
|
|
16394
|
+
r: Hex;
|
|
16395
|
+
s: Hex;
|
|
16398
16396
|
typeHex: Hex | null;
|
|
16397
|
+
v: bigint;
|
|
16398
|
+
chainId: number;
|
|
16399
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
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
|
-
s: Hex;
|
|
16404
16403
|
type: "eip1559";
|
|
16405
|
-
|
|
16404
|
+
value: bigint;
|
|
16405
|
+
to: Address | null;
|
|
16406
16406
|
from: Address;
|
|
16407
16407
|
gas: bigint;
|
|
16408
16408
|
nonce: number;
|
|
16409
|
-
to: Address | null;
|
|
16410
|
-
value: bigint;
|
|
16411
|
-
v: bigint;
|
|
16412
|
-
yParity: number;
|
|
16413
16409
|
blobVersionedHashes?: undefined | undefined;
|
|
16414
16410
|
gasPrice?: undefined | undefined;
|
|
16415
16411
|
maxFeePerBlobGas?: undefined | undefined;
|
|
16416
16412
|
maxFeePerGas: bigint;
|
|
16417
16413
|
maxPriorityFeePerGas: bigint;
|
|
16418
|
-
chainId: number;
|
|
16419
16414
|
accessList: viem.AccessList;
|
|
16420
16415
|
authorizationList?: undefined | undefined;
|
|
16416
|
+
yParity: number;
|
|
16421
16417
|
hash: viem.Hash;
|
|
16422
16418
|
input: Hex;
|
|
16419
|
+
r: Hex;
|
|
16420
|
+
s: Hex;
|
|
16423
16421
|
typeHex: Hex | null;
|
|
16422
|
+
v: bigint;
|
|
16423
|
+
chainId: number;
|
|
16424
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
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
|
-
s: Hex;
|
|
16429
16428
|
type: "eip4844";
|
|
16430
|
-
|
|
16429
|
+
value: bigint;
|
|
16430
|
+
to: Address | null;
|
|
16431
16431
|
from: Address;
|
|
16432
16432
|
gas: bigint;
|
|
16433
16433
|
nonce: number;
|
|
16434
|
-
to: Address | null;
|
|
16435
|
-
value: bigint;
|
|
16436
|
-
v: bigint;
|
|
16437
|
-
yParity: number;
|
|
16438
16434
|
blobVersionedHashes: readonly Hex[];
|
|
16439
16435
|
gasPrice?: undefined | undefined;
|
|
16440
16436
|
maxFeePerBlobGas: bigint;
|
|
16441
16437
|
maxFeePerGas: bigint;
|
|
16442
16438
|
maxPriorityFeePerGas: bigint;
|
|
16443
|
-
chainId: number;
|
|
16444
16439
|
accessList: viem.AccessList;
|
|
16445
16440
|
authorizationList?: undefined | undefined;
|
|
16441
|
+
yParity: number;
|
|
16446
16442
|
hash: viem.Hash;
|
|
16447
16443
|
input: Hex;
|
|
16444
|
+
r: Hex;
|
|
16445
|
+
s: Hex;
|
|
16448
16446
|
typeHex: Hex | null;
|
|
16447
|
+
v: bigint;
|
|
16448
|
+
chainId: number;
|
|
16449
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
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
|
-
s: Hex;
|
|
16454
16453
|
type: "eip7702";
|
|
16455
|
-
|
|
16454
|
+
value: bigint;
|
|
16455
|
+
to: Address | null;
|
|
16456
16456
|
from: Address;
|
|
16457
16457
|
gas: bigint;
|
|
16458
16458
|
nonce: number;
|
|
16459
|
-
to: Address | null;
|
|
16460
|
-
value: bigint;
|
|
16461
|
-
v: bigint;
|
|
16462
|
-
yParity: number;
|
|
16463
16459
|
blobVersionedHashes?: undefined | undefined;
|
|
16464
16460
|
gasPrice?: undefined | undefined;
|
|
16465
16461
|
maxFeePerBlobGas?: undefined | undefined;
|
|
16466
16462
|
maxFeePerGas: bigint;
|
|
16467
16463
|
maxPriorityFeePerGas: bigint;
|
|
16468
|
-
chainId: number;
|
|
16469
16464
|
accessList: viem.AccessList;
|
|
16470
16465
|
authorizationList: viem.SignedAuthorizationList;
|
|
16466
|
+
yParity: number;
|
|
16471
16467
|
hash: viem.Hash;
|
|
16472
16468
|
input: Hex;
|
|
16469
|
+
r: Hex;
|
|
16470
|
+
s: Hex;
|
|
16473
16471
|
typeHex: Hex | null;
|
|
16472
|
+
v: bigint;
|
|
16473
|
+
chainId: number;
|
|
16474
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
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;
|
|
@@ -16557,127 +16557,127 @@ declare function tenderly_createVnet({
|
|
|
16557
16557
|
} | undefined) => Promise<viem.EstimateMaxPriorityFeePerGasReturnType>;
|
|
16558
16558
|
getStorageAt: (args: viem.GetStorageAtParameters) => Promise<viem.GetStorageAtReturnType>;
|
|
16559
16559
|
getTransaction: <blockTag extends viem.BlockTag = "latest">(args: viem.GetTransactionParameters<blockTag>) => Promise<{
|
|
16560
|
-
s: Hex;
|
|
16561
16560
|
type: "legacy";
|
|
16562
|
-
|
|
16561
|
+
value: bigint;
|
|
16562
|
+
to: Address | null;
|
|
16563
16563
|
from: Address;
|
|
16564
16564
|
gas: bigint;
|
|
16565
16565
|
nonce: number;
|
|
16566
|
-
to: Address | null;
|
|
16567
|
-
value: bigint;
|
|
16568
|
-
v: bigint;
|
|
16569
|
-
yParity?: undefined | undefined;
|
|
16570
16566
|
blobVersionedHashes?: undefined | undefined;
|
|
16571
16567
|
gasPrice: bigint;
|
|
16572
16568
|
maxFeePerBlobGas?: undefined | undefined;
|
|
16573
16569
|
maxFeePerGas?: undefined | undefined;
|
|
16574
16570
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
16575
|
-
chainId?: number | undefined;
|
|
16576
16571
|
accessList?: undefined | undefined;
|
|
16577
16572
|
authorizationList?: undefined | undefined;
|
|
16573
|
+
yParity?: undefined | undefined;
|
|
16578
16574
|
hash: viem.Hash;
|
|
16579
16575
|
input: Hex;
|
|
16576
|
+
r: Hex;
|
|
16577
|
+
s: Hex;
|
|
16580
16578
|
typeHex: Hex | null;
|
|
16579
|
+
v: bigint;
|
|
16580
|
+
chainId?: number | undefined;
|
|
16581
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
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
|
-
s: Hex;
|
|
16586
16585
|
type: "eip2930";
|
|
16587
|
-
|
|
16586
|
+
value: bigint;
|
|
16587
|
+
to: Address | null;
|
|
16588
16588
|
from: Address;
|
|
16589
16589
|
gas: bigint;
|
|
16590
16590
|
nonce: number;
|
|
16591
|
-
to: Address | null;
|
|
16592
|
-
value: bigint;
|
|
16593
|
-
v: bigint;
|
|
16594
|
-
yParity: number;
|
|
16595
16591
|
blobVersionedHashes?: undefined | undefined;
|
|
16596
16592
|
gasPrice: bigint;
|
|
16597
16593
|
maxFeePerBlobGas?: undefined | undefined;
|
|
16598
16594
|
maxFeePerGas?: undefined | undefined;
|
|
16599
16595
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
16600
|
-
chainId: number;
|
|
16601
16596
|
accessList: viem.AccessList;
|
|
16602
16597
|
authorizationList?: undefined | undefined;
|
|
16598
|
+
yParity: number;
|
|
16603
16599
|
hash: viem.Hash;
|
|
16604
16600
|
input: Hex;
|
|
16601
|
+
r: Hex;
|
|
16602
|
+
s: Hex;
|
|
16605
16603
|
typeHex: Hex | null;
|
|
16604
|
+
v: bigint;
|
|
16605
|
+
chainId: number;
|
|
16606
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
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
|
-
s: Hex;
|
|
16611
16610
|
type: "eip1559";
|
|
16612
|
-
|
|
16611
|
+
value: bigint;
|
|
16612
|
+
to: Address | null;
|
|
16613
16613
|
from: Address;
|
|
16614
16614
|
gas: bigint;
|
|
16615
16615
|
nonce: number;
|
|
16616
|
-
to: Address | null;
|
|
16617
|
-
value: bigint;
|
|
16618
|
-
v: bigint;
|
|
16619
|
-
yParity: number;
|
|
16620
16616
|
blobVersionedHashes?: undefined | undefined;
|
|
16621
16617
|
gasPrice?: undefined | undefined;
|
|
16622
16618
|
maxFeePerBlobGas?: undefined | undefined;
|
|
16623
16619
|
maxFeePerGas: bigint;
|
|
16624
16620
|
maxPriorityFeePerGas: bigint;
|
|
16625
|
-
chainId: number;
|
|
16626
16621
|
accessList: viem.AccessList;
|
|
16627
16622
|
authorizationList?: undefined | undefined;
|
|
16623
|
+
yParity: number;
|
|
16628
16624
|
hash: viem.Hash;
|
|
16629
16625
|
input: Hex;
|
|
16626
|
+
r: Hex;
|
|
16627
|
+
s: Hex;
|
|
16630
16628
|
typeHex: Hex | null;
|
|
16629
|
+
v: bigint;
|
|
16630
|
+
chainId: number;
|
|
16631
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
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
|
-
s: Hex;
|
|
16636
16635
|
type: "eip4844";
|
|
16637
|
-
|
|
16636
|
+
value: bigint;
|
|
16637
|
+
to: Address | null;
|
|
16638
16638
|
from: Address;
|
|
16639
16639
|
gas: bigint;
|
|
16640
16640
|
nonce: number;
|
|
16641
|
-
to: Address | null;
|
|
16642
|
-
value: bigint;
|
|
16643
|
-
v: bigint;
|
|
16644
|
-
yParity: number;
|
|
16645
16641
|
blobVersionedHashes: readonly Hex[];
|
|
16646
16642
|
gasPrice?: undefined | undefined;
|
|
16647
16643
|
maxFeePerBlobGas: bigint;
|
|
16648
16644
|
maxFeePerGas: bigint;
|
|
16649
16645
|
maxPriorityFeePerGas: bigint;
|
|
16650
|
-
chainId: number;
|
|
16651
16646
|
accessList: viem.AccessList;
|
|
16652
16647
|
authorizationList?: undefined | undefined;
|
|
16648
|
+
yParity: number;
|
|
16653
16649
|
hash: viem.Hash;
|
|
16654
16650
|
input: Hex;
|
|
16651
|
+
r: Hex;
|
|
16652
|
+
s: Hex;
|
|
16655
16653
|
typeHex: Hex | null;
|
|
16654
|
+
v: bigint;
|
|
16655
|
+
chainId: number;
|
|
16656
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
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
|
-
s: Hex;
|
|
16661
16660
|
type: "eip7702";
|
|
16662
|
-
|
|
16661
|
+
value: bigint;
|
|
16662
|
+
to: Address | null;
|
|
16663
16663
|
from: Address;
|
|
16664
16664
|
gas: bigint;
|
|
16665
16665
|
nonce: number;
|
|
16666
|
-
to: Address | null;
|
|
16667
|
-
value: bigint;
|
|
16668
|
-
v: bigint;
|
|
16669
|
-
yParity: number;
|
|
16670
16666
|
blobVersionedHashes?: undefined | undefined;
|
|
16671
16667
|
gasPrice?: undefined | undefined;
|
|
16672
16668
|
maxFeePerBlobGas?: undefined | undefined;
|
|
16673
16669
|
maxFeePerGas: bigint;
|
|
16674
16670
|
maxPriorityFeePerGas: bigint;
|
|
16675
|
-
chainId: number;
|
|
16676
16671
|
accessList: viem.AccessList;
|
|
16677
16672
|
authorizationList: viem.SignedAuthorizationList;
|
|
16673
|
+
yParity: number;
|
|
16678
16674
|
hash: viem.Hash;
|
|
16679
16675
|
input: Hex;
|
|
16676
|
+
r: Hex;
|
|
16677
|
+
s: Hex;
|
|
16680
16678
|
typeHex: Hex | null;
|
|
16679
|
+
v: bigint;
|
|
16680
|
+
chainId: number;
|
|
16681
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
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;
|
|
@@ -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<{
|
|
@@ -31342,6 +31342,7 @@ declare function tenderly_createVnet({
|
|
|
31342
31342
|
}, chainOverride, calls>) => Promise<{
|
|
31343
31343
|
id: string;
|
|
31344
31344
|
chainId: number;
|
|
31345
|
+
version: string;
|
|
31345
31346
|
atomic: boolean;
|
|
31346
31347
|
capabilities?: {
|
|
31347
31348
|
[key: string]: any;
|
|
@@ -31349,7 +31350,6 @@ declare function tenderly_createVnet({
|
|
|
31349
31350
|
[x: string]: any;
|
|
31350
31351
|
} | undefined;
|
|
31351
31352
|
receipts?: viem.WalletCallReceipt<bigint, "success" | "reverted">[] | undefined;
|
|
31352
|
-
version: string;
|
|
31353
31353
|
statusCode: number;
|
|
31354
31354
|
status: "pending" | "success" | "failure" | undefined;
|
|
31355
31355
|
}>;
|
|
@@ -32670,23 +32670,19 @@ 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: `bytes[${string}]`]: undefined;
|
|
32674
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
32675
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
32676
|
-
[x: `uint256[${string}]`]: undefined;
|
|
32677
|
-
[x: `int256[${string}]`]: undefined;
|
|
32678
32673
|
[x: `address[${string}]`]: undefined;
|
|
32679
32674
|
[x: `bool[${string}]`]: undefined;
|
|
32680
|
-
[x: `
|
|
32675
|
+
[x: `bytes[${string}]`]: undefined;
|
|
32681
32676
|
[x: `bytes1[${string}]`]: undefined;
|
|
32682
32677
|
[x: `bytes2[${string}]`]: undefined;
|
|
32683
|
-
[x: `
|
|
32678
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
32684
32679
|
[x: `bytes4[${string}]`]: undefined;
|
|
32685
32680
|
[x: `bytes5[${string}]`]: undefined;
|
|
32686
32681
|
[x: `bytes6[${string}]`]: undefined;
|
|
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;
|
|
@@ -32707,14 +32704,15 @@ declare function tenderly_createVnet({
|
|
|
32707
32704
|
[x: `bytes29[${string}]`]: undefined;
|
|
32708
32705
|
[x: `bytes30[${string}]`]: undefined;
|
|
32709
32706
|
[x: `bytes31[${string}]`]: undefined;
|
|
32707
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
32710
32708
|
[x: `int[${string}]`]: undefined;
|
|
32711
|
-
[x: `int56[${string}]`]: undefined;
|
|
32712
32709
|
[x: `int8[${string}]`]: undefined;
|
|
32713
32710
|
[x: `int16[${string}]`]: undefined;
|
|
32714
32711
|
[x: `int24[${string}]`]: undefined;
|
|
32715
32712
|
[x: `int32[${string}]`]: undefined;
|
|
32716
32713
|
[x: `int40[${string}]`]: undefined;
|
|
32717
32714
|
[x: `int48[${string}]`]: undefined;
|
|
32715
|
+
[x: `int56[${string}]`]: undefined;
|
|
32718
32716
|
[x: `int64[${string}]`]: undefined;
|
|
32719
32717
|
[x: `int72[${string}]`]: undefined;
|
|
32720
32718
|
[x: `int80[${string}]`]: undefined;
|
|
@@ -32739,14 +32737,15 @@ declare function tenderly_createVnet({
|
|
|
32739
32737
|
[x: `int232[${string}]`]: undefined;
|
|
32740
32738
|
[x: `int240[${string}]`]: undefined;
|
|
32741
32739
|
[x: `int248[${string}]`]: undefined;
|
|
32740
|
+
[x: `int256[${string}]`]: undefined;
|
|
32742
32741
|
[x: `uint[${string}]`]: undefined;
|
|
32743
|
-
[x: `uint56[${string}]`]: undefined;
|
|
32744
32742
|
[x: `uint8[${string}]`]: undefined;
|
|
32745
32743
|
[x: `uint16[${string}]`]: undefined;
|
|
32746
32744
|
[x: `uint24[${string}]`]: undefined;
|
|
32747
32745
|
[x: `uint32[${string}]`]: undefined;
|
|
32748
32746
|
[x: `uint40[${string}]`]: undefined;
|
|
32749
32747
|
[x: `uint48[${string}]`]: undefined;
|
|
32748
|
+
[x: `uint56[${string}]`]: undefined;
|
|
32750
32749
|
[x: `uint64[${string}]`]: undefined;
|
|
32751
32750
|
[x: `uint72[${string}]`]: undefined;
|
|
32752
32751
|
[x: `uint80[${string}]`]: undefined;
|
|
@@ -32771,24 +32770,21 @@ 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
|
-
bytes?: undefined;
|
|
32776
|
-
bytes3?: undefined;
|
|
32777
|
-
bytes32?: undefined;
|
|
32778
|
-
uint256?: undefined;
|
|
32779
|
-
int256?: undefined;
|
|
32780
32775
|
address?: undefined;
|
|
32781
32776
|
bool?: undefined;
|
|
32782
|
-
|
|
32777
|
+
bytes?: undefined;
|
|
32783
32778
|
bytes1?: undefined;
|
|
32784
32779
|
bytes2?: undefined;
|
|
32785
|
-
|
|
32780
|
+
bytes3?: undefined;
|
|
32786
32781
|
bytes4?: undefined;
|
|
32787
32782
|
bytes5?: undefined;
|
|
32788
32783
|
bytes6?: undefined;
|
|
32789
32784
|
bytes7?: undefined;
|
|
32790
32785
|
bytes8?: undefined;
|
|
32791
32786
|
bytes9?: undefined;
|
|
32787
|
+
bytes10?: undefined;
|
|
32792
32788
|
bytes11?: undefined;
|
|
32793
32789
|
bytes12?: undefined;
|
|
32794
32790
|
bytes13?: undefined;
|
|
@@ -32800,6 +32796,7 @@ declare function tenderly_createVnet({
|
|
|
32800
32796
|
bytes19?: undefined;
|
|
32801
32797
|
bytes20?: undefined;
|
|
32802
32798
|
bytes21?: undefined;
|
|
32799
|
+
bytes22?: undefined;
|
|
32803
32800
|
bytes23?: undefined;
|
|
32804
32801
|
bytes24?: undefined;
|
|
32805
32802
|
bytes25?: undefined;
|
|
@@ -32809,13 +32806,14 @@ declare function tenderly_createVnet({
|
|
|
32809
32806
|
bytes29?: undefined;
|
|
32810
32807
|
bytes30?: undefined;
|
|
32811
32808
|
bytes31?: undefined;
|
|
32812
|
-
|
|
32809
|
+
bytes32?: undefined;
|
|
32813
32810
|
int8?: undefined;
|
|
32814
32811
|
int16?: undefined;
|
|
32815
32812
|
int24?: undefined;
|
|
32816
32813
|
int32?: undefined;
|
|
32817
32814
|
int40?: undefined;
|
|
32818
32815
|
int48?: undefined;
|
|
32816
|
+
int56?: undefined;
|
|
32819
32817
|
int64?: undefined;
|
|
32820
32818
|
int72?: undefined;
|
|
32821
32819
|
int80?: undefined;
|
|
@@ -32840,13 +32838,14 @@ declare function tenderly_createVnet({
|
|
|
32840
32838
|
int232?: undefined;
|
|
32841
32839
|
int240?: undefined;
|
|
32842
32840
|
int248?: undefined;
|
|
32843
|
-
|
|
32841
|
+
int256?: undefined;
|
|
32844
32842
|
uint8?: undefined;
|
|
32845
32843
|
uint16?: undefined;
|
|
32846
32844
|
uint24?: undefined;
|
|
32847
32845
|
uint32?: undefined;
|
|
32848
32846
|
uint40?: undefined;
|
|
32849
32847
|
uint48?: undefined;
|
|
32848
|
+
uint56?: undefined;
|
|
32850
32849
|
uint64?: undefined;
|
|
32851
32850
|
uint72?: undefined;
|
|
32852
32851
|
uint80?: 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, {
|
|
@@ -33078,7 +33078,7 @@ declare function tenderly_createVnet({
|
|
|
33078
33078
|
}, {
|
|
33079
33079
|
address: "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9";
|
|
33080
33080
|
type: "json-rpc";
|
|
33081
|
-
}>, "
|
|
33081
|
+
}>, "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "prepareTransactionRequest" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<viem.WalletActions<{
|
|
33082
33082
|
id: number;
|
|
33083
33083
|
blockExplorers?: {
|
|
33084
33084
|
[key: string]: {
|
|
@@ -33484,8 +33484,8 @@ declare const publicRPCs: {
|
|
|
33484
33484
|
readonly 9745: "https://rpc.plasma.to";
|
|
33485
33485
|
readonly 57073: "https://ink-public.nodies.app";
|
|
33486
33486
|
};
|
|
33487
|
-
declare const alchemySupportedChainIds: (10 |
|
|
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" | "
|
|
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" | "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
|
}
|