@centrifuge/sdk 0.0.0-alpha.28 → 0.0.0-alpha.30

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.
Files changed (53) hide show
  1. package/dist/Centrifuge.d.ts +183 -169
  2. package/dist/Centrifuge.d.ts.map +1 -1
  3. package/dist/Centrifuge.js +169 -79
  4. package/dist/Centrifuge.js.map +1 -1
  5. package/dist/Centrifuge.test.js +33 -15
  6. package/dist/Centrifuge.test.js.map +1 -1
  7. package/dist/abi/index.d.ts +11 -0
  8. package/dist/abi/index.d.ts.map +1 -1
  9. package/dist/abi/index.js +3 -1
  10. package/dist/abi/index.js.map +1 -1
  11. package/dist/config/chains.d.ts +156 -938
  12. package/dist/config/chains.d.ts.map +1 -1
  13. package/dist/config/chains.js +2 -11
  14. package/dist/config/chains.js.map +1 -1
  15. package/dist/entities/BalanceSheet.d.ts +24 -10
  16. package/dist/entities/BalanceSheet.d.ts.map +1 -1
  17. package/dist/entities/BalanceSheet.js +4 -59
  18. package/dist/entities/BalanceSheet.js.map +1 -1
  19. package/dist/entities/Investor.d.ts +1 -5
  20. package/dist/entities/Investor.d.ts.map +1 -1
  21. package/dist/entities/Investor.js +40 -10
  22. package/dist/entities/Investor.js.map +1 -1
  23. package/dist/entities/Pool.d.ts +5 -5
  24. package/dist/entities/Pool.d.ts.map +1 -1
  25. package/dist/entities/Pool.js +18 -5
  26. package/dist/entities/Pool.js.map +1 -1
  27. package/dist/entities/Pool.test.js +5 -5
  28. package/dist/entities/Pool.test.js.map +1 -1
  29. package/dist/entities/PoolNetwork.d.ts +5 -6
  30. package/dist/entities/PoolNetwork.d.ts.map +1 -1
  31. package/dist/entities/PoolNetwork.js +22 -59
  32. package/dist/entities/PoolNetwork.js.map +1 -1
  33. package/dist/entities/ShareClass.d.ts +36 -30
  34. package/dist/entities/ShareClass.d.ts.map +1 -1
  35. package/dist/entities/ShareClass.js +329 -265
  36. package/dist/entities/ShareClass.js.map +1 -1
  37. package/dist/entities/ShareClass.test.js +16 -17
  38. package/dist/entities/ShareClass.test.js.map +1 -1
  39. package/dist/entities/Vault.d.ts +5 -5
  40. package/dist/entities/Vault.d.ts.map +1 -1
  41. package/dist/entities/Vault.js +5 -4
  42. package/dist/entities/Vault.js.map +1 -1
  43. package/dist/entities/Vault.test.js +10 -19
  44. package/dist/entities/Vault.test.js.map +1 -1
  45. package/dist/types/transaction.d.ts +39 -0
  46. package/dist/types/transaction.d.ts.map +1 -1
  47. package/dist/types/transaction.js +40 -1
  48. package/dist/types/transaction.js.map +1 -1
  49. package/dist/utils/transaction.d.ts +10 -3
  50. package/dist/utils/transaction.d.ts.map +1 -1
  51. package/dist/utils/transaction.js +8 -2
  52. package/dist/utils/transaction.js.map +1 -1
  53. package/package.json +3 -3
@@ -1,10 +1,10 @@
1
- import { type Abi, type Account as AccountType, type Chain } from 'viem';
1
+ import { type Abi, type Account, type Chain } from 'viem';
2
2
  import { Investor } from './entities/Investor.js';
3
3
  import { Pool } from './entities/Pool.js';
4
4
  import type { CurrencyDetails, DerivedConfig, HexString, UserProvidedConfig } from './types/index.js';
5
5
  import { PoolMetadataInput } from './types/poolInput.js';
6
6
  import type { Query } from './types/query.js';
7
- import type { Signer, Transaction } from './types/transaction.js';
7
+ import { type Signer, type Transaction } from './types/transaction.js';
8
8
  import { Balance } from './utils/BigInt.js';
9
9
  import { AssetId, PoolId } from './utils/types.js';
10
10
  export declare class Centrifuge {
@@ -24,6 +24,10 @@ export declare class Centrifuge {
24
24
  type: string;
25
25
  uid: string;
26
26
  call: (parameters: import("viem").CallParameters<Chain>) => Promise<import("viem").CallReturnType>;
27
+ createAccessList: (parameters: import("viem").CreateAccessListParameters<Chain>) => Promise<{
28
+ accessList: import("viem").AccessList;
29
+ gasUsed: bigint;
30
+ }>;
27
31
  createBlockFilter: () => Promise<import("viem").CreateBlockFilterReturnType>;
28
32
  createContractEventFilter: <const abi extends Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi> | undefined, args extends import("viem").MaybeExtractEventArgsFromAbi<abi, eventName> | undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").CreateContractEventFilterParameters<abi, eventName, args, strict, fromBlock, toBlock>) => Promise<import("viem").CreateContractEventFilterReturnType<abi, eventName, args, strict, fromBlock, toBlock>>;
29
33
  createEventFilter: <const abiEvent extends import("viem").AbiEvent | undefined = undefined, const abiEvents extends readonly import("viem").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("viem").AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, _EventName extends string | undefined = import("viem").MaybeAbiEventName<abiEvent>, _Args extends import("viem").MaybeExtractEventArgsFromAbi<abiEvents, _EventName> | undefined = undefined>(args?: import("viem").CreateEventFilterParameters<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args> | undefined) => Promise<import("viem").CreateEventFilterReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args>>;
@@ -175,7 +179,7 @@ export declare class Centrifuge {
175
179
  maxPriorityFeePerGas: bigint;
176
180
  accessList: import("viem").AccessList;
177
181
  blobVersionedHashes?: undefined;
178
- authorizationList: import("viem/experimental").SignedAuthorizationList;
182
+ authorizationList: import("viem").SignedAuthorizationList;
179
183
  hash: import("viem").Hash;
180
184
  yParity: number;
181
185
  chainId: number;
@@ -325,7 +329,7 @@ export declare class Centrifuge {
325
329
  maxPriorityFeePerGas: bigint;
326
330
  accessList: import("viem").AccessList;
327
331
  blobVersionedHashes?: undefined;
328
- authorizationList: import("viem/experimental").SignedAuthorizationList;
332
+ authorizationList: import("viem").SignedAuthorizationList;
329
333
  hash: import("viem").Hash;
330
334
  yParity: number;
331
335
  chainId: number;
@@ -339,11 +343,11 @@ export declare class Centrifuge {
339
343
  getTransactionCount: (args: import("viem").GetTransactionCountParameters) => Promise<import("viem").GetTransactionCountReturnType>;
340
344
  getTransactionReceipt: (args: import("viem").GetTransactionReceiptParameters) => Promise<import("viem").TransactionReceipt>;
341
345
  multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: import("viem").MulticallParameters<contracts, allowFailure>) => Promise<import("viem").MulticallReturnType<contracts, allowFailure>>;
342
- prepareTransactionRequest: <const request extends import("viem").PrepareTransactionRequestRequest<Chain, chainOverride>, chainOverride extends Chain | undefined = undefined, accountOverride extends AccountType | import("viem").Address | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<Chain, AccountType | undefined, chainOverride, accountOverride, request>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<Chain, chainOverride> ? T_1 extends Chain ? {
346
+ prepareTransactionRequest: <const request extends import("viem").PrepareTransactionRequestRequest<Chain, chainOverride>, chainOverride extends Chain | undefined = undefined, accountOverride extends Account | import("viem").Address | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<Chain, Account | undefined, chainOverride, accountOverride, request>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<Chain, chainOverride> ? T_1 extends Chain ? {
343
347
  chain: T_1;
344
348
  } : {
345
349
  chain?: undefined;
346
- } : never : never) & (import("viem").DeriveAccount<AccountType | undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<AccountType | undefined, accountOverride> ? T_2 extends AccountType ? {
350
+ } : never : never) & (import("viem").DeriveAccount<Account | undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<Account | undefined, accountOverride> ? T_2 extends Account ? {
347
351
  account: T_2;
348
352
  from: import("viem").Address;
349
353
  } : {
@@ -410,7 +414,7 @@ export declare class Centrifuge {
410
414
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
411
415
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
412
416
  accessList?: import("viem").AccessList | undefined;
413
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
417
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
414
418
  blobs?: undefined;
415
419
  blobVersionedHashes?: undefined;
416
420
  gasPrice?: undefined;
@@ -420,7 +424,7 @@ export declare class Centrifuge {
420
424
  sidecars?: undefined;
421
425
  } | {
422
426
  accessList?: import("viem").AccessList | undefined;
423
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
427
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
424
428
  blobs?: undefined;
425
429
  blobVersionedHashes?: undefined;
426
430
  gasPrice?: undefined;
@@ -491,7 +495,7 @@ export declare class Centrifuge {
491
495
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
492
496
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
493
497
  accessList?: import("viem").AccessList | undefined;
494
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
498
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
495
499
  blobs?: undefined;
496
500
  blobVersionedHashes?: undefined;
497
501
  gasPrice?: undefined;
@@ -501,7 +505,7 @@ export declare class Centrifuge {
501
505
  sidecars?: undefined;
502
506
  } | {
503
507
  accessList?: import("viem").AccessList | undefined;
504
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
508
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
505
509
  blobs?: undefined;
506
510
  blobVersionedHashes?: undefined;
507
511
  gasPrice?: undefined;
@@ -572,7 +576,7 @@ export declare class Centrifuge {
572
576
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
573
577
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
574
578
  accessList?: import("viem").AccessList | undefined;
575
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
579
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
576
580
  blobs?: undefined;
577
581
  blobVersionedHashes?: undefined;
578
582
  gasPrice?: undefined;
@@ -582,7 +586,7 @@ export declare class Centrifuge {
582
586
  sidecars?: undefined;
583
587
  } | {
584
588
  accessList?: import("viem").AccessList | undefined;
585
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
589
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
586
590
  blobs?: undefined;
587
591
  blobVersionedHashes?: undefined;
588
592
  gasPrice?: undefined;
@@ -653,7 +657,7 @@ export declare class Centrifuge {
653
657
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
654
658
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
655
659
  accessList?: import("viem").AccessList | undefined;
656
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
660
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
657
661
  blobs?: undefined;
658
662
  blobVersionedHashes?: undefined;
659
663
  gasPrice?: undefined;
@@ -663,7 +667,7 @@ export declare class Centrifuge {
663
667
  sidecars?: undefined;
664
668
  } | {
665
669
  accessList?: import("viem").AccessList | undefined;
666
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
670
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
667
671
  blobs?: undefined;
668
672
  blobVersionedHashes?: undefined;
669
673
  gasPrice?: undefined;
@@ -734,7 +738,7 @@ export declare class Centrifuge {
734
738
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
735
739
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
736
740
  accessList?: import("viem").AccessList | undefined;
737
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
741
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
738
742
  blobs?: undefined;
739
743
  blobVersionedHashes?: undefined;
740
744
  gasPrice?: undefined;
@@ -744,7 +748,7 @@ export declare class Centrifuge {
744
748
  sidecars?: undefined;
745
749
  } | {
746
750
  accessList?: import("viem").AccessList | undefined;
747
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
751
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
748
752
  blobs?: undefined;
749
753
  blobVersionedHashes?: undefined;
750
754
  gasPrice?: undefined;
@@ -815,7 +819,7 @@ export declare class Centrifuge {
815
819
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
816
820
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
817
821
  accessList?: import("viem").AccessList | undefined;
818
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
822
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
819
823
  blobs?: undefined;
820
824
  blobVersionedHashes?: undefined;
821
825
  gasPrice?: undefined;
@@ -825,7 +829,7 @@ export declare class Centrifuge {
825
829
  sidecars?: undefined;
826
830
  } | {
827
831
  accessList?: import("viem").AccessList | undefined;
828
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
832
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
829
833
  blobs?: undefined;
830
834
  blobVersionedHashes?: undefined;
831
835
  gasPrice?: undefined;
@@ -896,7 +900,7 @@ export declare class Centrifuge {
896
900
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
897
901
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
898
902
  accessList?: import("viem").AccessList | undefined;
899
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
903
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
900
904
  blobs?: undefined;
901
905
  blobVersionedHashes?: undefined;
902
906
  gasPrice?: undefined;
@@ -906,7 +910,7 @@ export declare class Centrifuge {
906
910
  sidecars?: undefined;
907
911
  } | {
908
912
  accessList?: import("viem").AccessList | undefined;
909
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
913
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
910
914
  blobs?: undefined;
911
915
  blobVersionedHashes?: undefined;
912
916
  gasPrice?: undefined;
@@ -977,7 +981,7 @@ export declare class Centrifuge {
977
981
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
978
982
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
979
983
  accessList?: import("viem").AccessList | undefined;
980
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
984
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
981
985
  blobs?: undefined;
982
986
  blobVersionedHashes?: undefined;
983
987
  gasPrice?: undefined;
@@ -987,7 +991,7 @@ export declare class Centrifuge {
987
991
  sidecars?: undefined;
988
992
  } | {
989
993
  accessList?: import("viem").AccessList | undefined;
990
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
994
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
991
995
  blobs?: undefined;
992
996
  blobVersionedHashes?: undefined;
993
997
  gasPrice?: undefined;
@@ -1058,7 +1062,7 @@ export declare class Centrifuge {
1058
1062
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1059
1063
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1060
1064
  accessList?: import("viem").AccessList | undefined;
1061
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1065
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1062
1066
  blobs?: undefined;
1063
1067
  blobVersionedHashes?: undefined;
1064
1068
  gasPrice?: undefined;
@@ -1068,7 +1072,7 @@ export declare class Centrifuge {
1068
1072
  sidecars?: undefined;
1069
1073
  } | {
1070
1074
  accessList?: import("viem").AccessList | undefined;
1071
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1075
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1072
1076
  blobs?: undefined;
1073
1077
  blobVersionedHashes?: undefined;
1074
1078
  gasPrice?: undefined;
@@ -1139,7 +1143,7 @@ export declare class Centrifuge {
1139
1143
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1140
1144
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1141
1145
  accessList?: import("viem").AccessList | undefined;
1142
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1146
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1143
1147
  blobs?: undefined;
1144
1148
  blobVersionedHashes?: undefined;
1145
1149
  gasPrice?: undefined;
@@ -1149,7 +1153,7 @@ export declare class Centrifuge {
1149
1153
  sidecars?: undefined;
1150
1154
  } | {
1151
1155
  accessList?: import("viem").AccessList | undefined;
1152
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1156
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1153
1157
  blobs?: undefined;
1154
1158
  blobVersionedHashes?: undefined;
1155
1159
  gasPrice?: undefined;
@@ -1220,7 +1224,7 @@ export declare class Centrifuge {
1220
1224
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1221
1225
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1222
1226
  accessList?: import("viem").AccessList | undefined;
1223
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1227
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1224
1228
  blobs?: undefined;
1225
1229
  blobVersionedHashes?: undefined;
1226
1230
  gasPrice?: undefined;
@@ -1230,7 +1234,7 @@ export declare class Centrifuge {
1230
1234
  sidecars?: undefined;
1231
1235
  } | {
1232
1236
  accessList?: import("viem").AccessList | undefined;
1233
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1237
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1234
1238
  blobs?: undefined;
1235
1239
  blobVersionedHashes?: undefined;
1236
1240
  gasPrice?: undefined;
@@ -1301,7 +1305,7 @@ export declare class Centrifuge {
1301
1305
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1302
1306
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1303
1307
  accessList?: import("viem").AccessList | undefined;
1304
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1308
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1305
1309
  blobs?: undefined;
1306
1310
  blobVersionedHashes?: undefined;
1307
1311
  gasPrice?: undefined;
@@ -1311,7 +1315,7 @@ export declare class Centrifuge {
1311
1315
  sidecars?: undefined;
1312
1316
  } | {
1313
1317
  accessList?: import("viem").AccessList | undefined;
1314
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1318
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1315
1319
  blobs?: undefined;
1316
1320
  blobVersionedHashes?: undefined;
1317
1321
  gasPrice?: undefined;
@@ -1382,7 +1386,7 @@ export declare class Centrifuge {
1382
1386
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1383
1387
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1384
1388
  accessList?: import("viem").AccessList | undefined;
1385
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1389
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1386
1390
  blobs?: undefined;
1387
1391
  blobVersionedHashes?: undefined;
1388
1392
  gasPrice?: undefined;
@@ -1392,7 +1396,7 @@ export declare class Centrifuge {
1392
1396
  sidecars?: undefined;
1393
1397
  } | {
1394
1398
  accessList?: import("viem").AccessList | undefined;
1395
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1399
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1396
1400
  blobs?: undefined;
1397
1401
  blobVersionedHashes?: undefined;
1398
1402
  gasPrice?: undefined;
@@ -1463,7 +1467,7 @@ export declare class Centrifuge {
1463
1467
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1464
1468
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1465
1469
  accessList?: import("viem").AccessList | undefined;
1466
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1470
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1467
1471
  blobs?: undefined;
1468
1472
  blobVersionedHashes?: undefined;
1469
1473
  gasPrice?: undefined;
@@ -1473,7 +1477,7 @@ export declare class Centrifuge {
1473
1477
  sidecars?: undefined;
1474
1478
  } | {
1475
1479
  accessList?: import("viem").AccessList | undefined;
1476
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1480
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1477
1481
  blobs?: undefined;
1478
1482
  blobVersionedHashes?: undefined;
1479
1483
  gasPrice?: undefined;
@@ -1544,7 +1548,7 @@ export declare class Centrifuge {
1544
1548
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1545
1549
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1546
1550
  accessList?: import("viem").AccessList | undefined;
1547
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1551
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1548
1552
  blobs?: undefined;
1549
1553
  blobVersionedHashes?: undefined;
1550
1554
  gasPrice?: undefined;
@@ -1554,7 +1558,7 @@ export declare class Centrifuge {
1554
1558
  sidecars?: undefined;
1555
1559
  } | {
1556
1560
  accessList?: import("viem").AccessList | undefined;
1557
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1561
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1558
1562
  blobs?: undefined;
1559
1563
  blobVersionedHashes?: undefined;
1560
1564
  gasPrice?: undefined;
@@ -1625,7 +1629,7 @@ export declare class Centrifuge {
1625
1629
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1626
1630
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1627
1631
  accessList?: import("viem").AccessList | undefined;
1628
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1632
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1629
1633
  blobs?: undefined;
1630
1634
  blobVersionedHashes?: undefined;
1631
1635
  gasPrice?: undefined;
@@ -1635,7 +1639,7 @@ export declare class Centrifuge {
1635
1639
  sidecars?: undefined;
1636
1640
  } | {
1637
1641
  accessList?: import("viem").AccessList | undefined;
1638
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1642
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1639
1643
  blobs?: undefined;
1640
1644
  blobVersionedHashes?: undefined;
1641
1645
  gasPrice?: undefined;
@@ -1706,7 +1710,7 @@ export declare class Centrifuge {
1706
1710
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1707
1711
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1708
1712
  accessList?: import("viem").AccessList | undefined;
1709
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1713
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1710
1714
  blobs?: undefined;
1711
1715
  blobVersionedHashes?: undefined;
1712
1716
  gasPrice?: undefined;
@@ -1716,7 +1720,7 @@ export declare class Centrifuge {
1716
1720
  sidecars?: undefined;
1717
1721
  } | {
1718
1722
  accessList?: import("viem").AccessList | undefined;
1719
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1723
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1720
1724
  blobs?: undefined;
1721
1725
  blobVersionedHashes?: undefined;
1722
1726
  gasPrice?: undefined;
@@ -1787,7 +1791,7 @@ export declare class Centrifuge {
1787
1791
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1788
1792
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1789
1793
  accessList?: import("viem").AccessList | undefined;
1790
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1794
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1791
1795
  blobs?: undefined;
1792
1796
  blobVersionedHashes?: undefined;
1793
1797
  gasPrice?: undefined;
@@ -1797,7 +1801,7 @@ export declare class Centrifuge {
1797
1801
  sidecars?: undefined;
1798
1802
  } | {
1799
1803
  accessList?: import("viem").AccessList | undefined;
1800
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1804
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1801
1805
  blobs?: undefined;
1802
1806
  blobVersionedHashes?: undefined;
1803
1807
  gasPrice?: undefined;
@@ -1868,7 +1872,7 @@ export declare class Centrifuge {
1868
1872
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1869
1873
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1870
1874
  accessList?: import("viem").AccessList | undefined;
1871
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1875
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1872
1876
  blobs?: undefined;
1873
1877
  blobVersionedHashes?: undefined;
1874
1878
  gasPrice?: undefined;
@@ -1878,7 +1882,7 @@ export declare class Centrifuge {
1878
1882
  sidecars?: undefined;
1879
1883
  } | {
1880
1884
  accessList?: import("viem").AccessList | undefined;
1881
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1885
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1882
1886
  blobs?: undefined;
1883
1887
  blobVersionedHashes?: undefined;
1884
1888
  gasPrice?: undefined;
@@ -1949,7 +1953,7 @@ export declare class Centrifuge {
1949
1953
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1950
1954
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1951
1955
  accessList?: import("viem").AccessList | undefined;
1952
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1956
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1953
1957
  blobs?: undefined;
1954
1958
  blobVersionedHashes?: undefined;
1955
1959
  gasPrice?: undefined;
@@ -1959,7 +1963,7 @@ export declare class Centrifuge {
1959
1963
  sidecars?: undefined;
1960
1964
  } | {
1961
1965
  accessList?: import("viem").AccessList | undefined;
1962
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
1966
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1963
1967
  blobs?: undefined;
1964
1968
  blobVersionedHashes?: undefined;
1965
1969
  gasPrice?: undefined;
@@ -2030,7 +2034,7 @@ export declare class Centrifuge {
2030
2034
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2031
2035
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2032
2036
  accessList?: import("viem").AccessList | undefined;
2033
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2037
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2034
2038
  blobs?: undefined;
2035
2039
  blobVersionedHashes?: undefined;
2036
2040
  gasPrice?: undefined;
@@ -2040,7 +2044,7 @@ export declare class Centrifuge {
2040
2044
  sidecars?: undefined;
2041
2045
  } | {
2042
2046
  accessList?: import("viem").AccessList | undefined;
2043
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2047
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2044
2048
  blobs?: undefined;
2045
2049
  blobVersionedHashes?: undefined;
2046
2050
  gasPrice?: undefined;
@@ -2111,7 +2115,7 @@ export declare class Centrifuge {
2111
2115
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2112
2116
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2113
2117
  accessList?: import("viem").AccessList | undefined;
2114
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2118
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2115
2119
  blobs?: undefined;
2116
2120
  blobVersionedHashes?: undefined;
2117
2121
  gasPrice?: undefined;
@@ -2121,7 +2125,7 @@ export declare class Centrifuge {
2121
2125
  sidecars?: undefined;
2122
2126
  } | {
2123
2127
  accessList?: import("viem").AccessList | undefined;
2124
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2128
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2125
2129
  blobs?: undefined;
2126
2130
  blobVersionedHashes?: undefined;
2127
2131
  gasPrice?: undefined;
@@ -2192,7 +2196,7 @@ export declare class Centrifuge {
2192
2196
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2193
2197
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2194
2198
  accessList?: import("viem").AccessList | undefined;
2195
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2199
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2196
2200
  blobs?: undefined;
2197
2201
  blobVersionedHashes?: undefined;
2198
2202
  gasPrice?: undefined;
@@ -2202,7 +2206,7 @@ export declare class Centrifuge {
2202
2206
  sidecars?: undefined;
2203
2207
  } | {
2204
2208
  accessList?: import("viem").AccessList | undefined;
2205
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2209
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2206
2210
  blobs?: undefined;
2207
2211
  blobVersionedHashes?: undefined;
2208
2212
  gasPrice?: undefined;
@@ -2273,7 +2277,7 @@ export declare class Centrifuge {
2273
2277
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2274
2278
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2275
2279
  accessList?: import("viem").AccessList | undefined;
2276
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2280
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2277
2281
  blobs?: undefined;
2278
2282
  blobVersionedHashes?: undefined;
2279
2283
  gasPrice?: undefined;
@@ -2283,7 +2287,7 @@ export declare class Centrifuge {
2283
2287
  sidecars?: undefined;
2284
2288
  } | {
2285
2289
  accessList?: import("viem").AccessList | undefined;
2286
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2290
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2287
2291
  blobs?: undefined;
2288
2292
  blobVersionedHashes?: undefined;
2289
2293
  gasPrice?: undefined;
@@ -2354,7 +2358,7 @@ export declare class Centrifuge {
2354
2358
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2355
2359
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2356
2360
  accessList?: import("viem").AccessList | undefined;
2357
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2361
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2358
2362
  blobs?: undefined;
2359
2363
  blobVersionedHashes?: undefined;
2360
2364
  gasPrice?: undefined;
@@ -2364,7 +2368,7 @@ export declare class Centrifuge {
2364
2368
  sidecars?: undefined;
2365
2369
  } | {
2366
2370
  accessList?: import("viem").AccessList | undefined;
2367
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2371
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2368
2372
  blobs?: undefined;
2369
2373
  blobVersionedHashes?: undefined;
2370
2374
  gasPrice?: undefined;
@@ -2435,7 +2439,7 @@ export declare class Centrifuge {
2435
2439
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2436
2440
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2437
2441
  accessList?: import("viem").AccessList | undefined;
2438
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2442
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2439
2443
  blobs?: undefined;
2440
2444
  blobVersionedHashes?: undefined;
2441
2445
  gasPrice?: undefined;
@@ -2445,7 +2449,7 @@ export declare class Centrifuge {
2445
2449
  sidecars?: undefined;
2446
2450
  } | {
2447
2451
  accessList?: import("viem").AccessList | undefined;
2448
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2452
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2449
2453
  blobs?: undefined;
2450
2454
  blobVersionedHashes?: undefined;
2451
2455
  gasPrice?: undefined;
@@ -2516,7 +2520,7 @@ export declare class Centrifuge {
2516
2520
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2517
2521
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2518
2522
  accessList?: import("viem").AccessList | undefined;
2519
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2523
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2520
2524
  blobs?: undefined;
2521
2525
  blobVersionedHashes?: undefined;
2522
2526
  gasPrice?: undefined;
@@ -2526,7 +2530,7 @@ export declare class Centrifuge {
2526
2530
  sidecars?: undefined;
2527
2531
  } | {
2528
2532
  accessList?: import("viem").AccessList | undefined;
2529
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2533
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2530
2534
  blobs?: undefined;
2531
2535
  blobVersionedHashes?: undefined;
2532
2536
  gasPrice?: undefined;
@@ -2597,7 +2601,7 @@ export declare class Centrifuge {
2597
2601
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2598
2602
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2599
2603
  accessList?: import("viem").AccessList | undefined;
2600
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2604
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2601
2605
  blobs?: undefined;
2602
2606
  blobVersionedHashes?: undefined;
2603
2607
  gasPrice?: undefined;
@@ -2607,7 +2611,7 @@ export declare class Centrifuge {
2607
2611
  sidecars?: undefined;
2608
2612
  } | {
2609
2613
  accessList?: import("viem").AccessList | undefined;
2610
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2614
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2611
2615
  blobs?: undefined;
2612
2616
  blobVersionedHashes?: undefined;
2613
2617
  gasPrice?: undefined;
@@ -2678,7 +2682,7 @@ export declare class Centrifuge {
2678
2682
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2679
2683
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2680
2684
  accessList?: import("viem").AccessList | undefined;
2681
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2685
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2682
2686
  blobs?: undefined;
2683
2687
  blobVersionedHashes?: undefined;
2684
2688
  gasPrice?: undefined;
@@ -2688,7 +2692,7 @@ export declare class Centrifuge {
2688
2692
  sidecars?: undefined;
2689
2693
  } | {
2690
2694
  accessList?: import("viem").AccessList | undefined;
2691
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2695
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2692
2696
  blobs?: undefined;
2693
2697
  blobVersionedHashes?: undefined;
2694
2698
  gasPrice?: undefined;
@@ -2759,7 +2763,7 @@ export declare class Centrifuge {
2759
2763
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2760
2764
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2761
2765
  accessList?: import("viem").AccessList | undefined;
2762
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2766
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2763
2767
  blobs?: undefined;
2764
2768
  blobVersionedHashes?: undefined;
2765
2769
  gasPrice?: undefined;
@@ -2769,7 +2773,7 @@ export declare class Centrifuge {
2769
2773
  sidecars?: undefined;
2770
2774
  } | {
2771
2775
  accessList?: import("viem").AccessList | undefined;
2772
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2776
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2773
2777
  blobs?: undefined;
2774
2778
  blobVersionedHashes?: undefined;
2775
2779
  gasPrice?: undefined;
@@ -2840,7 +2844,7 @@ export declare class Centrifuge {
2840
2844
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2841
2845
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2842
2846
  accessList?: import("viem").AccessList | undefined;
2843
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2847
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2844
2848
  blobs?: undefined;
2845
2849
  blobVersionedHashes?: undefined;
2846
2850
  gasPrice?: undefined;
@@ -2850,7 +2854,7 @@ export declare class Centrifuge {
2850
2854
  sidecars?: undefined;
2851
2855
  } | {
2852
2856
  accessList?: import("viem").AccessList | undefined;
2853
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2857
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2854
2858
  blobs?: undefined;
2855
2859
  blobVersionedHashes?: undefined;
2856
2860
  gasPrice?: undefined;
@@ -2921,7 +2925,7 @@ export declare class Centrifuge {
2921
2925
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2922
2926
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2923
2927
  accessList?: import("viem").AccessList | undefined;
2924
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2928
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2925
2929
  blobs?: undefined;
2926
2930
  blobVersionedHashes?: undefined;
2927
2931
  gasPrice?: undefined;
@@ -2931,7 +2935,7 @@ export declare class Centrifuge {
2931
2935
  sidecars?: undefined;
2932
2936
  } | {
2933
2937
  accessList?: import("viem").AccessList | undefined;
2934
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
2938
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2935
2939
  blobs?: undefined;
2936
2940
  blobVersionedHashes?: undefined;
2937
2941
  gasPrice?: undefined;
@@ -3002,7 +3006,7 @@ export declare class Centrifuge {
3002
3006
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3003
3007
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3004
3008
  accessList?: import("viem").AccessList | undefined;
3005
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3009
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3006
3010
  blobs?: undefined;
3007
3011
  blobVersionedHashes?: undefined;
3008
3012
  gasPrice?: undefined;
@@ -3012,7 +3016,7 @@ export declare class Centrifuge {
3012
3016
  sidecars?: undefined;
3013
3017
  } | {
3014
3018
  accessList?: import("viem").AccessList | undefined;
3015
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3019
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3016
3020
  blobs?: undefined;
3017
3021
  blobVersionedHashes?: undefined;
3018
3022
  gasPrice?: undefined;
@@ -3083,7 +3087,7 @@ export declare class Centrifuge {
3083
3087
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3084
3088
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3085
3089
  accessList?: import("viem").AccessList | undefined;
3086
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3090
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3087
3091
  blobs?: undefined;
3088
3092
  blobVersionedHashes?: undefined;
3089
3093
  gasPrice?: undefined;
@@ -3093,7 +3097,7 @@ export declare class Centrifuge {
3093
3097
  sidecars?: undefined;
3094
3098
  } | {
3095
3099
  accessList?: import("viem").AccessList | undefined;
3096
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3100
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3097
3101
  blobs?: undefined;
3098
3102
  blobVersionedHashes?: undefined;
3099
3103
  gasPrice?: undefined;
@@ -3164,7 +3168,7 @@ export declare class Centrifuge {
3164
3168
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3165
3169
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3166
3170
  accessList?: import("viem").AccessList | undefined;
3167
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3171
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3168
3172
  blobs?: undefined;
3169
3173
  blobVersionedHashes?: undefined;
3170
3174
  gasPrice?: undefined;
@@ -3174,7 +3178,7 @@ export declare class Centrifuge {
3174
3178
  sidecars?: undefined;
3175
3179
  } | {
3176
3180
  accessList?: import("viem").AccessList | undefined;
3177
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3181
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3178
3182
  blobs?: undefined;
3179
3183
  blobVersionedHashes?: undefined;
3180
3184
  gasPrice?: undefined;
@@ -3245,7 +3249,7 @@ export declare class Centrifuge {
3245
3249
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3246
3250
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3247
3251
  accessList?: import("viem").AccessList | undefined;
3248
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3252
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3249
3253
  blobs?: undefined;
3250
3254
  blobVersionedHashes?: undefined;
3251
3255
  gasPrice?: undefined;
@@ -3255,7 +3259,7 @@ export declare class Centrifuge {
3255
3259
  sidecars?: undefined;
3256
3260
  } | {
3257
3261
  accessList?: import("viem").AccessList | undefined;
3258
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3262
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3259
3263
  blobs?: undefined;
3260
3264
  blobVersionedHashes?: undefined;
3261
3265
  gasPrice?: undefined;
@@ -3326,7 +3330,7 @@ export declare class Centrifuge {
3326
3330
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3327
3331
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3328
3332
  accessList?: import("viem").AccessList | undefined;
3329
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3333
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3330
3334
  blobs?: undefined;
3331
3335
  blobVersionedHashes?: undefined;
3332
3336
  gasPrice?: undefined;
@@ -3336,7 +3340,7 @@ export declare class Centrifuge {
3336
3340
  sidecars?: undefined;
3337
3341
  } | {
3338
3342
  accessList?: import("viem").AccessList | undefined;
3339
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3343
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3340
3344
  blobs?: undefined;
3341
3345
  blobVersionedHashes?: undefined;
3342
3346
  gasPrice?: undefined;
@@ -3407,7 +3411,7 @@ export declare class Centrifuge {
3407
3411
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3408
3412
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3409
3413
  accessList?: import("viem").AccessList | undefined;
3410
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3414
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3411
3415
  blobs?: undefined;
3412
3416
  blobVersionedHashes?: undefined;
3413
3417
  gasPrice?: undefined;
@@ -3417,7 +3421,7 @@ export declare class Centrifuge {
3417
3421
  sidecars?: undefined;
3418
3422
  } | {
3419
3423
  accessList?: import("viem").AccessList | undefined;
3420
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3424
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3421
3425
  blobs?: undefined;
3422
3426
  blobVersionedHashes?: undefined;
3423
3427
  gasPrice?: undefined;
@@ -3488,7 +3492,7 @@ export declare class Centrifuge {
3488
3492
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3489
3493
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3490
3494
  accessList?: import("viem").AccessList | undefined;
3491
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3495
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3492
3496
  blobs?: undefined;
3493
3497
  blobVersionedHashes?: undefined;
3494
3498
  gasPrice?: undefined;
@@ -3498,7 +3502,7 @@ export declare class Centrifuge {
3498
3502
  sidecars?: undefined;
3499
3503
  } | {
3500
3504
  accessList?: import("viem").AccessList | undefined;
3501
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3505
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3502
3506
  blobs?: undefined;
3503
3507
  blobVersionedHashes?: undefined;
3504
3508
  gasPrice?: undefined;
@@ -3569,7 +3573,7 @@ export declare class Centrifuge {
3569
3573
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3570
3574
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3571
3575
  accessList?: import("viem").AccessList | undefined;
3572
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3576
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3573
3577
  blobs?: undefined;
3574
3578
  blobVersionedHashes?: undefined;
3575
3579
  gasPrice?: undefined;
@@ -3579,7 +3583,7 @@ export declare class Centrifuge {
3579
3583
  sidecars?: undefined;
3580
3584
  } | {
3581
3585
  accessList?: import("viem").AccessList | undefined;
3582
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3586
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3583
3587
  blobs?: undefined;
3584
3588
  blobVersionedHashes?: undefined;
3585
3589
  gasPrice?: undefined;
@@ -3595,7 +3599,7 @@ export declare class Centrifuge {
3595
3599
  chain: T_1;
3596
3600
  } : {
3597
3601
  chain?: undefined;
3598
- } : never : never) & (import("viem").DeriveAccount<AccountType | undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<AccountType | undefined, accountOverride> ? T_2 extends AccountType ? {
3602
+ } : never : never) & (import("viem").DeriveAccount<Account | undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<Account | undefined, accountOverride> ? T_2 extends Account ? {
3599
3603
  account: T_2;
3600
3604
  from: import("viem").Address;
3601
3605
  } : {
@@ -3662,7 +3666,7 @@ export declare class Centrifuge {
3662
3666
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3663
3667
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3664
3668
  accessList?: import("viem").AccessList | undefined;
3665
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3669
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3666
3670
  blobs?: undefined;
3667
3671
  blobVersionedHashes?: undefined;
3668
3672
  gasPrice?: undefined;
@@ -3672,7 +3676,7 @@ export declare class Centrifuge {
3672
3676
  sidecars?: undefined;
3673
3677
  } | {
3674
3678
  accessList?: import("viem").AccessList | undefined;
3675
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3679
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3676
3680
  blobs?: undefined;
3677
3681
  blobVersionedHashes?: undefined;
3678
3682
  gasPrice?: undefined;
@@ -3743,7 +3747,7 @@ export declare class Centrifuge {
3743
3747
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3744
3748
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3745
3749
  accessList?: import("viem").AccessList | undefined;
3746
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3750
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3747
3751
  blobs?: undefined;
3748
3752
  blobVersionedHashes?: undefined;
3749
3753
  gasPrice?: undefined;
@@ -3753,7 +3757,7 @@ export declare class Centrifuge {
3753
3757
  sidecars?: undefined;
3754
3758
  } | {
3755
3759
  accessList?: import("viem").AccessList | undefined;
3756
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3760
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3757
3761
  blobs?: undefined;
3758
3762
  blobVersionedHashes?: undefined;
3759
3763
  gasPrice?: undefined;
@@ -3824,7 +3828,7 @@ export declare class Centrifuge {
3824
3828
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3825
3829
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3826
3830
  accessList?: import("viem").AccessList | undefined;
3827
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3831
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3828
3832
  blobs?: undefined;
3829
3833
  blobVersionedHashes?: undefined;
3830
3834
  gasPrice?: undefined;
@@ -3834,7 +3838,7 @@ export declare class Centrifuge {
3834
3838
  sidecars?: undefined;
3835
3839
  } | {
3836
3840
  accessList?: import("viem").AccessList | undefined;
3837
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3841
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3838
3842
  blobs?: undefined;
3839
3843
  blobVersionedHashes?: undefined;
3840
3844
  gasPrice?: undefined;
@@ -3905,7 +3909,7 @@ export declare class Centrifuge {
3905
3909
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3906
3910
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3907
3911
  accessList?: import("viem").AccessList | undefined;
3908
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3912
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3909
3913
  blobs?: undefined;
3910
3914
  blobVersionedHashes?: undefined;
3911
3915
  gasPrice?: undefined;
@@ -3915,7 +3919,7 @@ export declare class Centrifuge {
3915
3919
  sidecars?: undefined;
3916
3920
  } | {
3917
3921
  accessList?: import("viem").AccessList | undefined;
3918
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3922
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3919
3923
  blobs?: undefined;
3920
3924
  blobVersionedHashes?: undefined;
3921
3925
  gasPrice?: undefined;
@@ -3986,7 +3990,7 @@ export declare class Centrifuge {
3986
3990
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3987
3991
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3988
3992
  accessList?: import("viem").AccessList | undefined;
3989
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
3993
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3990
3994
  blobs?: undefined;
3991
3995
  blobVersionedHashes?: undefined;
3992
3996
  gasPrice?: undefined;
@@ -3996,7 +4000,7 @@ export declare class Centrifuge {
3996
4000
  sidecars?: undefined;
3997
4001
  } | {
3998
4002
  accessList?: import("viem").AccessList | undefined;
3999
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4003
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4000
4004
  blobs?: undefined;
4001
4005
  blobVersionedHashes?: undefined;
4002
4006
  gasPrice?: undefined;
@@ -4067,7 +4071,7 @@ export declare class Centrifuge {
4067
4071
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4068
4072
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4069
4073
  accessList?: import("viem").AccessList | undefined;
4070
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4074
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4071
4075
  blobs?: undefined;
4072
4076
  blobVersionedHashes?: undefined;
4073
4077
  gasPrice?: undefined;
@@ -4077,7 +4081,7 @@ export declare class Centrifuge {
4077
4081
  sidecars?: undefined;
4078
4082
  } | {
4079
4083
  accessList?: import("viem").AccessList | undefined;
4080
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4084
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4081
4085
  blobs?: undefined;
4082
4086
  blobVersionedHashes?: undefined;
4083
4087
  gasPrice?: undefined;
@@ -4148,7 +4152,7 @@ export declare class Centrifuge {
4148
4152
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4149
4153
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4150
4154
  accessList?: import("viem").AccessList | undefined;
4151
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4155
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4152
4156
  blobs?: undefined;
4153
4157
  blobVersionedHashes?: undefined;
4154
4158
  gasPrice?: undefined;
@@ -4158,7 +4162,7 @@ export declare class Centrifuge {
4158
4162
  sidecars?: undefined;
4159
4163
  } | {
4160
4164
  accessList?: import("viem").AccessList | undefined;
4161
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4165
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4162
4166
  blobs?: undefined;
4163
4167
  blobVersionedHashes?: undefined;
4164
4168
  gasPrice?: undefined;
@@ -4229,7 +4233,7 @@ export declare class Centrifuge {
4229
4233
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4230
4234
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4231
4235
  accessList?: import("viem").AccessList | undefined;
4232
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4236
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4233
4237
  blobs?: undefined;
4234
4238
  blobVersionedHashes?: undefined;
4235
4239
  gasPrice?: undefined;
@@ -4239,7 +4243,7 @@ export declare class Centrifuge {
4239
4243
  sidecars?: undefined;
4240
4244
  } | {
4241
4245
  accessList?: import("viem").AccessList | undefined;
4242
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4246
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4243
4247
  blobs?: undefined;
4244
4248
  blobVersionedHashes?: undefined;
4245
4249
  gasPrice?: undefined;
@@ -4310,7 +4314,7 @@ export declare class Centrifuge {
4310
4314
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4311
4315
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4312
4316
  accessList?: import("viem").AccessList | undefined;
4313
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4317
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4314
4318
  blobs?: undefined;
4315
4319
  blobVersionedHashes?: undefined;
4316
4320
  gasPrice?: undefined;
@@ -4320,7 +4324,7 @@ export declare class Centrifuge {
4320
4324
  sidecars?: undefined;
4321
4325
  } | {
4322
4326
  accessList?: import("viem").AccessList | undefined;
4323
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4327
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4324
4328
  blobs?: undefined;
4325
4329
  blobVersionedHashes?: undefined;
4326
4330
  gasPrice?: undefined;
@@ -4391,7 +4395,7 @@ export declare class Centrifuge {
4391
4395
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4392
4396
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4393
4397
  accessList?: import("viem").AccessList | undefined;
4394
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4398
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4395
4399
  blobs?: undefined;
4396
4400
  blobVersionedHashes?: undefined;
4397
4401
  gasPrice?: undefined;
@@ -4401,7 +4405,7 @@ export declare class Centrifuge {
4401
4405
  sidecars?: undefined;
4402
4406
  } | {
4403
4407
  accessList?: import("viem").AccessList | undefined;
4404
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4408
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4405
4409
  blobs?: undefined;
4406
4410
  blobVersionedHashes?: undefined;
4407
4411
  gasPrice?: undefined;
@@ -4472,7 +4476,7 @@ export declare class Centrifuge {
4472
4476
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4473
4477
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4474
4478
  accessList?: import("viem").AccessList | undefined;
4475
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4479
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4476
4480
  blobs?: undefined;
4477
4481
  blobVersionedHashes?: undefined;
4478
4482
  gasPrice?: undefined;
@@ -4482,7 +4486,7 @@ export declare class Centrifuge {
4482
4486
  sidecars?: undefined;
4483
4487
  } | {
4484
4488
  accessList?: import("viem").AccessList | undefined;
4485
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4489
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4486
4490
  blobs?: undefined;
4487
4491
  blobVersionedHashes?: undefined;
4488
4492
  gasPrice?: undefined;
@@ -4553,7 +4557,7 @@ export declare class Centrifuge {
4553
4557
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4554
4558
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4555
4559
  accessList?: import("viem").AccessList | undefined;
4556
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4560
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4557
4561
  blobs?: undefined;
4558
4562
  blobVersionedHashes?: undefined;
4559
4563
  gasPrice?: undefined;
@@ -4563,7 +4567,7 @@ export declare class Centrifuge {
4563
4567
  sidecars?: undefined;
4564
4568
  } | {
4565
4569
  accessList?: import("viem").AccessList | undefined;
4566
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4570
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4567
4571
  blobs?: undefined;
4568
4572
  blobVersionedHashes?: undefined;
4569
4573
  gasPrice?: undefined;
@@ -4634,7 +4638,7 @@ export declare class Centrifuge {
4634
4638
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4635
4639
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4636
4640
  accessList?: import("viem").AccessList | undefined;
4637
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4641
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4638
4642
  blobs?: undefined;
4639
4643
  blobVersionedHashes?: undefined;
4640
4644
  gasPrice?: undefined;
@@ -4644,7 +4648,7 @@ export declare class Centrifuge {
4644
4648
  sidecars?: undefined;
4645
4649
  } | {
4646
4650
  accessList?: import("viem").AccessList | undefined;
4647
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4651
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4648
4652
  blobs?: undefined;
4649
4653
  blobVersionedHashes?: undefined;
4650
4654
  gasPrice?: undefined;
@@ -4715,7 +4719,7 @@ export declare class Centrifuge {
4715
4719
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4716
4720
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4717
4721
  accessList?: import("viem").AccessList | undefined;
4718
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4722
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4719
4723
  blobs?: undefined;
4720
4724
  blobVersionedHashes?: undefined;
4721
4725
  gasPrice?: undefined;
@@ -4725,7 +4729,7 @@ export declare class Centrifuge {
4725
4729
  sidecars?: undefined;
4726
4730
  } | {
4727
4731
  accessList?: import("viem").AccessList | undefined;
4728
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4732
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4729
4733
  blobs?: undefined;
4730
4734
  blobVersionedHashes?: undefined;
4731
4735
  gasPrice?: undefined;
@@ -4796,7 +4800,7 @@ export declare class Centrifuge {
4796
4800
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4797
4801
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4798
4802
  accessList?: import("viem").AccessList | undefined;
4799
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4803
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4800
4804
  blobs?: undefined;
4801
4805
  blobVersionedHashes?: undefined;
4802
4806
  gasPrice?: undefined;
@@ -4806,7 +4810,7 @@ export declare class Centrifuge {
4806
4810
  sidecars?: undefined;
4807
4811
  } | {
4808
4812
  accessList?: import("viem").AccessList | undefined;
4809
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4813
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4810
4814
  blobs?: undefined;
4811
4815
  blobVersionedHashes?: undefined;
4812
4816
  gasPrice?: undefined;
@@ -4877,7 +4881,7 @@ export declare class Centrifuge {
4877
4881
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4878
4882
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4879
4883
  accessList?: import("viem").AccessList | undefined;
4880
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4884
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4881
4885
  blobs?: undefined;
4882
4886
  blobVersionedHashes?: undefined;
4883
4887
  gasPrice?: undefined;
@@ -4887,7 +4891,7 @@ export declare class Centrifuge {
4887
4891
  sidecars?: undefined;
4888
4892
  } | {
4889
4893
  accessList?: import("viem").AccessList | undefined;
4890
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4894
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4891
4895
  blobs?: undefined;
4892
4896
  blobVersionedHashes?: undefined;
4893
4897
  gasPrice?: undefined;
@@ -4958,7 +4962,7 @@ export declare class Centrifuge {
4958
4962
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
4959
4963
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4960
4964
  accessList?: import("viem").AccessList | undefined;
4961
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4965
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4962
4966
  blobs?: undefined;
4963
4967
  blobVersionedHashes?: undefined;
4964
4968
  gasPrice?: undefined;
@@ -4968,7 +4972,7 @@ export declare class Centrifuge {
4968
4972
  sidecars?: undefined;
4969
4973
  } | {
4970
4974
  accessList?: import("viem").AccessList | undefined;
4971
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
4975
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
4972
4976
  blobs?: undefined;
4973
4977
  blobVersionedHashes?: undefined;
4974
4978
  gasPrice?: undefined;
@@ -5039,7 +5043,7 @@ export declare class Centrifuge {
5039
5043
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5040
5044
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5041
5045
  accessList?: import("viem").AccessList | undefined;
5042
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5046
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5043
5047
  blobs?: undefined;
5044
5048
  blobVersionedHashes?: undefined;
5045
5049
  gasPrice?: undefined;
@@ -5049,7 +5053,7 @@ export declare class Centrifuge {
5049
5053
  sidecars?: undefined;
5050
5054
  } | {
5051
5055
  accessList?: import("viem").AccessList | undefined;
5052
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5056
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5053
5057
  blobs?: undefined;
5054
5058
  blobVersionedHashes?: undefined;
5055
5059
  gasPrice?: undefined;
@@ -5120,7 +5124,7 @@ export declare class Centrifuge {
5120
5124
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5121
5125
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5122
5126
  accessList?: import("viem").AccessList | undefined;
5123
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5127
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5124
5128
  blobs?: undefined;
5125
5129
  blobVersionedHashes?: undefined;
5126
5130
  gasPrice?: undefined;
@@ -5130,7 +5134,7 @@ export declare class Centrifuge {
5130
5134
  sidecars?: undefined;
5131
5135
  } | {
5132
5136
  accessList?: import("viem").AccessList | undefined;
5133
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5137
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5134
5138
  blobs?: undefined;
5135
5139
  blobVersionedHashes?: undefined;
5136
5140
  gasPrice?: undefined;
@@ -5201,7 +5205,7 @@ export declare class Centrifuge {
5201
5205
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5202
5206
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5203
5207
  accessList?: import("viem").AccessList | undefined;
5204
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5208
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5205
5209
  blobs?: undefined;
5206
5210
  blobVersionedHashes?: undefined;
5207
5211
  gasPrice?: undefined;
@@ -5211,7 +5215,7 @@ export declare class Centrifuge {
5211
5215
  sidecars?: undefined;
5212
5216
  } | {
5213
5217
  accessList?: import("viem").AccessList | undefined;
5214
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5218
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5215
5219
  blobs?: undefined;
5216
5220
  blobVersionedHashes?: undefined;
5217
5221
  gasPrice?: undefined;
@@ -5282,7 +5286,7 @@ export declare class Centrifuge {
5282
5286
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5283
5287
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5284
5288
  accessList?: import("viem").AccessList | undefined;
5285
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5289
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5286
5290
  blobs?: undefined;
5287
5291
  blobVersionedHashes?: undefined;
5288
5292
  gasPrice?: undefined;
@@ -5292,7 +5296,7 @@ export declare class Centrifuge {
5292
5296
  sidecars?: undefined;
5293
5297
  } | {
5294
5298
  accessList?: import("viem").AccessList | undefined;
5295
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5299
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5296
5300
  blobs?: undefined;
5297
5301
  blobVersionedHashes?: undefined;
5298
5302
  gasPrice?: undefined;
@@ -5363,7 +5367,7 @@ export declare class Centrifuge {
5363
5367
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5364
5368
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5365
5369
  accessList?: import("viem").AccessList | undefined;
5366
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5370
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5367
5371
  blobs?: undefined;
5368
5372
  blobVersionedHashes?: undefined;
5369
5373
  gasPrice?: undefined;
@@ -5373,7 +5377,7 @@ export declare class Centrifuge {
5373
5377
  sidecars?: undefined;
5374
5378
  } | {
5375
5379
  accessList?: import("viem").AccessList | undefined;
5376
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5380
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5377
5381
  blobs?: undefined;
5378
5382
  blobVersionedHashes?: undefined;
5379
5383
  gasPrice?: undefined;
@@ -5444,7 +5448,7 @@ export declare class Centrifuge {
5444
5448
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5445
5449
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5446
5450
  accessList?: import("viem").AccessList | undefined;
5447
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5451
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5448
5452
  blobs?: undefined;
5449
5453
  blobVersionedHashes?: undefined;
5450
5454
  gasPrice?: undefined;
@@ -5454,7 +5458,7 @@ export declare class Centrifuge {
5454
5458
  sidecars?: undefined;
5455
5459
  } | {
5456
5460
  accessList?: import("viem").AccessList | undefined;
5457
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5461
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5458
5462
  blobs?: undefined;
5459
5463
  blobVersionedHashes?: undefined;
5460
5464
  gasPrice?: undefined;
@@ -5525,7 +5529,7 @@ export declare class Centrifuge {
5525
5529
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5526
5530
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5527
5531
  accessList?: import("viem").AccessList | undefined;
5528
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5532
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5529
5533
  blobs?: undefined;
5530
5534
  blobVersionedHashes?: undefined;
5531
5535
  gasPrice?: undefined;
@@ -5535,7 +5539,7 @@ export declare class Centrifuge {
5535
5539
  sidecars?: undefined;
5536
5540
  } | {
5537
5541
  accessList?: import("viem").AccessList | undefined;
5538
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5542
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5539
5543
  blobs?: undefined;
5540
5544
  blobVersionedHashes?: undefined;
5541
5545
  gasPrice?: undefined;
@@ -5606,7 +5610,7 @@ export declare class Centrifuge {
5606
5610
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5607
5611
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5608
5612
  accessList?: import("viem").AccessList | undefined;
5609
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5613
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5610
5614
  blobs?: undefined;
5611
5615
  blobVersionedHashes?: undefined;
5612
5616
  gasPrice?: undefined;
@@ -5616,7 +5620,7 @@ export declare class Centrifuge {
5616
5620
  sidecars?: undefined;
5617
5621
  } | {
5618
5622
  accessList?: import("viem").AccessList | undefined;
5619
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5623
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5620
5624
  blobs?: undefined;
5621
5625
  blobVersionedHashes?: undefined;
5622
5626
  gasPrice?: undefined;
@@ -5687,7 +5691,7 @@ export declare class Centrifuge {
5687
5691
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5688
5692
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5689
5693
  accessList?: import("viem").AccessList | undefined;
5690
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5694
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5691
5695
  blobs?: undefined;
5692
5696
  blobVersionedHashes?: undefined;
5693
5697
  gasPrice?: undefined;
@@ -5697,7 +5701,7 @@ export declare class Centrifuge {
5697
5701
  sidecars?: undefined;
5698
5702
  } | {
5699
5703
  accessList?: import("viem").AccessList | undefined;
5700
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5704
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5701
5705
  blobs?: undefined;
5702
5706
  blobVersionedHashes?: undefined;
5703
5707
  gasPrice?: undefined;
@@ -5768,7 +5772,7 @@ export declare class Centrifuge {
5768
5772
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5769
5773
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5770
5774
  accessList?: import("viem").AccessList | undefined;
5771
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5775
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5772
5776
  blobs?: undefined;
5773
5777
  blobVersionedHashes?: undefined;
5774
5778
  gasPrice?: undefined;
@@ -5778,7 +5782,7 @@ export declare class Centrifuge {
5778
5782
  sidecars?: undefined;
5779
5783
  } | {
5780
5784
  accessList?: import("viem").AccessList | undefined;
5781
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5785
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5782
5786
  blobs?: undefined;
5783
5787
  blobVersionedHashes?: undefined;
5784
5788
  gasPrice?: undefined;
@@ -5849,7 +5853,7 @@ export declare class Centrifuge {
5849
5853
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5850
5854
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5851
5855
  accessList?: import("viem").AccessList | undefined;
5852
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5856
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5853
5857
  blobs?: undefined;
5854
5858
  blobVersionedHashes?: undefined;
5855
5859
  gasPrice?: undefined;
@@ -5859,7 +5863,7 @@ export declare class Centrifuge {
5859
5863
  sidecars?: undefined;
5860
5864
  } | {
5861
5865
  accessList?: import("viem").AccessList | undefined;
5862
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5866
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5863
5867
  blobs?: undefined;
5864
5868
  blobVersionedHashes?: undefined;
5865
5869
  gasPrice?: undefined;
@@ -5930,7 +5934,7 @@ export declare class Centrifuge {
5930
5934
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
5931
5935
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
5932
5936
  accessList?: import("viem").AccessList | undefined;
5933
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5937
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5934
5938
  blobs?: undefined;
5935
5939
  blobVersionedHashes?: undefined;
5936
5940
  gasPrice?: undefined;
@@ -5940,7 +5944,7 @@ export declare class Centrifuge {
5940
5944
  sidecars?: undefined;
5941
5945
  } | {
5942
5946
  accessList?: import("viem").AccessList | undefined;
5943
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
5947
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
5944
5948
  blobs?: undefined;
5945
5949
  blobVersionedHashes?: undefined;
5946
5950
  gasPrice?: undefined;
@@ -6011,7 +6015,7 @@ export declare class Centrifuge {
6011
6015
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
6012
6016
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
6013
6017
  accessList?: import("viem").AccessList | undefined;
6014
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6018
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6015
6019
  blobs?: undefined;
6016
6020
  blobVersionedHashes?: undefined;
6017
6021
  gasPrice?: undefined;
@@ -6021,7 +6025,7 @@ export declare class Centrifuge {
6021
6025
  sidecars?: undefined;
6022
6026
  } | {
6023
6027
  accessList?: import("viem").AccessList | undefined;
6024
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6028
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6025
6029
  blobs?: undefined;
6026
6030
  blobVersionedHashes?: undefined;
6027
6031
  gasPrice?: undefined;
@@ -6092,7 +6096,7 @@ export declare class Centrifuge {
6092
6096
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
6093
6097
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
6094
6098
  accessList?: import("viem").AccessList | undefined;
6095
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6099
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6096
6100
  blobs?: undefined;
6097
6101
  blobVersionedHashes?: undefined;
6098
6102
  gasPrice?: undefined;
@@ -6102,7 +6106,7 @@ export declare class Centrifuge {
6102
6106
  sidecars?: undefined;
6103
6107
  } | {
6104
6108
  accessList?: import("viem").AccessList | undefined;
6105
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6109
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6106
6110
  blobs?: undefined;
6107
6111
  blobVersionedHashes?: undefined;
6108
6112
  gasPrice?: undefined;
@@ -6173,7 +6177,7 @@ export declare class Centrifuge {
6173
6177
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
6174
6178
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
6175
6179
  accessList?: import("viem").AccessList | undefined;
6176
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6180
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6177
6181
  blobs?: undefined;
6178
6182
  blobVersionedHashes?: undefined;
6179
6183
  gasPrice?: undefined;
@@ -6183,7 +6187,7 @@ export declare class Centrifuge {
6183
6187
  sidecars?: undefined;
6184
6188
  } | {
6185
6189
  accessList?: import("viem").AccessList | undefined;
6186
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6190
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6187
6191
  blobs?: undefined;
6188
6192
  blobVersionedHashes?: undefined;
6189
6193
  gasPrice?: undefined;
@@ -6254,7 +6258,7 @@ export declare class Centrifuge {
6254
6258
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
6255
6259
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
6256
6260
  accessList?: import("viem").AccessList | undefined;
6257
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6261
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6258
6262
  blobs?: undefined;
6259
6263
  blobVersionedHashes?: undefined;
6260
6264
  gasPrice?: undefined;
@@ -6264,7 +6268,7 @@ export declare class Centrifuge {
6264
6268
  sidecars?: undefined;
6265
6269
  } | {
6266
6270
  accessList?: import("viem").AccessList | undefined;
6267
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6271
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6268
6272
  blobs?: undefined;
6269
6273
  blobVersionedHashes?: undefined;
6270
6274
  gasPrice?: undefined;
@@ -6335,7 +6339,7 @@ export declare class Centrifuge {
6335
6339
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
6336
6340
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
6337
6341
  accessList?: import("viem").AccessList | undefined;
6338
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6342
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6339
6343
  blobs?: undefined;
6340
6344
  blobVersionedHashes?: undefined;
6341
6345
  gasPrice?: undefined;
@@ -6345,7 +6349,7 @@ export declare class Centrifuge {
6345
6349
  sidecars?: undefined;
6346
6350
  } | {
6347
6351
  accessList?: import("viem").AccessList | undefined;
6348
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6352
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6349
6353
  blobs?: undefined;
6350
6354
  blobVersionedHashes?: undefined;
6351
6355
  gasPrice?: undefined;
@@ -6416,7 +6420,7 @@ export declare class Centrifuge {
6416
6420
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
6417
6421
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
6418
6422
  accessList?: import("viem").AccessList | undefined;
6419
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6423
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6420
6424
  blobs?: undefined;
6421
6425
  blobVersionedHashes?: undefined;
6422
6426
  gasPrice?: undefined;
@@ -6426,7 +6430,7 @@ export declare class Centrifuge {
6426
6430
  sidecars?: undefined;
6427
6431
  } | {
6428
6432
  accessList?: import("viem").AccessList | undefined;
6429
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6433
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6430
6434
  blobs?: undefined;
6431
6435
  blobVersionedHashes?: undefined;
6432
6436
  gasPrice?: undefined;
@@ -6497,7 +6501,7 @@ export declare class Centrifuge {
6497
6501
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
6498
6502
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
6499
6503
  accessList?: import("viem").AccessList | undefined;
6500
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6504
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6501
6505
  blobs?: undefined;
6502
6506
  blobVersionedHashes?: undefined;
6503
6507
  gasPrice?: undefined;
@@ -6507,7 +6511,7 @@ export declare class Centrifuge {
6507
6511
  sidecars?: undefined;
6508
6512
  } | {
6509
6513
  accessList?: import("viem").AccessList | undefined;
6510
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6514
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6511
6515
  blobs?: undefined;
6512
6516
  blobVersionedHashes?: undefined;
6513
6517
  gasPrice?: undefined;
@@ -6578,7 +6582,7 @@ export declare class Centrifuge {
6578
6582
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
6579
6583
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
6580
6584
  accessList?: import("viem").AccessList | undefined;
6581
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6585
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6582
6586
  blobs?: undefined;
6583
6587
  blobVersionedHashes?: undefined;
6584
6588
  gasPrice?: undefined;
@@ -6588,7 +6592,7 @@ export declare class Centrifuge {
6588
6592
  sidecars?: undefined;
6589
6593
  } | {
6590
6594
  accessList?: import("viem").AccessList | undefined;
6591
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6595
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6592
6596
  blobs?: undefined;
6593
6597
  blobVersionedHashes?: undefined;
6594
6598
  gasPrice?: undefined;
@@ -6659,7 +6663,7 @@ export declare class Centrifuge {
6659
6663
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
6660
6664
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
6661
6665
  accessList?: import("viem").AccessList | undefined;
6662
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6666
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6663
6667
  blobs?: undefined;
6664
6668
  blobVersionedHashes?: undefined;
6665
6669
  gasPrice?: undefined;
@@ -6669,7 +6673,7 @@ export declare class Centrifuge {
6669
6673
  sidecars?: undefined;
6670
6674
  } | {
6671
6675
  accessList?: import("viem").AccessList | undefined;
6672
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6676
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6673
6677
  blobs?: undefined;
6674
6678
  blobVersionedHashes?: undefined;
6675
6679
  gasPrice?: undefined;
@@ -6740,7 +6744,7 @@ export declare class Centrifuge {
6740
6744
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
6741
6745
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
6742
6746
  accessList?: import("viem").AccessList | undefined;
6743
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6747
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6744
6748
  blobs?: undefined;
6745
6749
  blobVersionedHashes?: undefined;
6746
6750
  gasPrice?: undefined;
@@ -6750,7 +6754,7 @@ export declare class Centrifuge {
6750
6754
  sidecars?: undefined;
6751
6755
  } | {
6752
6756
  accessList?: import("viem").AccessList | undefined;
6753
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6757
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6754
6758
  blobs?: undefined;
6755
6759
  blobVersionedHashes?: undefined;
6756
6760
  gasPrice?: undefined;
@@ -6821,7 +6825,7 @@ export declare class Centrifuge {
6821
6825
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
6822
6826
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
6823
6827
  accessList?: import("viem").AccessList | undefined;
6824
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6828
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6825
6829
  blobs?: undefined;
6826
6830
  blobVersionedHashes?: undefined;
6827
6831
  gasPrice?: undefined;
@@ -6831,7 +6835,7 @@ export declare class Centrifuge {
6831
6835
  sidecars?: undefined;
6832
6836
  } | {
6833
6837
  accessList?: import("viem").AccessList | undefined;
6834
- authorizationList?: import("viem/experimental").SignedAuthorizationList | undefined;
6838
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
6835
6839
  blobs?: undefined;
6836
6840
  blobVersionedHashes?: undefined;
6837
6841
  gasPrice?: undefined;
@@ -6846,7 +6850,10 @@ export declare class Centrifuge {
6846
6850
  }, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_8 ? T_8 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") ? T_8 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_8 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K]; } : never>;
6847
6851
  readContract: <const abi extends Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "pure" | "view">, const args extends import("viem").ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: import("viem").ReadContractParameters<abi, functionName, args>) => Promise<import("viem").ReadContractReturnType<abi, functionName, args>>;
6848
6852
  sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<import("viem").SendRawTransactionReturnType>;
6849
- simulateContract: <const abi extends Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends Chain | undefined, accountOverride extends AccountType | import("viem").Address | undefined = undefined>(args: import("viem").SimulateContractParameters<abi, functionName, args_1, Chain, chainOverride, accountOverride>) => Promise<import("viem").SimulateContractReturnType<abi, functionName, args_1, Chain, AccountType | undefined, chainOverride, accountOverride>>;
6853
+ simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
6854
+ simulateBlocks: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
6855
+ simulateCalls: <const calls extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls>) => Promise<import("viem").SimulateCallsReturnType<calls>>;
6856
+ simulateContract: <const abi extends Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends Chain | undefined, accountOverride extends Account | import("viem").Address | undefined = undefined>(args: import("viem").SimulateContractParameters<abi, functionName, args_1, Chain, chainOverride, accountOverride>) => Promise<import("viem").SimulateContractReturnType<abi, functionName, args_1, Chain, Account | undefined, chainOverride, accountOverride>>;
6850
6857
  verifyMessage: (args: import("viem").VerifyMessageActionParameters) => Promise<import("viem").VerifyMessageActionReturnType>;
6851
6858
  verifySiweMessage: (args: {
6852
6859
  blockNumber?: bigint | undefined;
@@ -6925,7 +6932,6 @@ export declare class Centrifuge {
6925
6932
  * @param hubChainId - The chain ID where the assets should optionally be registered
6926
6933
  */
6927
6934
  assets(spokeChainId: number, hubChainId?: number): Query<{
6928
- registeredOnCentrifugeId: number;
6929
6935
  id: AssetId;
6930
6936
  address: `0x${string}`;
6931
6937
  name: string;
@@ -6938,6 +6944,14 @@ export declare class Centrifuge {
6938
6944
  valuations(chainId: number): Query<{
6939
6945
  identityValuation: `0x${string}`;
6940
6946
  }>;
6947
+ /**
6948
+ * Get the restriction hook addresses that can be used for share tokens.
6949
+ */
6950
+ restrictionHooks(chainId: number): Query<{
6951
+ freezeOnlyHook: `0x${string}`;
6952
+ redemptionRestrictionsHook: `0x${string}`;
6953
+ fullRestrictionsHook: `0x${string}`;
6954
+ }>;
6941
6955
  /**
6942
6956
  * Register an asset
6943
6957
  * @param originChainId - The chain ID where the asset exists