@bgd-labs/toolbox 0.2.14 → 0.2.15
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 +18 -14
- package/dist/browser.d.mts.map +1 -1
- package/dist/browser.mjs +8 -4
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +148 -144
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +8 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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
|
-
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
16328
16327
|
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
16328
|
+
nonce: 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
|
+
yParity?: undefined | undefined;
|
|
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;
|
|
16367
16358
|
hash: viem.Hash;
|
|
16368
16359
|
input: Hex;
|
|
16360
|
+
nonce: number;
|
|
16369
16361
|
r: Hex;
|
|
16370
16362
|
s: Hex;
|
|
16363
|
+
to: Address | null;
|
|
16371
16364
|
typeHex: Hex | null;
|
|
16372
16365
|
v: bigint;
|
|
16366
|
+
accessList?: undefined | undefined;
|
|
16367
|
+
authorizationList?: undefined | undefined;
|
|
16368
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16373
16369
|
chainId?: number | undefined;
|
|
16374
|
-
|
|
16375
|
-
|
|
16370
|
+
gasPrice: bigint;
|
|
16371
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
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
|
+
yParity: number;
|
|
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;
|
|
16392
16383
|
hash: viem.Hash;
|
|
16393
16384
|
input: Hex;
|
|
16385
|
+
nonce: number;
|
|
16394
16386
|
r: Hex;
|
|
16395
16387
|
s: Hex;
|
|
16388
|
+
to: Address | null;
|
|
16396
16389
|
typeHex: Hex | null;
|
|
16397
16390
|
v: bigint;
|
|
16391
|
+
accessList: viem.AccessList;
|
|
16392
|
+
authorizationList?: undefined | undefined;
|
|
16393
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16398
16394
|
chainId: number;
|
|
16399
|
-
|
|
16400
|
-
|
|
16395
|
+
gasPrice: bigint;
|
|
16396
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
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
|
+
yParity: number;
|
|
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;
|
|
16417
16408
|
hash: viem.Hash;
|
|
16418
16409
|
input: Hex;
|
|
16410
|
+
nonce: number;
|
|
16419
16411
|
r: Hex;
|
|
16420
16412
|
s: Hex;
|
|
16413
|
+
to: Address | null;
|
|
16421
16414
|
typeHex: Hex | null;
|
|
16422
16415
|
v: bigint;
|
|
16416
|
+
accessList: viem.AccessList;
|
|
16417
|
+
authorizationList?: undefined | undefined;
|
|
16418
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16423
16419
|
chainId: number;
|
|
16424
|
-
|
|
16425
|
-
|
|
16420
|
+
gasPrice?: undefined | undefined;
|
|
16421
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
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
|
+
yParity: number;
|
|
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;
|
|
16442
16433
|
hash: viem.Hash;
|
|
16443
16434
|
input: Hex;
|
|
16435
|
+
nonce: number;
|
|
16444
16436
|
r: Hex;
|
|
16445
16437
|
s: Hex;
|
|
16438
|
+
to: Address | null;
|
|
16446
16439
|
typeHex: Hex | null;
|
|
16447
16440
|
v: bigint;
|
|
16441
|
+
accessList: viem.AccessList;
|
|
16442
|
+
authorizationList?: undefined | undefined;
|
|
16443
|
+
blobVersionedHashes: readonly Hex[];
|
|
16448
16444
|
chainId: number;
|
|
16449
|
-
|
|
16450
|
-
|
|
16445
|
+
gasPrice?: undefined | undefined;
|
|
16446
|
+
maxFeePerBlobGas: bigint;
|
|
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;
|
|
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
|
+
yParity: number;
|
|
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;
|
|
16467
16458
|
hash: viem.Hash;
|
|
16468
16459
|
input: Hex;
|
|
16460
|
+
nonce: number;
|
|
16469
16461
|
r: Hex;
|
|
16470
16462
|
s: Hex;
|
|
16463
|
+
to: Address | null;
|
|
16471
16464
|
typeHex: Hex | null;
|
|
16472
16465
|
v: bigint;
|
|
16466
|
+
accessList: viem.AccessList;
|
|
16467
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
16468
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16473
16469
|
chainId: number;
|
|
16474
|
-
|
|
16475
|
-
|
|
16470
|
+
gasPrice?: undefined | undefined;
|
|
16471
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
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
|
+
yParity?: undefined | undefined;
|
|
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;
|
|
16574
16565
|
hash: viem.Hash;
|
|
16575
16566
|
input: Hex;
|
|
16567
|
+
nonce: number;
|
|
16576
16568
|
r: Hex;
|
|
16577
16569
|
s: Hex;
|
|
16570
|
+
to: Address | null;
|
|
16578
16571
|
typeHex: Hex | null;
|
|
16579
16572
|
v: bigint;
|
|
16573
|
+
accessList?: undefined | undefined;
|
|
16574
|
+
authorizationList?: undefined | undefined;
|
|
16575
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16580
16576
|
chainId?: number | undefined;
|
|
16581
|
-
|
|
16582
|
-
|
|
16577
|
+
gasPrice: bigint;
|
|
16578
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
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
|
+
yParity: number;
|
|
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;
|
|
16599
16590
|
hash: viem.Hash;
|
|
16600
16591
|
input: Hex;
|
|
16592
|
+
nonce: number;
|
|
16601
16593
|
r: Hex;
|
|
16602
16594
|
s: Hex;
|
|
16595
|
+
to: Address | null;
|
|
16603
16596
|
typeHex: Hex | null;
|
|
16604
16597
|
v: bigint;
|
|
16598
|
+
accessList: viem.AccessList;
|
|
16599
|
+
authorizationList?: undefined | undefined;
|
|
16600
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16605
16601
|
chainId: number;
|
|
16606
|
-
|
|
16607
|
-
|
|
16602
|
+
gasPrice: bigint;
|
|
16603
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
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
|
+
yParity: number;
|
|
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;
|
|
16624
16615
|
hash: viem.Hash;
|
|
16625
16616
|
input: Hex;
|
|
16617
|
+
nonce: number;
|
|
16626
16618
|
r: Hex;
|
|
16627
16619
|
s: Hex;
|
|
16620
|
+
to: Address | null;
|
|
16628
16621
|
typeHex: Hex | null;
|
|
16629
16622
|
v: bigint;
|
|
16623
|
+
accessList: viem.AccessList;
|
|
16624
|
+
authorizationList?: undefined | undefined;
|
|
16625
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16630
16626
|
chainId: number;
|
|
16631
|
-
|
|
16632
|
-
|
|
16627
|
+
gasPrice?: undefined | undefined;
|
|
16628
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
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
|
+
yParity: number;
|
|
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;
|
|
16649
16640
|
hash: viem.Hash;
|
|
16650
16641
|
input: Hex;
|
|
16642
|
+
nonce: number;
|
|
16651
16643
|
r: Hex;
|
|
16652
16644
|
s: Hex;
|
|
16645
|
+
to: Address | null;
|
|
16653
16646
|
typeHex: Hex | null;
|
|
16654
16647
|
v: bigint;
|
|
16648
|
+
accessList: viem.AccessList;
|
|
16649
|
+
authorizationList?: undefined | undefined;
|
|
16650
|
+
blobVersionedHashes: readonly Hex[];
|
|
16655
16651
|
chainId: number;
|
|
16656
|
-
|
|
16657
|
-
|
|
16652
|
+
gasPrice?: undefined | undefined;
|
|
16653
|
+
maxFeePerBlobGas: bigint;
|
|
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;
|
|
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
|
+
yParity: number;
|
|
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;
|
|
16674
16665
|
hash: viem.Hash;
|
|
16675
16666
|
input: Hex;
|
|
16667
|
+
nonce: number;
|
|
16676
16668
|
r: Hex;
|
|
16677
16669
|
s: Hex;
|
|
16670
|
+
to: Address | null;
|
|
16678
16671
|
typeHex: Hex | null;
|
|
16679
16672
|
v: bigint;
|
|
16673
|
+
accessList: viem.AccessList;
|
|
16674
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
16675
|
+
blobVersionedHashes?: undefined | undefined;
|
|
16680
16676
|
chainId: number;
|
|
16681
|
-
|
|
16682
|
-
|
|
16677
|
+
gasPrice?: undefined | undefined;
|
|
16678
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
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;
|
|
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" | "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
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" | "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
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" | "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
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" | "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
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
|
-
id: string;
|
|
31344
31343
|
chainId: number;
|
|
31344
|
+
id: string;
|
|
31345
31345
|
version: string;
|
|
31346
31346
|
atomic: boolean;
|
|
31347
31347
|
capabilities?: {
|
|
@@ -32670,17 +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: `uint[${string}]`]: undefined;
|
|
32674
|
+
[x: `uint256[${string}]`]: undefined;
|
|
32675
|
+
[x: `int256[${string}]`]: undefined;
|
|
32673
32676
|
[x: `address[${string}]`]: undefined;
|
|
32674
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
32675
32677
|
[x: `bool[${string}]`]: undefined;
|
|
32676
32678
|
[x: `bytes[${string}]`]: undefined;
|
|
32677
32679
|
[x: `bytes1[${string}]`]: undefined;
|
|
32678
32680
|
[x: `bytes2[${string}]`]: undefined;
|
|
32679
32681
|
[x: `bytes10[${string}]`]: undefined;
|
|
32680
|
-
[x: `
|
|
32682
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
32681
32683
|
[x: `bytes3[${string}]`]: undefined;
|
|
32682
32684
|
[x: `bytes4[${string}]`]: undefined;
|
|
32683
|
-
[x: `
|
|
32685
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
32684
32686
|
[x: `bytes6[${string}]`]: undefined;
|
|
32685
32687
|
[x: `bytes7[${string}]`]: undefined;
|
|
32686
32688
|
[x: `bytes8[${string}]`]: undefined;
|
|
@@ -32696,7 +32698,6 @@ declare function tenderly_createVnet({
|
|
|
32696
32698
|
[x: `bytes19[${string}]`]: undefined;
|
|
32697
32699
|
[x: `bytes20[${string}]`]: undefined;
|
|
32698
32700
|
[x: `bytes21[${string}]`]: undefined;
|
|
32699
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
32700
32701
|
[x: `bytes23[${string}]`]: undefined;
|
|
32701
32702
|
[x: `bytes24[${string}]`]: undefined;
|
|
32702
32703
|
[x: `bytes25[${string}]`]: undefined;
|
|
@@ -32704,7 +32705,9 @@ declare function tenderly_createVnet({
|
|
|
32704
32705
|
[x: `bytes27[${string}]`]: undefined;
|
|
32705
32706
|
[x: `bytes28[${string}]`]: undefined;
|
|
32706
32707
|
[x: `bytes29[${string}]`]: undefined;
|
|
32708
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
32707
32709
|
[x: `bytes31[${string}]`]: undefined;
|
|
32710
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
32708
32711
|
[x: `int[${string}]`]: undefined;
|
|
32709
32712
|
[x: `int8[${string}]`]: undefined;
|
|
32710
32713
|
[x: `int16[${string}]`]: undefined;
|
|
@@ -32737,8 +32740,6 @@ declare function tenderly_createVnet({
|
|
|
32737
32740
|
[x: `int232[${string}]`]: undefined;
|
|
32738
32741
|
[x: `int240[${string}]`]: undefined;
|
|
32739
32742
|
[x: `int248[${string}]`]: undefined;
|
|
32740
|
-
[x: `int256[${string}]`]: undefined;
|
|
32741
|
-
[x: `uint[${string}]`]: undefined;
|
|
32742
32743
|
[x: `uint8[${string}]`]: undefined;
|
|
32743
32744
|
[x: `uint16[${string}]`]: undefined;
|
|
32744
32745
|
[x: `uint24[${string}]`]: undefined;
|
|
@@ -32770,19 +32771,19 @@ declare function tenderly_createVnet({
|
|
|
32770
32771
|
[x: `uint232[${string}]`]: undefined;
|
|
32771
32772
|
[x: `uint240[${string}]`]: undefined;
|
|
32772
32773
|
[x: `uint248[${string}]`]: undefined;
|
|
32773
|
-
[x: `uint256[${string}]`]: undefined;
|
|
32774
32774
|
string?: undefined;
|
|
32775
|
+
uint256?: undefined;
|
|
32776
|
+
int256?: undefined;
|
|
32775
32777
|
address?: undefined;
|
|
32776
|
-
bytes32?: undefined;
|
|
32777
32778
|
bool?: undefined;
|
|
32778
32779
|
bytes?: undefined;
|
|
32779
32780
|
bytes1?: undefined;
|
|
32780
32781
|
bytes2?: undefined;
|
|
32781
32782
|
bytes10?: undefined;
|
|
32782
|
-
|
|
32783
|
+
bytes22?: undefined;
|
|
32783
32784
|
bytes3?: undefined;
|
|
32784
32785
|
bytes4?: undefined;
|
|
32785
|
-
|
|
32786
|
+
bytes5?: undefined;
|
|
32786
32787
|
bytes6?: undefined;
|
|
32787
32788
|
bytes7?: undefined;
|
|
32788
32789
|
bytes8?: undefined;
|
|
@@ -32798,7 +32799,6 @@ declare function tenderly_createVnet({
|
|
|
32798
32799
|
bytes19?: undefined;
|
|
32799
32800
|
bytes20?: undefined;
|
|
32800
32801
|
bytes21?: undefined;
|
|
32801
|
-
bytes22?: undefined;
|
|
32802
32802
|
bytes23?: undefined;
|
|
32803
32803
|
bytes24?: undefined;
|
|
32804
32804
|
bytes25?: undefined;
|
|
@@ -32806,7 +32806,9 @@ declare function tenderly_createVnet({
|
|
|
32806
32806
|
bytes27?: undefined;
|
|
32807
32807
|
bytes28?: undefined;
|
|
32808
32808
|
bytes29?: undefined;
|
|
32809
|
+
bytes30?: undefined;
|
|
32809
32810
|
bytes31?: undefined;
|
|
32811
|
+
bytes32?: undefined;
|
|
32810
32812
|
int8?: undefined;
|
|
32811
32813
|
int16?: undefined;
|
|
32812
32814
|
int24?: undefined;
|
|
@@ -32838,7 +32840,6 @@ declare function tenderly_createVnet({
|
|
|
32838
32840
|
int232?: undefined;
|
|
32839
32841
|
int240?: undefined;
|
|
32840
32842
|
int248?: undefined;
|
|
32841
|
-
int256?: undefined;
|
|
32842
32843
|
uint8?: undefined;
|
|
32843
32844
|
uint16?: undefined;
|
|
32844
32845
|
uint24?: undefined;
|
|
@@ -32870,7 +32871,6 @@ declare function tenderly_createVnet({
|
|
|
32870
32871
|
uint232?: undefined;
|
|
32871
32872
|
uint240?: undefined;
|
|
32872
32873
|
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_OPTIMISM" | "RPC_FANTOM" | "RPC_POLYGON_AMOY" | "RPC_AVALANCHE" | "RPC_AVALANCHE_FUJI" | "RPC_ARBITRUM_SEPOLIA" | "RPC_FANTOM_TESTNET" | "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";
|
|
@@ -33994,6 +33994,10 @@ declare const etherscanExplorers: {
|
|
|
33994
33994
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
33995
33995
|
readonly explorer: "https://abscan.org/";
|
|
33996
33996
|
};
|
|
33997
|
+
readonly 4326: {
|
|
33998
|
+
readonly api: "https://api.etherscan.io/v2/api";
|
|
33999
|
+
readonly explorer: "https://mega.etherscan.io/";
|
|
34000
|
+
};
|
|
33997
34001
|
readonly 4352: {
|
|
33998
34002
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
33999
34003
|
readonly explorer: "https://memecorescan.io/";
|
|
@@ -34014,6 +34018,10 @@ declare const etherscanExplorers: {
|
|
|
34014
34018
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34015
34019
|
readonly explorer: "https://opbnb-testnet.bscscan.com/";
|
|
34016
34020
|
};
|
|
34021
|
+
readonly 6342: {
|
|
34022
|
+
readonly api: "https://api.etherscan.io/v2/api";
|
|
34023
|
+
readonly explorer: "https://testnet-mega.etherscan.io/";
|
|
34024
|
+
};
|
|
34017
34025
|
readonly 8453: {
|
|
34018
34026
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34019
34027
|
readonly explorer: "https://basescan.org/";
|
|
@@ -34038,10 +34046,6 @@ declare const etherscanExplorers: {
|
|
|
34038
34046
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34039
34047
|
readonly explorer: "https://testnet.sonicscan.org/";
|
|
34040
34048
|
};
|
|
34041
|
-
readonly 17000: {
|
|
34042
|
-
readonly api: "https://api.etherscan.io/v2/api";
|
|
34043
|
-
readonly explorer: "https://holesky.etherscan.io/";
|
|
34044
|
-
};
|
|
34045
34049
|
readonly 33111: {
|
|
34046
34050
|
readonly api: "https://api.etherscan.io/v2/api";
|
|
34047
34051
|
readonly explorer: "https://curtis.apescan.io/";
|