@stellar/stellar-base 13.0.1 → 14.0.0-rc.1
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/CHANGELOG.md +36 -0
- package/README.md +15 -1
- package/dist/stellar-base.js +30197 -28840
- package/dist/stellar-base.min.js +1 -1
- package/lib/address.js +75 -12
- package/lib/auth.js +46 -33
- package/lib/generated/curr_generated.js +501 -414
- package/lib/generated/next_generated.js +455 -429
- package/lib/index.js +0 -7
- package/lib/keypair.js +4 -4
- package/lib/numbers/xdr_large_int.js +4 -4
- package/lib/operation.js +1 -2
- package/lib/operations/invoke_host_function.js +20 -1
- package/lib/scval.js +49 -9
- package/lib/signing.js +8 -84
- package/lib/sorobandata_builder.js +6 -6
- package/lib/strkey.js +88 -3
- package/package.json +21 -22
- package/types/curr.d.ts +888 -717
- package/types/index.d.ts +14 -3
- package/types/next.d.ts +838 -837
package/types/curr.d.ts
CHANGED
|
@@ -44,6 +44,16 @@ export namespace xdr {
|
|
|
44
44
|
|
|
45
45
|
type Hash = Opaque[]; // workaround, cause unknown
|
|
46
46
|
|
|
47
|
+
/**
|
|
48
|
+
* Returns an {@link ScVal} with a map type and sorted entries.
|
|
49
|
+
*
|
|
50
|
+
* @param items the key-value pairs to sort.
|
|
51
|
+
*
|
|
52
|
+
* @warning This only performs 'best-effort' sorting, working best when the
|
|
53
|
+
* keys are all either numeric or string-like.
|
|
54
|
+
*/
|
|
55
|
+
function scvSortedMap(items: ScMapEntry[]): ScVal;
|
|
56
|
+
|
|
47
57
|
interface SignedInt {
|
|
48
58
|
readonly MAX_VALUE: 2147483647;
|
|
49
59
|
readonly MIN_VALUE: -2147483648;
|
|
@@ -426,14 +436,6 @@ export namespace xdr {
|
|
|
426
436
|
static claimantTypeV0(): ClaimantType;
|
|
427
437
|
}
|
|
428
438
|
|
|
429
|
-
class ClaimableBalanceIdType {
|
|
430
|
-
readonly name: 'claimableBalanceIdTypeV0';
|
|
431
|
-
|
|
432
|
-
readonly value: 0;
|
|
433
|
-
|
|
434
|
-
static claimableBalanceIdTypeV0(): ClaimableBalanceIdType;
|
|
435
|
-
}
|
|
436
|
-
|
|
437
439
|
class ClaimableBalanceFlags {
|
|
438
440
|
readonly name: 'claimableBalanceClawbackEnabledFlag';
|
|
439
441
|
|
|
@@ -489,15 +491,13 @@ export namespace xdr {
|
|
|
489
491
|
}
|
|
490
492
|
|
|
491
493
|
class BucketListType {
|
|
492
|
-
readonly name: 'live' | 'hotArchive'
|
|
494
|
+
readonly name: 'live' | 'hotArchive';
|
|
493
495
|
|
|
494
|
-
readonly value: 0 | 1
|
|
496
|
+
readonly value: 0 | 1;
|
|
495
497
|
|
|
496
498
|
static live(): BucketListType;
|
|
497
499
|
|
|
498
500
|
static hotArchive(): BucketListType;
|
|
499
|
-
|
|
500
|
-
static coldArchive(): BucketListType;
|
|
501
501
|
}
|
|
502
502
|
|
|
503
503
|
class BucketEntryType {
|
|
@@ -518,39 +518,15 @@ export namespace xdr {
|
|
|
518
518
|
readonly name:
|
|
519
519
|
| 'hotArchiveMetaentry'
|
|
520
520
|
| 'hotArchiveArchived'
|
|
521
|
-
| 'hotArchiveLive'
|
|
522
|
-
| 'hotArchiveDeleted';
|
|
521
|
+
| 'hotArchiveLive';
|
|
523
522
|
|
|
524
|
-
readonly value: -1 | 0 | 1
|
|
523
|
+
readonly value: -1 | 0 | 1;
|
|
525
524
|
|
|
526
525
|
static hotArchiveMetaentry(): HotArchiveBucketEntryType;
|
|
527
526
|
|
|
528
527
|
static hotArchiveArchived(): HotArchiveBucketEntryType;
|
|
529
528
|
|
|
530
529
|
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
530
|
}
|
|
555
531
|
|
|
556
532
|
class StellarValueType {
|
|
@@ -618,9 +594,10 @@ export namespace xdr {
|
|
|
618
594
|
| 'ledgerEntryCreated'
|
|
619
595
|
| 'ledgerEntryUpdated'
|
|
620
596
|
| 'ledgerEntryRemoved'
|
|
621
|
-
| 'ledgerEntryState'
|
|
597
|
+
| 'ledgerEntryState'
|
|
598
|
+
| 'ledgerEntryRestored';
|
|
622
599
|
|
|
623
|
-
readonly value: 0 | 1 | 2 | 3;
|
|
600
|
+
readonly value: 0 | 1 | 2 | 3 | 4;
|
|
624
601
|
|
|
625
602
|
static ledgerEntryCreated(): LedgerEntryChangeType;
|
|
626
603
|
|
|
@@ -629,6 +606,8 @@ export namespace xdr {
|
|
|
629
606
|
static ledgerEntryRemoved(): LedgerEntryChangeType;
|
|
630
607
|
|
|
631
608
|
static ledgerEntryState(): LedgerEntryChangeType;
|
|
609
|
+
|
|
610
|
+
static ledgerEntryRestored(): LedgerEntryChangeType;
|
|
632
611
|
}
|
|
633
612
|
|
|
634
613
|
class ContractEventType {
|
|
@@ -643,6 +622,21 @@ export namespace xdr {
|
|
|
643
622
|
static diagnostic(): ContractEventType;
|
|
644
623
|
}
|
|
645
624
|
|
|
625
|
+
class TransactionEventStage {
|
|
626
|
+
readonly name:
|
|
627
|
+
| 'transactionEventStageBeforeAllTxes'
|
|
628
|
+
| 'transactionEventStageAfterTx'
|
|
629
|
+
| 'transactionEventStageAfterAllTxes';
|
|
630
|
+
|
|
631
|
+
readonly value: 0 | 1 | 2;
|
|
632
|
+
|
|
633
|
+
static transactionEventStageBeforeAllTxes(): TransactionEventStage;
|
|
634
|
+
|
|
635
|
+
static transactionEventStageAfterTx(): TransactionEventStage;
|
|
636
|
+
|
|
637
|
+
static transactionEventStageAfterAllTxes(): TransactionEventStage;
|
|
638
|
+
}
|
|
639
|
+
|
|
646
640
|
class ErrorCode {
|
|
647
641
|
readonly name: 'errMisc' | 'errData' | 'errConf' | 'errAuth' | 'errLoad';
|
|
648
642
|
|
|
@@ -674,7 +668,6 @@ export namespace xdr {
|
|
|
674
668
|
| 'errorMsg'
|
|
675
669
|
| 'auth'
|
|
676
670
|
| 'dontHave'
|
|
677
|
-
| 'getPeers'
|
|
678
671
|
| 'peers'
|
|
679
672
|
| 'getTxSet'
|
|
680
673
|
| 'txSet'
|
|
@@ -685,8 +678,6 @@ export namespace xdr {
|
|
|
685
678
|
| 'scpMessage'
|
|
686
679
|
| 'getScpState'
|
|
687
680
|
| 'hello'
|
|
688
|
-
| 'surveyRequest'
|
|
689
|
-
| 'surveyResponse'
|
|
690
681
|
| 'sendMore'
|
|
691
682
|
| 'sendMoreExtended'
|
|
692
683
|
| 'floodAdvert'
|
|
@@ -700,7 +691,6 @@ export namespace xdr {
|
|
|
700
691
|
| 0
|
|
701
692
|
| 2
|
|
702
693
|
| 3
|
|
703
|
-
| 4
|
|
704
694
|
| 5
|
|
705
695
|
| 6
|
|
706
696
|
| 7
|
|
@@ -711,8 +701,6 @@ export namespace xdr {
|
|
|
711
701
|
| 11
|
|
712
702
|
| 12
|
|
713
703
|
| 13
|
|
714
|
-
| 14
|
|
715
|
-
| 15
|
|
716
704
|
| 16
|
|
717
705
|
| 20
|
|
718
706
|
| 18
|
|
@@ -728,8 +716,6 @@ export namespace xdr {
|
|
|
728
716
|
|
|
729
717
|
static dontHave(): MessageType;
|
|
730
718
|
|
|
731
|
-
static getPeers(): MessageType;
|
|
732
|
-
|
|
733
719
|
static peers(): MessageType;
|
|
734
720
|
|
|
735
721
|
static getTxSet(): MessageType;
|
|
@@ -750,10 +736,6 @@ export namespace xdr {
|
|
|
750
736
|
|
|
751
737
|
static hello(): MessageType;
|
|
752
738
|
|
|
753
|
-
static surveyRequest(): MessageType;
|
|
754
|
-
|
|
755
|
-
static surveyResponse(): MessageType;
|
|
756
|
-
|
|
757
739
|
static sendMore(): MessageType;
|
|
758
740
|
|
|
759
741
|
static sendMoreExtended(): MessageType;
|
|
@@ -772,26 +754,17 @@ export namespace xdr {
|
|
|
772
754
|
}
|
|
773
755
|
|
|
774
756
|
class SurveyMessageCommandType {
|
|
775
|
-
readonly name: '
|
|
757
|
+
readonly name: 'timeSlicedSurveyTopology';
|
|
776
758
|
|
|
777
|
-
readonly value:
|
|
778
|
-
|
|
779
|
-
static surveyTopology(): SurveyMessageCommandType;
|
|
759
|
+
readonly value: 1;
|
|
780
760
|
|
|
781
761
|
static timeSlicedSurveyTopology(): SurveyMessageCommandType;
|
|
782
762
|
}
|
|
783
763
|
|
|
784
764
|
class SurveyMessageResponseType {
|
|
785
|
-
readonly name:
|
|
786
|
-
| 'surveyTopologyResponseV0'
|
|
787
|
-
| 'surveyTopologyResponseV1'
|
|
788
|
-
| 'surveyTopologyResponseV2';
|
|
765
|
+
readonly name: 'surveyTopologyResponseV2';
|
|
789
766
|
|
|
790
|
-
readonly value:
|
|
791
|
-
|
|
792
|
-
static surveyTopologyResponseV0(): SurveyMessageResponseType;
|
|
793
|
-
|
|
794
|
-
static surveyTopologyResponseV1(): SurveyMessageResponseType;
|
|
767
|
+
readonly value: 2;
|
|
795
768
|
|
|
796
769
|
static surveyTopologyResponseV2(): SurveyMessageResponseType;
|
|
797
770
|
}
|
|
@@ -1010,16 +983,6 @@ export namespace xdr {
|
|
|
1010
983
|
static precondV2(): PreconditionType;
|
|
1011
984
|
}
|
|
1012
985
|
|
|
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
|
-
|
|
1023
986
|
class ClaimAtomType {
|
|
1024
987
|
readonly name:
|
|
1025
988
|
| 'claimAtomTypeV0'
|
|
@@ -1959,6 +1922,14 @@ export namespace xdr {
|
|
|
1959
1922
|
static binaryFuseFilter32Bit(): BinaryFuseFilterType;
|
|
1960
1923
|
}
|
|
1961
1924
|
|
|
1925
|
+
class ClaimableBalanceIdType {
|
|
1926
|
+
readonly name: 'claimableBalanceIdTypeV0';
|
|
1927
|
+
|
|
1928
|
+
readonly value: 0;
|
|
1929
|
+
|
|
1930
|
+
static claimableBalanceIdTypeV0(): ClaimableBalanceIdType;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1962
1933
|
class ScValType {
|
|
1963
1934
|
readonly name:
|
|
1964
1935
|
| 'scvBool'
|
|
@@ -2136,13 +2107,24 @@ export namespace xdr {
|
|
|
2136
2107
|
}
|
|
2137
2108
|
|
|
2138
2109
|
class ScAddressType {
|
|
2139
|
-
readonly name:
|
|
2110
|
+
readonly name:
|
|
2111
|
+
| 'scAddressTypeAccount'
|
|
2112
|
+
| 'scAddressTypeContract'
|
|
2113
|
+
| 'scAddressTypeMuxedAccount'
|
|
2114
|
+
| 'scAddressTypeClaimableBalance'
|
|
2115
|
+
| 'scAddressTypeLiquidityPool';
|
|
2140
2116
|
|
|
2141
|
-
readonly value: 0 | 1;
|
|
2117
|
+
readonly value: 0 | 1 | 2 | 3 | 4;
|
|
2142
2118
|
|
|
2143
2119
|
static scAddressTypeAccount(): ScAddressType;
|
|
2144
2120
|
|
|
2145
2121
|
static scAddressTypeContract(): ScAddressType;
|
|
2122
|
+
|
|
2123
|
+
static scAddressTypeMuxedAccount(): ScAddressType;
|
|
2124
|
+
|
|
2125
|
+
static scAddressTypeClaimableBalance(): ScAddressType;
|
|
2126
|
+
|
|
2127
|
+
static scAddressTypeLiquidityPool(): ScAddressType;
|
|
2146
2128
|
}
|
|
2147
2129
|
|
|
2148
2130
|
class ScEnvMetaKind {
|
|
@@ -2181,6 +2163,7 @@ export namespace xdr {
|
|
|
2181
2163
|
| 'scSpecTypeString'
|
|
2182
2164
|
| 'scSpecTypeSymbol'
|
|
2183
2165
|
| 'scSpecTypeAddress'
|
|
2166
|
+
| 'scSpecTypeMuxedAddress'
|
|
2184
2167
|
| 'scSpecTypeOption'
|
|
2185
2168
|
| 'scSpecTypeResult'
|
|
2186
2169
|
| 'scSpecTypeVec'
|
|
@@ -2208,6 +2191,7 @@ export namespace xdr {
|
|
|
2208
2191
|
| 16
|
|
2209
2192
|
| 17
|
|
2210
2193
|
| 19
|
|
2194
|
+
| 20
|
|
2211
2195
|
| 1000
|
|
2212
2196
|
| 1001
|
|
2213
2197
|
| 1002
|
|
@@ -2252,6 +2236,8 @@ export namespace xdr {
|
|
|
2252
2236
|
|
|
2253
2237
|
static scSpecTypeAddress(): ScSpecType;
|
|
2254
2238
|
|
|
2239
|
+
static scSpecTypeMuxedAddress(): ScSpecType;
|
|
2240
|
+
|
|
2255
2241
|
static scSpecTypeOption(): ScSpecType;
|
|
2256
2242
|
|
|
2257
2243
|
static scSpecTypeResult(): ScSpecType;
|
|
@@ -2277,15 +2263,43 @@ export namespace xdr {
|
|
|
2277
2263
|
static scSpecUdtUnionCaseTupleV0(): ScSpecUdtUnionCaseV0Kind;
|
|
2278
2264
|
}
|
|
2279
2265
|
|
|
2266
|
+
class ScSpecEventParamLocationV0 {
|
|
2267
|
+
readonly name:
|
|
2268
|
+
| 'scSpecEventParamLocationData'
|
|
2269
|
+
| 'scSpecEventParamLocationTopicList';
|
|
2270
|
+
|
|
2271
|
+
readonly value: 0 | 1;
|
|
2272
|
+
|
|
2273
|
+
static scSpecEventParamLocationData(): ScSpecEventParamLocationV0;
|
|
2274
|
+
|
|
2275
|
+
static scSpecEventParamLocationTopicList(): ScSpecEventParamLocationV0;
|
|
2276
|
+
}
|
|
2277
|
+
|
|
2278
|
+
class ScSpecEventDataFormat {
|
|
2279
|
+
readonly name:
|
|
2280
|
+
| 'scSpecEventDataFormatSingleValue'
|
|
2281
|
+
| 'scSpecEventDataFormatVec'
|
|
2282
|
+
| 'scSpecEventDataFormatMap';
|
|
2283
|
+
|
|
2284
|
+
readonly value: 0 | 1 | 2;
|
|
2285
|
+
|
|
2286
|
+
static scSpecEventDataFormatSingleValue(): ScSpecEventDataFormat;
|
|
2287
|
+
|
|
2288
|
+
static scSpecEventDataFormatVec(): ScSpecEventDataFormat;
|
|
2289
|
+
|
|
2290
|
+
static scSpecEventDataFormatMap(): ScSpecEventDataFormat;
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2280
2293
|
class ScSpecEntryKind {
|
|
2281
2294
|
readonly name:
|
|
2282
2295
|
| 'scSpecEntryFunctionV0'
|
|
2283
2296
|
| 'scSpecEntryUdtStructV0'
|
|
2284
2297
|
| 'scSpecEntryUdtUnionV0'
|
|
2285
2298
|
| 'scSpecEntryUdtEnumV0'
|
|
2286
|
-
| 'scSpecEntryUdtErrorEnumV0'
|
|
2299
|
+
| 'scSpecEntryUdtErrorEnumV0'
|
|
2300
|
+
| 'scSpecEntryEventV0';
|
|
2287
2301
|
|
|
2288
|
-
readonly value: 0 | 1 | 2 | 3 | 4;
|
|
2302
|
+
readonly value: 0 | 1 | 2 | 3 | 4 | 5;
|
|
2289
2303
|
|
|
2290
2304
|
static scSpecEntryFunctionV0(): ScSpecEntryKind;
|
|
2291
2305
|
|
|
@@ -2296,6 +2310,8 @@ export namespace xdr {
|
|
|
2296
2310
|
static scSpecEntryUdtEnumV0(): ScSpecEntryKind;
|
|
2297
2311
|
|
|
2298
2312
|
static scSpecEntryUdtErrorEnumV0(): ScSpecEntryKind;
|
|
2313
|
+
|
|
2314
|
+
static scSpecEntryEventV0(): ScSpecEntryKind;
|
|
2299
2315
|
}
|
|
2300
2316
|
|
|
2301
2317
|
class ContractCostType {
|
|
@@ -2598,10 +2614,30 @@ export namespace xdr {
|
|
|
2598
2614
|
| 'configSettingContractDataEntrySizeBytes'
|
|
2599
2615
|
| 'configSettingStateArchival'
|
|
2600
2616
|
| 'configSettingContractExecutionLanes'
|
|
2601
|
-
| '
|
|
2602
|
-
| 'configSettingEvictionIterator'
|
|
2617
|
+
| 'configSettingLiveSorobanStateSizeWindow'
|
|
2618
|
+
| 'configSettingEvictionIterator'
|
|
2619
|
+
| 'configSettingContractParallelComputeV0'
|
|
2620
|
+
| 'configSettingContractLedgerCostExtV0'
|
|
2621
|
+
| 'configSettingScpTiming';
|
|
2603
2622
|
|
|
2604
|
-
readonly value:
|
|
2623
|
+
readonly value:
|
|
2624
|
+
| 0
|
|
2625
|
+
| 1
|
|
2626
|
+
| 2
|
|
2627
|
+
| 3
|
|
2628
|
+
| 4
|
|
2629
|
+
| 5
|
|
2630
|
+
| 6
|
|
2631
|
+
| 7
|
|
2632
|
+
| 8
|
|
2633
|
+
| 9
|
|
2634
|
+
| 10
|
|
2635
|
+
| 11
|
|
2636
|
+
| 12
|
|
2637
|
+
| 13
|
|
2638
|
+
| 14
|
|
2639
|
+
| 15
|
|
2640
|
+
| 16;
|
|
2605
2641
|
|
|
2606
2642
|
static configSettingContractMaxSizeBytes(): ConfigSettingId;
|
|
2607
2643
|
|
|
@@ -2627,9 +2663,15 @@ export namespace xdr {
|
|
|
2627
2663
|
|
|
2628
2664
|
static configSettingContractExecutionLanes(): ConfigSettingId;
|
|
2629
2665
|
|
|
2630
|
-
static
|
|
2666
|
+
static configSettingLiveSorobanStateSizeWindow(): ConfigSettingId;
|
|
2631
2667
|
|
|
2632
2668
|
static configSettingEvictionIterator(): ConfigSettingId;
|
|
2669
|
+
|
|
2670
|
+
static configSettingContractParallelComputeV0(): ConfigSettingId;
|
|
2671
|
+
|
|
2672
|
+
static configSettingContractLedgerCostExtV0(): ConfigSettingId;
|
|
2673
|
+
|
|
2674
|
+
static configSettingScpTiming(): ConfigSettingId;
|
|
2633
2675
|
}
|
|
2634
2676
|
|
|
2635
2677
|
const Value: VarOpaque;
|
|
@@ -2644,8 +2686,6 @@ export namespace xdr {
|
|
|
2644
2686
|
|
|
2645
2687
|
const DataValue: VarOpaque;
|
|
2646
2688
|
|
|
2647
|
-
type PoolId = Hash;
|
|
2648
|
-
|
|
2649
2689
|
const AssetCode4: Opaque;
|
|
2650
2690
|
|
|
2651
2691
|
const AssetCode12: Opaque;
|
|
@@ -2654,13 +2694,13 @@ export namespace xdr {
|
|
|
2654
2694
|
|
|
2655
2695
|
const UpgradeType: VarOpaque;
|
|
2656
2696
|
|
|
2657
|
-
const
|
|
2697
|
+
const DependentTxCluster: XDRArray<TransactionEnvelope>;
|
|
2658
2698
|
|
|
2659
|
-
const
|
|
2699
|
+
const ParallelTxExecutionStage: XDRArray<TransactionEnvelope[]>;
|
|
2660
2700
|
|
|
2661
|
-
const
|
|
2701
|
+
const LedgerEntryChanges: XDRArray<LedgerEntryChange>;
|
|
2662
2702
|
|
|
2663
|
-
const
|
|
2703
|
+
const EncryptedBody: VarOpaque;
|
|
2664
2704
|
|
|
2665
2705
|
const TimeSlicedPeerDataList: XDRArray<TimeSlicedPeerData>;
|
|
2666
2706
|
|
|
@@ -2668,7 +2708,7 @@ export namespace xdr {
|
|
|
2668
2708
|
|
|
2669
2709
|
const TxDemandVector: XDRArray<Hash>;
|
|
2670
2710
|
|
|
2671
|
-
const
|
|
2711
|
+
const SorobanAuthorizationEntries: XDRArray<SorobanAuthorizationEntry>;
|
|
2672
2712
|
|
|
2673
2713
|
const Hash: Opaque;
|
|
2674
2714
|
|
|
@@ -2694,6 +2734,10 @@ export namespace xdr {
|
|
|
2694
2734
|
|
|
2695
2735
|
type AccountId = PublicKey;
|
|
2696
2736
|
|
|
2737
|
+
type ContractId = Hash;
|
|
2738
|
+
|
|
2739
|
+
type PoolId = Hash;
|
|
2740
|
+
|
|
2697
2741
|
const ScVec: XDRArray<ScVal>;
|
|
2698
2742
|
|
|
2699
2743
|
const ScMap: XDRArray<ScMapEntry>;
|
|
@@ -4308,132 +4352,6 @@ export namespace xdr {
|
|
|
4308
4352
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
4309
4353
|
}
|
|
4310
4354
|
|
|
4311
|
-
class ColdArchiveArchivedLeaf {
|
|
4312
|
-
constructor(attributes: { index: number; archivedEntry: LedgerEntry });
|
|
4313
|
-
|
|
4314
|
-
index(value?: number): number;
|
|
4315
|
-
|
|
4316
|
-
archivedEntry(value?: LedgerEntry): LedgerEntry;
|
|
4317
|
-
|
|
4318
|
-
toXDR(format?: 'raw'): Buffer;
|
|
4319
|
-
|
|
4320
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
4321
|
-
|
|
4322
|
-
static read(io: Buffer): ColdArchiveArchivedLeaf;
|
|
4323
|
-
|
|
4324
|
-
static write(value: ColdArchiveArchivedLeaf, io: Buffer): void;
|
|
4325
|
-
|
|
4326
|
-
static isValid(value: ColdArchiveArchivedLeaf): boolean;
|
|
4327
|
-
|
|
4328
|
-
static toXDR(value: ColdArchiveArchivedLeaf): Buffer;
|
|
4329
|
-
|
|
4330
|
-
static fromXDR(input: Buffer, format?: 'raw'): ColdArchiveArchivedLeaf;
|
|
4331
|
-
|
|
4332
|
-
static fromXDR(
|
|
4333
|
-
input: string,
|
|
4334
|
-
format: 'hex' | 'base64',
|
|
4335
|
-
): ColdArchiveArchivedLeaf;
|
|
4336
|
-
|
|
4337
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
4338
|
-
|
|
4339
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
4340
|
-
}
|
|
4341
|
-
|
|
4342
|
-
class ColdArchiveDeletedLeaf {
|
|
4343
|
-
constructor(attributes: { index: number; deletedKey: LedgerKey });
|
|
4344
|
-
|
|
4345
|
-
index(value?: number): number;
|
|
4346
|
-
|
|
4347
|
-
deletedKey(value?: LedgerKey): LedgerKey;
|
|
4348
|
-
|
|
4349
|
-
toXDR(format?: 'raw'): Buffer;
|
|
4350
|
-
|
|
4351
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
4352
|
-
|
|
4353
|
-
static read(io: Buffer): ColdArchiveDeletedLeaf;
|
|
4354
|
-
|
|
4355
|
-
static write(value: ColdArchiveDeletedLeaf, io: Buffer): void;
|
|
4356
|
-
|
|
4357
|
-
static isValid(value: ColdArchiveDeletedLeaf): boolean;
|
|
4358
|
-
|
|
4359
|
-
static toXDR(value: ColdArchiveDeletedLeaf): Buffer;
|
|
4360
|
-
|
|
4361
|
-
static fromXDR(input: Buffer, format?: 'raw'): ColdArchiveDeletedLeaf;
|
|
4362
|
-
|
|
4363
|
-
static fromXDR(
|
|
4364
|
-
input: string,
|
|
4365
|
-
format: 'hex' | 'base64',
|
|
4366
|
-
): ColdArchiveDeletedLeaf;
|
|
4367
|
-
|
|
4368
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
4369
|
-
|
|
4370
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
4371
|
-
}
|
|
4372
|
-
|
|
4373
|
-
class ColdArchiveBoundaryLeaf {
|
|
4374
|
-
constructor(attributes: { index: number; isLowerBound: boolean });
|
|
4375
|
-
|
|
4376
|
-
index(value?: number): number;
|
|
4377
|
-
|
|
4378
|
-
isLowerBound(value?: boolean): boolean;
|
|
4379
|
-
|
|
4380
|
-
toXDR(format?: 'raw'): Buffer;
|
|
4381
|
-
|
|
4382
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
4383
|
-
|
|
4384
|
-
static read(io: Buffer): ColdArchiveBoundaryLeaf;
|
|
4385
|
-
|
|
4386
|
-
static write(value: ColdArchiveBoundaryLeaf, io: Buffer): void;
|
|
4387
|
-
|
|
4388
|
-
static isValid(value: ColdArchiveBoundaryLeaf): boolean;
|
|
4389
|
-
|
|
4390
|
-
static toXDR(value: ColdArchiveBoundaryLeaf): Buffer;
|
|
4391
|
-
|
|
4392
|
-
static fromXDR(input: Buffer, format?: 'raw'): ColdArchiveBoundaryLeaf;
|
|
4393
|
-
|
|
4394
|
-
static fromXDR(
|
|
4395
|
-
input: string,
|
|
4396
|
-
format: 'hex' | 'base64',
|
|
4397
|
-
): ColdArchiveBoundaryLeaf;
|
|
4398
|
-
|
|
4399
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
4400
|
-
|
|
4401
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
4402
|
-
}
|
|
4403
|
-
|
|
4404
|
-
class ColdArchiveHashEntry {
|
|
4405
|
-
constructor(attributes: { index: number; level: number; hash: Buffer });
|
|
4406
|
-
|
|
4407
|
-
index(value?: number): number;
|
|
4408
|
-
|
|
4409
|
-
level(value?: number): number;
|
|
4410
|
-
|
|
4411
|
-
hash(value?: Buffer): Buffer;
|
|
4412
|
-
|
|
4413
|
-
toXDR(format?: 'raw'): Buffer;
|
|
4414
|
-
|
|
4415
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
4416
|
-
|
|
4417
|
-
static read(io: Buffer): ColdArchiveHashEntry;
|
|
4418
|
-
|
|
4419
|
-
static write(value: ColdArchiveHashEntry, io: Buffer): void;
|
|
4420
|
-
|
|
4421
|
-
static isValid(value: ColdArchiveHashEntry): boolean;
|
|
4422
|
-
|
|
4423
|
-
static toXDR(value: ColdArchiveHashEntry): Buffer;
|
|
4424
|
-
|
|
4425
|
-
static fromXDR(input: Buffer, format?: 'raw'): ColdArchiveHashEntry;
|
|
4426
|
-
|
|
4427
|
-
static fromXDR(
|
|
4428
|
-
input: string,
|
|
4429
|
-
format: 'hex' | 'base64',
|
|
4430
|
-
): ColdArchiveHashEntry;
|
|
4431
|
-
|
|
4432
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
4433
|
-
|
|
4434
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
4435
|
-
}
|
|
4436
|
-
|
|
4437
4355
|
class LedgerCloseValueSignature {
|
|
4438
4356
|
constructor(attributes: { nodeId: NodeId; signature: Buffer });
|
|
4439
4357
|
|
|
@@ -4604,9 +4522,9 @@ export namespace xdr {
|
|
|
4604
4522
|
}
|
|
4605
4523
|
|
|
4606
4524
|
class ConfigUpgradeSetKey {
|
|
4607
|
-
constructor(attributes: { contractId:
|
|
4525
|
+
constructor(attributes: { contractId: ContractId; contentHash: Buffer });
|
|
4608
4526
|
|
|
4609
|
-
contractId(value?:
|
|
4527
|
+
contractId(value?: ContractId): ContractId;
|
|
4610
4528
|
|
|
4611
4529
|
contentHash(value?: Buffer): Buffer;
|
|
4612
4530
|
|
|
@@ -4660,6 +4578,42 @@ export namespace xdr {
|
|
|
4660
4578
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
4661
4579
|
}
|
|
4662
4580
|
|
|
4581
|
+
class ParallelTxsComponent {
|
|
4582
|
+
constructor(attributes: {
|
|
4583
|
+
baseFee: null | Int64;
|
|
4584
|
+
executionStages: TransactionEnvelope[][][];
|
|
4585
|
+
});
|
|
4586
|
+
|
|
4587
|
+
baseFee(value?: null | Int64): null | Int64;
|
|
4588
|
+
|
|
4589
|
+
executionStages(
|
|
4590
|
+
value?: TransactionEnvelope[][][],
|
|
4591
|
+
): TransactionEnvelope[][][];
|
|
4592
|
+
|
|
4593
|
+
toXDR(format?: 'raw'): Buffer;
|
|
4594
|
+
|
|
4595
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
4596
|
+
|
|
4597
|
+
static read(io: Buffer): ParallelTxsComponent;
|
|
4598
|
+
|
|
4599
|
+
static write(value: ParallelTxsComponent, io: Buffer): void;
|
|
4600
|
+
|
|
4601
|
+
static isValid(value: ParallelTxsComponent): boolean;
|
|
4602
|
+
|
|
4603
|
+
static toXDR(value: ParallelTxsComponent): Buffer;
|
|
4604
|
+
|
|
4605
|
+
static fromXDR(input: Buffer, format?: 'raw'): ParallelTxsComponent;
|
|
4606
|
+
|
|
4607
|
+
static fromXDR(
|
|
4608
|
+
input: string,
|
|
4609
|
+
format: 'hex' | 'base64',
|
|
4610
|
+
): ParallelTxsComponent;
|
|
4611
|
+
|
|
4612
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
4613
|
+
|
|
4614
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
4615
|
+
}
|
|
4616
|
+
|
|
4663
4617
|
class TxSetComponentTxsMaybeDiscountedFee {
|
|
4664
4618
|
constructor(attributes: {
|
|
4665
4619
|
baseFee: null | Int64;
|
|
@@ -5119,14 +5073,14 @@ export namespace xdr {
|
|
|
5119
5073
|
class ContractEvent {
|
|
5120
5074
|
constructor(attributes: {
|
|
5121
5075
|
ext: ExtensionPoint;
|
|
5122
|
-
contractId: null |
|
|
5076
|
+
contractId: null | ContractId;
|
|
5123
5077
|
type: ContractEventType;
|
|
5124
5078
|
body: ContractEventBody;
|
|
5125
5079
|
});
|
|
5126
5080
|
|
|
5127
5081
|
ext(value?: ExtensionPoint): ExtensionPoint;
|
|
5128
5082
|
|
|
5129
|
-
contractId(value?: null |
|
|
5083
|
+
contractId(value?: null | ContractId): null | ContractId;
|
|
5130
5084
|
|
|
5131
5085
|
type(value?: ContractEventType): ContractEventType;
|
|
5132
5086
|
|
|
@@ -5306,10 +5260,16 @@ export namespace xdr {
|
|
|
5306
5260
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
5307
5261
|
}
|
|
5308
5262
|
|
|
5309
|
-
class
|
|
5310
|
-
constructor(attributes: {
|
|
5263
|
+
class OperationMetaV2 {
|
|
5264
|
+
constructor(attributes: {
|
|
5265
|
+
ext: ExtensionPoint;
|
|
5266
|
+
changes: LedgerEntryChange[];
|
|
5267
|
+
events: ContractEvent[];
|
|
5268
|
+
});
|
|
5311
5269
|
|
|
5312
|
-
|
|
5270
|
+
ext(value?: ExtensionPoint): ExtensionPoint;
|
|
5271
|
+
|
|
5272
|
+
changes(value?: LedgerEntryChange[]): LedgerEntryChange[];
|
|
5313
5273
|
|
|
5314
5274
|
events(value?: ContractEvent[]): ContractEvent[];
|
|
5315
5275
|
|
|
@@ -5317,34 +5277,175 @@ export namespace xdr {
|
|
|
5317
5277
|
|
|
5318
5278
|
toXDR(format: 'hex' | 'base64'): string;
|
|
5319
5279
|
|
|
5320
|
-
static read(io: Buffer):
|
|
5280
|
+
static read(io: Buffer): OperationMetaV2;
|
|
5321
5281
|
|
|
5322
|
-
static write(value:
|
|
5282
|
+
static write(value: OperationMetaV2, io: Buffer): void;
|
|
5323
5283
|
|
|
5324
|
-
static isValid(value:
|
|
5284
|
+
static isValid(value: OperationMetaV2): boolean;
|
|
5325
5285
|
|
|
5326
|
-
static toXDR(value:
|
|
5286
|
+
static toXDR(value: OperationMetaV2): Buffer;
|
|
5327
5287
|
|
|
5328
|
-
static fromXDR(
|
|
5329
|
-
input: Buffer,
|
|
5330
|
-
format?: 'raw',
|
|
5331
|
-
): InvokeHostFunctionSuccessPreImage;
|
|
5288
|
+
static fromXDR(input: Buffer, format?: 'raw'): OperationMetaV2;
|
|
5332
5289
|
|
|
5333
|
-
static fromXDR(
|
|
5334
|
-
input: string,
|
|
5335
|
-
format: 'hex' | 'base64',
|
|
5336
|
-
): InvokeHostFunctionSuccessPreImage;
|
|
5290
|
+
static fromXDR(input: string, format: 'hex' | 'base64'): OperationMetaV2;
|
|
5337
5291
|
|
|
5338
5292
|
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
5339
5293
|
|
|
5340
5294
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
5341
5295
|
}
|
|
5342
5296
|
|
|
5343
|
-
class
|
|
5297
|
+
class SorobanTransactionMetaV2 {
|
|
5344
5298
|
constructor(attributes: {
|
|
5345
|
-
|
|
5346
|
-
|
|
5347
|
-
|
|
5299
|
+
ext: SorobanTransactionMetaExt;
|
|
5300
|
+
returnValue: null | ScVal;
|
|
5301
|
+
});
|
|
5302
|
+
|
|
5303
|
+
ext(value?: SorobanTransactionMetaExt): SorobanTransactionMetaExt;
|
|
5304
|
+
|
|
5305
|
+
returnValue(value?: null | ScVal): null | ScVal;
|
|
5306
|
+
|
|
5307
|
+
toXDR(format?: 'raw'): Buffer;
|
|
5308
|
+
|
|
5309
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
5310
|
+
|
|
5311
|
+
static read(io: Buffer): SorobanTransactionMetaV2;
|
|
5312
|
+
|
|
5313
|
+
static write(value: SorobanTransactionMetaV2, io: Buffer): void;
|
|
5314
|
+
|
|
5315
|
+
static isValid(value: SorobanTransactionMetaV2): boolean;
|
|
5316
|
+
|
|
5317
|
+
static toXDR(value: SorobanTransactionMetaV2): Buffer;
|
|
5318
|
+
|
|
5319
|
+
static fromXDR(input: Buffer, format?: 'raw'): SorobanTransactionMetaV2;
|
|
5320
|
+
|
|
5321
|
+
static fromXDR(
|
|
5322
|
+
input: string,
|
|
5323
|
+
format: 'hex' | 'base64',
|
|
5324
|
+
): SorobanTransactionMetaV2;
|
|
5325
|
+
|
|
5326
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
5327
|
+
|
|
5328
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
5329
|
+
}
|
|
5330
|
+
|
|
5331
|
+
class TransactionEvent {
|
|
5332
|
+
constructor(attributes: {
|
|
5333
|
+
stage: TransactionEventStage;
|
|
5334
|
+
event: ContractEvent;
|
|
5335
|
+
});
|
|
5336
|
+
|
|
5337
|
+
stage(value?: TransactionEventStage): TransactionEventStage;
|
|
5338
|
+
|
|
5339
|
+
event(value?: ContractEvent): ContractEvent;
|
|
5340
|
+
|
|
5341
|
+
toXDR(format?: 'raw'): Buffer;
|
|
5342
|
+
|
|
5343
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
5344
|
+
|
|
5345
|
+
static read(io: Buffer): TransactionEvent;
|
|
5346
|
+
|
|
5347
|
+
static write(value: TransactionEvent, io: Buffer): void;
|
|
5348
|
+
|
|
5349
|
+
static isValid(value: TransactionEvent): boolean;
|
|
5350
|
+
|
|
5351
|
+
static toXDR(value: TransactionEvent): Buffer;
|
|
5352
|
+
|
|
5353
|
+
static fromXDR(input: Buffer, format?: 'raw'): TransactionEvent;
|
|
5354
|
+
|
|
5355
|
+
static fromXDR(input: string, format: 'hex' | 'base64'): TransactionEvent;
|
|
5356
|
+
|
|
5357
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
5358
|
+
|
|
5359
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
5360
|
+
}
|
|
5361
|
+
|
|
5362
|
+
class TransactionMetaV4 {
|
|
5363
|
+
constructor(attributes: {
|
|
5364
|
+
ext: ExtensionPoint;
|
|
5365
|
+
txChangesBefore: LedgerEntryChange[];
|
|
5366
|
+
operations: OperationMetaV2[];
|
|
5367
|
+
txChangesAfter: LedgerEntryChange[];
|
|
5368
|
+
sorobanMeta: null | SorobanTransactionMetaV2;
|
|
5369
|
+
events: TransactionEvent[];
|
|
5370
|
+
diagnosticEvents: DiagnosticEvent[];
|
|
5371
|
+
});
|
|
5372
|
+
|
|
5373
|
+
ext(value?: ExtensionPoint): ExtensionPoint;
|
|
5374
|
+
|
|
5375
|
+
txChangesBefore(value?: LedgerEntryChange[]): LedgerEntryChange[];
|
|
5376
|
+
|
|
5377
|
+
operations(value?: OperationMetaV2[]): OperationMetaV2[];
|
|
5378
|
+
|
|
5379
|
+
txChangesAfter(value?: LedgerEntryChange[]): LedgerEntryChange[];
|
|
5380
|
+
|
|
5381
|
+
sorobanMeta(
|
|
5382
|
+
value?: null | SorobanTransactionMetaV2,
|
|
5383
|
+
): null | SorobanTransactionMetaV2;
|
|
5384
|
+
|
|
5385
|
+
events(value?: TransactionEvent[]): TransactionEvent[];
|
|
5386
|
+
|
|
5387
|
+
diagnosticEvents(value?: DiagnosticEvent[]): DiagnosticEvent[];
|
|
5388
|
+
|
|
5389
|
+
toXDR(format?: 'raw'): Buffer;
|
|
5390
|
+
|
|
5391
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
5392
|
+
|
|
5393
|
+
static read(io: Buffer): TransactionMetaV4;
|
|
5394
|
+
|
|
5395
|
+
static write(value: TransactionMetaV4, io: Buffer): void;
|
|
5396
|
+
|
|
5397
|
+
static isValid(value: TransactionMetaV4): boolean;
|
|
5398
|
+
|
|
5399
|
+
static toXDR(value: TransactionMetaV4): Buffer;
|
|
5400
|
+
|
|
5401
|
+
static fromXDR(input: Buffer, format?: 'raw'): TransactionMetaV4;
|
|
5402
|
+
|
|
5403
|
+
static fromXDR(input: string, format: 'hex' | 'base64'): TransactionMetaV4;
|
|
5404
|
+
|
|
5405
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
5406
|
+
|
|
5407
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
5408
|
+
}
|
|
5409
|
+
|
|
5410
|
+
class InvokeHostFunctionSuccessPreImage {
|
|
5411
|
+
constructor(attributes: { returnValue: ScVal; events: ContractEvent[] });
|
|
5412
|
+
|
|
5413
|
+
returnValue(value?: ScVal): ScVal;
|
|
5414
|
+
|
|
5415
|
+
events(value?: ContractEvent[]): ContractEvent[];
|
|
5416
|
+
|
|
5417
|
+
toXDR(format?: 'raw'): Buffer;
|
|
5418
|
+
|
|
5419
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
5420
|
+
|
|
5421
|
+
static read(io: Buffer): InvokeHostFunctionSuccessPreImage;
|
|
5422
|
+
|
|
5423
|
+
static write(value: InvokeHostFunctionSuccessPreImage, io: Buffer): void;
|
|
5424
|
+
|
|
5425
|
+
static isValid(value: InvokeHostFunctionSuccessPreImage): boolean;
|
|
5426
|
+
|
|
5427
|
+
static toXDR(value: InvokeHostFunctionSuccessPreImage): Buffer;
|
|
5428
|
+
|
|
5429
|
+
static fromXDR(
|
|
5430
|
+
input: Buffer,
|
|
5431
|
+
format?: 'raw',
|
|
5432
|
+
): InvokeHostFunctionSuccessPreImage;
|
|
5433
|
+
|
|
5434
|
+
static fromXDR(
|
|
5435
|
+
input: string,
|
|
5436
|
+
format: 'hex' | 'base64',
|
|
5437
|
+
): InvokeHostFunctionSuccessPreImage;
|
|
5438
|
+
|
|
5439
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
5440
|
+
|
|
5441
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
5442
|
+
}
|
|
5443
|
+
|
|
5444
|
+
class TransactionResultMeta {
|
|
5445
|
+
constructor(attributes: {
|
|
5446
|
+
result: TransactionResultPair;
|
|
5447
|
+
feeProcessing: LedgerEntryChange[];
|
|
5448
|
+
txApplyProcessing: TransactionMeta;
|
|
5348
5449
|
});
|
|
5349
5450
|
|
|
5350
5451
|
result(value?: TransactionResultPair): TransactionResultPair;
|
|
@@ -5377,6 +5478,49 @@ export namespace xdr {
|
|
|
5377
5478
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
5378
5479
|
}
|
|
5379
5480
|
|
|
5481
|
+
class TransactionResultMetaV1 {
|
|
5482
|
+
constructor(attributes: {
|
|
5483
|
+
ext: ExtensionPoint;
|
|
5484
|
+
result: TransactionResultPair;
|
|
5485
|
+
feeProcessing: LedgerEntryChange[];
|
|
5486
|
+
txApplyProcessing: TransactionMeta;
|
|
5487
|
+
postTxApplyFeeProcessing: LedgerEntryChange[];
|
|
5488
|
+
});
|
|
5489
|
+
|
|
5490
|
+
ext(value?: ExtensionPoint): ExtensionPoint;
|
|
5491
|
+
|
|
5492
|
+
result(value?: TransactionResultPair): TransactionResultPair;
|
|
5493
|
+
|
|
5494
|
+
feeProcessing(value?: LedgerEntryChange[]): LedgerEntryChange[];
|
|
5495
|
+
|
|
5496
|
+
txApplyProcessing(value?: TransactionMeta): TransactionMeta;
|
|
5497
|
+
|
|
5498
|
+
postTxApplyFeeProcessing(value?: LedgerEntryChange[]): LedgerEntryChange[];
|
|
5499
|
+
|
|
5500
|
+
toXDR(format?: 'raw'): Buffer;
|
|
5501
|
+
|
|
5502
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
5503
|
+
|
|
5504
|
+
static read(io: Buffer): TransactionResultMetaV1;
|
|
5505
|
+
|
|
5506
|
+
static write(value: TransactionResultMetaV1, io: Buffer): void;
|
|
5507
|
+
|
|
5508
|
+
static isValid(value: TransactionResultMetaV1): boolean;
|
|
5509
|
+
|
|
5510
|
+
static toXDR(value: TransactionResultMetaV1): Buffer;
|
|
5511
|
+
|
|
5512
|
+
static fromXDR(input: Buffer, format?: 'raw'): TransactionResultMetaV1;
|
|
5513
|
+
|
|
5514
|
+
static fromXDR(
|
|
5515
|
+
input: string,
|
|
5516
|
+
format: 'hex' | 'base64',
|
|
5517
|
+
): TransactionResultMetaV1;
|
|
5518
|
+
|
|
5519
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
5520
|
+
|
|
5521
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
5522
|
+
}
|
|
5523
|
+
|
|
5380
5524
|
class UpgradeEntryMeta {
|
|
5381
5525
|
constructor(attributes: {
|
|
5382
5526
|
upgrade: LedgerUpgrade;
|
|
@@ -5487,9 +5631,9 @@ export namespace xdr {
|
|
|
5487
5631
|
txProcessing: TransactionResultMeta[];
|
|
5488
5632
|
upgradesProcessing: UpgradeEntryMeta[];
|
|
5489
5633
|
scpInfo: ScpHistoryEntry[];
|
|
5490
|
-
|
|
5491
|
-
|
|
5492
|
-
|
|
5634
|
+
totalByteSizeOfLiveSorobanState: Uint64;
|
|
5635
|
+
evictedKeys: LedgerKey[];
|
|
5636
|
+
unused: LedgerEntry[];
|
|
5493
5637
|
});
|
|
5494
5638
|
|
|
5495
5639
|
ext(value?: LedgerCloseMetaExt): LedgerCloseMetaExt;
|
|
@@ -5504,11 +5648,11 @@ export namespace xdr {
|
|
|
5504
5648
|
|
|
5505
5649
|
scpInfo(value?: ScpHistoryEntry[]): ScpHistoryEntry[];
|
|
5506
5650
|
|
|
5507
|
-
|
|
5651
|
+
totalByteSizeOfLiveSorobanState(value?: Uint64): Uint64;
|
|
5508
5652
|
|
|
5509
|
-
|
|
5653
|
+
evictedKeys(value?: LedgerKey[]): LedgerKey[];
|
|
5510
5654
|
|
|
5511
|
-
|
|
5655
|
+
unused(value?: LedgerEntry[]): LedgerEntry[];
|
|
5512
5656
|
|
|
5513
5657
|
toXDR(format?: 'raw'): Buffer;
|
|
5514
5658
|
|
|
@@ -5531,6 +5675,55 @@ export namespace xdr {
|
|
|
5531
5675
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
5532
5676
|
}
|
|
5533
5677
|
|
|
5678
|
+
class LedgerCloseMetaV2 {
|
|
5679
|
+
constructor(attributes: {
|
|
5680
|
+
ext: LedgerCloseMetaExt;
|
|
5681
|
+
ledgerHeader: LedgerHeaderHistoryEntry;
|
|
5682
|
+
txSet: GeneralizedTransactionSet;
|
|
5683
|
+
txProcessing: TransactionResultMetaV1[];
|
|
5684
|
+
upgradesProcessing: UpgradeEntryMeta[];
|
|
5685
|
+
scpInfo: ScpHistoryEntry[];
|
|
5686
|
+
totalByteSizeOfLiveSorobanState: Uint64;
|
|
5687
|
+
evictedKeys: LedgerKey[];
|
|
5688
|
+
});
|
|
5689
|
+
|
|
5690
|
+
ext(value?: LedgerCloseMetaExt): LedgerCloseMetaExt;
|
|
5691
|
+
|
|
5692
|
+
ledgerHeader(value?: LedgerHeaderHistoryEntry): LedgerHeaderHistoryEntry;
|
|
5693
|
+
|
|
5694
|
+
txSet(value?: GeneralizedTransactionSet): GeneralizedTransactionSet;
|
|
5695
|
+
|
|
5696
|
+
txProcessing(value?: TransactionResultMetaV1[]): TransactionResultMetaV1[];
|
|
5697
|
+
|
|
5698
|
+
upgradesProcessing(value?: UpgradeEntryMeta[]): UpgradeEntryMeta[];
|
|
5699
|
+
|
|
5700
|
+
scpInfo(value?: ScpHistoryEntry[]): ScpHistoryEntry[];
|
|
5701
|
+
|
|
5702
|
+
totalByteSizeOfLiveSorobanState(value?: Uint64): Uint64;
|
|
5703
|
+
|
|
5704
|
+
evictedKeys(value?: LedgerKey[]): LedgerKey[];
|
|
5705
|
+
|
|
5706
|
+
toXDR(format?: 'raw'): Buffer;
|
|
5707
|
+
|
|
5708
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
5709
|
+
|
|
5710
|
+
static read(io: Buffer): LedgerCloseMetaV2;
|
|
5711
|
+
|
|
5712
|
+
static write(value: LedgerCloseMetaV2, io: Buffer): void;
|
|
5713
|
+
|
|
5714
|
+
static isValid(value: LedgerCloseMetaV2): boolean;
|
|
5715
|
+
|
|
5716
|
+
static toXDR(value: LedgerCloseMetaV2): Buffer;
|
|
5717
|
+
|
|
5718
|
+
static fromXDR(input: Buffer, format?: 'raw'): LedgerCloseMetaV2;
|
|
5719
|
+
|
|
5720
|
+
static fromXDR(input: string, format: 'hex' | 'base64'): LedgerCloseMetaV2;
|
|
5721
|
+
|
|
5722
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
5723
|
+
|
|
5724
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
5725
|
+
}
|
|
5726
|
+
|
|
5534
5727
|
class Error {
|
|
5535
5728
|
constructor(attributes: { code: ErrorCode; msg: string | Buffer });
|
|
5536
5729
|
|
|
@@ -6045,40 +6238,6 @@ export namespace xdr {
|
|
|
6045
6238
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
6046
6239
|
}
|
|
6047
6240
|
|
|
6048
|
-
class SignedSurveyRequestMessage {
|
|
6049
|
-
constructor(attributes: {
|
|
6050
|
-
requestSignature: Buffer;
|
|
6051
|
-
request: SurveyRequestMessage;
|
|
6052
|
-
});
|
|
6053
|
-
|
|
6054
|
-
requestSignature(value?: Buffer): Buffer;
|
|
6055
|
-
|
|
6056
|
-
request(value?: SurveyRequestMessage): SurveyRequestMessage;
|
|
6057
|
-
|
|
6058
|
-
toXDR(format?: 'raw'): Buffer;
|
|
6059
|
-
|
|
6060
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
6061
|
-
|
|
6062
|
-
static read(io: Buffer): SignedSurveyRequestMessage;
|
|
6063
|
-
|
|
6064
|
-
static write(value: SignedSurveyRequestMessage, io: Buffer): void;
|
|
6065
|
-
|
|
6066
|
-
static isValid(value: SignedSurveyRequestMessage): boolean;
|
|
6067
|
-
|
|
6068
|
-
static toXDR(value: SignedSurveyRequestMessage): Buffer;
|
|
6069
|
-
|
|
6070
|
-
static fromXDR(input: Buffer, format?: 'raw'): SignedSurveyRequestMessage;
|
|
6071
|
-
|
|
6072
|
-
static fromXDR(
|
|
6073
|
-
input: string,
|
|
6074
|
-
format: 'hex' | 'base64',
|
|
6075
|
-
): SignedSurveyRequestMessage;
|
|
6076
|
-
|
|
6077
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
6078
|
-
|
|
6079
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
6080
|
-
}
|
|
6081
|
-
|
|
6082
6241
|
class SignedTimeSlicedSurveyRequestMessage {
|
|
6083
6242
|
constructor(attributes: {
|
|
6084
6243
|
requestSignature: Buffer;
|
|
@@ -6195,40 +6354,6 @@ export namespace xdr {
|
|
|
6195
6354
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
6196
6355
|
}
|
|
6197
6356
|
|
|
6198
|
-
class SignedSurveyResponseMessage {
|
|
6199
|
-
constructor(attributes: {
|
|
6200
|
-
responseSignature: Buffer;
|
|
6201
|
-
response: SurveyResponseMessage;
|
|
6202
|
-
});
|
|
6203
|
-
|
|
6204
|
-
responseSignature(value?: Buffer): Buffer;
|
|
6205
|
-
|
|
6206
|
-
response(value?: SurveyResponseMessage): SurveyResponseMessage;
|
|
6207
|
-
|
|
6208
|
-
toXDR(format?: 'raw'): Buffer;
|
|
6209
|
-
|
|
6210
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
6211
|
-
|
|
6212
|
-
static read(io: Buffer): SignedSurveyResponseMessage;
|
|
6213
|
-
|
|
6214
|
-
static write(value: SignedSurveyResponseMessage, io: Buffer): void;
|
|
6215
|
-
|
|
6216
|
-
static isValid(value: SignedSurveyResponseMessage): boolean;
|
|
6217
|
-
|
|
6218
|
-
static toXDR(value: SignedSurveyResponseMessage): Buffer;
|
|
6219
|
-
|
|
6220
|
-
static fromXDR(input: Buffer, format?: 'raw'): SignedSurveyResponseMessage;
|
|
6221
|
-
|
|
6222
|
-
static fromXDR(
|
|
6223
|
-
input: string,
|
|
6224
|
-
format: 'hex' | 'base64',
|
|
6225
|
-
): SignedSurveyResponseMessage;
|
|
6226
|
-
|
|
6227
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
6228
|
-
|
|
6229
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
6230
|
-
}
|
|
6231
|
-
|
|
6232
6357
|
class SignedTimeSlicedSurveyResponseMessage {
|
|
6233
6358
|
constructor(attributes: {
|
|
6234
6359
|
responseSignature: Buffer;
|
|
@@ -6424,92 +6549,6 @@ export namespace xdr {
|
|
|
6424
6549
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
6425
6550
|
}
|
|
6426
6551
|
|
|
6427
|
-
class TopologyResponseBodyV0 {
|
|
6428
|
-
constructor(attributes: {
|
|
6429
|
-
inboundPeers: PeerStats[];
|
|
6430
|
-
outboundPeers: PeerStats[];
|
|
6431
|
-
totalInboundPeerCount: number;
|
|
6432
|
-
totalOutboundPeerCount: number;
|
|
6433
|
-
});
|
|
6434
|
-
|
|
6435
|
-
inboundPeers(value?: PeerStats[]): PeerStats[];
|
|
6436
|
-
|
|
6437
|
-
outboundPeers(value?: PeerStats[]): PeerStats[];
|
|
6438
|
-
|
|
6439
|
-
totalInboundPeerCount(value?: number): number;
|
|
6440
|
-
|
|
6441
|
-
totalOutboundPeerCount(value?: number): number;
|
|
6442
|
-
|
|
6443
|
-
toXDR(format?: 'raw'): Buffer;
|
|
6444
|
-
|
|
6445
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
6446
|
-
|
|
6447
|
-
static read(io: Buffer): TopologyResponseBodyV0;
|
|
6448
|
-
|
|
6449
|
-
static write(value: TopologyResponseBodyV0, io: Buffer): void;
|
|
6450
|
-
|
|
6451
|
-
static isValid(value: TopologyResponseBodyV0): boolean;
|
|
6452
|
-
|
|
6453
|
-
static toXDR(value: TopologyResponseBodyV0): Buffer;
|
|
6454
|
-
|
|
6455
|
-
static fromXDR(input: Buffer, format?: 'raw'): TopologyResponseBodyV0;
|
|
6456
|
-
|
|
6457
|
-
static fromXDR(
|
|
6458
|
-
input: string,
|
|
6459
|
-
format: 'hex' | 'base64',
|
|
6460
|
-
): TopologyResponseBodyV0;
|
|
6461
|
-
|
|
6462
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
6463
|
-
|
|
6464
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
6465
|
-
}
|
|
6466
|
-
|
|
6467
|
-
class TopologyResponseBodyV1 {
|
|
6468
|
-
constructor(attributes: {
|
|
6469
|
-
inboundPeers: PeerStats[];
|
|
6470
|
-
outboundPeers: PeerStats[];
|
|
6471
|
-
totalInboundPeerCount: number;
|
|
6472
|
-
totalOutboundPeerCount: number;
|
|
6473
|
-
maxInboundPeerCount: number;
|
|
6474
|
-
maxOutboundPeerCount: number;
|
|
6475
|
-
});
|
|
6476
|
-
|
|
6477
|
-
inboundPeers(value?: PeerStats[]): PeerStats[];
|
|
6478
|
-
|
|
6479
|
-
outboundPeers(value?: PeerStats[]): PeerStats[];
|
|
6480
|
-
|
|
6481
|
-
totalInboundPeerCount(value?: number): number;
|
|
6482
|
-
|
|
6483
|
-
totalOutboundPeerCount(value?: number): number;
|
|
6484
|
-
|
|
6485
|
-
maxInboundPeerCount(value?: number): number;
|
|
6486
|
-
|
|
6487
|
-
maxOutboundPeerCount(value?: number): number;
|
|
6488
|
-
|
|
6489
|
-
toXDR(format?: 'raw'): Buffer;
|
|
6490
|
-
|
|
6491
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
6492
|
-
|
|
6493
|
-
static read(io: Buffer): TopologyResponseBodyV1;
|
|
6494
|
-
|
|
6495
|
-
static write(value: TopologyResponseBodyV1, io: Buffer): void;
|
|
6496
|
-
|
|
6497
|
-
static isValid(value: TopologyResponseBodyV1): boolean;
|
|
6498
|
-
|
|
6499
|
-
static toXDR(value: TopologyResponseBodyV1): Buffer;
|
|
6500
|
-
|
|
6501
|
-
static fromXDR(input: Buffer, format?: 'raw'): TopologyResponseBodyV1;
|
|
6502
|
-
|
|
6503
|
-
static fromXDR(
|
|
6504
|
-
input: string,
|
|
6505
|
-
format: 'hex' | 'base64',
|
|
6506
|
-
): TopologyResponseBodyV1;
|
|
6507
|
-
|
|
6508
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
6509
|
-
|
|
6510
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
6511
|
-
}
|
|
6512
|
-
|
|
6513
6552
|
class TopologyResponseBodyV2 {
|
|
6514
6553
|
constructor(attributes: {
|
|
6515
6554
|
inboundPeers: TimeSlicedPeerData[];
|
|
@@ -8080,166 +8119,66 @@ export namespace xdr {
|
|
|
8080
8119
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
8081
8120
|
}
|
|
8082
8121
|
|
|
8083
|
-
class
|
|
8084
|
-
constructor(attributes: { index: number; hash: Buffer });
|
|
8085
|
-
|
|
8086
|
-
index(value?: number): number;
|
|
8087
|
-
|
|
8088
|
-
hash(value?: Buffer): Buffer;
|
|
8089
|
-
|
|
8090
|
-
toXDR(format?: 'raw'): Buffer;
|
|
8091
|
-
|
|
8092
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
8093
|
-
|
|
8094
|
-
static read(io: Buffer): ArchivalProofNode;
|
|
8095
|
-
|
|
8096
|
-
static write(value: ArchivalProofNode, io: Buffer): void;
|
|
8097
|
-
|
|
8098
|
-
static isValid(value: ArchivalProofNode): boolean;
|
|
8099
|
-
|
|
8100
|
-
static toXDR(value: ArchivalProofNode): Buffer;
|
|
8101
|
-
|
|
8102
|
-
static fromXDR(input: Buffer, format?: 'raw'): ArchivalProofNode;
|
|
8103
|
-
|
|
8104
|
-
static fromXDR(input: string, format: 'hex' | 'base64'): ArchivalProofNode;
|
|
8105
|
-
|
|
8106
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
8107
|
-
|
|
8108
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
8109
|
-
}
|
|
8110
|
-
|
|
8111
|
-
class NonexistenceProofBody {
|
|
8112
|
-
constructor(attributes: {
|
|
8113
|
-
entriesToProve: ColdArchiveBucketEntry[];
|
|
8114
|
-
proofLevels: ArchivalProofNode[][];
|
|
8115
|
-
});
|
|
8116
|
-
|
|
8117
|
-
entriesToProve(value?: ColdArchiveBucketEntry[]): ColdArchiveBucketEntry[];
|
|
8118
|
-
|
|
8119
|
-
proofLevels(value?: ArchivalProofNode[][]): ArchivalProofNode[][];
|
|
8120
|
-
|
|
8121
|
-
toXDR(format?: 'raw'): Buffer;
|
|
8122
|
-
|
|
8123
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
8124
|
-
|
|
8125
|
-
static read(io: Buffer): NonexistenceProofBody;
|
|
8126
|
-
|
|
8127
|
-
static write(value: NonexistenceProofBody, io: Buffer): void;
|
|
8128
|
-
|
|
8129
|
-
static isValid(value: NonexistenceProofBody): boolean;
|
|
8130
|
-
|
|
8131
|
-
static toXDR(value: NonexistenceProofBody): Buffer;
|
|
8132
|
-
|
|
8133
|
-
static fromXDR(input: Buffer, format?: 'raw'): NonexistenceProofBody;
|
|
8134
|
-
|
|
8135
|
-
static fromXDR(
|
|
8136
|
-
input: string,
|
|
8137
|
-
format: 'hex' | 'base64',
|
|
8138
|
-
): NonexistenceProofBody;
|
|
8139
|
-
|
|
8140
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
8141
|
-
|
|
8142
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
8143
|
-
}
|
|
8144
|
-
|
|
8145
|
-
class ExistenceProofBody {
|
|
8122
|
+
class SorobanResources {
|
|
8146
8123
|
constructor(attributes: {
|
|
8147
|
-
|
|
8148
|
-
|
|
8149
|
-
|
|
8150
|
-
|
|
8124
|
+
footprint: LedgerFootprint;
|
|
8125
|
+
instructions: number;
|
|
8126
|
+
diskReadBytes: number;
|
|
8127
|
+
writeBytes: number;
|
|
8151
8128
|
});
|
|
8152
8129
|
|
|
8153
|
-
|
|
8154
|
-
|
|
8155
|
-
lowBoundEntries(value?: ColdArchiveBucketEntry[]): ColdArchiveBucketEntry[];
|
|
8156
|
-
|
|
8157
|
-
highBoundEntries(
|
|
8158
|
-
value?: ColdArchiveBucketEntry[],
|
|
8159
|
-
): ColdArchiveBucketEntry[];
|
|
8160
|
-
|
|
8161
|
-
proofLevels(value?: ArchivalProofNode[][]): ArchivalProofNode[][];
|
|
8162
|
-
|
|
8163
|
-
toXDR(format?: 'raw'): Buffer;
|
|
8164
|
-
|
|
8165
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
8166
|
-
|
|
8167
|
-
static read(io: Buffer): ExistenceProofBody;
|
|
8168
|
-
|
|
8169
|
-
static write(value: ExistenceProofBody, io: Buffer): void;
|
|
8170
|
-
|
|
8171
|
-
static isValid(value: ExistenceProofBody): boolean;
|
|
8172
|
-
|
|
8173
|
-
static toXDR(value: ExistenceProofBody): Buffer;
|
|
8174
|
-
|
|
8175
|
-
static fromXDR(input: Buffer, format?: 'raw'): ExistenceProofBody;
|
|
8176
|
-
|
|
8177
|
-
static fromXDR(input: string, format: 'hex' | 'base64'): ExistenceProofBody;
|
|
8178
|
-
|
|
8179
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
8180
|
-
|
|
8181
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
8182
|
-
}
|
|
8130
|
+
footprint(value?: LedgerFootprint): LedgerFootprint;
|
|
8183
8131
|
|
|
8184
|
-
|
|
8185
|
-
constructor(attributes: { epoch: number; body: ArchivalProofBody });
|
|
8132
|
+
instructions(value?: number): number;
|
|
8186
8133
|
|
|
8187
|
-
|
|
8134
|
+
diskReadBytes(value?: number): number;
|
|
8188
8135
|
|
|
8189
|
-
|
|
8136
|
+
writeBytes(value?: number): number;
|
|
8190
8137
|
|
|
8191
8138
|
toXDR(format?: 'raw'): Buffer;
|
|
8192
8139
|
|
|
8193
8140
|
toXDR(format: 'hex' | 'base64'): string;
|
|
8194
8141
|
|
|
8195
|
-
static read(io: Buffer):
|
|
8142
|
+
static read(io: Buffer): SorobanResources;
|
|
8196
8143
|
|
|
8197
|
-
static write(value:
|
|
8144
|
+
static write(value: SorobanResources, io: Buffer): void;
|
|
8198
8145
|
|
|
8199
|
-
static isValid(value:
|
|
8146
|
+
static isValid(value: SorobanResources): boolean;
|
|
8200
8147
|
|
|
8201
|
-
static toXDR(value:
|
|
8148
|
+
static toXDR(value: SorobanResources): Buffer;
|
|
8202
8149
|
|
|
8203
|
-
static fromXDR(input: Buffer, format?: 'raw'):
|
|
8150
|
+
static fromXDR(input: Buffer, format?: 'raw'): SorobanResources;
|
|
8204
8151
|
|
|
8205
|
-
static fromXDR(input: string, format: 'hex' | 'base64'):
|
|
8152
|
+
static fromXDR(input: string, format: 'hex' | 'base64'): SorobanResources;
|
|
8206
8153
|
|
|
8207
8154
|
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
8208
8155
|
|
|
8209
8156
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
8210
8157
|
}
|
|
8211
8158
|
|
|
8212
|
-
class
|
|
8213
|
-
constructor(attributes: {
|
|
8214
|
-
footprint: LedgerFootprint;
|
|
8215
|
-
instructions: number;
|
|
8216
|
-
readBytes: number;
|
|
8217
|
-
writeBytes: number;
|
|
8218
|
-
});
|
|
8219
|
-
|
|
8220
|
-
footprint(value?: LedgerFootprint): LedgerFootprint;
|
|
8159
|
+
class SorobanResourcesExtV0 {
|
|
8160
|
+
constructor(attributes: { archivedSorobanEntries: number[] });
|
|
8221
8161
|
|
|
8222
|
-
|
|
8223
|
-
|
|
8224
|
-
readBytes(value?: number): number;
|
|
8225
|
-
|
|
8226
|
-
writeBytes(value?: number): number;
|
|
8162
|
+
archivedSorobanEntries(value?: number[]): number[];
|
|
8227
8163
|
|
|
8228
8164
|
toXDR(format?: 'raw'): Buffer;
|
|
8229
8165
|
|
|
8230
8166
|
toXDR(format: 'hex' | 'base64'): string;
|
|
8231
8167
|
|
|
8232
|
-
static read(io: Buffer):
|
|
8168
|
+
static read(io: Buffer): SorobanResourcesExtV0;
|
|
8233
8169
|
|
|
8234
|
-
static write(value:
|
|
8170
|
+
static write(value: SorobanResourcesExtV0, io: Buffer): void;
|
|
8235
8171
|
|
|
8236
|
-
static isValid(value:
|
|
8172
|
+
static isValid(value: SorobanResourcesExtV0): boolean;
|
|
8237
8173
|
|
|
8238
|
-
static toXDR(value:
|
|
8174
|
+
static toXDR(value: SorobanResourcesExtV0): Buffer;
|
|
8239
8175
|
|
|
8240
|
-
static fromXDR(input: Buffer, format?: 'raw'):
|
|
8176
|
+
static fromXDR(input: Buffer, format?: 'raw'): SorobanResourcesExtV0;
|
|
8241
8177
|
|
|
8242
|
-
static fromXDR(
|
|
8178
|
+
static fromXDR(
|
|
8179
|
+
input: string,
|
|
8180
|
+
format: 'hex' | 'base64',
|
|
8181
|
+
): SorobanResourcesExtV0;
|
|
8243
8182
|
|
|
8244
8183
|
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
8245
8184
|
|
|
@@ -8248,12 +8187,12 @@ export namespace xdr {
|
|
|
8248
8187
|
|
|
8249
8188
|
class SorobanTransactionData {
|
|
8250
8189
|
constructor(attributes: {
|
|
8251
|
-
ext:
|
|
8190
|
+
ext: SorobanTransactionDataExt;
|
|
8252
8191
|
resources: SorobanResources;
|
|
8253
8192
|
resourceFee: Int64;
|
|
8254
8193
|
});
|
|
8255
8194
|
|
|
8256
|
-
ext(value?:
|
|
8195
|
+
ext(value?: SorobanTransactionDataExt): SorobanTransactionDataExt;
|
|
8257
8196
|
|
|
8258
8197
|
resources(value?: SorobanResources): SorobanResources;
|
|
8259
8198
|
|
|
@@ -9300,6 +9239,37 @@ export namespace xdr {
|
|
|
9300
9239
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
9301
9240
|
}
|
|
9302
9241
|
|
|
9242
|
+
class MuxedEd25519Account {
|
|
9243
|
+
constructor(attributes: { id: Uint64; ed25519: Buffer });
|
|
9244
|
+
|
|
9245
|
+
id(value?: Uint64): Uint64;
|
|
9246
|
+
|
|
9247
|
+
ed25519(value?: Buffer): Buffer;
|
|
9248
|
+
|
|
9249
|
+
toXDR(format?: 'raw'): Buffer;
|
|
9250
|
+
|
|
9251
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
9252
|
+
|
|
9253
|
+
static read(io: Buffer): MuxedEd25519Account;
|
|
9254
|
+
|
|
9255
|
+
static write(value: MuxedEd25519Account, io: Buffer): void;
|
|
9256
|
+
|
|
9257
|
+
static isValid(value: MuxedEd25519Account): boolean;
|
|
9258
|
+
|
|
9259
|
+
static toXDR(value: MuxedEd25519Account): Buffer;
|
|
9260
|
+
|
|
9261
|
+
static fromXDR(input: Buffer, format?: 'raw'): MuxedEd25519Account;
|
|
9262
|
+
|
|
9263
|
+
static fromXDR(
|
|
9264
|
+
input: string,
|
|
9265
|
+
format: 'hex' | 'base64',
|
|
9266
|
+
): MuxedEd25519Account;
|
|
9267
|
+
|
|
9268
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
9269
|
+
|
|
9270
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
9271
|
+
}
|
|
9272
|
+
|
|
9303
9273
|
class ScNonceKey {
|
|
9304
9274
|
constructor(attributes: { nonce: Int64 });
|
|
9305
9275
|
|
|
@@ -10028,15 +9998,95 @@ export namespace xdr {
|
|
|
10028
9998
|
|
|
10029
9999
|
static read(io: Buffer): ScSpecFunctionV0;
|
|
10030
10000
|
|
|
10031
|
-
static write(value: ScSpecFunctionV0, io: Buffer): void;
|
|
10001
|
+
static write(value: ScSpecFunctionV0, io: Buffer): void;
|
|
10002
|
+
|
|
10003
|
+
static isValid(value: ScSpecFunctionV0): boolean;
|
|
10004
|
+
|
|
10005
|
+
static toXDR(value: ScSpecFunctionV0): Buffer;
|
|
10006
|
+
|
|
10007
|
+
static fromXDR(input: Buffer, format?: 'raw'): ScSpecFunctionV0;
|
|
10008
|
+
|
|
10009
|
+
static fromXDR(input: string, format: 'hex' | 'base64'): ScSpecFunctionV0;
|
|
10010
|
+
|
|
10011
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
10012
|
+
|
|
10013
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
10014
|
+
}
|
|
10015
|
+
|
|
10016
|
+
class ScSpecEventParamV0 {
|
|
10017
|
+
constructor(attributes: {
|
|
10018
|
+
doc: string | Buffer;
|
|
10019
|
+
name: string | Buffer;
|
|
10020
|
+
type: ScSpecTypeDef;
|
|
10021
|
+
location: ScSpecEventParamLocationV0;
|
|
10022
|
+
});
|
|
10023
|
+
|
|
10024
|
+
doc(value?: string | Buffer): string | Buffer;
|
|
10025
|
+
|
|
10026
|
+
name(value?: string | Buffer): string | Buffer;
|
|
10027
|
+
|
|
10028
|
+
type(value?: ScSpecTypeDef): ScSpecTypeDef;
|
|
10029
|
+
|
|
10030
|
+
location(value?: ScSpecEventParamLocationV0): ScSpecEventParamLocationV0;
|
|
10031
|
+
|
|
10032
|
+
toXDR(format?: 'raw'): Buffer;
|
|
10033
|
+
|
|
10034
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
10035
|
+
|
|
10036
|
+
static read(io: Buffer): ScSpecEventParamV0;
|
|
10037
|
+
|
|
10038
|
+
static write(value: ScSpecEventParamV0, io: Buffer): void;
|
|
10039
|
+
|
|
10040
|
+
static isValid(value: ScSpecEventParamV0): boolean;
|
|
10041
|
+
|
|
10042
|
+
static toXDR(value: ScSpecEventParamV0): Buffer;
|
|
10043
|
+
|
|
10044
|
+
static fromXDR(input: Buffer, format?: 'raw'): ScSpecEventParamV0;
|
|
10045
|
+
|
|
10046
|
+
static fromXDR(input: string, format: 'hex' | 'base64'): ScSpecEventParamV0;
|
|
10047
|
+
|
|
10048
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
10049
|
+
|
|
10050
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
10051
|
+
}
|
|
10052
|
+
|
|
10053
|
+
class ScSpecEventV0 {
|
|
10054
|
+
constructor(attributes: {
|
|
10055
|
+
doc: string | Buffer;
|
|
10056
|
+
lib: string | Buffer;
|
|
10057
|
+
name: string | Buffer;
|
|
10058
|
+
prefixTopics: Array<string | Buffer>;
|
|
10059
|
+
params: ScSpecEventParamV0[];
|
|
10060
|
+
dataFormat: ScSpecEventDataFormat;
|
|
10061
|
+
});
|
|
10062
|
+
|
|
10063
|
+
doc(value?: string | Buffer): string | Buffer;
|
|
10064
|
+
|
|
10065
|
+
lib(value?: string | Buffer): string | Buffer;
|
|
10066
|
+
|
|
10067
|
+
name(value?: string | Buffer): string | Buffer;
|
|
10068
|
+
|
|
10069
|
+
prefixTopics(value?: Array<string | Buffer>): Array<string | Buffer>;
|
|
10070
|
+
|
|
10071
|
+
params(value?: ScSpecEventParamV0[]): ScSpecEventParamV0[];
|
|
10072
|
+
|
|
10073
|
+
dataFormat(value?: ScSpecEventDataFormat): ScSpecEventDataFormat;
|
|
10074
|
+
|
|
10075
|
+
toXDR(format?: 'raw'): Buffer;
|
|
10076
|
+
|
|
10077
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
10078
|
+
|
|
10079
|
+
static read(io: Buffer): ScSpecEventV0;
|
|
10080
|
+
|
|
10081
|
+
static write(value: ScSpecEventV0, io: Buffer): void;
|
|
10032
10082
|
|
|
10033
|
-
static isValid(value:
|
|
10083
|
+
static isValid(value: ScSpecEventV0): boolean;
|
|
10034
10084
|
|
|
10035
|
-
static toXDR(value:
|
|
10085
|
+
static toXDR(value: ScSpecEventV0): Buffer;
|
|
10036
10086
|
|
|
10037
|
-
static fromXDR(input: Buffer, format?: 'raw'):
|
|
10087
|
+
static fromXDR(input: Buffer, format?: 'raw'): ScSpecEventV0;
|
|
10038
10088
|
|
|
10039
|
-
static fromXDR(input: string, format: 'hex' | 'base64'):
|
|
10089
|
+
static fromXDR(input: string, format: 'hex' | 'base64'): ScSpecEventV0;
|
|
10040
10090
|
|
|
10041
10091
|
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
10042
10092
|
|
|
@@ -10121,54 +10171,89 @@ export namespace xdr {
|
|
|
10121
10171
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
10122
10172
|
}
|
|
10123
10173
|
|
|
10174
|
+
class ConfigSettingContractParallelComputeV0 {
|
|
10175
|
+
constructor(attributes: { ledgerMaxDependentTxClusters: number });
|
|
10176
|
+
|
|
10177
|
+
ledgerMaxDependentTxClusters(value?: number): number;
|
|
10178
|
+
|
|
10179
|
+
toXDR(format?: 'raw'): Buffer;
|
|
10180
|
+
|
|
10181
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
10182
|
+
|
|
10183
|
+
static read(io: Buffer): ConfigSettingContractParallelComputeV0;
|
|
10184
|
+
|
|
10185
|
+
static write(
|
|
10186
|
+
value: ConfigSettingContractParallelComputeV0,
|
|
10187
|
+
io: Buffer,
|
|
10188
|
+
): void;
|
|
10189
|
+
|
|
10190
|
+
static isValid(value: ConfigSettingContractParallelComputeV0): boolean;
|
|
10191
|
+
|
|
10192
|
+
static toXDR(value: ConfigSettingContractParallelComputeV0): Buffer;
|
|
10193
|
+
|
|
10194
|
+
static fromXDR(
|
|
10195
|
+
input: Buffer,
|
|
10196
|
+
format?: 'raw',
|
|
10197
|
+
): ConfigSettingContractParallelComputeV0;
|
|
10198
|
+
|
|
10199
|
+
static fromXDR(
|
|
10200
|
+
input: string,
|
|
10201
|
+
format: 'hex' | 'base64',
|
|
10202
|
+
): ConfigSettingContractParallelComputeV0;
|
|
10203
|
+
|
|
10204
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
10205
|
+
|
|
10206
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
10207
|
+
}
|
|
10208
|
+
|
|
10124
10209
|
class ConfigSettingContractLedgerCostV0 {
|
|
10125
10210
|
constructor(attributes: {
|
|
10126
|
-
|
|
10127
|
-
|
|
10211
|
+
ledgerMaxDiskReadEntries: number;
|
|
10212
|
+
ledgerMaxDiskReadBytes: number;
|
|
10128
10213
|
ledgerMaxWriteLedgerEntries: number;
|
|
10129
10214
|
ledgerMaxWriteBytes: number;
|
|
10130
|
-
|
|
10131
|
-
|
|
10215
|
+
txMaxDiskReadEntries: number;
|
|
10216
|
+
txMaxDiskReadBytes: number;
|
|
10132
10217
|
txMaxWriteLedgerEntries: number;
|
|
10133
10218
|
txMaxWriteBytes: number;
|
|
10134
|
-
|
|
10219
|
+
feeDiskReadLedgerEntry: Int64;
|
|
10135
10220
|
feeWriteLedgerEntry: Int64;
|
|
10136
|
-
|
|
10137
|
-
|
|
10138
|
-
|
|
10139
|
-
|
|
10140
|
-
|
|
10221
|
+
feeDiskRead1Kb: Int64;
|
|
10222
|
+
sorobanStateTargetSizeBytes: Int64;
|
|
10223
|
+
rentFee1KbSorobanStateSizeLow: Int64;
|
|
10224
|
+
rentFee1KbSorobanStateSizeHigh: Int64;
|
|
10225
|
+
sorobanStateRentFeeGrowthFactor: number;
|
|
10141
10226
|
});
|
|
10142
10227
|
|
|
10143
|
-
|
|
10228
|
+
ledgerMaxDiskReadEntries(value?: number): number;
|
|
10144
10229
|
|
|
10145
|
-
|
|
10230
|
+
ledgerMaxDiskReadBytes(value?: number): number;
|
|
10146
10231
|
|
|
10147
10232
|
ledgerMaxWriteLedgerEntries(value?: number): number;
|
|
10148
10233
|
|
|
10149
10234
|
ledgerMaxWriteBytes(value?: number): number;
|
|
10150
10235
|
|
|
10151
|
-
|
|
10236
|
+
txMaxDiskReadEntries(value?: number): number;
|
|
10152
10237
|
|
|
10153
|
-
|
|
10238
|
+
txMaxDiskReadBytes(value?: number): number;
|
|
10154
10239
|
|
|
10155
10240
|
txMaxWriteLedgerEntries(value?: number): number;
|
|
10156
10241
|
|
|
10157
10242
|
txMaxWriteBytes(value?: number): number;
|
|
10158
10243
|
|
|
10159
|
-
|
|
10244
|
+
feeDiskReadLedgerEntry(value?: Int64): Int64;
|
|
10160
10245
|
|
|
10161
10246
|
feeWriteLedgerEntry(value?: Int64): Int64;
|
|
10162
10247
|
|
|
10163
|
-
|
|
10248
|
+
feeDiskRead1Kb(value?: Int64): Int64;
|
|
10164
10249
|
|
|
10165
|
-
|
|
10250
|
+
sorobanStateTargetSizeBytes(value?: Int64): Int64;
|
|
10166
10251
|
|
|
10167
|
-
|
|
10252
|
+
rentFee1KbSorobanStateSizeLow(value?: Int64): Int64;
|
|
10168
10253
|
|
|
10169
|
-
|
|
10254
|
+
rentFee1KbSorobanStateSizeHigh(value?: Int64): Int64;
|
|
10170
10255
|
|
|
10171
|
-
|
|
10256
|
+
sorobanStateRentFeeGrowthFactor(value?: number): number;
|
|
10172
10257
|
|
|
10173
10258
|
toXDR(format?: 'raw'): Buffer;
|
|
10174
10259
|
|
|
@@ -10197,6 +10282,43 @@ export namespace xdr {
|
|
|
10197
10282
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
10198
10283
|
}
|
|
10199
10284
|
|
|
10285
|
+
class ConfigSettingContractLedgerCostExtV0 {
|
|
10286
|
+
constructor(attributes: {
|
|
10287
|
+
txMaxFootprintEntries: number;
|
|
10288
|
+
feeWrite1Kb: Int64;
|
|
10289
|
+
});
|
|
10290
|
+
|
|
10291
|
+
txMaxFootprintEntries(value?: number): number;
|
|
10292
|
+
|
|
10293
|
+
feeWrite1Kb(value?: Int64): Int64;
|
|
10294
|
+
|
|
10295
|
+
toXDR(format?: 'raw'): Buffer;
|
|
10296
|
+
|
|
10297
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
10298
|
+
|
|
10299
|
+
static read(io: Buffer): ConfigSettingContractLedgerCostExtV0;
|
|
10300
|
+
|
|
10301
|
+
static write(value: ConfigSettingContractLedgerCostExtV0, io: Buffer): void;
|
|
10302
|
+
|
|
10303
|
+
static isValid(value: ConfigSettingContractLedgerCostExtV0): boolean;
|
|
10304
|
+
|
|
10305
|
+
static toXDR(value: ConfigSettingContractLedgerCostExtV0): Buffer;
|
|
10306
|
+
|
|
10307
|
+
static fromXDR(
|
|
10308
|
+
input: Buffer,
|
|
10309
|
+
format?: 'raw',
|
|
10310
|
+
): ConfigSettingContractLedgerCostExtV0;
|
|
10311
|
+
|
|
10312
|
+
static fromXDR(
|
|
10313
|
+
input: string,
|
|
10314
|
+
format: 'hex' | 'base64',
|
|
10315
|
+
): ConfigSettingContractLedgerCostExtV0;
|
|
10316
|
+
|
|
10317
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
10318
|
+
|
|
10319
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
10320
|
+
}
|
|
10321
|
+
|
|
10200
10322
|
class ConfigSettingContractHistoricalDataV0 {
|
|
10201
10323
|
constructor(attributes: { feeHistorical1Kb: Int64 });
|
|
10202
10324
|
|
|
@@ -10354,8 +10476,8 @@ export namespace xdr {
|
|
|
10354
10476
|
persistentRentRateDenominator: Int64;
|
|
10355
10477
|
tempRentRateDenominator: Int64;
|
|
10356
10478
|
maxEntriesToArchive: number;
|
|
10357
|
-
|
|
10358
|
-
|
|
10479
|
+
liveSorobanStateSizeWindowSampleSize: number;
|
|
10480
|
+
liveSorobanStateSizeWindowSamplePeriod: number;
|
|
10359
10481
|
evictionScanSize: number;
|
|
10360
10482
|
startingEvictionScanLevel: number;
|
|
10361
10483
|
});
|
|
@@ -10372,9 +10494,9 @@ export namespace xdr {
|
|
|
10372
10494
|
|
|
10373
10495
|
maxEntriesToArchive(value?: number): number;
|
|
10374
10496
|
|
|
10375
|
-
|
|
10497
|
+
liveSorobanStateSizeWindowSampleSize(value?: number): number;
|
|
10376
10498
|
|
|
10377
|
-
|
|
10499
|
+
liveSorobanStateSizeWindowSamplePeriod(value?: number): number;
|
|
10378
10500
|
|
|
10379
10501
|
evictionScanSize(value?: number): number;
|
|
10380
10502
|
|
|
@@ -10438,6 +10560,86 @@ export namespace xdr {
|
|
|
10438
10560
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
10439
10561
|
}
|
|
10440
10562
|
|
|
10563
|
+
class ConfigSettingScpTiming {
|
|
10564
|
+
constructor(attributes: {
|
|
10565
|
+
ledgerTargetCloseTimeMilliseconds: number;
|
|
10566
|
+
nominationTimeoutInitialMilliseconds: number;
|
|
10567
|
+
nominationTimeoutIncrementMilliseconds: number;
|
|
10568
|
+
ballotTimeoutInitialMilliseconds: number;
|
|
10569
|
+
ballotTimeoutIncrementMilliseconds: number;
|
|
10570
|
+
});
|
|
10571
|
+
|
|
10572
|
+
ledgerTargetCloseTimeMilliseconds(value?: number): number;
|
|
10573
|
+
|
|
10574
|
+
nominationTimeoutInitialMilliseconds(value?: number): number;
|
|
10575
|
+
|
|
10576
|
+
nominationTimeoutIncrementMilliseconds(value?: number): number;
|
|
10577
|
+
|
|
10578
|
+
ballotTimeoutInitialMilliseconds(value?: number): number;
|
|
10579
|
+
|
|
10580
|
+
ballotTimeoutIncrementMilliseconds(value?: number): number;
|
|
10581
|
+
|
|
10582
|
+
toXDR(format?: 'raw'): Buffer;
|
|
10583
|
+
|
|
10584
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
10585
|
+
|
|
10586
|
+
static read(io: Buffer): ConfigSettingScpTiming;
|
|
10587
|
+
|
|
10588
|
+
static write(value: ConfigSettingScpTiming, io: Buffer): void;
|
|
10589
|
+
|
|
10590
|
+
static isValid(value: ConfigSettingScpTiming): boolean;
|
|
10591
|
+
|
|
10592
|
+
static toXDR(value: ConfigSettingScpTiming): Buffer;
|
|
10593
|
+
|
|
10594
|
+
static fromXDR(input: Buffer, format?: 'raw'): ConfigSettingScpTiming;
|
|
10595
|
+
|
|
10596
|
+
static fromXDR(
|
|
10597
|
+
input: string,
|
|
10598
|
+
format: 'hex' | 'base64',
|
|
10599
|
+
): ConfigSettingScpTiming;
|
|
10600
|
+
|
|
10601
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
10602
|
+
|
|
10603
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
10604
|
+
}
|
|
10605
|
+
|
|
10606
|
+
class LedgerCloseMetaBatch {
|
|
10607
|
+
constructor(attributes: {
|
|
10608
|
+
startSequence: number;
|
|
10609
|
+
endSequence: number;
|
|
10610
|
+
ledgerCloseMeta: LedgerCloseMeta[];
|
|
10611
|
+
});
|
|
10612
|
+
|
|
10613
|
+
startSequence(value?: number): number;
|
|
10614
|
+
|
|
10615
|
+
endSequence(value?: number): number;
|
|
10616
|
+
|
|
10617
|
+
ledgerCloseMeta(value?: LedgerCloseMeta[]): LedgerCloseMeta[];
|
|
10618
|
+
|
|
10619
|
+
toXDR(format?: 'raw'): Buffer;
|
|
10620
|
+
|
|
10621
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
10622
|
+
|
|
10623
|
+
static read(io: Buffer): LedgerCloseMetaBatch;
|
|
10624
|
+
|
|
10625
|
+
static write(value: LedgerCloseMetaBatch, io: Buffer): void;
|
|
10626
|
+
|
|
10627
|
+
static isValid(value: LedgerCloseMetaBatch): boolean;
|
|
10628
|
+
|
|
10629
|
+
static toXDR(value: LedgerCloseMetaBatch): Buffer;
|
|
10630
|
+
|
|
10631
|
+
static fromXDR(input: Buffer, format?: 'raw'): LedgerCloseMetaBatch;
|
|
10632
|
+
|
|
10633
|
+
static fromXDR(
|
|
10634
|
+
input: string,
|
|
10635
|
+
format: 'hex' | 'base64',
|
|
10636
|
+
): LedgerCloseMetaBatch;
|
|
10637
|
+
|
|
10638
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
10639
|
+
|
|
10640
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
10641
|
+
}
|
|
10642
|
+
|
|
10441
10643
|
class ScpStatementPledges {
|
|
10442
10644
|
switch(): ScpStatementType;
|
|
10443
10645
|
|
|
@@ -10940,36 +11142,6 @@ export namespace xdr {
|
|
|
10940
11142
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
10941
11143
|
}
|
|
10942
11144
|
|
|
10943
|
-
class ClaimableBalanceId {
|
|
10944
|
-
switch(): ClaimableBalanceIdType;
|
|
10945
|
-
|
|
10946
|
-
v0(value?: Buffer): Buffer;
|
|
10947
|
-
|
|
10948
|
-
static claimableBalanceIdTypeV0(value: Buffer): ClaimableBalanceId;
|
|
10949
|
-
|
|
10950
|
-
value(): Buffer;
|
|
10951
|
-
|
|
10952
|
-
toXDR(format?: 'raw'): Buffer;
|
|
10953
|
-
|
|
10954
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
10955
|
-
|
|
10956
|
-
static read(io: Buffer): ClaimableBalanceId;
|
|
10957
|
-
|
|
10958
|
-
static write(value: ClaimableBalanceId, io: Buffer): void;
|
|
10959
|
-
|
|
10960
|
-
static isValid(value: ClaimableBalanceId): boolean;
|
|
10961
|
-
|
|
10962
|
-
static toXDR(value: ClaimableBalanceId): Buffer;
|
|
10963
|
-
|
|
10964
|
-
static fromXDR(input: Buffer, format?: 'raw'): ClaimableBalanceId;
|
|
10965
|
-
|
|
10966
|
-
static fromXDR(input: string, format: 'hex' | 'base64'): ClaimableBalanceId;
|
|
10967
|
-
|
|
10968
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
10969
|
-
|
|
10970
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
10971
|
-
}
|
|
10972
|
-
|
|
10973
11145
|
class ClaimableBalanceEntryExtensionV1Ext {
|
|
10974
11146
|
switch(): number;
|
|
10975
11147
|
|
|
@@ -11415,8 +11587,6 @@ export namespace xdr {
|
|
|
11415
11587
|
|
|
11416
11588
|
static hotArchiveLive(value: LedgerKey): HotArchiveBucketEntry;
|
|
11417
11589
|
|
|
11418
|
-
static hotArchiveDeleted(value: LedgerKey): HotArchiveBucketEntry;
|
|
11419
|
-
|
|
11420
11590
|
static hotArchiveMetaentry(value: BucketMetadata): HotArchiveBucketEntry;
|
|
11421
11591
|
|
|
11422
11592
|
value(): LedgerEntry | LedgerKey | BucketMetadata;
|
|
@@ -11445,66 +11615,6 @@ export namespace xdr {
|
|
|
11445
11615
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
11446
11616
|
}
|
|
11447
11617
|
|
|
11448
|
-
class ColdArchiveBucketEntry {
|
|
11449
|
-
switch(): ColdArchiveBucketEntryType;
|
|
11450
|
-
|
|
11451
|
-
metaEntry(value?: BucketMetadata): BucketMetadata;
|
|
11452
|
-
|
|
11453
|
-
archivedLeaf(value?: ColdArchiveArchivedLeaf): ColdArchiveArchivedLeaf;
|
|
11454
|
-
|
|
11455
|
-
deletedLeaf(value?: ColdArchiveDeletedLeaf): ColdArchiveDeletedLeaf;
|
|
11456
|
-
|
|
11457
|
-
boundaryLeaf(value?: ColdArchiveBoundaryLeaf): ColdArchiveBoundaryLeaf;
|
|
11458
|
-
|
|
11459
|
-
hashEntry(value?: ColdArchiveHashEntry): ColdArchiveHashEntry;
|
|
11460
|
-
|
|
11461
|
-
static coldArchiveMetaentry(value: BucketMetadata): ColdArchiveBucketEntry;
|
|
11462
|
-
|
|
11463
|
-
static coldArchiveArchivedLeaf(
|
|
11464
|
-
value: ColdArchiveArchivedLeaf,
|
|
11465
|
-
): ColdArchiveBucketEntry;
|
|
11466
|
-
|
|
11467
|
-
static coldArchiveDeletedLeaf(
|
|
11468
|
-
value: ColdArchiveDeletedLeaf,
|
|
11469
|
-
): ColdArchiveBucketEntry;
|
|
11470
|
-
|
|
11471
|
-
static coldArchiveBoundaryLeaf(
|
|
11472
|
-
value: ColdArchiveBoundaryLeaf,
|
|
11473
|
-
): ColdArchiveBucketEntry;
|
|
11474
|
-
|
|
11475
|
-
static coldArchiveHash(value: ColdArchiveHashEntry): ColdArchiveBucketEntry;
|
|
11476
|
-
|
|
11477
|
-
value():
|
|
11478
|
-
| BucketMetadata
|
|
11479
|
-
| ColdArchiveArchivedLeaf
|
|
11480
|
-
| ColdArchiveDeletedLeaf
|
|
11481
|
-
| ColdArchiveBoundaryLeaf
|
|
11482
|
-
| ColdArchiveHashEntry;
|
|
11483
|
-
|
|
11484
|
-
toXDR(format?: 'raw'): Buffer;
|
|
11485
|
-
|
|
11486
|
-
toXDR(format: 'hex' | 'base64'): string;
|
|
11487
|
-
|
|
11488
|
-
static read(io: Buffer): ColdArchiveBucketEntry;
|
|
11489
|
-
|
|
11490
|
-
static write(value: ColdArchiveBucketEntry, io: Buffer): void;
|
|
11491
|
-
|
|
11492
|
-
static isValid(value: ColdArchiveBucketEntry): boolean;
|
|
11493
|
-
|
|
11494
|
-
static toXDR(value: ColdArchiveBucketEntry): Buffer;
|
|
11495
|
-
|
|
11496
|
-
static fromXDR(input: Buffer, format?: 'raw'): ColdArchiveBucketEntry;
|
|
11497
|
-
|
|
11498
|
-
static fromXDR(
|
|
11499
|
-
input: string,
|
|
11500
|
-
format: 'hex' | 'base64',
|
|
11501
|
-
): ColdArchiveBucketEntry;
|
|
11502
|
-
|
|
11503
|
-
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
11504
|
-
|
|
11505
|
-
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
11506
|
-
}
|
|
11507
|
-
|
|
11508
11618
|
class StellarValueExt {
|
|
11509
11619
|
switch(): StellarValueType;
|
|
11510
11620
|
|
|
@@ -11704,9 +11814,13 @@ export namespace xdr {
|
|
|
11704
11814
|
|
|
11705
11815
|
v0Components(value?: TxSetComponent[]): TxSetComponent[];
|
|
11706
11816
|
|
|
11817
|
+
parallelTxsComponent(value?: ParallelTxsComponent): ParallelTxsComponent;
|
|
11818
|
+
|
|
11707
11819
|
static 0(value: TxSetComponent[]): TransactionPhase;
|
|
11708
11820
|
|
|
11709
|
-
value
|
|
11821
|
+
static 1(value: ParallelTxsComponent): TransactionPhase;
|
|
11822
|
+
|
|
11823
|
+
value(): TxSetComponent[] | ParallelTxsComponent;
|
|
11710
11824
|
|
|
11711
11825
|
toXDR(format?: 'raw'): Buffer;
|
|
11712
11826
|
|
|
@@ -11905,6 +12019,8 @@ export namespace xdr {
|
|
|
11905
12019
|
|
|
11906
12020
|
state(value?: LedgerEntry): LedgerEntry;
|
|
11907
12021
|
|
|
12022
|
+
restored(value?: LedgerEntry): LedgerEntry;
|
|
12023
|
+
|
|
11908
12024
|
static ledgerEntryCreated(value: LedgerEntry): LedgerEntryChange;
|
|
11909
12025
|
|
|
11910
12026
|
static ledgerEntryUpdated(value: LedgerEntry): LedgerEntryChange;
|
|
@@ -11913,7 +12029,9 @@ export namespace xdr {
|
|
|
11913
12029
|
|
|
11914
12030
|
static ledgerEntryState(value: LedgerEntry): LedgerEntryChange;
|
|
11915
12031
|
|
|
11916
|
-
value
|
|
12032
|
+
static ledgerEntryRestored(value: LedgerEntry): LedgerEntryChange;
|
|
12033
|
+
|
|
12034
|
+
value(): LedgerEntry | LedgerEntry | LedgerKey | LedgerEntry | LedgerEntry;
|
|
11917
12035
|
|
|
11918
12036
|
toXDR(format?: 'raw'): Buffer;
|
|
11919
12037
|
|
|
@@ -12012,6 +12130,8 @@ export namespace xdr {
|
|
|
12012
12130
|
|
|
12013
12131
|
v3(value?: TransactionMetaV3): TransactionMetaV3;
|
|
12014
12132
|
|
|
12133
|
+
v4(value?: TransactionMetaV4): TransactionMetaV4;
|
|
12134
|
+
|
|
12015
12135
|
static 0(value: OperationMeta[]): TransactionMeta;
|
|
12016
12136
|
|
|
12017
12137
|
static 1(value: TransactionMetaV1): TransactionMeta;
|
|
@@ -12020,11 +12140,14 @@ export namespace xdr {
|
|
|
12020
12140
|
|
|
12021
12141
|
static 3(value: TransactionMetaV3): TransactionMeta;
|
|
12022
12142
|
|
|
12143
|
+
static 4(value: TransactionMetaV4): TransactionMeta;
|
|
12144
|
+
|
|
12023
12145
|
value():
|
|
12024
12146
|
| OperationMeta[]
|
|
12025
12147
|
| TransactionMetaV1
|
|
12026
12148
|
| TransactionMetaV2
|
|
12027
|
-
| TransactionMetaV3
|
|
12149
|
+
| TransactionMetaV3
|
|
12150
|
+
| TransactionMetaV4;
|
|
12028
12151
|
|
|
12029
12152
|
toXDR(format?: 'raw'): Buffer;
|
|
12030
12153
|
|
|
@@ -12086,11 +12209,15 @@ export namespace xdr {
|
|
|
12086
12209
|
|
|
12087
12210
|
v1(value?: LedgerCloseMetaV1): LedgerCloseMetaV1;
|
|
12088
12211
|
|
|
12212
|
+
v2(value?: LedgerCloseMetaV2): LedgerCloseMetaV2;
|
|
12213
|
+
|
|
12089
12214
|
static 0(value: LedgerCloseMetaV0): LedgerCloseMeta;
|
|
12090
12215
|
|
|
12091
12216
|
static 1(value: LedgerCloseMetaV1): LedgerCloseMeta;
|
|
12092
12217
|
|
|
12093
|
-
value
|
|
12218
|
+
static 2(value: LedgerCloseMetaV2): LedgerCloseMeta;
|
|
12219
|
+
|
|
12220
|
+
value(): LedgerCloseMetaV0 | LedgerCloseMetaV1 | LedgerCloseMetaV2;
|
|
12094
12221
|
|
|
12095
12222
|
toXDR(format?: 'raw'): Buffer;
|
|
12096
12223
|
|
|
@@ -12150,34 +12277,15 @@ export namespace xdr {
|
|
|
12150
12277
|
class SurveyResponseBody {
|
|
12151
12278
|
switch(): SurveyMessageResponseType;
|
|
12152
12279
|
|
|
12153
|
-
topologyResponseBodyV0(
|
|
12154
|
-
value?: TopologyResponseBodyV0,
|
|
12155
|
-
): TopologyResponseBodyV0;
|
|
12156
|
-
|
|
12157
|
-
topologyResponseBodyV1(
|
|
12158
|
-
value?: TopologyResponseBodyV1,
|
|
12159
|
-
): TopologyResponseBodyV1;
|
|
12160
|
-
|
|
12161
12280
|
topologyResponseBodyV2(
|
|
12162
12281
|
value?: TopologyResponseBodyV2,
|
|
12163
12282
|
): TopologyResponseBodyV2;
|
|
12164
12283
|
|
|
12165
|
-
static surveyTopologyResponseV0(
|
|
12166
|
-
value: TopologyResponseBodyV0,
|
|
12167
|
-
): SurveyResponseBody;
|
|
12168
|
-
|
|
12169
|
-
static surveyTopologyResponseV1(
|
|
12170
|
-
value: TopologyResponseBodyV1,
|
|
12171
|
-
): SurveyResponseBody;
|
|
12172
|
-
|
|
12173
12284
|
static surveyTopologyResponseV2(
|
|
12174
12285
|
value: TopologyResponseBodyV2,
|
|
12175
12286
|
): SurveyResponseBody;
|
|
12176
12287
|
|
|
12177
|
-
value():
|
|
12178
|
-
| TopologyResponseBodyV0
|
|
12179
|
-
| TopologyResponseBodyV1
|
|
12180
|
-
| TopologyResponseBodyV2;
|
|
12288
|
+
value(): TopologyResponseBodyV2;
|
|
12181
12289
|
|
|
12182
12290
|
toXDR(format?: 'raw'): Buffer;
|
|
12183
12291
|
|
|
@@ -12223,14 +12331,6 @@ export namespace xdr {
|
|
|
12223
12331
|
|
|
12224
12332
|
transaction(value?: TransactionEnvelope): TransactionEnvelope;
|
|
12225
12333
|
|
|
12226
|
-
signedSurveyRequestMessage(
|
|
12227
|
-
value?: SignedSurveyRequestMessage,
|
|
12228
|
-
): SignedSurveyRequestMessage;
|
|
12229
|
-
|
|
12230
|
-
signedSurveyResponseMessage(
|
|
12231
|
-
value?: SignedSurveyResponseMessage,
|
|
12232
|
-
): SignedSurveyResponseMessage;
|
|
12233
|
-
|
|
12234
12334
|
signedTimeSlicedSurveyRequestMessage(
|
|
12235
12335
|
value?: SignedTimeSlicedSurveyRequestMessage,
|
|
12236
12336
|
): SignedTimeSlicedSurveyRequestMessage;
|
|
@@ -12271,8 +12371,6 @@ export namespace xdr {
|
|
|
12271
12371
|
|
|
12272
12372
|
static dontHave(value: DontHave): StellarMessage;
|
|
12273
12373
|
|
|
12274
|
-
static getPeers(): StellarMessage;
|
|
12275
|
-
|
|
12276
12374
|
static peers(value: PeerAddress[]): StellarMessage;
|
|
12277
12375
|
|
|
12278
12376
|
static getTxSet(value: Buffer): StellarMessage;
|
|
@@ -12283,10 +12381,6 @@ export namespace xdr {
|
|
|
12283
12381
|
|
|
12284
12382
|
static transaction(value: TransactionEnvelope): StellarMessage;
|
|
12285
12383
|
|
|
12286
|
-
static surveyRequest(value: SignedSurveyRequestMessage): StellarMessage;
|
|
12287
|
-
|
|
12288
|
-
static surveyResponse(value: SignedSurveyResponseMessage): StellarMessage;
|
|
12289
|
-
|
|
12290
12384
|
static timeSlicedSurveyRequest(
|
|
12291
12385
|
value: SignedTimeSlicedSurveyRequestMessage,
|
|
12292
12386
|
): StellarMessage;
|
|
@@ -12329,8 +12423,6 @@ export namespace xdr {
|
|
|
12329
12423
|
| TransactionSet
|
|
12330
12424
|
| GeneralizedTransactionSet
|
|
12331
12425
|
| TransactionEnvelope
|
|
12332
|
-
| SignedSurveyRequestMessage
|
|
12333
|
-
| SignedSurveyResponseMessage
|
|
12334
12426
|
| SignedTimeSlicedSurveyRequestMessage
|
|
12335
12427
|
| SignedTimeSlicedSurveyResponseMessage
|
|
12336
12428
|
| SignedTimeSlicedSurveyStartCollectingMessage
|
|
@@ -12342,8 +12434,7 @@ export namespace xdr {
|
|
|
12342
12434
|
| SendMore
|
|
12343
12435
|
| SendMoreExtended
|
|
12344
12436
|
| FloodAdvert
|
|
12345
|
-
| FloodDemand
|
|
12346
|
-
| void;
|
|
12437
|
+
| FloodDemand;
|
|
12347
12438
|
|
|
12348
12439
|
toXDR(format?: 'raw'): Buffer;
|
|
12349
12440
|
|
|
@@ -13038,34 +13129,35 @@ export namespace xdr {
|
|
|
13038
13129
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
13039
13130
|
}
|
|
13040
13131
|
|
|
13041
|
-
class
|
|
13042
|
-
switch():
|
|
13043
|
-
|
|
13044
|
-
nonexistenceProof(value?: NonexistenceProofBody): NonexistenceProofBody;
|
|
13132
|
+
class SorobanTransactionDataExt {
|
|
13133
|
+
switch(): number;
|
|
13045
13134
|
|
|
13046
|
-
|
|
13135
|
+
resourceExt(value?: SorobanResourcesExtV0): SorobanResourcesExtV0;
|
|
13047
13136
|
|
|
13048
|
-
static
|
|
13137
|
+
static 0(): SorobanTransactionDataExt;
|
|
13049
13138
|
|
|
13050
|
-
static
|
|
13139
|
+
static 1(value: SorobanResourcesExtV0): SorobanTransactionDataExt;
|
|
13051
13140
|
|
|
13052
|
-
value():
|
|
13141
|
+
value(): SorobanResourcesExtV0 | void;
|
|
13053
13142
|
|
|
13054
13143
|
toXDR(format?: 'raw'): Buffer;
|
|
13055
13144
|
|
|
13056
13145
|
toXDR(format: 'hex' | 'base64'): string;
|
|
13057
13146
|
|
|
13058
|
-
static read(io: Buffer):
|
|
13147
|
+
static read(io: Buffer): SorobanTransactionDataExt;
|
|
13059
13148
|
|
|
13060
|
-
static write(value:
|
|
13149
|
+
static write(value: SorobanTransactionDataExt, io: Buffer): void;
|
|
13061
13150
|
|
|
13062
|
-
static isValid(value:
|
|
13151
|
+
static isValid(value: SorobanTransactionDataExt): boolean;
|
|
13063
13152
|
|
|
13064
|
-
static toXDR(value:
|
|
13153
|
+
static toXDR(value: SorobanTransactionDataExt): Buffer;
|
|
13065
13154
|
|
|
13066
|
-
static fromXDR(input: Buffer, format?: 'raw'):
|
|
13155
|
+
static fromXDR(input: Buffer, format?: 'raw'): SorobanTransactionDataExt;
|
|
13067
13156
|
|
|
13068
|
-
static fromXDR(
|
|
13157
|
+
static fromXDR(
|
|
13158
|
+
input: string,
|
|
13159
|
+
format: 'hex' | 'base64',
|
|
13160
|
+
): SorobanTransactionDataExt;
|
|
13069
13161
|
|
|
13070
13162
|
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
13071
13163
|
|
|
@@ -15069,6 +15161,36 @@ export namespace xdr {
|
|
|
15069
15161
|
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
15070
15162
|
}
|
|
15071
15163
|
|
|
15164
|
+
class ClaimableBalanceId {
|
|
15165
|
+
switch(): ClaimableBalanceIdType;
|
|
15166
|
+
|
|
15167
|
+
v0(value?: Buffer): Buffer;
|
|
15168
|
+
|
|
15169
|
+
static claimableBalanceIdTypeV0(value: Buffer): ClaimableBalanceId;
|
|
15170
|
+
|
|
15171
|
+
value(): Buffer;
|
|
15172
|
+
|
|
15173
|
+
toXDR(format?: 'raw'): Buffer;
|
|
15174
|
+
|
|
15175
|
+
toXDR(format: 'hex' | 'base64'): string;
|
|
15176
|
+
|
|
15177
|
+
static read(io: Buffer): ClaimableBalanceId;
|
|
15178
|
+
|
|
15179
|
+
static write(value: ClaimableBalanceId, io: Buffer): void;
|
|
15180
|
+
|
|
15181
|
+
static isValid(value: ClaimableBalanceId): boolean;
|
|
15182
|
+
|
|
15183
|
+
static toXDR(value: ClaimableBalanceId): Buffer;
|
|
15184
|
+
|
|
15185
|
+
static fromXDR(input: Buffer, format?: 'raw'): ClaimableBalanceId;
|
|
15186
|
+
|
|
15187
|
+
static fromXDR(input: string, format: 'hex' | 'base64'): ClaimableBalanceId;
|
|
15188
|
+
|
|
15189
|
+
static validateXDR(input: Buffer, format?: 'raw'): boolean;
|
|
15190
|
+
|
|
15191
|
+
static validateXDR(input: string, format: 'hex' | 'base64'): boolean;
|
|
15192
|
+
}
|
|
15193
|
+
|
|
15072
15194
|
class ScError {
|
|
15073
15195
|
switch(): ScErrorType;
|
|
15074
15196
|
|
|
@@ -15156,13 +15278,30 @@ export namespace xdr {
|
|
|
15156
15278
|
|
|
15157
15279
|
accountId(value?: AccountId): AccountId;
|
|
15158
15280
|
|
|
15159
|
-
contractId(value?:
|
|
15281
|
+
contractId(value?: ContractId): ContractId;
|
|
15282
|
+
|
|
15283
|
+
muxedAccount(value?: MuxedEd25519Account): MuxedEd25519Account;
|
|
15284
|
+
|
|
15285
|
+
claimableBalanceId(value?: ClaimableBalanceId): ClaimableBalanceId;
|
|
15286
|
+
|
|
15287
|
+
liquidityPoolId(value?: PoolId): PoolId;
|
|
15160
15288
|
|
|
15161
15289
|
static scAddressTypeAccount(value: AccountId): ScAddress;
|
|
15162
15290
|
|
|
15163
|
-
static scAddressTypeContract(value:
|
|
15291
|
+
static scAddressTypeContract(value: ContractId): ScAddress;
|
|
15292
|
+
|
|
15293
|
+
static scAddressTypeMuxedAccount(value: MuxedEd25519Account): ScAddress;
|
|
15294
|
+
|
|
15295
|
+
static scAddressTypeClaimableBalance(value: ClaimableBalanceId): ScAddress;
|
|
15164
15296
|
|
|
15165
|
-
value
|
|
15297
|
+
static scAddressTypeLiquidityPool(value: PoolId): ScAddress;
|
|
15298
|
+
|
|
15299
|
+
value():
|
|
15300
|
+
| AccountId
|
|
15301
|
+
| ContractId
|
|
15302
|
+
| MuxedEd25519Account
|
|
15303
|
+
| ClaimableBalanceId
|
|
15304
|
+
| PoolId;
|
|
15166
15305
|
|
|
15167
15306
|
toXDR(format?: 'raw'): Buffer;
|
|
15168
15307
|
|
|
@@ -15224,10 +15363,10 @@ export namespace xdr {
|
|
|
15224
15363
|
|
|
15225
15364
|
address(value?: ScAddress): ScAddress;
|
|
15226
15365
|
|
|
15227
|
-
nonceKey(value?: ScNonceKey): ScNonceKey;
|
|
15228
|
-
|
|
15229
15366
|
instance(value?: ScContractInstance): ScContractInstance;
|
|
15230
15367
|
|
|
15368
|
+
nonceKey(value?: ScNonceKey): ScNonceKey;
|
|
15369
|
+
|
|
15231
15370
|
static scvBool(value: boolean): ScVal;
|
|
15232
15371
|
|
|
15233
15372
|
static scvVoid(): ScVal;
|
|
@@ -15266,12 +15405,12 @@ export namespace xdr {
|
|
|
15266
15405
|
|
|
15267
15406
|
static scvAddress(value: ScAddress): ScVal;
|
|
15268
15407
|
|
|
15408
|
+
static scvContractInstance(value: ScContractInstance): ScVal;
|
|
15409
|
+
|
|
15269
15410
|
static scvLedgerKeyContractInstance(): ScVal;
|
|
15270
15411
|
|
|
15271
15412
|
static scvLedgerKeyNonce(value: ScNonceKey): ScVal;
|
|
15272
15413
|
|
|
15273
|
-
static scvContractInstance(value: ScContractInstance): ScVal;
|
|
15274
|
-
|
|
15275
15414
|
value():
|
|
15276
15415
|
| boolean
|
|
15277
15416
|
| ScError
|
|
@@ -15295,8 +15434,8 @@ export namespace xdr {
|
|
|
15295
15434
|
| null
|
|
15296
15435
|
| ScMapEntry[]
|
|
15297
15436
|
| ScAddress
|
|
15298
|
-
| ScNonceKey
|
|
15299
15437
|
| ScContractInstance
|
|
15438
|
+
| ScNonceKey
|
|
15300
15439
|
| void;
|
|
15301
15440
|
|
|
15302
15441
|
toXDR(format?: 'raw'): Buffer;
|
|
@@ -15437,6 +15576,8 @@ export namespace xdr {
|
|
|
15437
15576
|
|
|
15438
15577
|
static scSpecTypeAddress(): ScSpecTypeDef;
|
|
15439
15578
|
|
|
15579
|
+
static scSpecTypeMuxedAddress(): ScSpecTypeDef;
|
|
15580
|
+
|
|
15440
15581
|
static scSpecTypeOption(value: ScSpecTypeOption): ScSpecTypeDef;
|
|
15441
15582
|
|
|
15442
15583
|
static scSpecTypeResult(value: ScSpecTypeResult): ScSpecTypeDef;
|
|
@@ -15536,6 +15677,8 @@ export namespace xdr {
|
|
|
15536
15677
|
|
|
15537
15678
|
udtErrorEnumV0(value?: ScSpecUdtErrorEnumV0): ScSpecUdtErrorEnumV0;
|
|
15538
15679
|
|
|
15680
|
+
eventV0(value?: ScSpecEventV0): ScSpecEventV0;
|
|
15681
|
+
|
|
15539
15682
|
static scSpecEntryFunctionV0(value: ScSpecFunctionV0): ScSpecEntry;
|
|
15540
15683
|
|
|
15541
15684
|
static scSpecEntryUdtStructV0(value: ScSpecUdtStructV0): ScSpecEntry;
|
|
@@ -15546,12 +15689,15 @@ export namespace xdr {
|
|
|
15546
15689
|
|
|
15547
15690
|
static scSpecEntryUdtErrorEnumV0(value: ScSpecUdtErrorEnumV0): ScSpecEntry;
|
|
15548
15691
|
|
|
15692
|
+
static scSpecEntryEventV0(value: ScSpecEventV0): ScSpecEntry;
|
|
15693
|
+
|
|
15549
15694
|
value():
|
|
15550
15695
|
| ScSpecFunctionV0
|
|
15551
15696
|
| ScSpecUdtStructV0
|
|
15552
15697
|
| ScSpecUdtUnionV0
|
|
15553
15698
|
| ScSpecUdtEnumV0
|
|
15554
|
-
| ScSpecUdtErrorEnumV0
|
|
15699
|
+
| ScSpecUdtErrorEnumV0
|
|
15700
|
+
| ScSpecEventV0;
|
|
15555
15701
|
|
|
15556
15702
|
toXDR(format?: 'raw'): Buffer;
|
|
15557
15703
|
|
|
@@ -15617,10 +15763,20 @@ export namespace xdr {
|
|
|
15617
15763
|
value?: ConfigSettingContractExecutionLanesV0,
|
|
15618
15764
|
): ConfigSettingContractExecutionLanesV0;
|
|
15619
15765
|
|
|
15620
|
-
|
|
15766
|
+
liveSorobanStateSizeWindow(value?: Uint64[]): Uint64[];
|
|
15621
15767
|
|
|
15622
15768
|
evictionIterator(value?: EvictionIterator): EvictionIterator;
|
|
15623
15769
|
|
|
15770
|
+
contractParallelCompute(
|
|
15771
|
+
value?: ConfigSettingContractParallelComputeV0,
|
|
15772
|
+
): ConfigSettingContractParallelComputeV0;
|
|
15773
|
+
|
|
15774
|
+
contractLedgerCostExt(
|
|
15775
|
+
value?: ConfigSettingContractLedgerCostExtV0,
|
|
15776
|
+
): ConfigSettingContractLedgerCostExtV0;
|
|
15777
|
+
|
|
15778
|
+
contractScpTiming(value?: ConfigSettingScpTiming): ConfigSettingScpTiming;
|
|
15779
|
+
|
|
15624
15780
|
static configSettingContractMaxSizeBytes(value: number): ConfigSettingEntry;
|
|
15625
15781
|
|
|
15626
15782
|
static configSettingContractComputeV0(
|
|
@@ -15667,7 +15823,7 @@ export namespace xdr {
|
|
|
15667
15823
|
value: ConfigSettingContractExecutionLanesV0,
|
|
15668
15824
|
): ConfigSettingEntry;
|
|
15669
15825
|
|
|
15670
|
-
static
|
|
15826
|
+
static configSettingLiveSorobanStateSizeWindow(
|
|
15671
15827
|
value: Uint64[],
|
|
15672
15828
|
): ConfigSettingEntry;
|
|
15673
15829
|
|
|
@@ -15675,6 +15831,18 @@ export namespace xdr {
|
|
|
15675
15831
|
value: EvictionIterator,
|
|
15676
15832
|
): ConfigSettingEntry;
|
|
15677
15833
|
|
|
15834
|
+
static configSettingContractParallelComputeV0(
|
|
15835
|
+
value: ConfigSettingContractParallelComputeV0,
|
|
15836
|
+
): ConfigSettingEntry;
|
|
15837
|
+
|
|
15838
|
+
static configSettingContractLedgerCostExtV0(
|
|
15839
|
+
value: ConfigSettingContractLedgerCostExtV0,
|
|
15840
|
+
): ConfigSettingEntry;
|
|
15841
|
+
|
|
15842
|
+
static configSettingScpTiming(
|
|
15843
|
+
value: ConfigSettingScpTiming,
|
|
15844
|
+
): ConfigSettingEntry;
|
|
15845
|
+
|
|
15678
15846
|
value():
|
|
15679
15847
|
| number
|
|
15680
15848
|
| ConfigSettingContractComputeV0
|
|
@@ -15689,7 +15857,10 @@ export namespace xdr {
|
|
|
15689
15857
|
| StateArchivalSettings
|
|
15690
15858
|
| ConfigSettingContractExecutionLanesV0
|
|
15691
15859
|
| Uint64[]
|
|
15692
|
-
| EvictionIterator
|
|
15860
|
+
| EvictionIterator
|
|
15861
|
+
| ConfigSettingContractParallelComputeV0
|
|
15862
|
+
| ConfigSettingContractLedgerCostExtV0
|
|
15863
|
+
| ConfigSettingScpTiming;
|
|
15693
15864
|
|
|
15694
15865
|
toXDR(format?: 'raw'): Buffer;
|
|
15695
15866
|
|