dash-platform-sdk 1.4.0 → 1.5.0-dev.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/README.md +15 -15
  2. package/bundle.min.js +17 -17
  3. package/package.json +2 -2
  4. package/proto/generated/platform.client.d.ts +70 -0
  5. package/proto/generated/platform.client.js +61 -12
  6. package/proto/generated/platform.d.ts +1025 -0
  7. package/proto/generated/platform.js +2074 -1
  8. package/src/DashPlatformSDK.d.ts +2 -0
  9. package/src/DashPlatformSDK.js +3 -0
  10. package/src/constants.d.ts +1 -0
  11. package/src/constants.js +1 -0
  12. package/src/keyPair/index.d.ts +25 -0
  13. package/src/keyPair/index.js +33 -0
  14. package/src/node/{epochs.d.ts → epochInfos.d.ts} +1 -1
  15. package/src/node/{epochs.js → epochInfos.js} +1 -1
  16. package/src/node/finalizedEpochInfos.d.ts +21 -0
  17. package/src/node/finalizedEpochInfos.js +54 -0
  18. package/src/node/index.d.ts +9 -1
  19. package/src/node/index.js +11 -1
  20. package/src/shielded/createStateTransition.d.ts +3 -0
  21. package/src/shielded/createStateTransition.js +55 -0
  22. package/src/shielded/getMostRecentShieldedAnchor.d.ts +2 -0
  23. package/src/shielded/getMostRecentShieldedAnchor.js +36 -0
  24. package/src/shielded/getShieldedAnchors.d.ts +2 -0
  25. package/src/shielded/getShieldedAnchors.js +36 -0
  26. package/src/shielded/getShieldedEncryptedNotes.d.ts +3 -0
  27. package/src/shielded/getShieldedEncryptedNotes.js +43 -0
  28. package/src/shielded/getShieldedNotesCount.d.ts +2 -0
  29. package/src/shielded/getShieldedNotesCount.js +36 -0
  30. package/src/shielded/getShieldedNullifiers.d.ts +3 -0
  31. package/src/shielded/getShieldedNullifiers.js +40 -0
  32. package/src/shielded/getShieldedPoolState.d.ts +2 -0
  33. package/src/shielded/getShieldedPoolState.js +36 -0
  34. package/src/shielded/index.d.ts +130 -0
  35. package/src/shielded/index.js +186 -0
  36. package/test/unit/KeyPair.spec.js +32 -0
  37. package/test/unit/Node.spec.js +6 -0
  38. package/test/unit/Shielded.spec.d.ts +1 -0
  39. package/test/unit/Shielded.spec.js +236 -0
  40. package/types.d.ts +85 -1
@@ -2966,6 +2966,671 @@ export interface GetAddressesInfosResponse_GetAddressesInfosResponseV0 {
2966
2966
  */
2967
2967
  metadata?: ResponseMetadata;
2968
2968
  }
2969
+ /**
2970
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesRequest
2971
+ */
2972
+ export interface GetShieldedEncryptedNotesRequest {
2973
+ /**
2974
+ * @generated from protobuf oneof: version
2975
+ */
2976
+ version: {
2977
+ oneofKind: "v0";
2978
+ /**
2979
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedEncryptedNotesRequest.GetShieldedEncryptedNotesRequestV0 v0 = 1
2980
+ */
2981
+ v0: GetShieldedEncryptedNotesRequest_GetShieldedEncryptedNotesRequestV0;
2982
+ } | {
2983
+ oneofKind: undefined;
2984
+ };
2985
+ }
2986
+ /**
2987
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesRequest.GetShieldedEncryptedNotesRequestV0
2988
+ */
2989
+ export interface GetShieldedEncryptedNotesRequest_GetShieldedEncryptedNotesRequestV0 {
2990
+ /**
2991
+ * @generated from protobuf field: uint64 start_index = 1
2992
+ */
2993
+ startIndex: string;
2994
+ /**
2995
+ * @generated from protobuf field: uint32 count = 2
2996
+ */
2997
+ count: number;
2998
+ /**
2999
+ * @generated from protobuf field: bool prove = 3
3000
+ */
3001
+ prove: boolean;
3002
+ }
3003
+ /**
3004
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesResponse
3005
+ */
3006
+ export interface GetShieldedEncryptedNotesResponse {
3007
+ /**
3008
+ * @generated from protobuf oneof: version
3009
+ */
3010
+ version: {
3011
+ oneofKind: "v0";
3012
+ /**
3013
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedEncryptedNotesResponse.GetShieldedEncryptedNotesResponseV0 v0 = 1
3014
+ */
3015
+ v0: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0;
3016
+ } | {
3017
+ oneofKind: undefined;
3018
+ };
3019
+ }
3020
+ /**
3021
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesResponse.GetShieldedEncryptedNotesResponseV0
3022
+ */
3023
+ export interface GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0 {
3024
+ /**
3025
+ * @generated from protobuf oneof: result
3026
+ */
3027
+ result: {
3028
+ oneofKind: "encryptedNotes";
3029
+ /**
3030
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedEncryptedNotesResponse.GetShieldedEncryptedNotesResponseV0.EncryptedNotes encrypted_notes = 1
3031
+ */
3032
+ encryptedNotes: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNotes;
3033
+ } | {
3034
+ oneofKind: "proof";
3035
+ /**
3036
+ * @generated from protobuf field: org.dash.platform.dapi.v0.Proof proof = 2
3037
+ */
3038
+ proof: Proof;
3039
+ } | {
3040
+ oneofKind: undefined;
3041
+ };
3042
+ /**
3043
+ * @generated from protobuf field: org.dash.platform.dapi.v0.ResponseMetadata metadata = 3
3044
+ */
3045
+ metadata?: ResponseMetadata;
3046
+ }
3047
+ /**
3048
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesResponse.GetShieldedEncryptedNotesResponseV0.EncryptedNote
3049
+ */
3050
+ export interface GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNote {
3051
+ /**
3052
+ * @generated from protobuf field: bytes nullifier = 1
3053
+ */
3054
+ nullifier: Uint8Array;
3055
+ /**
3056
+ * @generated from protobuf field: bytes cmx = 2
3057
+ */
3058
+ cmx: Uint8Array;
3059
+ /**
3060
+ * @generated from protobuf field: bytes encrypted_note = 3
3061
+ */
3062
+ encryptedNote: Uint8Array;
3063
+ /**
3064
+ * @generated from protobuf field: bytes cv_net = 4
3065
+ */
3066
+ cvNet: Uint8Array;
3067
+ }
3068
+ /**
3069
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesResponse.GetShieldedEncryptedNotesResponseV0.EncryptedNotes
3070
+ */
3071
+ export interface GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNotes {
3072
+ /**
3073
+ * @generated from protobuf field: repeated org.dash.platform.dapi.v0.GetShieldedEncryptedNotesResponse.GetShieldedEncryptedNotesResponseV0.EncryptedNote entries = 1
3074
+ */
3075
+ entries: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNote[];
3076
+ }
3077
+ /**
3078
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedAnchorsRequest
3079
+ */
3080
+ export interface GetShieldedAnchorsRequest {
3081
+ /**
3082
+ * @generated from protobuf oneof: version
3083
+ */
3084
+ version: {
3085
+ oneofKind: "v0";
3086
+ /**
3087
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedAnchorsRequest.GetShieldedAnchorsRequestV0 v0 = 1
3088
+ */
3089
+ v0: GetShieldedAnchorsRequest_GetShieldedAnchorsRequestV0;
3090
+ } | {
3091
+ oneofKind: undefined;
3092
+ };
3093
+ }
3094
+ /**
3095
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedAnchorsRequest.GetShieldedAnchorsRequestV0
3096
+ */
3097
+ export interface GetShieldedAnchorsRequest_GetShieldedAnchorsRequestV0 {
3098
+ /**
3099
+ * @generated from protobuf field: bool prove = 1
3100
+ */
3101
+ prove: boolean;
3102
+ }
3103
+ /**
3104
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedAnchorsResponse
3105
+ */
3106
+ export interface GetShieldedAnchorsResponse {
3107
+ /**
3108
+ * @generated from protobuf oneof: version
3109
+ */
3110
+ version: {
3111
+ oneofKind: "v0";
3112
+ /**
3113
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedAnchorsResponse.GetShieldedAnchorsResponseV0 v0 = 1
3114
+ */
3115
+ v0: GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0;
3116
+ } | {
3117
+ oneofKind: undefined;
3118
+ };
3119
+ }
3120
+ /**
3121
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedAnchorsResponse.GetShieldedAnchorsResponseV0
3122
+ */
3123
+ export interface GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0 {
3124
+ /**
3125
+ * @generated from protobuf oneof: result
3126
+ */
3127
+ result: {
3128
+ oneofKind: "anchors";
3129
+ /**
3130
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedAnchorsResponse.GetShieldedAnchorsResponseV0.Anchors anchors = 1
3131
+ */
3132
+ anchors: GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0_Anchors;
3133
+ } | {
3134
+ oneofKind: "proof";
3135
+ /**
3136
+ * @generated from protobuf field: org.dash.platform.dapi.v0.Proof proof = 2
3137
+ */
3138
+ proof: Proof;
3139
+ } | {
3140
+ oneofKind: undefined;
3141
+ };
3142
+ /**
3143
+ * @generated from protobuf field: org.dash.platform.dapi.v0.ResponseMetadata metadata = 3
3144
+ */
3145
+ metadata?: ResponseMetadata;
3146
+ }
3147
+ /**
3148
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedAnchorsResponse.GetShieldedAnchorsResponseV0.Anchors
3149
+ */
3150
+ export interface GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0_Anchors {
3151
+ /**
3152
+ * @generated from protobuf field: repeated bytes anchors = 1
3153
+ */
3154
+ anchors: Uint8Array[];
3155
+ }
3156
+ /**
3157
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetMostRecentShieldedAnchorRequest
3158
+ */
3159
+ export interface GetMostRecentShieldedAnchorRequest {
3160
+ /**
3161
+ * @generated from protobuf oneof: version
3162
+ */
3163
+ version: {
3164
+ oneofKind: "v0";
3165
+ /**
3166
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetMostRecentShieldedAnchorRequest.GetMostRecentShieldedAnchorRequestV0 v0 = 1
3167
+ */
3168
+ v0: GetMostRecentShieldedAnchorRequest_GetMostRecentShieldedAnchorRequestV0;
3169
+ } | {
3170
+ oneofKind: undefined;
3171
+ };
3172
+ }
3173
+ /**
3174
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetMostRecentShieldedAnchorRequest.GetMostRecentShieldedAnchorRequestV0
3175
+ */
3176
+ export interface GetMostRecentShieldedAnchorRequest_GetMostRecentShieldedAnchorRequestV0 {
3177
+ /**
3178
+ * @generated from protobuf field: bool prove = 1
3179
+ */
3180
+ prove: boolean;
3181
+ }
3182
+ /**
3183
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetMostRecentShieldedAnchorResponse
3184
+ */
3185
+ export interface GetMostRecentShieldedAnchorResponse {
3186
+ /**
3187
+ * @generated from protobuf oneof: version
3188
+ */
3189
+ version: {
3190
+ oneofKind: "v0";
3191
+ /**
3192
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetMostRecentShieldedAnchorResponse.GetMostRecentShieldedAnchorResponseV0 v0 = 1
3193
+ */
3194
+ v0: GetMostRecentShieldedAnchorResponse_GetMostRecentShieldedAnchorResponseV0;
3195
+ } | {
3196
+ oneofKind: undefined;
3197
+ };
3198
+ }
3199
+ /**
3200
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetMostRecentShieldedAnchorResponse.GetMostRecentShieldedAnchorResponseV0
3201
+ */
3202
+ export interface GetMostRecentShieldedAnchorResponse_GetMostRecentShieldedAnchorResponseV0 {
3203
+ /**
3204
+ * @generated from protobuf oneof: result
3205
+ */
3206
+ result: {
3207
+ oneofKind: "anchor";
3208
+ /**
3209
+ * @generated from protobuf field: bytes anchor = 1
3210
+ */
3211
+ anchor: Uint8Array;
3212
+ } | {
3213
+ oneofKind: "proof";
3214
+ /**
3215
+ * @generated from protobuf field: org.dash.platform.dapi.v0.Proof proof = 2
3216
+ */
3217
+ proof: Proof;
3218
+ } | {
3219
+ oneofKind: undefined;
3220
+ };
3221
+ /**
3222
+ * @generated from protobuf field: org.dash.platform.dapi.v0.ResponseMetadata metadata = 3
3223
+ */
3224
+ metadata?: ResponseMetadata;
3225
+ }
3226
+ /**
3227
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedPoolStateRequest
3228
+ */
3229
+ export interface GetShieldedPoolStateRequest {
3230
+ /**
3231
+ * @generated from protobuf oneof: version
3232
+ */
3233
+ version: {
3234
+ oneofKind: "v0";
3235
+ /**
3236
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedPoolStateRequest.GetShieldedPoolStateRequestV0 v0 = 1
3237
+ */
3238
+ v0: GetShieldedPoolStateRequest_GetShieldedPoolStateRequestV0;
3239
+ } | {
3240
+ oneofKind: undefined;
3241
+ };
3242
+ }
3243
+ /**
3244
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedPoolStateRequest.GetShieldedPoolStateRequestV0
3245
+ */
3246
+ export interface GetShieldedPoolStateRequest_GetShieldedPoolStateRequestV0 {
3247
+ /**
3248
+ * @generated from protobuf field: bool prove = 1
3249
+ */
3250
+ prove: boolean;
3251
+ }
3252
+ /**
3253
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedPoolStateResponse
3254
+ */
3255
+ export interface GetShieldedPoolStateResponse {
3256
+ /**
3257
+ * @generated from protobuf oneof: version
3258
+ */
3259
+ version: {
3260
+ oneofKind: "v0";
3261
+ /**
3262
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedPoolStateResponse.GetShieldedPoolStateResponseV0 v0 = 1
3263
+ */
3264
+ v0: GetShieldedPoolStateResponse_GetShieldedPoolStateResponseV0;
3265
+ } | {
3266
+ oneofKind: undefined;
3267
+ };
3268
+ }
3269
+ /**
3270
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedPoolStateResponse.GetShieldedPoolStateResponseV0
3271
+ */
3272
+ export interface GetShieldedPoolStateResponse_GetShieldedPoolStateResponseV0 {
3273
+ /**
3274
+ * @generated from protobuf oneof: result
3275
+ */
3276
+ result: {
3277
+ oneofKind: "totalBalance";
3278
+ /**
3279
+ * @generated from protobuf field: uint64 total_balance = 1 [jstype = JS_STRING]
3280
+ */
3281
+ totalBalance: string;
3282
+ } | {
3283
+ oneofKind: "proof";
3284
+ /**
3285
+ * @generated from protobuf field: org.dash.platform.dapi.v0.Proof proof = 2
3286
+ */
3287
+ proof: Proof;
3288
+ } | {
3289
+ oneofKind: undefined;
3290
+ };
3291
+ /**
3292
+ * @generated from protobuf field: org.dash.platform.dapi.v0.ResponseMetadata metadata = 3
3293
+ */
3294
+ metadata?: ResponseMetadata;
3295
+ }
3296
+ /**
3297
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedNotesCountRequest
3298
+ */
3299
+ export interface GetShieldedNotesCountRequest {
3300
+ /**
3301
+ * @generated from protobuf oneof: version
3302
+ */
3303
+ version: {
3304
+ oneofKind: "v0";
3305
+ /**
3306
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedNotesCountRequest.GetShieldedNotesCountRequestV0 v0 = 1
3307
+ */
3308
+ v0: GetShieldedNotesCountRequest_GetShieldedNotesCountRequestV0;
3309
+ } | {
3310
+ oneofKind: undefined;
3311
+ };
3312
+ }
3313
+ /**
3314
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedNotesCountRequest.GetShieldedNotesCountRequestV0
3315
+ */
3316
+ export interface GetShieldedNotesCountRequest_GetShieldedNotesCountRequestV0 {
3317
+ /**
3318
+ * @generated from protobuf field: bool prove = 1
3319
+ */
3320
+ prove: boolean;
3321
+ }
3322
+ /**
3323
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedNotesCountResponse
3324
+ */
3325
+ export interface GetShieldedNotesCountResponse {
3326
+ /**
3327
+ * @generated from protobuf oneof: version
3328
+ */
3329
+ version: {
3330
+ oneofKind: "v0";
3331
+ /**
3332
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedNotesCountResponse.GetShieldedNotesCountResponseV0 v0 = 1
3333
+ */
3334
+ v0: GetShieldedNotesCountResponse_GetShieldedNotesCountResponseV0;
3335
+ } | {
3336
+ oneofKind: undefined;
3337
+ };
3338
+ }
3339
+ /**
3340
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedNotesCountResponse.GetShieldedNotesCountResponseV0
3341
+ */
3342
+ export interface GetShieldedNotesCountResponse_GetShieldedNotesCountResponseV0 {
3343
+ /**
3344
+ * @generated from protobuf oneof: result
3345
+ */
3346
+ result: {
3347
+ oneofKind: "totalNotesCount";
3348
+ /**
3349
+ * @generated from protobuf field: uint64 total_notes_count = 1 [jstype = JS_STRING]
3350
+ */
3351
+ totalNotesCount: string;
3352
+ } | {
3353
+ oneofKind: "proof";
3354
+ /**
3355
+ * @generated from protobuf field: org.dash.platform.dapi.v0.Proof proof = 2
3356
+ */
3357
+ proof: Proof;
3358
+ } | {
3359
+ oneofKind: undefined;
3360
+ };
3361
+ /**
3362
+ * @generated from protobuf field: org.dash.platform.dapi.v0.ResponseMetadata metadata = 3
3363
+ */
3364
+ metadata?: ResponseMetadata;
3365
+ }
3366
+ /**
3367
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersRequest
3368
+ */
3369
+ export interface GetShieldedNullifiersRequest {
3370
+ /**
3371
+ * @generated from protobuf oneof: version
3372
+ */
3373
+ version: {
3374
+ oneofKind: "v0";
3375
+ /**
3376
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedNullifiersRequest.GetShieldedNullifiersRequestV0 v0 = 1
3377
+ */
3378
+ v0: GetShieldedNullifiersRequest_GetShieldedNullifiersRequestV0;
3379
+ } | {
3380
+ oneofKind: undefined;
3381
+ };
3382
+ }
3383
+ /**
3384
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersRequest.GetShieldedNullifiersRequestV0
3385
+ */
3386
+ export interface GetShieldedNullifiersRequest_GetShieldedNullifiersRequestV0 {
3387
+ /**
3388
+ * @generated from protobuf field: repeated bytes nullifiers = 1
3389
+ */
3390
+ nullifiers: Uint8Array[];
3391
+ /**
3392
+ * @generated from protobuf field: bool prove = 2
3393
+ */
3394
+ prove: boolean;
3395
+ }
3396
+ /**
3397
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersResponse
3398
+ */
3399
+ export interface GetShieldedNullifiersResponse {
3400
+ /**
3401
+ * @generated from protobuf oneof: version
3402
+ */
3403
+ version: {
3404
+ oneofKind: "v0";
3405
+ /**
3406
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedNullifiersResponse.GetShieldedNullifiersResponseV0 v0 = 1
3407
+ */
3408
+ v0: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0;
3409
+ } | {
3410
+ oneofKind: undefined;
3411
+ };
3412
+ }
3413
+ /**
3414
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersResponse.GetShieldedNullifiersResponseV0
3415
+ */
3416
+ export interface GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0 {
3417
+ /**
3418
+ * @generated from protobuf oneof: result
3419
+ */
3420
+ result: {
3421
+ oneofKind: "nullifierStatuses";
3422
+ /**
3423
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetShieldedNullifiersResponse.GetShieldedNullifiersResponseV0.NullifierStatuses nullifier_statuses = 1
3424
+ */
3425
+ nullifierStatuses: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatuses;
3426
+ } | {
3427
+ oneofKind: "proof";
3428
+ /**
3429
+ * @generated from protobuf field: org.dash.platform.dapi.v0.Proof proof = 2
3430
+ */
3431
+ proof: Proof;
3432
+ } | {
3433
+ oneofKind: undefined;
3434
+ };
3435
+ /**
3436
+ * @generated from protobuf field: org.dash.platform.dapi.v0.ResponseMetadata metadata = 3
3437
+ */
3438
+ metadata?: ResponseMetadata;
3439
+ }
3440
+ /**
3441
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersResponse.GetShieldedNullifiersResponseV0.NullifierStatus
3442
+ */
3443
+ export interface GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatus {
3444
+ /**
3445
+ * @generated from protobuf field: bytes nullifier = 1
3446
+ */
3447
+ nullifier: Uint8Array;
3448
+ /**
3449
+ * @generated from protobuf field: bool is_spent = 2
3450
+ */
3451
+ isSpent: boolean;
3452
+ }
3453
+ /**
3454
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersResponse.GetShieldedNullifiersResponseV0.NullifierStatuses
3455
+ */
3456
+ export interface GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatuses {
3457
+ /**
3458
+ * @generated from protobuf field: repeated org.dash.platform.dapi.v0.GetShieldedNullifiersResponse.GetShieldedNullifiersResponseV0.NullifierStatus entries = 1
3459
+ */
3460
+ entries: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatus[];
3461
+ }
3462
+ /**
3463
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosRequest
3464
+ */
3465
+ export interface GetFinalizedEpochInfosRequest {
3466
+ /**
3467
+ * @generated from protobuf oneof: version
3468
+ */
3469
+ version: {
3470
+ oneofKind: "v0";
3471
+ /**
3472
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetFinalizedEpochInfosRequest.GetFinalizedEpochInfosRequestV0 v0 = 1
3473
+ */
3474
+ v0: GetFinalizedEpochInfosRequest_GetFinalizedEpochInfosRequestV0;
3475
+ } | {
3476
+ oneofKind: undefined;
3477
+ };
3478
+ }
3479
+ /**
3480
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosRequest.GetFinalizedEpochInfosRequestV0
3481
+ */
3482
+ export interface GetFinalizedEpochInfosRequest_GetFinalizedEpochInfosRequestV0 {
3483
+ /**
3484
+ * @generated from protobuf field: uint32 start_epoch_index = 1
3485
+ */
3486
+ startEpochIndex: number;
3487
+ /**
3488
+ * @generated from protobuf field: bool start_epoch_index_included = 2
3489
+ */
3490
+ startEpochIndexIncluded: boolean;
3491
+ /**
3492
+ * @generated from protobuf field: uint32 end_epoch_index = 3
3493
+ */
3494
+ endEpochIndex: number;
3495
+ /**
3496
+ * @generated from protobuf field: bool end_epoch_index_included = 4
3497
+ */
3498
+ endEpochIndexIncluded: boolean;
3499
+ /**
3500
+ * @generated from protobuf field: bool prove = 5
3501
+ */
3502
+ prove: boolean;
3503
+ }
3504
+ /**
3505
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse
3506
+ */
3507
+ export interface GetFinalizedEpochInfosResponse {
3508
+ /**
3509
+ * @generated from protobuf oneof: version
3510
+ */
3511
+ version: {
3512
+ oneofKind: "v0";
3513
+ /**
3514
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0 v0 = 1
3515
+ */
3516
+ v0: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0;
3517
+ } | {
3518
+ oneofKind: undefined;
3519
+ };
3520
+ }
3521
+ /**
3522
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0
3523
+ */
3524
+ export interface GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0 {
3525
+ /**
3526
+ * @generated from protobuf oneof: result
3527
+ */
3528
+ result: {
3529
+ oneofKind: "epochs";
3530
+ /**
3531
+ * @generated from protobuf field: org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfos epochs = 1
3532
+ */
3533
+ epochs: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfos;
3534
+ } | {
3535
+ oneofKind: "proof";
3536
+ /**
3537
+ * @generated from protobuf field: org.dash.platform.dapi.v0.Proof proof = 2
3538
+ */
3539
+ proof: Proof;
3540
+ } | {
3541
+ oneofKind: undefined;
3542
+ };
3543
+ /**
3544
+ * @generated from protobuf field: org.dash.platform.dapi.v0.ResponseMetadata metadata = 3
3545
+ */
3546
+ metadata?: ResponseMetadata;
3547
+ }
3548
+ /**
3549
+ * FinalizedEpochInfos holds a collection of finalized epoch information
3550
+ * entries
3551
+ *
3552
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfos
3553
+ */
3554
+ export interface GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfos {
3555
+ /**
3556
+ * @generated from protobuf field: repeated org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfo finalized_epoch_infos = 1
3557
+ */
3558
+ finalizedEpochInfos: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfo[];
3559
+ }
3560
+ /**
3561
+ * FinalizedEpochInfo represents finalized information about a single epoch
3562
+ *
3563
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfo
3564
+ */
3565
+ export interface GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfo {
3566
+ /**
3567
+ * @generated from protobuf field: uint32 number = 1
3568
+ */
3569
+ number: number;
3570
+ /**
3571
+ * @generated from protobuf field: uint64 first_block_height = 2 [jstype = JS_STRING]
3572
+ */
3573
+ firstBlockHeight: string;
3574
+ /**
3575
+ * @generated from protobuf field: uint32 first_core_block_height = 3
3576
+ */
3577
+ firstCoreBlockHeight: number;
3578
+ /**
3579
+ * @generated from protobuf field: uint64 first_block_time = 4 [jstype = JS_STRING]
3580
+ */
3581
+ firstBlockTime: string;
3582
+ /**
3583
+ * @generated from protobuf field: double fee_multiplier = 5
3584
+ */
3585
+ feeMultiplier: number;
3586
+ /**
3587
+ * @generated from protobuf field: uint32 protocol_version = 6
3588
+ */
3589
+ protocolVersion: number;
3590
+ /**
3591
+ * @generated from protobuf field: uint64 total_blocks_in_epoch = 7 [jstype = JS_STRING]
3592
+ */
3593
+ totalBlocksInEpoch: string;
3594
+ /**
3595
+ * @generated from protobuf field: uint32 next_epoch_start_core_block_height = 8
3596
+ */
3597
+ nextEpochStartCoreBlockHeight: number;
3598
+ /**
3599
+ * @generated from protobuf field: uint64 total_processing_fees = 9 [jstype = JS_STRING]
3600
+ */
3601
+ totalProcessingFees: string;
3602
+ /**
3603
+ * @generated from protobuf field: uint64 total_distributed_storage_fees = 10 [jstype = JS_STRING]
3604
+ */
3605
+ totalDistributedStorageFees: string;
3606
+ /**
3607
+ * @generated from protobuf field: uint64 total_created_storage_fees = 11 [jstype = JS_STRING]
3608
+ */
3609
+ totalCreatedStorageFees: string;
3610
+ /**
3611
+ * @generated from protobuf field: uint64 core_block_rewards = 12 [jstype = JS_STRING]
3612
+ */
3613
+ coreBlockRewards: string;
3614
+ /**
3615
+ * @generated from protobuf field: repeated org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.BlockProposer block_proposers = 13
3616
+ */
3617
+ blockProposers: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_BlockProposer[];
3618
+ }
3619
+ /**
3620
+ * BlockProposer represents a block proposer and their block count
3621
+ *
3622
+ * @generated from protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.BlockProposer
3623
+ */
3624
+ export interface GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_BlockProposer {
3625
+ /**
3626
+ * @generated from protobuf field: bytes proposer_id = 1
3627
+ */
3628
+ proposerId: Uint8Array;
3629
+ /**
3630
+ * @generated from protobuf field: uint32 block_count = 2
3631
+ */
3632
+ blockCount: number;
3633
+ }
2969
3634
  /**
2970
3635
  * @generated from protobuf enum org.dash.platform.dapi.v0.KeyPurpose
2971
3636
  */
@@ -4544,6 +5209,366 @@ declare class GetAddressesInfosResponse_GetAddressesInfosResponseV0$Type extends
4544
5209
  * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetAddressesInfosResponse.GetAddressesInfosResponseV0
4545
5210
  */
4546
5211
  export declare const GetAddressesInfosResponse_GetAddressesInfosResponseV0: GetAddressesInfosResponse_GetAddressesInfosResponseV0$Type;
5212
+ declare class GetShieldedEncryptedNotesRequest$Type extends MessageType<GetShieldedEncryptedNotesRequest> {
5213
+ constructor();
5214
+ create(value?: PartialMessage<GetShieldedEncryptedNotesRequest>): GetShieldedEncryptedNotesRequest;
5215
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedEncryptedNotesRequest): GetShieldedEncryptedNotesRequest;
5216
+ internalBinaryWrite(message: GetShieldedEncryptedNotesRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5217
+ }
5218
+ /**
5219
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesRequest
5220
+ */
5221
+ export declare const GetShieldedEncryptedNotesRequest: GetShieldedEncryptedNotesRequest$Type;
5222
+ declare class GetShieldedEncryptedNotesRequest_GetShieldedEncryptedNotesRequestV0$Type extends MessageType<GetShieldedEncryptedNotesRequest_GetShieldedEncryptedNotesRequestV0> {
5223
+ constructor();
5224
+ create(value?: PartialMessage<GetShieldedEncryptedNotesRequest_GetShieldedEncryptedNotesRequestV0>): GetShieldedEncryptedNotesRequest_GetShieldedEncryptedNotesRequestV0;
5225
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedEncryptedNotesRequest_GetShieldedEncryptedNotesRequestV0): GetShieldedEncryptedNotesRequest_GetShieldedEncryptedNotesRequestV0;
5226
+ internalBinaryWrite(message: GetShieldedEncryptedNotesRequest_GetShieldedEncryptedNotesRequestV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5227
+ }
5228
+ /**
5229
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesRequest.GetShieldedEncryptedNotesRequestV0
5230
+ */
5231
+ export declare const GetShieldedEncryptedNotesRequest_GetShieldedEncryptedNotesRequestV0: GetShieldedEncryptedNotesRequest_GetShieldedEncryptedNotesRequestV0$Type;
5232
+ declare class GetShieldedEncryptedNotesResponse$Type extends MessageType<GetShieldedEncryptedNotesResponse> {
5233
+ constructor();
5234
+ create(value?: PartialMessage<GetShieldedEncryptedNotesResponse>): GetShieldedEncryptedNotesResponse;
5235
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedEncryptedNotesResponse): GetShieldedEncryptedNotesResponse;
5236
+ internalBinaryWrite(message: GetShieldedEncryptedNotesResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5237
+ }
5238
+ /**
5239
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesResponse
5240
+ */
5241
+ export declare const GetShieldedEncryptedNotesResponse: GetShieldedEncryptedNotesResponse$Type;
5242
+ declare class GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0$Type extends MessageType<GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0> {
5243
+ constructor();
5244
+ create(value?: PartialMessage<GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0>): GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0;
5245
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0): GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0;
5246
+ internalBinaryWrite(message: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5247
+ }
5248
+ /**
5249
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesResponse.GetShieldedEncryptedNotesResponseV0
5250
+ */
5251
+ export declare const GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0$Type;
5252
+ declare class GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNote$Type extends MessageType<GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNote> {
5253
+ constructor();
5254
+ create(value?: PartialMessage<GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNote>): GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNote;
5255
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNote): GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNote;
5256
+ internalBinaryWrite(message: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNote, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5257
+ }
5258
+ /**
5259
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesResponse.GetShieldedEncryptedNotesResponseV0.EncryptedNote
5260
+ */
5261
+ export declare const GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNote: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNote$Type;
5262
+ declare class GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNotes$Type extends MessageType<GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNotes> {
5263
+ constructor();
5264
+ create(value?: PartialMessage<GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNotes>): GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNotes;
5265
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNotes): GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNotes;
5266
+ internalBinaryWrite(message: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNotes, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5267
+ }
5268
+ /**
5269
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedEncryptedNotesResponse.GetShieldedEncryptedNotesResponseV0.EncryptedNotes
5270
+ */
5271
+ export declare const GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNotes: GetShieldedEncryptedNotesResponse_GetShieldedEncryptedNotesResponseV0_EncryptedNotes$Type;
5272
+ declare class GetShieldedAnchorsRequest$Type extends MessageType<GetShieldedAnchorsRequest> {
5273
+ constructor();
5274
+ create(value?: PartialMessage<GetShieldedAnchorsRequest>): GetShieldedAnchorsRequest;
5275
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedAnchorsRequest): GetShieldedAnchorsRequest;
5276
+ internalBinaryWrite(message: GetShieldedAnchorsRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5277
+ }
5278
+ /**
5279
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedAnchorsRequest
5280
+ */
5281
+ export declare const GetShieldedAnchorsRequest: GetShieldedAnchorsRequest$Type;
5282
+ declare class GetShieldedAnchorsRequest_GetShieldedAnchorsRequestV0$Type extends MessageType<GetShieldedAnchorsRequest_GetShieldedAnchorsRequestV0> {
5283
+ constructor();
5284
+ create(value?: PartialMessage<GetShieldedAnchorsRequest_GetShieldedAnchorsRequestV0>): GetShieldedAnchorsRequest_GetShieldedAnchorsRequestV0;
5285
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedAnchorsRequest_GetShieldedAnchorsRequestV0): GetShieldedAnchorsRequest_GetShieldedAnchorsRequestV0;
5286
+ internalBinaryWrite(message: GetShieldedAnchorsRequest_GetShieldedAnchorsRequestV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5287
+ }
5288
+ /**
5289
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedAnchorsRequest.GetShieldedAnchorsRequestV0
5290
+ */
5291
+ export declare const GetShieldedAnchorsRequest_GetShieldedAnchorsRequestV0: GetShieldedAnchorsRequest_GetShieldedAnchorsRequestV0$Type;
5292
+ declare class GetShieldedAnchorsResponse$Type extends MessageType<GetShieldedAnchorsResponse> {
5293
+ constructor();
5294
+ create(value?: PartialMessage<GetShieldedAnchorsResponse>): GetShieldedAnchorsResponse;
5295
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedAnchorsResponse): GetShieldedAnchorsResponse;
5296
+ internalBinaryWrite(message: GetShieldedAnchorsResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5297
+ }
5298
+ /**
5299
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedAnchorsResponse
5300
+ */
5301
+ export declare const GetShieldedAnchorsResponse: GetShieldedAnchorsResponse$Type;
5302
+ declare class GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0$Type extends MessageType<GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0> {
5303
+ constructor();
5304
+ create(value?: PartialMessage<GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0>): GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0;
5305
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0): GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0;
5306
+ internalBinaryWrite(message: GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5307
+ }
5308
+ /**
5309
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedAnchorsResponse.GetShieldedAnchorsResponseV0
5310
+ */
5311
+ export declare const GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0: GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0$Type;
5312
+ declare class GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0_Anchors$Type extends MessageType<GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0_Anchors> {
5313
+ constructor();
5314
+ create(value?: PartialMessage<GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0_Anchors>): GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0_Anchors;
5315
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0_Anchors): GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0_Anchors;
5316
+ internalBinaryWrite(message: GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0_Anchors, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5317
+ }
5318
+ /**
5319
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedAnchorsResponse.GetShieldedAnchorsResponseV0.Anchors
5320
+ */
5321
+ export declare const GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0_Anchors: GetShieldedAnchorsResponse_GetShieldedAnchorsResponseV0_Anchors$Type;
5322
+ declare class GetMostRecentShieldedAnchorRequest$Type extends MessageType<GetMostRecentShieldedAnchorRequest> {
5323
+ constructor();
5324
+ create(value?: PartialMessage<GetMostRecentShieldedAnchorRequest>): GetMostRecentShieldedAnchorRequest;
5325
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetMostRecentShieldedAnchorRequest): GetMostRecentShieldedAnchorRequest;
5326
+ internalBinaryWrite(message: GetMostRecentShieldedAnchorRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5327
+ }
5328
+ /**
5329
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetMostRecentShieldedAnchorRequest
5330
+ */
5331
+ export declare const GetMostRecentShieldedAnchorRequest: GetMostRecentShieldedAnchorRequest$Type;
5332
+ declare class GetMostRecentShieldedAnchorRequest_GetMostRecentShieldedAnchorRequestV0$Type extends MessageType<GetMostRecentShieldedAnchorRequest_GetMostRecentShieldedAnchorRequestV0> {
5333
+ constructor();
5334
+ create(value?: PartialMessage<GetMostRecentShieldedAnchorRequest_GetMostRecentShieldedAnchorRequestV0>): GetMostRecentShieldedAnchorRequest_GetMostRecentShieldedAnchorRequestV0;
5335
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetMostRecentShieldedAnchorRequest_GetMostRecentShieldedAnchorRequestV0): GetMostRecentShieldedAnchorRequest_GetMostRecentShieldedAnchorRequestV0;
5336
+ internalBinaryWrite(message: GetMostRecentShieldedAnchorRequest_GetMostRecentShieldedAnchorRequestV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5337
+ }
5338
+ /**
5339
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetMostRecentShieldedAnchorRequest.GetMostRecentShieldedAnchorRequestV0
5340
+ */
5341
+ export declare const GetMostRecentShieldedAnchorRequest_GetMostRecentShieldedAnchorRequestV0: GetMostRecentShieldedAnchorRequest_GetMostRecentShieldedAnchorRequestV0$Type;
5342
+ declare class GetMostRecentShieldedAnchorResponse$Type extends MessageType<GetMostRecentShieldedAnchorResponse> {
5343
+ constructor();
5344
+ create(value?: PartialMessage<GetMostRecentShieldedAnchorResponse>): GetMostRecentShieldedAnchorResponse;
5345
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetMostRecentShieldedAnchorResponse): GetMostRecentShieldedAnchorResponse;
5346
+ internalBinaryWrite(message: GetMostRecentShieldedAnchorResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5347
+ }
5348
+ /**
5349
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetMostRecentShieldedAnchorResponse
5350
+ */
5351
+ export declare const GetMostRecentShieldedAnchorResponse: GetMostRecentShieldedAnchorResponse$Type;
5352
+ declare class GetMostRecentShieldedAnchorResponse_GetMostRecentShieldedAnchorResponseV0$Type extends MessageType<GetMostRecentShieldedAnchorResponse_GetMostRecentShieldedAnchorResponseV0> {
5353
+ constructor();
5354
+ create(value?: PartialMessage<GetMostRecentShieldedAnchorResponse_GetMostRecentShieldedAnchorResponseV0>): GetMostRecentShieldedAnchorResponse_GetMostRecentShieldedAnchorResponseV0;
5355
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetMostRecentShieldedAnchorResponse_GetMostRecentShieldedAnchorResponseV0): GetMostRecentShieldedAnchorResponse_GetMostRecentShieldedAnchorResponseV0;
5356
+ internalBinaryWrite(message: GetMostRecentShieldedAnchorResponse_GetMostRecentShieldedAnchorResponseV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5357
+ }
5358
+ /**
5359
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetMostRecentShieldedAnchorResponse.GetMostRecentShieldedAnchorResponseV0
5360
+ */
5361
+ export declare const GetMostRecentShieldedAnchorResponse_GetMostRecentShieldedAnchorResponseV0: GetMostRecentShieldedAnchorResponse_GetMostRecentShieldedAnchorResponseV0$Type;
5362
+ declare class GetShieldedPoolStateRequest$Type extends MessageType<GetShieldedPoolStateRequest> {
5363
+ constructor();
5364
+ create(value?: PartialMessage<GetShieldedPoolStateRequest>): GetShieldedPoolStateRequest;
5365
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedPoolStateRequest): GetShieldedPoolStateRequest;
5366
+ internalBinaryWrite(message: GetShieldedPoolStateRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5367
+ }
5368
+ /**
5369
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedPoolStateRequest
5370
+ */
5371
+ export declare const GetShieldedPoolStateRequest: GetShieldedPoolStateRequest$Type;
5372
+ declare class GetShieldedPoolStateRequest_GetShieldedPoolStateRequestV0$Type extends MessageType<GetShieldedPoolStateRequest_GetShieldedPoolStateRequestV0> {
5373
+ constructor();
5374
+ create(value?: PartialMessage<GetShieldedPoolStateRequest_GetShieldedPoolStateRequestV0>): GetShieldedPoolStateRequest_GetShieldedPoolStateRequestV0;
5375
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedPoolStateRequest_GetShieldedPoolStateRequestV0): GetShieldedPoolStateRequest_GetShieldedPoolStateRequestV0;
5376
+ internalBinaryWrite(message: GetShieldedPoolStateRequest_GetShieldedPoolStateRequestV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5377
+ }
5378
+ /**
5379
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedPoolStateRequest.GetShieldedPoolStateRequestV0
5380
+ */
5381
+ export declare const GetShieldedPoolStateRequest_GetShieldedPoolStateRequestV0: GetShieldedPoolStateRequest_GetShieldedPoolStateRequestV0$Type;
5382
+ declare class GetShieldedPoolStateResponse$Type extends MessageType<GetShieldedPoolStateResponse> {
5383
+ constructor();
5384
+ create(value?: PartialMessage<GetShieldedPoolStateResponse>): GetShieldedPoolStateResponse;
5385
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedPoolStateResponse): GetShieldedPoolStateResponse;
5386
+ internalBinaryWrite(message: GetShieldedPoolStateResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5387
+ }
5388
+ /**
5389
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedPoolStateResponse
5390
+ */
5391
+ export declare const GetShieldedPoolStateResponse: GetShieldedPoolStateResponse$Type;
5392
+ declare class GetShieldedPoolStateResponse_GetShieldedPoolStateResponseV0$Type extends MessageType<GetShieldedPoolStateResponse_GetShieldedPoolStateResponseV0> {
5393
+ constructor();
5394
+ create(value?: PartialMessage<GetShieldedPoolStateResponse_GetShieldedPoolStateResponseV0>): GetShieldedPoolStateResponse_GetShieldedPoolStateResponseV0;
5395
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedPoolStateResponse_GetShieldedPoolStateResponseV0): GetShieldedPoolStateResponse_GetShieldedPoolStateResponseV0;
5396
+ internalBinaryWrite(message: GetShieldedPoolStateResponse_GetShieldedPoolStateResponseV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5397
+ }
5398
+ /**
5399
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedPoolStateResponse.GetShieldedPoolStateResponseV0
5400
+ */
5401
+ export declare const GetShieldedPoolStateResponse_GetShieldedPoolStateResponseV0: GetShieldedPoolStateResponse_GetShieldedPoolStateResponseV0$Type;
5402
+ declare class GetShieldedNotesCountRequest$Type extends MessageType<GetShieldedNotesCountRequest> {
5403
+ constructor();
5404
+ create(value?: PartialMessage<GetShieldedNotesCountRequest>): GetShieldedNotesCountRequest;
5405
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedNotesCountRequest): GetShieldedNotesCountRequest;
5406
+ internalBinaryWrite(message: GetShieldedNotesCountRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5407
+ }
5408
+ /**
5409
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedNotesCountRequest
5410
+ */
5411
+ export declare const GetShieldedNotesCountRequest: GetShieldedNotesCountRequest$Type;
5412
+ declare class GetShieldedNotesCountRequest_GetShieldedNotesCountRequestV0$Type extends MessageType<GetShieldedNotesCountRequest_GetShieldedNotesCountRequestV0> {
5413
+ constructor();
5414
+ create(value?: PartialMessage<GetShieldedNotesCountRequest_GetShieldedNotesCountRequestV0>): GetShieldedNotesCountRequest_GetShieldedNotesCountRequestV0;
5415
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedNotesCountRequest_GetShieldedNotesCountRequestV0): GetShieldedNotesCountRequest_GetShieldedNotesCountRequestV0;
5416
+ internalBinaryWrite(message: GetShieldedNotesCountRequest_GetShieldedNotesCountRequestV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5417
+ }
5418
+ /**
5419
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedNotesCountRequest.GetShieldedNotesCountRequestV0
5420
+ */
5421
+ export declare const GetShieldedNotesCountRequest_GetShieldedNotesCountRequestV0: GetShieldedNotesCountRequest_GetShieldedNotesCountRequestV0$Type;
5422
+ declare class GetShieldedNotesCountResponse$Type extends MessageType<GetShieldedNotesCountResponse> {
5423
+ constructor();
5424
+ create(value?: PartialMessage<GetShieldedNotesCountResponse>): GetShieldedNotesCountResponse;
5425
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedNotesCountResponse): GetShieldedNotesCountResponse;
5426
+ internalBinaryWrite(message: GetShieldedNotesCountResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5427
+ }
5428
+ /**
5429
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedNotesCountResponse
5430
+ */
5431
+ export declare const GetShieldedNotesCountResponse: GetShieldedNotesCountResponse$Type;
5432
+ declare class GetShieldedNotesCountResponse_GetShieldedNotesCountResponseV0$Type extends MessageType<GetShieldedNotesCountResponse_GetShieldedNotesCountResponseV0> {
5433
+ constructor();
5434
+ create(value?: PartialMessage<GetShieldedNotesCountResponse_GetShieldedNotesCountResponseV0>): GetShieldedNotesCountResponse_GetShieldedNotesCountResponseV0;
5435
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedNotesCountResponse_GetShieldedNotesCountResponseV0): GetShieldedNotesCountResponse_GetShieldedNotesCountResponseV0;
5436
+ internalBinaryWrite(message: GetShieldedNotesCountResponse_GetShieldedNotesCountResponseV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5437
+ }
5438
+ /**
5439
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedNotesCountResponse.GetShieldedNotesCountResponseV0
5440
+ */
5441
+ export declare const GetShieldedNotesCountResponse_GetShieldedNotesCountResponseV0: GetShieldedNotesCountResponse_GetShieldedNotesCountResponseV0$Type;
5442
+ declare class GetShieldedNullifiersRequest$Type extends MessageType<GetShieldedNullifiersRequest> {
5443
+ constructor();
5444
+ create(value?: PartialMessage<GetShieldedNullifiersRequest>): GetShieldedNullifiersRequest;
5445
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedNullifiersRequest): GetShieldedNullifiersRequest;
5446
+ internalBinaryWrite(message: GetShieldedNullifiersRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5447
+ }
5448
+ /**
5449
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersRequest
5450
+ */
5451
+ export declare const GetShieldedNullifiersRequest: GetShieldedNullifiersRequest$Type;
5452
+ declare class GetShieldedNullifiersRequest_GetShieldedNullifiersRequestV0$Type extends MessageType<GetShieldedNullifiersRequest_GetShieldedNullifiersRequestV0> {
5453
+ constructor();
5454
+ create(value?: PartialMessage<GetShieldedNullifiersRequest_GetShieldedNullifiersRequestV0>): GetShieldedNullifiersRequest_GetShieldedNullifiersRequestV0;
5455
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedNullifiersRequest_GetShieldedNullifiersRequestV0): GetShieldedNullifiersRequest_GetShieldedNullifiersRequestV0;
5456
+ internalBinaryWrite(message: GetShieldedNullifiersRequest_GetShieldedNullifiersRequestV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5457
+ }
5458
+ /**
5459
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersRequest.GetShieldedNullifiersRequestV0
5460
+ */
5461
+ export declare const GetShieldedNullifiersRequest_GetShieldedNullifiersRequestV0: GetShieldedNullifiersRequest_GetShieldedNullifiersRequestV0$Type;
5462
+ declare class GetShieldedNullifiersResponse$Type extends MessageType<GetShieldedNullifiersResponse> {
5463
+ constructor();
5464
+ create(value?: PartialMessage<GetShieldedNullifiersResponse>): GetShieldedNullifiersResponse;
5465
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedNullifiersResponse): GetShieldedNullifiersResponse;
5466
+ internalBinaryWrite(message: GetShieldedNullifiersResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5467
+ }
5468
+ /**
5469
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersResponse
5470
+ */
5471
+ export declare const GetShieldedNullifiersResponse: GetShieldedNullifiersResponse$Type;
5472
+ declare class GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0$Type extends MessageType<GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0> {
5473
+ constructor();
5474
+ create(value?: PartialMessage<GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0>): GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0;
5475
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0): GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0;
5476
+ internalBinaryWrite(message: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5477
+ }
5478
+ /**
5479
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersResponse.GetShieldedNullifiersResponseV0
5480
+ */
5481
+ export declare const GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0$Type;
5482
+ declare class GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatus$Type extends MessageType<GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatus> {
5483
+ constructor();
5484
+ create(value?: PartialMessage<GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatus>): GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatus;
5485
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatus): GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatus;
5486
+ internalBinaryWrite(message: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatus, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5487
+ }
5488
+ /**
5489
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersResponse.GetShieldedNullifiersResponseV0.NullifierStatus
5490
+ */
5491
+ export declare const GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatus: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatus$Type;
5492
+ declare class GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatuses$Type extends MessageType<GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatuses> {
5493
+ constructor();
5494
+ create(value?: PartialMessage<GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatuses>): GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatuses;
5495
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatuses): GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatuses;
5496
+ internalBinaryWrite(message: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatuses, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5497
+ }
5498
+ /**
5499
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetShieldedNullifiersResponse.GetShieldedNullifiersResponseV0.NullifierStatuses
5500
+ */
5501
+ export declare const GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatuses: GetShieldedNullifiersResponse_GetShieldedNullifiersResponseV0_NullifierStatuses$Type;
5502
+ declare class GetFinalizedEpochInfosRequest$Type extends MessageType<GetFinalizedEpochInfosRequest> {
5503
+ constructor();
5504
+ create(value?: PartialMessage<GetFinalizedEpochInfosRequest>): GetFinalizedEpochInfosRequest;
5505
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetFinalizedEpochInfosRequest): GetFinalizedEpochInfosRequest;
5506
+ internalBinaryWrite(message: GetFinalizedEpochInfosRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5507
+ }
5508
+ /**
5509
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosRequest
5510
+ */
5511
+ export declare const GetFinalizedEpochInfosRequest: GetFinalizedEpochInfosRequest$Type;
5512
+ declare class GetFinalizedEpochInfosRequest_GetFinalizedEpochInfosRequestV0$Type extends MessageType<GetFinalizedEpochInfosRequest_GetFinalizedEpochInfosRequestV0> {
5513
+ constructor();
5514
+ create(value?: PartialMessage<GetFinalizedEpochInfosRequest_GetFinalizedEpochInfosRequestV0>): GetFinalizedEpochInfosRequest_GetFinalizedEpochInfosRequestV0;
5515
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetFinalizedEpochInfosRequest_GetFinalizedEpochInfosRequestV0): GetFinalizedEpochInfosRequest_GetFinalizedEpochInfosRequestV0;
5516
+ internalBinaryWrite(message: GetFinalizedEpochInfosRequest_GetFinalizedEpochInfosRequestV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5517
+ }
5518
+ /**
5519
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosRequest.GetFinalizedEpochInfosRequestV0
5520
+ */
5521
+ export declare const GetFinalizedEpochInfosRequest_GetFinalizedEpochInfosRequestV0: GetFinalizedEpochInfosRequest_GetFinalizedEpochInfosRequestV0$Type;
5522
+ declare class GetFinalizedEpochInfosResponse$Type extends MessageType<GetFinalizedEpochInfosResponse> {
5523
+ constructor();
5524
+ create(value?: PartialMessage<GetFinalizedEpochInfosResponse>): GetFinalizedEpochInfosResponse;
5525
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetFinalizedEpochInfosResponse): GetFinalizedEpochInfosResponse;
5526
+ internalBinaryWrite(message: GetFinalizedEpochInfosResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5527
+ }
5528
+ /**
5529
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse
5530
+ */
5531
+ export declare const GetFinalizedEpochInfosResponse: GetFinalizedEpochInfosResponse$Type;
5532
+ declare class GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0$Type extends MessageType<GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0> {
5533
+ constructor();
5534
+ create(value?: PartialMessage<GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0>): GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0;
5535
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0): GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0;
5536
+ internalBinaryWrite(message: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5537
+ }
5538
+ /**
5539
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0
5540
+ */
5541
+ export declare const GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0$Type;
5542
+ declare class GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfos$Type extends MessageType<GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfos> {
5543
+ constructor();
5544
+ create(value?: PartialMessage<GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfos>): GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfos;
5545
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfos): GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfos;
5546
+ internalBinaryWrite(message: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfos, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5547
+ }
5548
+ /**
5549
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfos
5550
+ */
5551
+ export declare const GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfos: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfos$Type;
5552
+ declare class GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfo$Type extends MessageType<GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfo> {
5553
+ constructor();
5554
+ create(value?: PartialMessage<GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfo>): GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfo;
5555
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfo): GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfo;
5556
+ internalBinaryWrite(message: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfo, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5557
+ }
5558
+ /**
5559
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfo
5560
+ */
5561
+ export declare const GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfo: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_FinalizedEpochInfo$Type;
5562
+ declare class GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_BlockProposer$Type extends MessageType<GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_BlockProposer> {
5563
+ constructor();
5564
+ create(value?: PartialMessage<GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_BlockProposer>): GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_BlockProposer;
5565
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_BlockProposer): GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_BlockProposer;
5566
+ internalBinaryWrite(message: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_BlockProposer, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
5567
+ }
5568
+ /**
5569
+ * @generated MessageType for protobuf message org.dash.platform.dapi.v0.GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.BlockProposer
5570
+ */
5571
+ export declare const GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_BlockProposer: GetFinalizedEpochInfosResponse_GetFinalizedEpochInfosResponseV0_BlockProposer$Type;
4547
5572
  /**
4548
5573
  * @generated ServiceType for protobuf service org.dash.platform.dapi.v0.Platform
4549
5574
  */