@@ -74,7 +74,7 @@ export interface ExistenceProof {
74
74
path : InnerOp [ ] ;
75
75
}
76
76
export interface ExistenceProofProtoMsg {
77
- typeUrl : "/ics23.ExistenceProof" ;
77
+ type_url : "/ics23.ExistenceProof" ;
78
78
value : Uint8Array ;
79
79
}
80
80
/**
@@ -147,7 +147,7 @@ export interface NonExistenceProof {
147
147
right : ExistenceProof ;
148
148
}
149
149
export interface NonExistenceProofProtoMsg {
150
- typeUrl : "/ics23.NonExistenceProof" ;
150
+ type_url : "/ics23.NonExistenceProof" ;
151
151
value : Uint8Array ;
152
152
}
153
153
/**
@@ -183,7 +183,7 @@ export interface CommitmentProof {
183
183
compressed ?: CompressedBatchProof ;
184
184
}
185
185
export interface CommitmentProofProtoMsg {
186
- typeUrl : "/ics23.CommitmentProof" ;
186
+ type_url : "/ics23.CommitmentProof" ;
187
187
value : Uint8Array ;
188
188
}
189
189
/** CommitmentProof is either an ExistenceProof or a NonExistenceProof, or a Batch of such messages */
@@ -222,8 +222,8 @@ export interface CommitmentProofSDKType {
222
222
*/
223
223
export interface LeafOp {
224
224
hash : HashOp ;
225
- prehashKey : HashOp ;
226
- prehashValue : HashOp ;
225
+ prehash_key : HashOp ;
226
+ prehash_value : HashOp ;
227
227
length : LengthOp ;
228
228
/**
229
229
* prefix is a fixed bytes that may optionally be included at the beginning to differentiate
@@ -232,7 +232,7 @@ export interface LeafOp {
232
232
prefix : Uint8Array ;
233
233
}
234
234
export interface LeafOpProtoMsg {
235
- typeUrl : "/ics23.LeafOp" ;
235
+ type_url : "/ics23.LeafOp" ;
236
236
value : Uint8Array ;
237
237
}
238
238
/**
@@ -312,7 +312,7 @@ export interface InnerOp {
312
312
suffix : Uint8Array ;
313
313
}
314
314
export interface InnerOpProtoMsg {
315
- typeUrl : "/ics23.InnerOp" ;
315
+ type_url : "/ics23.InnerOp" ;
316
316
value : Uint8Array ;
317
317
}
318
318
/**
@@ -380,15 +380,15 @@ export interface ProofSpec {
380
380
* any field in the ExistenceProof must be the same as in this spec.
381
381
* except Prefix, which is just the first bytes of prefix (spec can be longer)
382
382
*/
383
- leafSpec : LeafOp ;
384
- innerSpec : InnerSpec ;
383
+ leaf_spec : LeafOp ;
384
+ inner_spec : InnerSpec ;
385
385
/** max_depth (if > 0) is the maximum number of InnerOps allowed (mainly for fixed-depth tries) */
386
- maxDepth : number ;
386
+ max_depth : number ;
387
387
/** min_depth (if > 0) is the minimum number of InnerOps allowed (mainly for fixed-depth tries) */
388
- minDepth : number ;
388
+ min_depth : number ;
389
389
}
390
390
export interface ProofSpecProtoMsg {
391
- typeUrl : "/ics23.ProofSpec" ;
391
+ type_url : "/ics23.ProofSpec" ;
392
392
value : Uint8Array ;
393
393
}
394
394
/**
@@ -453,17 +453,17 @@ export interface InnerSpec {
453
453
* iavl tree is [0, 1] (left then right)
454
454
* merk is [0, 2, 1] (left, right, here)
455
455
*/
456
- childOrder : number [ ] ;
457
- childSize : number ;
458
- minPrefixLength : number ;
459
- maxPrefixLength : number ;
456
+ child_order : number [ ] ;
457
+ child_size : number ;
458
+ min_prefix_length : number ;
459
+ max_prefix_length : number ;
460
460
/** empty child is the prehash image that is used when one child is nil (eg. 20 bytes of 0) */
461
- emptyChild : Uint8Array ;
461
+ empty_child : Uint8Array ;
462
462
/** hash is the algorithm that must be used for each InnerOp */
463
463
hash : HashOp ;
464
464
}
465
465
export interface InnerSpecProtoMsg {
466
- typeUrl : "/ics23.InnerSpec" ;
466
+ type_url : "/ics23.InnerSpec" ;
467
467
value : Uint8Array ;
468
468
}
469
469
/**
@@ -518,7 +518,7 @@ export interface BatchProof {
518
518
entries : BatchEntry [ ] ;
519
519
}
520
520
export interface BatchProofProtoMsg {
521
- typeUrl : "/ics23.BatchProof" ;
521
+ type_url : "/ics23.BatchProof" ;
522
522
value : Uint8Array ;
523
523
}
524
524
/** BatchProof is a group of multiple proof types than can be compressed */
@@ -539,7 +539,7 @@ export interface BatchEntry {
539
539
nonexist ?: NonExistenceProof ;
540
540
}
541
541
export interface BatchEntryProtoMsg {
542
- typeUrl : "/ics23.BatchEntry" ;
542
+ type_url : "/ics23.BatchEntry" ;
543
543
value : Uint8Array ;
544
544
}
545
545
/** Use BatchEntry not CommitmentProof, to avoid recursion */
@@ -558,10 +558,10 @@ export interface BatchEntrySDKType {
558
558
}
559
559
export interface CompressedBatchProof {
560
560
entries : CompressedBatchEntry [ ] ;
561
- lookupInners : InnerOp [ ] ;
561
+ lookup_inners : InnerOp [ ] ;
562
562
}
563
563
export interface CompressedBatchProofProtoMsg {
564
- typeUrl : "/ics23.CompressedBatchProof" ;
564
+ type_url : "/ics23.CompressedBatchProof" ;
565
565
value : Uint8Array ;
566
566
}
567
567
export interface CompressedBatchProofAmino {
@@ -582,7 +582,7 @@ export interface CompressedBatchEntry {
582
582
nonexist ?: CompressedNonExistenceProof ;
583
583
}
584
584
export interface CompressedBatchEntryProtoMsg {
585
- typeUrl : "/ics23.CompressedBatchEntry" ;
585
+ type_url : "/ics23.CompressedBatchEntry" ;
586
586
value : Uint8Array ;
587
587
}
588
588
/** Use BatchEntry not CommitmentProof, to avoid recursion */
@@ -607,7 +607,7 @@ export interface CompressedExistenceProof {
607
607
path : number [ ] ;
608
608
}
609
609
export interface CompressedExistenceProofProtoMsg {
610
- typeUrl : "/ics23.CompressedExistenceProof" ;
610
+ type_url : "/ics23.CompressedExistenceProof" ;
611
611
value : Uint8Array ;
612
612
}
613
613
export interface CompressedExistenceProofAmino {
@@ -634,7 +634,7 @@ export interface CompressedNonExistenceProof {
634
634
right : CompressedExistenceProof ;
635
635
}
636
636
export interface CompressedNonExistenceProofProtoMsg {
637
- typeUrl : "/ics23.CompressedNonExistenceProof" ;
637
+ type_url : "/ics23.CompressedNonExistenceProof" ;
638
638
value : Uint8Array ;
639
639
}
640
640
export interface CompressedNonExistenceProofAmino {
0 commit comments