@stellar/stellar-base 12.1.1 → 13.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/next.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- // Automatically generated on 2023-10-16T10:48:00-08:00
1
+ // Automatically generated by xdrgen on 2024-09-12T11:09:00-08:00
2
+ // DO NOT EDIT or your changes may be overwritten
2
3
  import { Operation } from './index';
3
4
 
4
5
  export {};
@@ -88,7 +89,7 @@ export namespace xdr {
88
89
  unsigned: boolean;
89
90
 
90
91
  constructor(
91
- values: string | bigint | number | Array<string | bigint | number>,
92
+ values: string | bigint | number | (string | bigint | number)[],
92
93
  );
93
94
 
94
95
  toXDR(format?: 'raw'): Buffer;
@@ -132,7 +133,7 @@ export namespace xdr {
132
133
  unsigned: boolean;
133
134
 
134
135
  constructor(
135
- values: string | bigint | number | Array<string | bigint | number>,
136
+ values: string | bigint | number | (string | bigint | number)[],
136
137
  );
137
138
 
138
139
  toXDR(format?: 'raw'): Buffer;
@@ -487,6 +488,71 @@ export namespace xdr {
487
488
  static envelopeTypeSorobanAuthorization(): EnvelopeType;
488
489
  }
489
490
 
491
+ class BucketListType {
492
+ readonly name: 'live' | 'hotArchive' | 'coldArchive';
493
+
494
+ readonly value: 0 | 1 | 2;
495
+
496
+ static live(): BucketListType;
497
+
498
+ static hotArchive(): BucketListType;
499
+
500
+ static coldArchive(): BucketListType;
501
+ }
502
+
503
+ class BucketEntryType {
504
+ readonly name: 'metaentry' | 'liveentry' | 'deadentry' | 'initentry';
505
+
506
+ readonly value: -1 | 0 | 1 | 2;
507
+
508
+ static metaentry(): BucketEntryType;
509
+
510
+ static liveentry(): BucketEntryType;
511
+
512
+ static deadentry(): BucketEntryType;
513
+
514
+ static initentry(): BucketEntryType;
515
+ }
516
+
517
+ class HotArchiveBucketEntryType {
518
+ readonly name:
519
+ | 'hotArchiveMetaentry'
520
+ | 'hotArchiveArchived'
521
+ | 'hotArchiveLive'
522
+ | 'hotArchiveDeleted';
523
+
524
+ readonly value: -1 | 0 | 1 | 2;
525
+
526
+ static hotArchiveMetaentry(): HotArchiveBucketEntryType;
527
+
528
+ static hotArchiveArchived(): HotArchiveBucketEntryType;
529
+
530
+ static hotArchiveLive(): HotArchiveBucketEntryType;
531
+
532
+ static hotArchiveDeleted(): HotArchiveBucketEntryType;
533
+ }
534
+
535
+ class ColdArchiveBucketEntryType {
536
+ readonly name:
537
+ | 'coldArchiveMetaentry'
538
+ | 'coldArchiveArchivedLeaf'
539
+ | 'coldArchiveDeletedLeaf'
540
+ | 'coldArchiveBoundaryLeaf'
541
+ | 'coldArchiveHash';
542
+
543
+ readonly value: -1 | 0 | 1 | 2 | 3;
544
+
545
+ static coldArchiveMetaentry(): ColdArchiveBucketEntryType;
546
+
547
+ static coldArchiveArchivedLeaf(): ColdArchiveBucketEntryType;
548
+
549
+ static coldArchiveDeletedLeaf(): ColdArchiveBucketEntryType;
550
+
551
+ static coldArchiveBoundaryLeaf(): ColdArchiveBucketEntryType;
552
+
553
+ static coldArchiveHash(): ColdArchiveBucketEntryType;
554
+ }
555
+
490
556
  class StellarValueType {
491
557
  readonly name: 'stellarValueBasic' | 'stellarValueSigned';
492
558
 
@@ -539,20 +605,6 @@ export namespace xdr {
539
605
  static ledgerUpgradeMaxSorobanTxSetSize(): LedgerUpgradeType;
540
606
  }
541
607
 
542
- class BucketEntryType {
543
- readonly name: 'metaentry' | 'liveentry' | 'deadentry' | 'initentry';
544
-
545
- readonly value: -1 | 0 | 1 | 2;
546
-
547
- static metaentry(): BucketEntryType;
548
-
549
- static liveentry(): BucketEntryType;
550
-
551
- static deadentry(): BucketEntryType;
552
-
553
- static initentry(): BucketEntryType;
554
- }
555
-
556
608
  class TxSetComponentType {
557
609
  readonly name: 'txsetCompTxsMaybeDiscountedFee';
558
610
 
@@ -638,7 +690,11 @@ export namespace xdr {
638
690
  | 'sendMore'
639
691
  | 'sendMoreExtended'
640
692
  | 'floodAdvert'
641
- | 'floodDemand';
693
+ | 'floodDemand'
694
+ | 'timeSlicedSurveyRequest'
695
+ | 'timeSlicedSurveyResponse'
696
+ | 'timeSlicedSurveyStartCollecting'
697
+ | 'timeSlicedSurveyStopCollecting';
642
698
 
643
699
  readonly value:
644
700
  | 0
@@ -660,7 +716,11 @@ export namespace xdr {
660
716
  | 16
661
717
  | 20
662
718
  | 18
663
- | 19;
719
+ | 19
720
+ | 21
721
+ | 22
722
+ | 23
723
+ | 24;
664
724
 
665
725
  static errorMsg(): MessageType;
666
726
 
@@ -701,24 +761,39 @@ export namespace xdr {
701
761
  static floodAdvert(): MessageType;
702
762
 
703
763
  static floodDemand(): MessageType;
764
+
765
+ static timeSlicedSurveyRequest(): MessageType;
766
+
767
+ static timeSlicedSurveyResponse(): MessageType;
768
+
769
+ static timeSlicedSurveyStartCollecting(): MessageType;
770
+
771
+ static timeSlicedSurveyStopCollecting(): MessageType;
704
772
  }
705
773
 
706
774
  class SurveyMessageCommandType {
707
- readonly name: 'surveyTopology';
775
+ readonly name: 'surveyTopology' | 'timeSlicedSurveyTopology';
708
776
 
709
- readonly value: 0;
777
+ readonly value: 0 | 1;
710
778
 
711
779
  static surveyTopology(): SurveyMessageCommandType;
780
+
781
+ static timeSlicedSurveyTopology(): SurveyMessageCommandType;
712
782
  }
713
783
 
714
784
  class SurveyMessageResponseType {
715
- readonly name: 'surveyTopologyResponseV0' | 'surveyTopologyResponseV1';
785
+ readonly name:
786
+ | 'surveyTopologyResponseV0'
787
+ | 'surveyTopologyResponseV1'
788
+ | 'surveyTopologyResponseV2';
716
789
 
717
- readonly value: 0 | 1;
790
+ readonly value: 0 | 1 | 2;
718
791
 
719
792
  static surveyTopologyResponseV0(): SurveyMessageResponseType;
720
793
 
721
794
  static surveyTopologyResponseV1(): SurveyMessageResponseType;
795
+
796
+ static surveyTopologyResponseV2(): SurveyMessageResponseType;
722
797
  }
723
798
 
724
799
  class OperationType {
@@ -849,15 +924,18 @@ export namespace xdr {
849
924
  readonly name:
850
925
  | 'hostFunctionTypeInvokeContract'
851
926
  | 'hostFunctionTypeCreateContract'
852
- | 'hostFunctionTypeUploadContractWasm';
927
+ | 'hostFunctionTypeUploadContractWasm'
928
+ | 'hostFunctionTypeCreateContractV2';
853
929
 
854
- readonly value: 0 | 1 | 2;
930
+ readonly value: 0 | 1 | 2 | 3;
855
931
 
856
932
  static hostFunctionTypeInvokeContract(): HostFunctionType;
857
933
 
858
934
  static hostFunctionTypeCreateContract(): HostFunctionType;
859
935
 
860
936
  static hostFunctionTypeUploadContractWasm(): HostFunctionType;
937
+
938
+ static hostFunctionTypeCreateContractV2(): HostFunctionType;
861
939
  }
862
940
 
863
941
  class ContractIdPreimageType {
@@ -875,13 +953,16 @@ export namespace xdr {
875
953
  class SorobanAuthorizedFunctionType {
876
954
  readonly name:
877
955
  | 'sorobanAuthorizedFunctionTypeContractFn'
878
- | 'sorobanAuthorizedFunctionTypeCreateContractHostFn';
956
+ | 'sorobanAuthorizedFunctionTypeCreateContractHostFn'
957
+ | 'sorobanAuthorizedFunctionTypeCreateContractV2HostFn';
879
958
 
880
- readonly value: 0 | 1;
959
+ readonly value: 0 | 1 | 2;
881
960
 
882
961
  static sorobanAuthorizedFunctionTypeContractFn(): SorobanAuthorizedFunctionType;
883
962
 
884
963
  static sorobanAuthorizedFunctionTypeCreateContractHostFn(): SorobanAuthorizedFunctionType;
964
+
965
+ static sorobanAuthorizedFunctionTypeCreateContractV2HostFn(): SorobanAuthorizedFunctionType;
885
966
  }
886
967
 
887
968
  class SorobanCredentialsType {
@@ -929,6 +1010,16 @@ export namespace xdr {
929
1010
  static precondV2(): PreconditionType;
930
1011
  }
931
1012
 
1013
+ class ArchivalProofType {
1014
+ readonly name: 'existence' | 'nonexistence';
1015
+
1016
+ readonly value: 0 | 1;
1017
+
1018
+ static existence(): ArchivalProofType;
1019
+
1020
+ static nonexistence(): ArchivalProofType;
1021
+ }
1022
+
932
1023
  class ClaimAtomType {
933
1024
  readonly name:
934
1025
  | 'claimAtomTypeV0'
@@ -1853,6 +1944,21 @@ export namespace xdr {
1853
1944
  static signerKeyTypeEd25519SignedPayload(): SignerKeyType;
1854
1945
  }
1855
1946
 
1947
+ class BinaryFuseFilterType {
1948
+ readonly name:
1949
+ | 'binaryFuseFilter8Bit'
1950
+ | 'binaryFuseFilter16Bit'
1951
+ | 'binaryFuseFilter32Bit';
1952
+
1953
+ readonly value: 0 | 1 | 2;
1954
+
1955
+ static binaryFuseFilter8Bit(): BinaryFuseFilterType;
1956
+
1957
+ static binaryFuseFilter16Bit(): BinaryFuseFilterType;
1958
+
1959
+ static binaryFuseFilter32Bit(): BinaryFuseFilterType;
1960
+ }
1961
+
1856
1962
  class ScValType {
1857
1963
  readonly name:
1858
1964
  | 'scvBool'
@@ -2238,7 +2344,32 @@ export namespace xdr {
2238
2344
  | 'instantiateWasmExports'
2239
2345
  | 'instantiateWasmDataSegmentBytes'
2240
2346
  | 'sec1DecodePointUncompressed'
2241
- | 'verifyEcdsaSecp256r1Sig';
2347
+ | 'verifyEcdsaSecp256r1Sig'
2348
+ | 'bls12381EncodeFp'
2349
+ | 'bls12381DecodeFp'
2350
+ | 'bls12381G1CheckPointOnCurve'
2351
+ | 'bls12381G1CheckPointInSubgroup'
2352
+ | 'bls12381G2CheckPointOnCurve'
2353
+ | 'bls12381G2CheckPointInSubgroup'
2354
+ | 'bls12381G1ProjectiveToAffine'
2355
+ | 'bls12381G2ProjectiveToAffine'
2356
+ | 'bls12381G1Add'
2357
+ | 'bls12381G1Mul'
2358
+ | 'bls12381G1Msm'
2359
+ | 'bls12381MapFpToG1'
2360
+ | 'bls12381HashToG1'
2361
+ | 'bls12381G2Add'
2362
+ | 'bls12381G2Mul'
2363
+ | 'bls12381G2Msm'
2364
+ | 'bls12381MapFp2ToG2'
2365
+ | 'bls12381HashToG2'
2366
+ | 'bls12381Pairing'
2367
+ | 'bls12381FrFromU256'
2368
+ | 'bls12381FrToU256'
2369
+ | 'bls12381FrAddSub'
2370
+ | 'bls12381FrMul'
2371
+ | 'bls12381FrPow'
2372
+ | 'bls12381FrInv';
2242
2373
 
2243
2374
  readonly value:
2244
2375
  | 0
@@ -2285,7 +2416,32 @@ export namespace xdr {
2285
2416
  | 41
2286
2417
  | 42
2287
2418
  | 43
2288
- | 44;
2419
+ | 44
2420
+ | 45
2421
+ | 46
2422
+ | 47
2423
+ | 48
2424
+ | 49
2425
+ | 50
2426
+ | 51
2427
+ | 52
2428
+ | 53
2429
+ | 54
2430
+ | 55
2431
+ | 56
2432
+ | 57
2433
+ | 58
2434
+ | 59
2435
+ | 60
2436
+ | 61
2437
+ | 62
2438
+ | 63
2439
+ | 64
2440
+ | 65
2441
+ | 66
2442
+ | 67
2443
+ | 68
2444
+ | 69;
2289
2445
 
2290
2446
  static wasmInsnExec(): ContractCostType;
2291
2447
 
@@ -2376,6 +2532,56 @@ export namespace xdr {
2376
2532
  static sec1DecodePointUncompressed(): ContractCostType;
2377
2533
 
2378
2534
  static verifyEcdsaSecp256r1Sig(): ContractCostType;
2535
+
2536
+ static bls12381EncodeFp(): ContractCostType;
2537
+
2538
+ static bls12381DecodeFp(): ContractCostType;
2539
+
2540
+ static bls12381G1CheckPointOnCurve(): ContractCostType;
2541
+
2542
+ static bls12381G1CheckPointInSubgroup(): ContractCostType;
2543
+
2544
+ static bls12381G2CheckPointOnCurve(): ContractCostType;
2545
+
2546
+ static bls12381G2CheckPointInSubgroup(): ContractCostType;
2547
+
2548
+ static bls12381G1ProjectiveToAffine(): ContractCostType;
2549
+
2550
+ static bls12381G2ProjectiveToAffine(): ContractCostType;
2551
+
2552
+ static bls12381G1Add(): ContractCostType;
2553
+
2554
+ static bls12381G1Mul(): ContractCostType;
2555
+
2556
+ static bls12381G1Msm(): ContractCostType;
2557
+
2558
+ static bls12381MapFpToG1(): ContractCostType;
2559
+
2560
+ static bls12381HashToG1(): ContractCostType;
2561
+
2562
+ static bls12381G2Add(): ContractCostType;
2563
+
2564
+ static bls12381G2Mul(): ContractCostType;
2565
+
2566
+ static bls12381G2Msm(): ContractCostType;
2567
+
2568
+ static bls12381MapFp2ToG2(): ContractCostType;
2569
+
2570
+ static bls12381HashToG2(): ContractCostType;
2571
+
2572
+ static bls12381Pairing(): ContractCostType;
2573
+
2574
+ static bls12381FrFromU256(): ContractCostType;
2575
+
2576
+ static bls12381FrToU256(): ContractCostType;
2577
+
2578
+ static bls12381FrAddSub(): ContractCostType;
2579
+
2580
+ static bls12381FrMul(): ContractCostType;
2581
+
2582
+ static bls12381FrPow(): ContractCostType;
2583
+
2584
+ static bls12381FrInv(): ContractCostType;
2379
2585
  }
2380
2586
 
2381
2587
  class ConfigSettingId {
@@ -2393,9 +2599,25 @@ export namespace xdr {
2393
2599
  | 'configSettingStateArchival'
2394
2600
  | 'configSettingContractExecutionLanes'
2395
2601
  | 'configSettingBucketlistSizeWindow'
2396
- | 'configSettingEvictionIterator';
2602
+ | 'configSettingEvictionIterator'
2603
+ | 'configSettingContractParallelComputeV0';
2397
2604
 
2398
- readonly value: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13;
2605
+ readonly value:
2606
+ | 0
2607
+ | 1
2608
+ | 2
2609
+ | 3
2610
+ | 4
2611
+ | 5
2612
+ | 6
2613
+ | 7
2614
+ | 8
2615
+ | 9
2616
+ | 10
2617
+ | 11
2618
+ | 12
2619
+ | 13
2620
+ | 14;
2399
2621
 
2400
2622
  static configSettingContractMaxSizeBytes(): ConfigSettingId;
2401
2623
 
@@ -2424,6 +2646,8 @@ export namespace xdr {
2424
2646
  static configSettingBucketlistSizeWindow(): ConfigSettingId;
2425
2647
 
2426
2648
  static configSettingEvictionIterator(): ConfigSettingId;
2649
+
2650
+ static configSettingContractParallelComputeV0(): ConfigSettingId;
2427
2651
  }
2428
2652
 
2429
2653
  const Value: VarOpaque;
@@ -2448,16 +2672,24 @@ export namespace xdr {
2448
2672
 
2449
2673
  const UpgradeType: VarOpaque;
2450
2674
 
2675
+ const TxExecutionThread: XDRArray<TransactionEnvelope>;
2676
+
2677
+ const ParallelTxExecutionStage: XDRArray<TransactionEnvelope[]>;
2678
+
2451
2679
  const LedgerEntryChanges: XDRArray<LedgerEntryChange>;
2452
2680
 
2453
2681
  const EncryptedBody: VarOpaque;
2454
2682
 
2455
2683
  const PeerStatList: XDRArray<PeerStats>;
2456
2684
 
2685
+ const TimeSlicedPeerDataList: XDRArray<TimeSlicedPeerData>;
2686
+
2457
2687
  const TxAdvertVector: XDRArray<Hash>;
2458
2688
 
2459
2689
  const TxDemandVector: XDRArray<Hash>;
2460
2690
 
2691
+ const ProofLevel: XDRArray<ArchivalProofNode>;
2692
+
2461
2693
  const Hash: Opaque;
2462
2694
 
2463
2695
  const Uint256: Opaque;
@@ -4068,6 +4300,160 @@ export namespace xdr {
4068
4300
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
4069
4301
  }
4070
4302
 
4303
+ class BucketMetadata {
4304
+ constructor(attributes: { ledgerVersion: number; ext: BucketMetadataExt });
4305
+
4306
+ ledgerVersion(value?: number): number;
4307
+
4308
+ ext(value?: BucketMetadataExt): BucketMetadataExt;
4309
+
4310
+ toXDR(format?: 'raw'): Buffer;
4311
+
4312
+ toXDR(format: 'hex' | 'base64'): string;
4313
+
4314
+ static read(io: Buffer): BucketMetadata;
4315
+
4316
+ static write(value: BucketMetadata, io: Buffer): void;
4317
+
4318
+ static isValid(value: BucketMetadata): boolean;
4319
+
4320
+ static toXDR(value: BucketMetadata): Buffer;
4321
+
4322
+ static fromXDR(input: Buffer, format?: 'raw'): BucketMetadata;
4323
+
4324
+ static fromXDR(input: string, format: 'hex' | 'base64'): BucketMetadata;
4325
+
4326
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
4327
+
4328
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
4329
+ }
4330
+
4331
+ class ColdArchiveArchivedLeaf {
4332
+ constructor(attributes: { index: number; archivedEntry: LedgerEntry });
4333
+
4334
+ index(value?: number): number;
4335
+
4336
+ archivedEntry(value?: LedgerEntry): LedgerEntry;
4337
+
4338
+ toXDR(format?: 'raw'): Buffer;
4339
+
4340
+ toXDR(format: 'hex' | 'base64'): string;
4341
+
4342
+ static read(io: Buffer): ColdArchiveArchivedLeaf;
4343
+
4344
+ static write(value: ColdArchiveArchivedLeaf, io: Buffer): void;
4345
+
4346
+ static isValid(value: ColdArchiveArchivedLeaf): boolean;
4347
+
4348
+ static toXDR(value: ColdArchiveArchivedLeaf): Buffer;
4349
+
4350
+ static fromXDR(input: Buffer, format?: 'raw'): ColdArchiveArchivedLeaf;
4351
+
4352
+ static fromXDR(
4353
+ input: string,
4354
+ format: 'hex' | 'base64',
4355
+ ): ColdArchiveArchivedLeaf;
4356
+
4357
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
4358
+
4359
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
4360
+ }
4361
+
4362
+ class ColdArchiveDeletedLeaf {
4363
+ constructor(attributes: { index: number; deletedKey: LedgerKey });
4364
+
4365
+ index(value?: number): number;
4366
+
4367
+ deletedKey(value?: LedgerKey): LedgerKey;
4368
+
4369
+ toXDR(format?: 'raw'): Buffer;
4370
+
4371
+ toXDR(format: 'hex' | 'base64'): string;
4372
+
4373
+ static read(io: Buffer): ColdArchiveDeletedLeaf;
4374
+
4375
+ static write(value: ColdArchiveDeletedLeaf, io: Buffer): void;
4376
+
4377
+ static isValid(value: ColdArchiveDeletedLeaf): boolean;
4378
+
4379
+ static toXDR(value: ColdArchiveDeletedLeaf): Buffer;
4380
+
4381
+ static fromXDR(input: Buffer, format?: 'raw'): ColdArchiveDeletedLeaf;
4382
+
4383
+ static fromXDR(
4384
+ input: string,
4385
+ format: 'hex' | 'base64',
4386
+ ): ColdArchiveDeletedLeaf;
4387
+
4388
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
4389
+
4390
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
4391
+ }
4392
+
4393
+ class ColdArchiveBoundaryLeaf {
4394
+ constructor(attributes: { index: number; isLowerBound: boolean });
4395
+
4396
+ index(value?: number): number;
4397
+
4398
+ isLowerBound(value?: boolean): boolean;
4399
+
4400
+ toXDR(format?: 'raw'): Buffer;
4401
+
4402
+ toXDR(format: 'hex' | 'base64'): string;
4403
+
4404
+ static read(io: Buffer): ColdArchiveBoundaryLeaf;
4405
+
4406
+ static write(value: ColdArchiveBoundaryLeaf, io: Buffer): void;
4407
+
4408
+ static isValid(value: ColdArchiveBoundaryLeaf): boolean;
4409
+
4410
+ static toXDR(value: ColdArchiveBoundaryLeaf): Buffer;
4411
+
4412
+ static fromXDR(input: Buffer, format?: 'raw'): ColdArchiveBoundaryLeaf;
4413
+
4414
+ static fromXDR(
4415
+ input: string,
4416
+ format: 'hex' | 'base64',
4417
+ ): ColdArchiveBoundaryLeaf;
4418
+
4419
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
4420
+
4421
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
4422
+ }
4423
+
4424
+ class ColdArchiveHashEntry {
4425
+ constructor(attributes: { index: number; level: number; hash: Buffer });
4426
+
4427
+ index(value?: number): number;
4428
+
4429
+ level(value?: number): number;
4430
+
4431
+ hash(value?: Buffer): Buffer;
4432
+
4433
+ toXDR(format?: 'raw'): Buffer;
4434
+
4435
+ toXDR(format: 'hex' | 'base64'): string;
4436
+
4437
+ static read(io: Buffer): ColdArchiveHashEntry;
4438
+
4439
+ static write(value: ColdArchiveHashEntry, io: Buffer): void;
4440
+
4441
+ static isValid(value: ColdArchiveHashEntry): boolean;
4442
+
4443
+ static toXDR(value: ColdArchiveHashEntry): Buffer;
4444
+
4445
+ static fromXDR(input: Buffer, format?: 'raw'): ColdArchiveHashEntry;
4446
+
4447
+ static fromXDR(
4448
+ input: string,
4449
+ format: 'hex' | 'base64',
4450
+ ): ColdArchiveHashEntry;
4451
+
4452
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
4453
+
4454
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
4455
+ }
4456
+
4071
4457
  class LedgerCloseValueSignature {
4072
4458
  constructor(attributes: { nodeId: NodeId; signature: Buffer });
4073
4459
 
@@ -4294,28 +4680,36 @@ export namespace xdr {
4294
4680
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
4295
4681
  }
4296
4682
 
4297
- class BucketMetadata {
4298
- constructor(attributes: { ledgerVersion: number; ext: BucketMetadataExt });
4683
+ class ParallelTxsComponent {
4684
+ constructor(attributes: {
4685
+ baseFee: null | Int64;
4686
+ executionStages: TransactionEnvelope[][][];
4687
+ });
4299
4688
 
4300
- ledgerVersion(value?: number): number;
4689
+ baseFee(value?: null | Int64): null | Int64;
4301
4690
 
4302
- ext(value?: BucketMetadataExt): BucketMetadataExt;
4691
+ executionStages(
4692
+ value?: TransactionEnvelope[][][],
4693
+ ): TransactionEnvelope[][][];
4303
4694
 
4304
4695
  toXDR(format?: 'raw'): Buffer;
4305
4696
 
4306
4697
  toXDR(format: 'hex' | 'base64'): string;
4307
4698
 
4308
- static read(io: Buffer): BucketMetadata;
4699
+ static read(io: Buffer): ParallelTxsComponent;
4309
4700
 
4310
- static write(value: BucketMetadata, io: Buffer): void;
4701
+ static write(value: ParallelTxsComponent, io: Buffer): void;
4311
4702
 
4312
- static isValid(value: BucketMetadata): boolean;
4703
+ static isValid(value: ParallelTxsComponent): boolean;
4313
4704
 
4314
- static toXDR(value: BucketMetadata): Buffer;
4705
+ static toXDR(value: ParallelTxsComponent): Buffer;
4315
4706
 
4316
- static fromXDR(input: Buffer, format?: 'raw'): BucketMetadata;
4707
+ static fromXDR(input: Buffer, format?: 'raw'): ParallelTxsComponent;
4317
4708
 
4318
- static fromXDR(input: string, format: 'hex' | 'base64'): BucketMetadata;
4709
+ static fromXDR(
4710
+ input: string,
4711
+ format: 'hex' | 'base64',
4712
+ ): ParallelTxsComponent;
4319
4713
 
4320
4714
  static validateXDR(input: Buffer, format?: 'raw'): boolean;
4321
4715
 
@@ -5449,6 +5843,178 @@ export namespace xdr {
5449
5843
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
5450
5844
  }
5451
5845
 
5846
+ class TimeSlicedSurveyStartCollectingMessage {
5847
+ constructor(attributes: {
5848
+ surveyorId: NodeId;
5849
+ nonce: number;
5850
+ ledgerNum: number;
5851
+ });
5852
+
5853
+ surveyorId(value?: NodeId): NodeId;
5854
+
5855
+ nonce(value?: number): number;
5856
+
5857
+ ledgerNum(value?: number): number;
5858
+
5859
+ toXDR(format?: 'raw'): Buffer;
5860
+
5861
+ toXDR(format: 'hex' | 'base64'): string;
5862
+
5863
+ static read(io: Buffer): TimeSlicedSurveyStartCollectingMessage;
5864
+
5865
+ static write(
5866
+ value: TimeSlicedSurveyStartCollectingMessage,
5867
+ io: Buffer,
5868
+ ): void;
5869
+
5870
+ static isValid(value: TimeSlicedSurveyStartCollectingMessage): boolean;
5871
+
5872
+ static toXDR(value: TimeSlicedSurveyStartCollectingMessage): Buffer;
5873
+
5874
+ static fromXDR(
5875
+ input: Buffer,
5876
+ format?: 'raw',
5877
+ ): TimeSlicedSurveyStartCollectingMessage;
5878
+
5879
+ static fromXDR(
5880
+ input: string,
5881
+ format: 'hex' | 'base64',
5882
+ ): TimeSlicedSurveyStartCollectingMessage;
5883
+
5884
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
5885
+
5886
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
5887
+ }
5888
+
5889
+ class SignedTimeSlicedSurveyStartCollectingMessage {
5890
+ constructor(attributes: {
5891
+ signature: Buffer;
5892
+ startCollecting: TimeSlicedSurveyStartCollectingMessage;
5893
+ });
5894
+
5895
+ signature(value?: Buffer): Buffer;
5896
+
5897
+ startCollecting(
5898
+ value?: TimeSlicedSurveyStartCollectingMessage,
5899
+ ): TimeSlicedSurveyStartCollectingMessage;
5900
+
5901
+ toXDR(format?: 'raw'): Buffer;
5902
+
5903
+ toXDR(format: 'hex' | 'base64'): string;
5904
+
5905
+ static read(io: Buffer): SignedTimeSlicedSurveyStartCollectingMessage;
5906
+
5907
+ static write(
5908
+ value: SignedTimeSlicedSurveyStartCollectingMessage,
5909
+ io: Buffer,
5910
+ ): void;
5911
+
5912
+ static isValid(
5913
+ value: SignedTimeSlicedSurveyStartCollectingMessage,
5914
+ ): boolean;
5915
+
5916
+ static toXDR(value: SignedTimeSlicedSurveyStartCollectingMessage): Buffer;
5917
+
5918
+ static fromXDR(
5919
+ input: Buffer,
5920
+ format?: 'raw',
5921
+ ): SignedTimeSlicedSurveyStartCollectingMessage;
5922
+
5923
+ static fromXDR(
5924
+ input: string,
5925
+ format: 'hex' | 'base64',
5926
+ ): SignedTimeSlicedSurveyStartCollectingMessage;
5927
+
5928
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
5929
+
5930
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
5931
+ }
5932
+
5933
+ class TimeSlicedSurveyStopCollectingMessage {
5934
+ constructor(attributes: {
5935
+ surveyorId: NodeId;
5936
+ nonce: number;
5937
+ ledgerNum: number;
5938
+ });
5939
+
5940
+ surveyorId(value?: NodeId): NodeId;
5941
+
5942
+ nonce(value?: number): number;
5943
+
5944
+ ledgerNum(value?: number): number;
5945
+
5946
+ toXDR(format?: 'raw'): Buffer;
5947
+
5948
+ toXDR(format: 'hex' | 'base64'): string;
5949
+
5950
+ static read(io: Buffer): TimeSlicedSurveyStopCollectingMessage;
5951
+
5952
+ static write(
5953
+ value: TimeSlicedSurveyStopCollectingMessage,
5954
+ io: Buffer,
5955
+ ): void;
5956
+
5957
+ static isValid(value: TimeSlicedSurveyStopCollectingMessage): boolean;
5958
+
5959
+ static toXDR(value: TimeSlicedSurveyStopCollectingMessage): Buffer;
5960
+
5961
+ static fromXDR(
5962
+ input: Buffer,
5963
+ format?: 'raw',
5964
+ ): TimeSlicedSurveyStopCollectingMessage;
5965
+
5966
+ static fromXDR(
5967
+ input: string,
5968
+ format: 'hex' | 'base64',
5969
+ ): TimeSlicedSurveyStopCollectingMessage;
5970
+
5971
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
5972
+
5973
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
5974
+ }
5975
+
5976
+ class SignedTimeSlicedSurveyStopCollectingMessage {
5977
+ constructor(attributes: {
5978
+ signature: Buffer;
5979
+ stopCollecting: TimeSlicedSurveyStopCollectingMessage;
5980
+ });
5981
+
5982
+ signature(value?: Buffer): Buffer;
5983
+
5984
+ stopCollecting(
5985
+ value?: TimeSlicedSurveyStopCollectingMessage,
5986
+ ): TimeSlicedSurveyStopCollectingMessage;
5987
+
5988
+ toXDR(format?: 'raw'): Buffer;
5989
+
5990
+ toXDR(format: 'hex' | 'base64'): string;
5991
+
5992
+ static read(io: Buffer): SignedTimeSlicedSurveyStopCollectingMessage;
5993
+
5994
+ static write(
5995
+ value: SignedTimeSlicedSurveyStopCollectingMessage,
5996
+ io: Buffer,
5997
+ ): void;
5998
+
5999
+ static isValid(value: SignedTimeSlicedSurveyStopCollectingMessage): boolean;
6000
+
6001
+ static toXDR(value: SignedTimeSlicedSurveyStopCollectingMessage): Buffer;
6002
+
6003
+ static fromXDR(
6004
+ input: Buffer,
6005
+ format?: 'raw',
6006
+ ): SignedTimeSlicedSurveyStopCollectingMessage;
6007
+
6008
+ static fromXDR(
6009
+ input: string,
6010
+ format: 'hex' | 'base64',
6011
+ ): SignedTimeSlicedSurveyStopCollectingMessage;
6012
+
6013
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
6014
+
6015
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
6016
+ }
6017
+
5452
6018
  class SurveyRequestMessage {
5453
6019
  constructor(attributes: {
5454
6020
  surveyorPeerId: NodeId;
@@ -5492,6 +6058,49 @@ export namespace xdr {
5492
6058
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
5493
6059
  }
5494
6060
 
6061
+ class TimeSlicedSurveyRequestMessage {
6062
+ constructor(attributes: {
6063
+ request: SurveyRequestMessage;
6064
+ nonce: number;
6065
+ inboundPeersIndex: number;
6066
+ outboundPeersIndex: number;
6067
+ });
6068
+
6069
+ request(value?: SurveyRequestMessage): SurveyRequestMessage;
6070
+
6071
+ nonce(value?: number): number;
6072
+
6073
+ inboundPeersIndex(value?: number): number;
6074
+
6075
+ outboundPeersIndex(value?: number): number;
6076
+
6077
+ toXDR(format?: 'raw'): Buffer;
6078
+
6079
+ toXDR(format: 'hex' | 'base64'): string;
6080
+
6081
+ static read(io: Buffer): TimeSlicedSurveyRequestMessage;
6082
+
6083
+ static write(value: TimeSlicedSurveyRequestMessage, io: Buffer): void;
6084
+
6085
+ static isValid(value: TimeSlicedSurveyRequestMessage): boolean;
6086
+
6087
+ static toXDR(value: TimeSlicedSurveyRequestMessage): Buffer;
6088
+
6089
+ static fromXDR(
6090
+ input: Buffer,
6091
+ format?: 'raw',
6092
+ ): TimeSlicedSurveyRequestMessage;
6093
+
6094
+ static fromXDR(
6095
+ input: string,
6096
+ format: 'hex' | 'base64',
6097
+ ): TimeSlicedSurveyRequestMessage;
6098
+
6099
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
6100
+
6101
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
6102
+ }
6103
+
5495
6104
  class SignedSurveyRequestMessage {
5496
6105
  constructor(attributes: {
5497
6106
  requestSignature: Buffer;
@@ -5526,6 +6135,45 @@ export namespace xdr {
5526
6135
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
5527
6136
  }
5528
6137
 
6138
+ class SignedTimeSlicedSurveyRequestMessage {
6139
+ constructor(attributes: {
6140
+ requestSignature: Buffer;
6141
+ request: TimeSlicedSurveyRequestMessage;
6142
+ });
6143
+
6144
+ requestSignature(value?: Buffer): Buffer;
6145
+
6146
+ request(
6147
+ value?: TimeSlicedSurveyRequestMessage,
6148
+ ): TimeSlicedSurveyRequestMessage;
6149
+
6150
+ toXDR(format?: 'raw'): Buffer;
6151
+
6152
+ toXDR(format: 'hex' | 'base64'): string;
6153
+
6154
+ static read(io: Buffer): SignedTimeSlicedSurveyRequestMessage;
6155
+
6156
+ static write(value: SignedTimeSlicedSurveyRequestMessage, io: Buffer): void;
6157
+
6158
+ static isValid(value: SignedTimeSlicedSurveyRequestMessage): boolean;
6159
+
6160
+ static toXDR(value: SignedTimeSlicedSurveyRequestMessage): Buffer;
6161
+
6162
+ static fromXDR(
6163
+ input: Buffer,
6164
+ format?: 'raw',
6165
+ ): SignedTimeSlicedSurveyRequestMessage;
6166
+
6167
+ static fromXDR(
6168
+ input: string,
6169
+ format: 'hex' | 'base64',
6170
+ ): SignedTimeSlicedSurveyRequestMessage;
6171
+
6172
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
6173
+
6174
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
6175
+ }
6176
+
5529
6177
  class SurveyResponseMessage {
5530
6178
  constructor(attributes: {
5531
6179
  surveyorPeerId: NodeId;
@@ -5569,6 +6217,40 @@ export namespace xdr {
5569
6217
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
5570
6218
  }
5571
6219
 
6220
+ class TimeSlicedSurveyResponseMessage {
6221
+ constructor(attributes: { response: SurveyResponseMessage; nonce: number });
6222
+
6223
+ response(value?: SurveyResponseMessage): SurveyResponseMessage;
6224
+
6225
+ nonce(value?: number): number;
6226
+
6227
+ toXDR(format?: 'raw'): Buffer;
6228
+
6229
+ toXDR(format: 'hex' | 'base64'): string;
6230
+
6231
+ static read(io: Buffer): TimeSlicedSurveyResponseMessage;
6232
+
6233
+ static write(value: TimeSlicedSurveyResponseMessage, io: Buffer): void;
6234
+
6235
+ static isValid(value: TimeSlicedSurveyResponseMessage): boolean;
6236
+
6237
+ static toXDR(value: TimeSlicedSurveyResponseMessage): Buffer;
6238
+
6239
+ static fromXDR(
6240
+ input: Buffer,
6241
+ format?: 'raw',
6242
+ ): TimeSlicedSurveyResponseMessage;
6243
+
6244
+ static fromXDR(
6245
+ input: string,
6246
+ format: 'hex' | 'base64',
6247
+ ): TimeSlicedSurveyResponseMessage;
6248
+
6249
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
6250
+
6251
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
6252
+ }
6253
+
5572
6254
  class SignedSurveyResponseMessage {
5573
6255
  constructor(attributes: {
5574
6256
  responseSignature: Buffer;
@@ -5603,6 +6285,48 @@ export namespace xdr {
5603
6285
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
5604
6286
  }
5605
6287
 
6288
+ class SignedTimeSlicedSurveyResponseMessage {
6289
+ constructor(attributes: {
6290
+ responseSignature: Buffer;
6291
+ response: TimeSlicedSurveyResponseMessage;
6292
+ });
6293
+
6294
+ responseSignature(value?: Buffer): Buffer;
6295
+
6296
+ response(
6297
+ value?: TimeSlicedSurveyResponseMessage,
6298
+ ): TimeSlicedSurveyResponseMessage;
6299
+
6300
+ toXDR(format?: 'raw'): Buffer;
6301
+
6302
+ toXDR(format: 'hex' | 'base64'): string;
6303
+
6304
+ static read(io: Buffer): SignedTimeSlicedSurveyResponseMessage;
6305
+
6306
+ static write(
6307
+ value: SignedTimeSlicedSurveyResponseMessage,
6308
+ io: Buffer,
6309
+ ): void;
6310
+
6311
+ static isValid(value: SignedTimeSlicedSurveyResponseMessage): boolean;
6312
+
6313
+ static toXDR(value: SignedTimeSlicedSurveyResponseMessage): Buffer;
6314
+
6315
+ static fromXDR(
6316
+ input: Buffer,
6317
+ format?: 'raw',
6318
+ ): SignedTimeSlicedSurveyResponseMessage;
6319
+
6320
+ static fromXDR(
6321
+ input: string,
6322
+ format: 'hex' | 'base64',
6323
+ ): SignedTimeSlicedSurveyResponseMessage;
6324
+
6325
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
6326
+
6327
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
6328
+ }
6329
+
5606
6330
  class PeerStats {
5607
6331
  constructor(attributes: {
5608
6332
  id: NodeId;
@@ -5673,6 +6397,89 @@ export namespace xdr {
5673
6397
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
5674
6398
  }
5675
6399
 
6400
+ class TimeSlicedNodeData {
6401
+ constructor(attributes: {
6402
+ addedAuthenticatedPeers: number;
6403
+ droppedAuthenticatedPeers: number;
6404
+ totalInboundPeerCount: number;
6405
+ totalOutboundPeerCount: number;
6406
+ p75ScpFirstToSelfLatencyMs: number;
6407
+ p75ScpSelfToOtherLatencyMs: number;
6408
+ lostSyncCount: number;
6409
+ isValidator: boolean;
6410
+ maxInboundPeerCount: number;
6411
+ maxOutboundPeerCount: number;
6412
+ });
6413
+
6414
+ addedAuthenticatedPeers(value?: number): number;
6415
+
6416
+ droppedAuthenticatedPeers(value?: number): number;
6417
+
6418
+ totalInboundPeerCount(value?: number): number;
6419
+
6420
+ totalOutboundPeerCount(value?: number): number;
6421
+
6422
+ p75ScpFirstToSelfLatencyMs(value?: number): number;
6423
+
6424
+ p75ScpSelfToOtherLatencyMs(value?: number): number;
6425
+
6426
+ lostSyncCount(value?: number): number;
6427
+
6428
+ isValidator(value?: boolean): boolean;
6429
+
6430
+ maxInboundPeerCount(value?: number): number;
6431
+
6432
+ maxOutboundPeerCount(value?: number): number;
6433
+
6434
+ toXDR(format?: 'raw'): Buffer;
6435
+
6436
+ toXDR(format: 'hex' | 'base64'): string;
6437
+
6438
+ static read(io: Buffer): TimeSlicedNodeData;
6439
+
6440
+ static write(value: TimeSlicedNodeData, io: Buffer): void;
6441
+
6442
+ static isValid(value: TimeSlicedNodeData): boolean;
6443
+
6444
+ static toXDR(value: TimeSlicedNodeData): Buffer;
6445
+
6446
+ static fromXDR(input: Buffer, format?: 'raw'): TimeSlicedNodeData;
6447
+
6448
+ static fromXDR(input: string, format: 'hex' | 'base64'): TimeSlicedNodeData;
6449
+
6450
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
6451
+
6452
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
6453
+ }
6454
+
6455
+ class TimeSlicedPeerData {
6456
+ constructor(attributes: { peerStats: PeerStats; averageLatencyMs: number });
6457
+
6458
+ peerStats(value?: PeerStats): PeerStats;
6459
+
6460
+ averageLatencyMs(value?: number): number;
6461
+
6462
+ toXDR(format?: 'raw'): Buffer;
6463
+
6464
+ toXDR(format: 'hex' | 'base64'): string;
6465
+
6466
+ static read(io: Buffer): TimeSlicedPeerData;
6467
+
6468
+ static write(value: TimeSlicedPeerData, io: Buffer): void;
6469
+
6470
+ static isValid(value: TimeSlicedPeerData): boolean;
6471
+
6472
+ static toXDR(value: TimeSlicedPeerData): Buffer;
6473
+
6474
+ static fromXDR(input: Buffer, format?: 'raw'): TimeSlicedPeerData;
6475
+
6476
+ static fromXDR(input: string, format: 'hex' | 'base64'): TimeSlicedPeerData;
6477
+
6478
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
6479
+
6480
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
6481
+ }
6482
+
5676
6483
  class TopologyResponseBodyV0 {
5677
6484
  constructor(attributes: {
5678
6485
  inboundPeers: PeerStats[];
@@ -5759,6 +6566,43 @@ export namespace xdr {
5759
6566
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
5760
6567
  }
5761
6568
 
6569
+ class TopologyResponseBodyV2 {
6570
+ constructor(attributes: {
6571
+ inboundPeers: TimeSlicedPeerData[];
6572
+ outboundPeers: TimeSlicedPeerData[];
6573
+ nodeData: TimeSlicedNodeData;
6574
+ });
6575
+
6576
+ inboundPeers(value?: TimeSlicedPeerData[]): TimeSlicedPeerData[];
6577
+
6578
+ outboundPeers(value?: TimeSlicedPeerData[]): TimeSlicedPeerData[];
6579
+
6580
+ nodeData(value?: TimeSlicedNodeData): TimeSlicedNodeData;
6581
+
6582
+ toXDR(format?: 'raw'): Buffer;
6583
+
6584
+ toXDR(format: 'hex' | 'base64'): string;
6585
+
6586
+ static read(io: Buffer): TopologyResponseBodyV2;
6587
+
6588
+ static write(value: TopologyResponseBodyV2, io: Buffer): void;
6589
+
6590
+ static isValid(value: TopologyResponseBodyV2): boolean;
6591
+
6592
+ static toXDR(value: TopologyResponseBodyV2): Buffer;
6593
+
6594
+ static fromXDR(input: Buffer, format?: 'raw'): TopologyResponseBodyV2;
6595
+
6596
+ static fromXDR(
6597
+ input: string,
6598
+ format: 'hex' | 'base64',
6599
+ ): TopologyResponseBodyV2;
6600
+
6601
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
6602
+
6603
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
6604
+ }
6605
+
5762
6606
  class FloodAdvert {
5763
6607
  constructor(attributes: { txHashes: Hash[] });
5764
6608
 
@@ -6732,6 +7576,43 @@ export namespace xdr {
6732
7576
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
6733
7577
  }
6734
7578
 
7579
+ class CreateContractArgsV2 {
7580
+ constructor(attributes: {
7581
+ contractIdPreimage: ContractIdPreimage;
7582
+ executable: ContractExecutable;
7583
+ constructorArgs: ScVal[];
7584
+ });
7585
+
7586
+ contractIdPreimage(value?: ContractIdPreimage): ContractIdPreimage;
7587
+
7588
+ executable(value?: ContractExecutable): ContractExecutable;
7589
+
7590
+ constructorArgs(value?: ScVal[]): ScVal[];
7591
+
7592
+ toXDR(format?: 'raw'): Buffer;
7593
+
7594
+ toXDR(format: 'hex' | 'base64'): string;
7595
+
7596
+ static read(io: Buffer): CreateContractArgsV2;
7597
+
7598
+ static write(value: CreateContractArgsV2, io: Buffer): void;
7599
+
7600
+ static isValid(value: CreateContractArgsV2): boolean;
7601
+
7602
+ static toXDR(value: CreateContractArgsV2): Buffer;
7603
+
7604
+ static fromXDR(input: Buffer, format?: 'raw'): CreateContractArgsV2;
7605
+
7606
+ static fromXDR(
7607
+ input: string,
7608
+ format: 'hex' | 'base64',
7609
+ ): CreateContractArgsV2;
7610
+
7611
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
7612
+
7613
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
7614
+ }
7615
+
6735
7616
  class InvokeContractArgs {
6736
7617
  constructor(attributes: {
6737
7618
  contractAddress: ScAddress;
@@ -6969,6 +7850,37 @@ export namespace xdr {
6969
7850
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
6970
7851
  }
6971
7852
 
7853
+ class Operation {
7854
+ constructor(attributes: {
7855
+ sourceAccount: null | MuxedAccount;
7856
+ body: OperationBody;
7857
+ });
7858
+
7859
+ sourceAccount(value?: null | MuxedAccount): null | MuxedAccount;
7860
+
7861
+ body(value?: OperationBody): OperationBody;
7862
+
7863
+ toXDR(format?: 'raw'): Buffer;
7864
+
7865
+ toXDR(format: 'hex' | 'base64'): string;
7866
+
7867
+ static read(io: Buffer): Operation;
7868
+
7869
+ static write(value: Operation, io: Buffer): void;
7870
+
7871
+ static isValid(value: Operation): boolean;
7872
+
7873
+ static toXDR(value: Operation): Buffer;
7874
+
7875
+ static fromXDR(input: Buffer, format?: 'raw'): Operation;
7876
+
7877
+ static fromXDR(input: string, format: 'hex' | 'base64'): Operation;
7878
+
7879
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
7880
+
7881
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
7882
+ }
7883
+
6972
7884
  class HashIdPreimageOperationId {
6973
7885
  constructor(attributes: {
6974
7886
  sourceAccount: AccountId;
@@ -7232,23 +8144,152 @@ export namespace xdr {
7232
8144
 
7233
8145
  readOnly(value?: LedgerKey[]): LedgerKey[];
7234
8146
 
7235
- readWrite(value?: LedgerKey[]): LedgerKey[];
8147
+ readWrite(value?: LedgerKey[]): LedgerKey[];
8148
+
8149
+ toXDR(format?: 'raw'): Buffer;
8150
+
8151
+ toXDR(format: 'hex' | 'base64'): string;
8152
+
8153
+ static read(io: Buffer): LedgerFootprint;
8154
+
8155
+ static write(value: LedgerFootprint, io: Buffer): void;
8156
+
8157
+ static isValid(value: LedgerFootprint): boolean;
8158
+
8159
+ static toXDR(value: LedgerFootprint): Buffer;
8160
+
8161
+ static fromXDR(input: Buffer, format?: 'raw'): LedgerFootprint;
8162
+
8163
+ static fromXDR(input: string, format: 'hex' | 'base64'): LedgerFootprint;
8164
+
8165
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
8166
+
8167
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
8168
+ }
8169
+
8170
+ class ArchivalProofNode {
8171
+ constructor(attributes: { index: number; hash: Buffer });
8172
+
8173
+ index(value?: number): number;
8174
+
8175
+ hash(value?: Buffer): Buffer;
8176
+
8177
+ toXDR(format?: 'raw'): Buffer;
8178
+
8179
+ toXDR(format: 'hex' | 'base64'): string;
8180
+
8181
+ static read(io: Buffer): ArchivalProofNode;
8182
+
8183
+ static write(value: ArchivalProofNode, io: Buffer): void;
8184
+
8185
+ static isValid(value: ArchivalProofNode): boolean;
8186
+
8187
+ static toXDR(value: ArchivalProofNode): Buffer;
8188
+
8189
+ static fromXDR(input: Buffer, format?: 'raw'): ArchivalProofNode;
8190
+
8191
+ static fromXDR(input: string, format: 'hex' | 'base64'): ArchivalProofNode;
8192
+
8193
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
8194
+
8195
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
8196
+ }
8197
+
8198
+ class NonexistenceProofBody {
8199
+ constructor(attributes: {
8200
+ entriesToProve: ColdArchiveBucketEntry[];
8201
+ proofLevels: ArchivalProofNode[][];
8202
+ });
8203
+
8204
+ entriesToProve(value?: ColdArchiveBucketEntry[]): ColdArchiveBucketEntry[];
8205
+
8206
+ proofLevels(value?: ArchivalProofNode[][]): ArchivalProofNode[][];
8207
+
8208
+ toXDR(format?: 'raw'): Buffer;
8209
+
8210
+ toXDR(format: 'hex' | 'base64'): string;
8211
+
8212
+ static read(io: Buffer): NonexistenceProofBody;
8213
+
8214
+ static write(value: NonexistenceProofBody, io: Buffer): void;
8215
+
8216
+ static isValid(value: NonexistenceProofBody): boolean;
8217
+
8218
+ static toXDR(value: NonexistenceProofBody): Buffer;
8219
+
8220
+ static fromXDR(input: Buffer, format?: 'raw'): NonexistenceProofBody;
8221
+
8222
+ static fromXDR(
8223
+ input: string,
8224
+ format: 'hex' | 'base64',
8225
+ ): NonexistenceProofBody;
8226
+
8227
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
8228
+
8229
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
8230
+ }
8231
+
8232
+ class ExistenceProofBody {
8233
+ constructor(attributes: {
8234
+ keysToProve: LedgerKey[];
8235
+ lowBoundEntries: ColdArchiveBucketEntry[];
8236
+ highBoundEntries: ColdArchiveBucketEntry[];
8237
+ proofLevels: ArchivalProofNode[][];
8238
+ });
8239
+
8240
+ keysToProve(value?: LedgerKey[]): LedgerKey[];
8241
+
8242
+ lowBoundEntries(value?: ColdArchiveBucketEntry[]): ColdArchiveBucketEntry[];
8243
+
8244
+ highBoundEntries(
8245
+ value?: ColdArchiveBucketEntry[],
8246
+ ): ColdArchiveBucketEntry[];
8247
+
8248
+ proofLevels(value?: ArchivalProofNode[][]): ArchivalProofNode[][];
8249
+
8250
+ toXDR(format?: 'raw'): Buffer;
8251
+
8252
+ toXDR(format: 'hex' | 'base64'): string;
8253
+
8254
+ static read(io: Buffer): ExistenceProofBody;
8255
+
8256
+ static write(value: ExistenceProofBody, io: Buffer): void;
8257
+
8258
+ static isValid(value: ExistenceProofBody): boolean;
8259
+
8260
+ static toXDR(value: ExistenceProofBody): Buffer;
8261
+
8262
+ static fromXDR(input: Buffer, format?: 'raw'): ExistenceProofBody;
8263
+
8264
+ static fromXDR(input: string, format: 'hex' | 'base64'): ExistenceProofBody;
8265
+
8266
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
8267
+
8268
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
8269
+ }
8270
+
8271
+ class ArchivalProof {
8272
+ constructor(attributes: { epoch: number; body: ArchivalProofBody });
8273
+
8274
+ epoch(value?: number): number;
8275
+
8276
+ body(value?: ArchivalProofBody): ArchivalProofBody;
7236
8277
 
7237
8278
  toXDR(format?: 'raw'): Buffer;
7238
8279
 
7239
8280
  toXDR(format: 'hex' | 'base64'): string;
7240
8281
 
7241
- static read(io: Buffer): LedgerFootprint;
8282
+ static read(io: Buffer): ArchivalProof;
7242
8283
 
7243
- static write(value: LedgerFootprint, io: Buffer): void;
8284
+ static write(value: ArchivalProof, io: Buffer): void;
7244
8285
 
7245
- static isValid(value: LedgerFootprint): boolean;
8286
+ static isValid(value: ArchivalProof): boolean;
7246
8287
 
7247
- static toXDR(value: LedgerFootprint): Buffer;
8288
+ static toXDR(value: ArchivalProof): Buffer;
7248
8289
 
7249
- static fromXDR(input: Buffer, format?: 'raw'): LedgerFootprint;
8290
+ static fromXDR(input: Buffer, format?: 'raw'): ArchivalProof;
7250
8291
 
7251
- static fromXDR(input: string, format: 'hex' | 'base64'): LedgerFootprint;
8292
+ static fromXDR(input: string, format: 'hex' | 'base64'): ArchivalProof;
7252
8293
 
7253
8294
  static validateXDR(input: Buffer, format?: 'raw'): boolean;
7254
8295
 
@@ -7294,12 +8335,12 @@ export namespace xdr {
7294
8335
 
7295
8336
  class SorobanTransactionData {
7296
8337
  constructor(attributes: {
7297
- ext: ExtensionPoint;
8338
+ ext: SorobanTransactionDataExt;
7298
8339
  resources: SorobanResources;
7299
8340
  resourceFee: Int64;
7300
8341
  });
7301
8342
 
7302
- ext(value?: ExtensionPoint): ExtensionPoint;
8343
+ ext(value?: SorobanTransactionDataExt): SorobanTransactionDataExt;
7303
8344
 
7304
8345
  resources(value?: SorobanResources): SorobanResources;
7305
8346
 
@@ -8135,6 +9176,87 @@ export namespace xdr {
8135
9176
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
8136
9177
  }
8137
9178
 
9179
+ class ShortHashSeed {
9180
+ constructor(attributes: { seed: Buffer });
9181
+
9182
+ seed(value?: Buffer): Buffer;
9183
+
9184
+ toXDR(format?: 'raw'): Buffer;
9185
+
9186
+ toXDR(format: 'hex' | 'base64'): string;
9187
+
9188
+ static read(io: Buffer): ShortHashSeed;
9189
+
9190
+ static write(value: ShortHashSeed, io: Buffer): void;
9191
+
9192
+ static isValid(value: ShortHashSeed): boolean;
9193
+
9194
+ static toXDR(value: ShortHashSeed): Buffer;
9195
+
9196
+ static fromXDR(input: Buffer, format?: 'raw'): ShortHashSeed;
9197
+
9198
+ static fromXDR(input: string, format: 'hex' | 'base64'): ShortHashSeed;
9199
+
9200
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
9201
+
9202
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
9203
+ }
9204
+
9205
+ class SerializedBinaryFuseFilter {
9206
+ constructor(attributes: {
9207
+ type: BinaryFuseFilterType;
9208
+ inputHashSeed: ShortHashSeed;
9209
+ filterSeed: ShortHashSeed;
9210
+ segmentLength: number;
9211
+ segementLengthMask: number;
9212
+ segmentCount: number;
9213
+ segmentCountLength: number;
9214
+ fingerprintLength: number;
9215
+ fingerprints: Buffer;
9216
+ });
9217
+
9218
+ type(value?: BinaryFuseFilterType): BinaryFuseFilterType;
9219
+
9220
+ inputHashSeed(value?: ShortHashSeed): ShortHashSeed;
9221
+
9222
+ filterSeed(value?: ShortHashSeed): ShortHashSeed;
9223
+
9224
+ segmentLength(value?: number): number;
9225
+
9226
+ segementLengthMask(value?: number): number;
9227
+
9228
+ segmentCount(value?: number): number;
9229
+
9230
+ segmentCountLength(value?: number): number;
9231
+
9232
+ fingerprintLength(value?: number): number;
9233
+
9234
+ fingerprints(value?: Buffer): Buffer;
9235
+
9236
+ toXDR(format?: 'raw'): Buffer;
9237
+
9238
+ toXDR(format: 'hex' | 'base64'): string;
9239
+
9240
+ static read(io: Buffer): SerializedBinaryFuseFilter;
9241
+
9242
+ static write(value: SerializedBinaryFuseFilter, io: Buffer): void;
9243
+
9244
+ static isValid(value: SerializedBinaryFuseFilter): boolean;
9245
+
9246
+ static toXDR(value: SerializedBinaryFuseFilter): Buffer;
9247
+
9248
+ static fromXDR(input: Buffer, format?: 'raw'): SerializedBinaryFuseFilter;
9249
+
9250
+ static fromXDR(
9251
+ input: string,
9252
+ format: 'hex' | 'base64',
9253
+ ): SerializedBinaryFuseFilter;
9254
+
9255
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
9256
+
9257
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
9258
+ }
9259
+
8138
9260
  class UInt128Parts {
8139
9261
  constructor(attributes: { hi: Uint64; lo: Uint64 });
8140
9262
 
@@ -8350,6 +9472,40 @@ export namespace xdr {
8350
9472
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
8351
9473
  }
8352
9474
 
9475
+ class ScEnvMetaEntryInterfaceVersion {
9476
+ constructor(attributes: { protocol: number; preRelease: number });
9477
+
9478
+ protocol(value?: number): number;
9479
+
9480
+ preRelease(value?: number): number;
9481
+
9482
+ toXDR(format?: 'raw'): Buffer;
9483
+
9484
+ toXDR(format: 'hex' | 'base64'): string;
9485
+
9486
+ static read(io: Buffer): ScEnvMetaEntryInterfaceVersion;
9487
+
9488
+ static write(value: ScEnvMetaEntryInterfaceVersion, io: Buffer): void;
9489
+
9490
+ static isValid(value: ScEnvMetaEntryInterfaceVersion): boolean;
9491
+
9492
+ static toXDR(value: ScEnvMetaEntryInterfaceVersion): Buffer;
9493
+
9494
+ static fromXDR(
9495
+ input: Buffer,
9496
+ format?: 'raw',
9497
+ ): ScEnvMetaEntryInterfaceVersion;
9498
+
9499
+ static fromXDR(
9500
+ input: string,
9501
+ format: 'hex' | 'base64',
9502
+ ): ScEnvMetaEntryInterfaceVersion;
9503
+
9504
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
9505
+
9506
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
9507
+ }
9508
+
8353
9509
  class ScMetaV0 {
8354
9510
  constructor(attributes: { key: string | Buffer; val: string | Buffer });
8355
9511
 
@@ -9052,6 +10208,41 @@ export namespace xdr {
9052
10208
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
9053
10209
  }
9054
10210
 
10211
+ class ConfigSettingContractParallelComputeV0 {
10212
+ constructor(attributes: { ledgerMaxParallelThreads: number });
10213
+
10214
+ ledgerMaxParallelThreads(value?: number): number;
10215
+
10216
+ toXDR(format?: 'raw'): Buffer;
10217
+
10218
+ toXDR(format: 'hex' | 'base64'): string;
10219
+
10220
+ static read(io: Buffer): ConfigSettingContractParallelComputeV0;
10221
+
10222
+ static write(
10223
+ value: ConfigSettingContractParallelComputeV0,
10224
+ io: Buffer,
10225
+ ): void;
10226
+
10227
+ static isValid(value: ConfigSettingContractParallelComputeV0): boolean;
10228
+
10229
+ static toXDR(value: ConfigSettingContractParallelComputeV0): Buffer;
10230
+
10231
+ static fromXDR(
10232
+ input: Buffer,
10233
+ format?: 'raw',
10234
+ ): ConfigSettingContractParallelComputeV0;
10235
+
10236
+ static fromXDR(
10237
+ input: string,
10238
+ format: 'hex' | 'base64',
10239
+ ): ConfigSettingContractParallelComputeV0;
10240
+
10241
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
10242
+
10243
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
10244
+ }
10245
+
9055
10246
  class ConfigSettingContractLedgerCostV0 {
9056
10247
  constructor(attributes: {
9057
10248
  ledgerMaxReadLedgerEntries: number;
@@ -10118,143 +11309,318 @@ export namespace xdr {
10118
11309
 
10119
11310
  static ttl(value: TtlEntry): LedgerEntryData;
10120
11311
 
10121
- value():
10122
- | AccountEntry
10123
- | TrustLineEntry
10124
- | OfferEntry
10125
- | DataEntry
10126
- | ClaimableBalanceEntry
10127
- | LiquidityPoolEntry
10128
- | ContractDataEntry
10129
- | ContractCodeEntry
10130
- | ConfigSettingEntry
10131
- | TtlEntry;
11312
+ value():
11313
+ | AccountEntry
11314
+ | TrustLineEntry
11315
+ | OfferEntry
11316
+ | DataEntry
11317
+ | ClaimableBalanceEntry
11318
+ | LiquidityPoolEntry
11319
+ | ContractDataEntry
11320
+ | ContractCodeEntry
11321
+ | ConfigSettingEntry
11322
+ | TtlEntry;
11323
+
11324
+ toXDR(format?: 'raw'): Buffer;
11325
+
11326
+ toXDR(format: 'hex' | 'base64'): string;
11327
+
11328
+ static read(io: Buffer): LedgerEntryData;
11329
+
11330
+ static write(value: LedgerEntryData, io: Buffer): void;
11331
+
11332
+ static isValid(value: LedgerEntryData): boolean;
11333
+
11334
+ static toXDR(value: LedgerEntryData): Buffer;
11335
+
11336
+ static fromXDR(input: Buffer, format?: 'raw'): LedgerEntryData;
11337
+
11338
+ static fromXDR(input: string, format: 'hex' | 'base64'): LedgerEntryData;
11339
+
11340
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
11341
+
11342
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
11343
+ }
11344
+
11345
+ class LedgerEntryExt {
11346
+ switch(): number;
11347
+
11348
+ v1(value?: LedgerEntryExtensionV1): LedgerEntryExtensionV1;
11349
+
11350
+ static 0(): LedgerEntryExt;
11351
+
11352
+ static 1(value: LedgerEntryExtensionV1): LedgerEntryExt;
11353
+
11354
+ value(): LedgerEntryExtensionV1 | void;
11355
+
11356
+ toXDR(format?: 'raw'): Buffer;
11357
+
11358
+ toXDR(format: 'hex' | 'base64'): string;
11359
+
11360
+ static read(io: Buffer): LedgerEntryExt;
11361
+
11362
+ static write(value: LedgerEntryExt, io: Buffer): void;
11363
+
11364
+ static isValid(value: LedgerEntryExt): boolean;
11365
+
11366
+ static toXDR(value: LedgerEntryExt): Buffer;
11367
+
11368
+ static fromXDR(input: Buffer, format?: 'raw'): LedgerEntryExt;
11369
+
11370
+ static fromXDR(input: string, format: 'hex' | 'base64'): LedgerEntryExt;
11371
+
11372
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
11373
+
11374
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
11375
+ }
11376
+
11377
+ class LedgerKey {
11378
+ switch(): LedgerEntryType;
11379
+
11380
+ account(value?: LedgerKeyAccount): LedgerKeyAccount;
11381
+
11382
+ trustLine(value?: LedgerKeyTrustLine): LedgerKeyTrustLine;
11383
+
11384
+ offer(value?: LedgerKeyOffer): LedgerKeyOffer;
11385
+
11386
+ data(value?: LedgerKeyData): LedgerKeyData;
11387
+
11388
+ claimableBalance(
11389
+ value?: LedgerKeyClaimableBalance,
11390
+ ): LedgerKeyClaimableBalance;
11391
+
11392
+ liquidityPool(value?: LedgerKeyLiquidityPool): LedgerKeyLiquidityPool;
11393
+
11394
+ contractData(value?: LedgerKeyContractData): LedgerKeyContractData;
11395
+
11396
+ contractCode(value?: LedgerKeyContractCode): LedgerKeyContractCode;
11397
+
11398
+ configSetting(value?: LedgerKeyConfigSetting): LedgerKeyConfigSetting;
11399
+
11400
+ ttl(value?: LedgerKeyTtl): LedgerKeyTtl;
11401
+
11402
+ static account(value: LedgerKeyAccount): LedgerKey;
11403
+
11404
+ static trustline(value: LedgerKeyTrustLine): LedgerKey;
11405
+
11406
+ static offer(value: LedgerKeyOffer): LedgerKey;
11407
+
11408
+ static data(value: LedgerKeyData): LedgerKey;
11409
+
11410
+ static claimableBalance(value: LedgerKeyClaimableBalance): LedgerKey;
11411
+
11412
+ static liquidityPool(value: LedgerKeyLiquidityPool): LedgerKey;
11413
+
11414
+ static contractData(value: LedgerKeyContractData): LedgerKey;
11415
+
11416
+ static contractCode(value: LedgerKeyContractCode): LedgerKey;
11417
+
11418
+ static configSetting(value: LedgerKeyConfigSetting): LedgerKey;
11419
+
11420
+ static ttl(value: LedgerKeyTtl): LedgerKey;
11421
+
11422
+ value():
11423
+ | LedgerKeyAccount
11424
+ | LedgerKeyTrustLine
11425
+ | LedgerKeyOffer
11426
+ | LedgerKeyData
11427
+ | LedgerKeyClaimableBalance
11428
+ | LedgerKeyLiquidityPool
11429
+ | LedgerKeyContractData
11430
+ | LedgerKeyContractCode
11431
+ | LedgerKeyConfigSetting
11432
+ | LedgerKeyTtl;
11433
+
11434
+ toXDR(format?: 'raw'): Buffer;
11435
+
11436
+ toXDR(format: 'hex' | 'base64'): string;
11437
+
11438
+ static read(io: Buffer): LedgerKey;
11439
+
11440
+ static write(value: LedgerKey, io: Buffer): void;
11441
+
11442
+ static isValid(value: LedgerKey): boolean;
11443
+
11444
+ static toXDR(value: LedgerKey): Buffer;
11445
+
11446
+ static fromXDR(input: Buffer, format?: 'raw'): LedgerKey;
11447
+
11448
+ static fromXDR(input: string, format: 'hex' | 'base64'): LedgerKey;
11449
+
11450
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
11451
+
11452
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
11453
+ }
11454
+
11455
+ class BucketMetadataExt {
11456
+ switch(): number;
11457
+
11458
+ bucketListType(value?: BucketListType): BucketListType;
11459
+
11460
+ static 0(): BucketMetadataExt;
11461
+
11462
+ static 1(value: BucketListType): BucketMetadataExt;
11463
+
11464
+ value(): BucketListType | void;
10132
11465
 
10133
11466
  toXDR(format?: 'raw'): Buffer;
10134
11467
 
10135
11468
  toXDR(format: 'hex' | 'base64'): string;
10136
11469
 
10137
- static read(io: Buffer): LedgerEntryData;
11470
+ static read(io: Buffer): BucketMetadataExt;
10138
11471
 
10139
- static write(value: LedgerEntryData, io: Buffer): void;
11472
+ static write(value: BucketMetadataExt, io: Buffer): void;
10140
11473
 
10141
- static isValid(value: LedgerEntryData): boolean;
11474
+ static isValid(value: BucketMetadataExt): boolean;
10142
11475
 
10143
- static toXDR(value: LedgerEntryData): Buffer;
11476
+ static toXDR(value: BucketMetadataExt): Buffer;
10144
11477
 
10145
- static fromXDR(input: Buffer, format?: 'raw'): LedgerEntryData;
11478
+ static fromXDR(input: Buffer, format?: 'raw'): BucketMetadataExt;
10146
11479
 
10147
- static fromXDR(input: string, format: 'hex' | 'base64'): LedgerEntryData;
11480
+ static fromXDR(input: string, format: 'hex' | 'base64'): BucketMetadataExt;
10148
11481
 
10149
11482
  static validateXDR(input: Buffer, format?: 'raw'): boolean;
10150
11483
 
10151
11484
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
10152
11485
  }
10153
11486
 
10154
- class LedgerEntryExt {
10155
- switch(): number;
11487
+ class BucketEntry {
11488
+ switch(): BucketEntryType;
10156
11489
 
10157
- v1(value?: LedgerEntryExtensionV1): LedgerEntryExtensionV1;
11490
+ liveEntry(value?: LedgerEntry): LedgerEntry;
10158
11491
 
10159
- static 0(): LedgerEntryExt;
11492
+ deadEntry(value?: LedgerKey): LedgerKey;
10160
11493
 
10161
- static 1(value: LedgerEntryExtensionV1): LedgerEntryExt;
11494
+ metaEntry(value?: BucketMetadata): BucketMetadata;
10162
11495
 
10163
- value(): LedgerEntryExtensionV1 | void;
11496
+ static liveentry(value: LedgerEntry): BucketEntry;
11497
+
11498
+ static initentry(value: LedgerEntry): BucketEntry;
11499
+
11500
+ static deadentry(value: LedgerKey): BucketEntry;
11501
+
11502
+ static metaentry(value: BucketMetadata): BucketEntry;
11503
+
11504
+ value(): LedgerEntry | LedgerKey | BucketMetadata;
10164
11505
 
10165
11506
  toXDR(format?: 'raw'): Buffer;
10166
11507
 
10167
11508
  toXDR(format: 'hex' | 'base64'): string;
10168
11509
 
10169
- static read(io: Buffer): LedgerEntryExt;
11510
+ static read(io: Buffer): BucketEntry;
10170
11511
 
10171
- static write(value: LedgerEntryExt, io: Buffer): void;
11512
+ static write(value: BucketEntry, io: Buffer): void;
10172
11513
 
10173
- static isValid(value: LedgerEntryExt): boolean;
11514
+ static isValid(value: BucketEntry): boolean;
10174
11515
 
10175
- static toXDR(value: LedgerEntryExt): Buffer;
11516
+ static toXDR(value: BucketEntry): Buffer;
10176
11517
 
10177
- static fromXDR(input: Buffer, format?: 'raw'): LedgerEntryExt;
11518
+ static fromXDR(input: Buffer, format?: 'raw'): BucketEntry;
10178
11519
 
10179
- static fromXDR(input: string, format: 'hex' | 'base64'): LedgerEntryExt;
11520
+ static fromXDR(input: string, format: 'hex' | 'base64'): BucketEntry;
10180
11521
 
10181
11522
  static validateXDR(input: Buffer, format?: 'raw'): boolean;
10182
11523
 
10183
11524
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
10184
11525
  }
10185
11526
 
10186
- class LedgerKey {
10187
- switch(): LedgerEntryType;
11527
+ class HotArchiveBucketEntry {
11528
+ switch(): HotArchiveBucketEntryType;
10188
11529
 
10189
- account(value?: LedgerKeyAccount): LedgerKeyAccount;
11530
+ archivedEntry(value?: LedgerEntry): LedgerEntry;
10190
11531
 
10191
- trustLine(value?: LedgerKeyTrustLine): LedgerKeyTrustLine;
11532
+ key(value?: LedgerKey): LedgerKey;
10192
11533
 
10193
- offer(value?: LedgerKeyOffer): LedgerKeyOffer;
11534
+ metaEntry(value?: BucketMetadata): BucketMetadata;
10194
11535
 
10195
- data(value?: LedgerKeyData): LedgerKeyData;
11536
+ static hotArchiveArchived(value: LedgerEntry): HotArchiveBucketEntry;
10196
11537
 
10197
- claimableBalance(
10198
- value?: LedgerKeyClaimableBalance,
10199
- ): LedgerKeyClaimableBalance;
11538
+ static hotArchiveLive(value: LedgerKey): HotArchiveBucketEntry;
10200
11539
 
10201
- liquidityPool(value?: LedgerKeyLiquidityPool): LedgerKeyLiquidityPool;
11540
+ static hotArchiveDeleted(value: LedgerKey): HotArchiveBucketEntry;
10202
11541
 
10203
- contractData(value?: LedgerKeyContractData): LedgerKeyContractData;
11542
+ static hotArchiveMetaentry(value: BucketMetadata): HotArchiveBucketEntry;
10204
11543
 
10205
- contractCode(value?: LedgerKeyContractCode): LedgerKeyContractCode;
11544
+ value(): LedgerEntry | LedgerKey | BucketMetadata;
10206
11545
 
10207
- configSetting(value?: LedgerKeyConfigSetting): LedgerKeyConfigSetting;
11546
+ toXDR(format?: 'raw'): Buffer;
10208
11547
 
10209
- ttl(value?: LedgerKeyTtl): LedgerKeyTtl;
11548
+ toXDR(format: 'hex' | 'base64'): string;
10210
11549
 
10211
- static account(value: LedgerKeyAccount): LedgerKey;
11550
+ static read(io: Buffer): HotArchiveBucketEntry;
10212
11551
 
10213
- static trustline(value: LedgerKeyTrustLine): LedgerKey;
11552
+ static write(value: HotArchiveBucketEntry, io: Buffer): void;
10214
11553
 
10215
- static offer(value: LedgerKeyOffer): LedgerKey;
11554
+ static isValid(value: HotArchiveBucketEntry): boolean;
10216
11555
 
10217
- static data(value: LedgerKeyData): LedgerKey;
11556
+ static toXDR(value: HotArchiveBucketEntry): Buffer;
10218
11557
 
10219
- static claimableBalance(value: LedgerKeyClaimableBalance): LedgerKey;
11558
+ static fromXDR(input: Buffer, format?: 'raw'): HotArchiveBucketEntry;
10220
11559
 
10221
- static liquidityPool(value: LedgerKeyLiquidityPool): LedgerKey;
11560
+ static fromXDR(
11561
+ input: string,
11562
+ format: 'hex' | 'base64',
11563
+ ): HotArchiveBucketEntry;
10222
11564
 
10223
- static contractData(value: LedgerKeyContractData): LedgerKey;
11565
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
10224
11566
 
10225
- static contractCode(value: LedgerKeyContractCode): LedgerKey;
11567
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
11568
+ }
10226
11569
 
10227
- static configSetting(value: LedgerKeyConfigSetting): LedgerKey;
11570
+ class ColdArchiveBucketEntry {
11571
+ switch(): ColdArchiveBucketEntryType;
10228
11572
 
10229
- static ttl(value: LedgerKeyTtl): LedgerKey;
11573
+ metaEntry(value?: BucketMetadata): BucketMetadata;
11574
+
11575
+ archivedLeaf(value?: ColdArchiveArchivedLeaf): ColdArchiveArchivedLeaf;
11576
+
11577
+ deletedLeaf(value?: ColdArchiveDeletedLeaf): ColdArchiveDeletedLeaf;
11578
+
11579
+ boundaryLeaf(value?: ColdArchiveBoundaryLeaf): ColdArchiveBoundaryLeaf;
11580
+
11581
+ hashEntry(value?: ColdArchiveHashEntry): ColdArchiveHashEntry;
11582
+
11583
+ static coldArchiveMetaentry(value: BucketMetadata): ColdArchiveBucketEntry;
11584
+
11585
+ static coldArchiveArchivedLeaf(
11586
+ value: ColdArchiveArchivedLeaf,
11587
+ ): ColdArchiveBucketEntry;
11588
+
11589
+ static coldArchiveDeletedLeaf(
11590
+ value: ColdArchiveDeletedLeaf,
11591
+ ): ColdArchiveBucketEntry;
11592
+
11593
+ static coldArchiveBoundaryLeaf(
11594
+ value: ColdArchiveBoundaryLeaf,
11595
+ ): ColdArchiveBucketEntry;
11596
+
11597
+ static coldArchiveHash(value: ColdArchiveHashEntry): ColdArchiveBucketEntry;
10230
11598
 
10231
11599
  value():
10232
- | LedgerKeyAccount
10233
- | LedgerKeyTrustLine
10234
- | LedgerKeyOffer
10235
- | LedgerKeyData
10236
- | LedgerKeyClaimableBalance
10237
- | LedgerKeyLiquidityPool
10238
- | LedgerKeyContractData
10239
- | LedgerKeyContractCode
10240
- | LedgerKeyConfigSetting
10241
- | LedgerKeyTtl;
11600
+ | BucketMetadata
11601
+ | ColdArchiveArchivedLeaf
11602
+ | ColdArchiveDeletedLeaf
11603
+ | ColdArchiveBoundaryLeaf
11604
+ | ColdArchiveHashEntry;
10242
11605
 
10243
11606
  toXDR(format?: 'raw'): Buffer;
10244
11607
 
10245
11608
  toXDR(format: 'hex' | 'base64'): string;
10246
11609
 
10247
- static read(io: Buffer): LedgerKey;
11610
+ static read(io: Buffer): ColdArchiveBucketEntry;
10248
11611
 
10249
- static write(value: LedgerKey, io: Buffer): void;
11612
+ static write(value: ColdArchiveBucketEntry, io: Buffer): void;
10250
11613
 
10251
- static isValid(value: LedgerKey): boolean;
11614
+ static isValid(value: ColdArchiveBucketEntry): boolean;
10252
11615
 
10253
- static toXDR(value: LedgerKey): Buffer;
11616
+ static toXDR(value: ColdArchiveBucketEntry): Buffer;
10254
11617
 
10255
- static fromXDR(input: Buffer, format?: 'raw'): LedgerKey;
11618
+ static fromXDR(input: Buffer, format?: 'raw'): ColdArchiveBucketEntry;
10256
11619
 
10257
- static fromXDR(input: string, format: 'hex' | 'base64'): LedgerKey;
11620
+ static fromXDR(
11621
+ input: string,
11622
+ format: 'hex' | 'base64',
11623
+ ): ColdArchiveBucketEntry;
10258
11624
 
10259
11625
  static validateXDR(input: Buffer, format?: 'raw'): boolean;
10260
11626
 
@@ -10421,74 +11787,6 @@ export namespace xdr {
10421
11787
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
10422
11788
  }
10423
11789
 
10424
- class BucketMetadataExt {
10425
- switch(): number;
10426
-
10427
- static 0(): BucketMetadataExt;
10428
-
10429
- value(): void;
10430
-
10431
- toXDR(format?: 'raw'): Buffer;
10432
-
10433
- toXDR(format: 'hex' | 'base64'): string;
10434
-
10435
- static read(io: Buffer): BucketMetadataExt;
10436
-
10437
- static write(value: BucketMetadataExt, io: Buffer): void;
10438
-
10439
- static isValid(value: BucketMetadataExt): boolean;
10440
-
10441
- static toXDR(value: BucketMetadataExt): Buffer;
10442
-
10443
- static fromXDR(input: Buffer, format?: 'raw'): BucketMetadataExt;
10444
-
10445
- static fromXDR(input: string, format: 'hex' | 'base64'): BucketMetadataExt;
10446
-
10447
- static validateXDR(input: Buffer, format?: 'raw'): boolean;
10448
-
10449
- static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
10450
- }
10451
-
10452
- class BucketEntry {
10453
- switch(): BucketEntryType;
10454
-
10455
- liveEntry(value?: LedgerEntry): LedgerEntry;
10456
-
10457
- deadEntry(value?: LedgerKey): LedgerKey;
10458
-
10459
- metaEntry(value?: BucketMetadata): BucketMetadata;
10460
-
10461
- static liveentry(value: LedgerEntry): BucketEntry;
10462
-
10463
- static initentry(value: LedgerEntry): BucketEntry;
10464
-
10465
- static deadentry(value: LedgerKey): BucketEntry;
10466
-
10467
- static metaentry(value: BucketMetadata): BucketEntry;
10468
-
10469
- value(): LedgerEntry | LedgerKey | BucketMetadata;
10470
-
10471
- toXDR(format?: 'raw'): Buffer;
10472
-
10473
- toXDR(format: 'hex' | 'base64'): string;
10474
-
10475
- static read(io: Buffer): BucketEntry;
10476
-
10477
- static write(value: BucketEntry, io: Buffer): void;
10478
-
10479
- static isValid(value: BucketEntry): boolean;
10480
-
10481
- static toXDR(value: BucketEntry): Buffer;
10482
-
10483
- static fromXDR(input: Buffer, format?: 'raw'): BucketEntry;
10484
-
10485
- static fromXDR(input: string, format: 'hex' | 'base64'): BucketEntry;
10486
-
10487
- static validateXDR(input: Buffer, format?: 'raw'): boolean;
10488
-
10489
- static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
10490
- }
10491
-
10492
11790
  class TxSetComponent {
10493
11791
  switch(): TxSetComponentType;
10494
11792
 
@@ -10528,9 +11826,13 @@ export namespace xdr {
10528
11826
 
10529
11827
  v0Components(value?: TxSetComponent[]): TxSetComponent[];
10530
11828
 
11829
+ parallelTxsComponent(value?: ParallelTxsComponent): ParallelTxsComponent;
11830
+
10531
11831
  static 0(value: TxSetComponent[]): TransactionPhase;
10532
11832
 
10533
- value(): TxSetComponent[];
11833
+ static 1(value: ParallelTxsComponent): TransactionPhase;
11834
+
11835
+ value(): TxSetComponent[] | ParallelTxsComponent;
10534
11836
 
10535
11837
  toXDR(format?: 'raw'): Buffer;
10536
11838
 
@@ -10982,6 +12284,10 @@ export namespace xdr {
10982
12284
  value?: TopologyResponseBodyV1,
10983
12285
  ): TopologyResponseBodyV1;
10984
12286
 
12287
+ topologyResponseBodyV2(
12288
+ value?: TopologyResponseBodyV2,
12289
+ ): TopologyResponseBodyV2;
12290
+
10985
12291
  static surveyTopologyResponseV0(
10986
12292
  value: TopologyResponseBodyV0,
10987
12293
  ): SurveyResponseBody;
@@ -10990,7 +12296,14 @@ export namespace xdr {
10990
12296
  value: TopologyResponseBodyV1,
10991
12297
  ): SurveyResponseBody;
10992
12298
 
10993
- value(): TopologyResponseBodyV0 | TopologyResponseBodyV1;
12299
+ static surveyTopologyResponseV2(
12300
+ value: TopologyResponseBodyV2,
12301
+ ): SurveyResponseBody;
12302
+
12303
+ value():
12304
+ | TopologyResponseBodyV0
12305
+ | TopologyResponseBodyV1
12306
+ | TopologyResponseBodyV2;
10994
12307
 
10995
12308
  toXDR(format?: 'raw'): Buffer;
10996
12309
 
@@ -11044,6 +12357,22 @@ export namespace xdr {
11044
12357
  value?: SignedSurveyResponseMessage,
11045
12358
  ): SignedSurveyResponseMessage;
11046
12359
 
12360
+ signedTimeSlicedSurveyRequestMessage(
12361
+ value?: SignedTimeSlicedSurveyRequestMessage,
12362
+ ): SignedTimeSlicedSurveyRequestMessage;
12363
+
12364
+ signedTimeSlicedSurveyResponseMessage(
12365
+ value?: SignedTimeSlicedSurveyResponseMessage,
12366
+ ): SignedTimeSlicedSurveyResponseMessage;
12367
+
12368
+ signedTimeSlicedSurveyStartCollectingMessage(
12369
+ value?: SignedTimeSlicedSurveyStartCollectingMessage,
12370
+ ): SignedTimeSlicedSurveyStartCollectingMessage;
12371
+
12372
+ signedTimeSlicedSurveyStopCollectingMessage(
12373
+ value?: SignedTimeSlicedSurveyStopCollectingMessage,
12374
+ ): SignedTimeSlicedSurveyStopCollectingMessage;
12375
+
11047
12376
  qSetHash(value?: Buffer): Buffer;
11048
12377
 
11049
12378
  qSet(value?: ScpQuorumSet): ScpQuorumSet;
@@ -11084,6 +12413,22 @@ export namespace xdr {
11084
12413
 
11085
12414
  static surveyResponse(value: SignedSurveyResponseMessage): StellarMessage;
11086
12415
 
12416
+ static timeSlicedSurveyRequest(
12417
+ value: SignedTimeSlicedSurveyRequestMessage,
12418
+ ): StellarMessage;
12419
+
12420
+ static timeSlicedSurveyResponse(
12421
+ value: SignedTimeSlicedSurveyResponseMessage,
12422
+ ): StellarMessage;
12423
+
12424
+ static timeSlicedSurveyStartCollecting(
12425
+ value: SignedTimeSlicedSurveyStartCollectingMessage,
12426
+ ): StellarMessage;
12427
+
12428
+ static timeSlicedSurveyStopCollecting(
12429
+ value: SignedTimeSlicedSurveyStopCollectingMessage,
12430
+ ): StellarMessage;
12431
+
11087
12432
  static getScpQuorumset(value: Buffer): StellarMessage;
11088
12433
 
11089
12434
  static scpQuorumset(value: ScpQuorumSet): StellarMessage;
@@ -11112,6 +12457,10 @@ export namespace xdr {
11112
12457
  | TransactionEnvelope
11113
12458
  | SignedSurveyRequestMessage
11114
12459
  | SignedSurveyResponseMessage
12460
+ | SignedTimeSlicedSurveyRequestMessage
12461
+ | SignedTimeSlicedSurveyResponseMessage
12462
+ | SignedTimeSlicedSurveyStartCollectingMessage
12463
+ | SignedTimeSlicedSurveyStopCollectingMessage
11115
12464
  | Buffer
11116
12465
  | ScpQuorumSet
11117
12466
  | ScpEnvelope
@@ -11373,6 +12722,8 @@ export namespace xdr {
11373
12722
 
11374
12723
  wasm(value?: Buffer): Buffer;
11375
12724
 
12725
+ createContractV2(value?: CreateContractArgsV2): CreateContractArgsV2;
12726
+
11376
12727
  static hostFunctionTypeInvokeContract(
11377
12728
  value: InvokeContractArgs,
11378
12729
  ): HostFunction;
@@ -11383,7 +12734,15 @@ export namespace xdr {
11383
12734
 
11384
12735
  static hostFunctionTypeUploadContractWasm(value: Buffer): HostFunction;
11385
12736
 
11386
- value(): InvokeContractArgs | CreateContractArgs | Buffer;
12737
+ static hostFunctionTypeCreateContractV2(
12738
+ value: CreateContractArgsV2,
12739
+ ): HostFunction;
12740
+
12741
+ value():
12742
+ | InvokeContractArgs
12743
+ | CreateContractArgs
12744
+ | Buffer
12745
+ | CreateContractArgsV2;
11387
12746
 
11388
12747
  toXDR(format?: 'raw'): Buffer;
11389
12748
 
@@ -11413,6 +12772,8 @@ export namespace xdr {
11413
12772
 
11414
12773
  createContractHostFn(value?: CreateContractArgs): CreateContractArgs;
11415
12774
 
12775
+ createContractV2HostFn(value?: CreateContractArgsV2): CreateContractArgsV2;
12776
+
11416
12777
  static sorobanAuthorizedFunctionTypeContractFn(
11417
12778
  value: InvokeContractArgs,
11418
12779
  ): SorobanAuthorizedFunction;
@@ -11421,7 +12782,11 @@ export namespace xdr {
11421
12782
  value: CreateContractArgs,
11422
12783
  ): SorobanAuthorizedFunction;
11423
12784
 
11424
- value(): InvokeContractArgs | CreateContractArgs;
12785
+ static sorobanAuthorizedFunctionTypeCreateContractV2HostFn(
12786
+ value: CreateContractArgsV2,
12787
+ ): SorobanAuthorizedFunction;
12788
+
12789
+ value(): InvokeContractArgs | CreateContractArgs | CreateContractArgsV2;
11425
12790
 
11426
12791
  toXDR(format?: 'raw'): Buffer;
11427
12792
 
@@ -11799,6 +13164,75 @@ export namespace xdr {
11799
13164
  static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
11800
13165
  }
11801
13166
 
13167
+ class ArchivalProofBody {
13168
+ switch(): ArchivalProofType;
13169
+
13170
+ nonexistenceProof(value?: NonexistenceProofBody): NonexistenceProofBody;
13171
+
13172
+ existenceProof(value?: ExistenceProofBody): ExistenceProofBody;
13173
+
13174
+ static existence(value: NonexistenceProofBody): ArchivalProofBody;
13175
+
13176
+ static nonexistence(value: ExistenceProofBody): ArchivalProofBody;
13177
+
13178
+ value(): NonexistenceProofBody | ExistenceProofBody;
13179
+
13180
+ toXDR(format?: 'raw'): Buffer;
13181
+
13182
+ toXDR(format: 'hex' | 'base64'): string;
13183
+
13184
+ static read(io: Buffer): ArchivalProofBody;
13185
+
13186
+ static write(value: ArchivalProofBody, io: Buffer): void;
13187
+
13188
+ static isValid(value: ArchivalProofBody): boolean;
13189
+
13190
+ static toXDR(value: ArchivalProofBody): Buffer;
13191
+
13192
+ static fromXDR(input: Buffer, format?: 'raw'): ArchivalProofBody;
13193
+
13194
+ static fromXDR(input: string, format: 'hex' | 'base64'): ArchivalProofBody;
13195
+
13196
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
13197
+
13198
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
13199
+ }
13200
+
13201
+ class SorobanTransactionDataExt {
13202
+ switch(): number;
13203
+
13204
+ proofs(value?: ArchivalProof[]): ArchivalProof[];
13205
+
13206
+ static 0(): SorobanTransactionDataExt;
13207
+
13208
+ static 1(value: ArchivalProof[]): SorobanTransactionDataExt;
13209
+
13210
+ value(): ArchivalProof[] | void;
13211
+
13212
+ toXDR(format?: 'raw'): Buffer;
13213
+
13214
+ toXDR(format: 'hex' | 'base64'): string;
13215
+
13216
+ static read(io: Buffer): SorobanTransactionDataExt;
13217
+
13218
+ static write(value: SorobanTransactionDataExt, io: Buffer): void;
13219
+
13220
+ static isValid(value: SorobanTransactionDataExt): boolean;
13221
+
13222
+ static toXDR(value: SorobanTransactionDataExt): Buffer;
13223
+
13224
+ static fromXDR(input: Buffer, format?: 'raw'): SorobanTransactionDataExt;
13225
+
13226
+ static fromXDR(
13227
+ input: string,
13228
+ format: 'hex' | 'base64',
13229
+ ): SorobanTransactionDataExt;
13230
+
13231
+ static validateXDR(input: Buffer, format?: 'raw'): boolean;
13232
+
13233
+ static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
13234
+ }
13235
+
11802
13236
  class TransactionV0Ext {
11803
13237
  switch(): number;
11804
13238
 
@@ -14050,11 +15484,15 @@ export namespace xdr {
14050
15484
  class ScEnvMetaEntry {
14051
15485
  switch(): ScEnvMetaKind;
14052
15486
 
14053
- interfaceVersion(value?: Uint64): Uint64;
15487
+ interfaceVersion(
15488
+ value?: ScEnvMetaEntryInterfaceVersion,
15489
+ ): ScEnvMetaEntryInterfaceVersion;
14054
15490
 
14055
- static scEnvMetaKindInterfaceVersion(value: Uint64): ScEnvMetaEntry;
15491
+ static scEnvMetaKindInterfaceVersion(
15492
+ value: ScEnvMetaEntryInterfaceVersion,
15493
+ ): ScEnvMetaEntry;
14056
15494
 
14057
- value(): Uint64;
15495
+ value(): ScEnvMetaEntryInterfaceVersion;
14058
15496
 
14059
15497
  toXDR(format?: 'raw'): Buffer;
14060
15498
 
@@ -14344,6 +15782,10 @@ export namespace xdr {
14344
15782
 
14345
15783
  evictionIterator(value?: EvictionIterator): EvictionIterator;
14346
15784
 
15785
+ contractParallelCompute(
15786
+ value?: ConfigSettingContractParallelComputeV0,
15787
+ ): ConfigSettingContractParallelComputeV0;
15788
+
14347
15789
  static configSettingContractMaxSizeBytes(value: number): ConfigSettingEntry;
14348
15790
 
14349
15791
  static configSettingContractComputeV0(
@@ -14398,6 +15840,10 @@ export namespace xdr {
14398
15840
  value: EvictionIterator,
14399
15841
  ): ConfigSettingEntry;
14400
15842
 
15843
+ static configSettingContractParallelComputeV0(
15844
+ value: ConfigSettingContractParallelComputeV0,
15845
+ ): ConfigSettingEntry;
15846
+
14401
15847
  value():
14402
15848
  | number
14403
15849
  | ConfigSettingContractComputeV0
@@ -14412,7 +15858,8 @@ export namespace xdr {
14412
15858
  | StateArchivalSettings
14413
15859
  | ConfigSettingContractExecutionLanesV0
14414
15860
  | Uint64[]
14415
- | EvictionIterator;
15861
+ | EvictionIterator
15862
+ | ConfigSettingContractParallelComputeV0;
14416
15863
 
14417
15864
  toXDR(format?: 'raw'): Buffer;
14418
15865