Skip to content

Commit 29a8a48

Browse files
author
Joe Bowman
committed
add MsgSubmitClaim to list of amino txs
1 parent f039553 commit 29a8a48

File tree

739 files changed

+33500
-32435
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

739 files changed

+33500
-32435
lines changed

dist/codegen/confio/proofs.d.ts

+25-25
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export interface ExistenceProof {
7474
path: InnerOp[];
7575
}
7676
export interface ExistenceProofProtoMsg {
77-
typeUrl: "/ics23.ExistenceProof";
77+
type_url: "/ics23.ExistenceProof";
7878
value: Uint8Array;
7979
}
8080
/**
@@ -147,7 +147,7 @@ export interface NonExistenceProof {
147147
right: ExistenceProof;
148148
}
149149
export interface NonExistenceProofProtoMsg {
150-
typeUrl: "/ics23.NonExistenceProof";
150+
type_url: "/ics23.NonExistenceProof";
151151
value: Uint8Array;
152152
}
153153
/**
@@ -183,7 +183,7 @@ export interface CommitmentProof {
183183
compressed?: CompressedBatchProof;
184184
}
185185
export interface CommitmentProofProtoMsg {
186-
typeUrl: "/ics23.CommitmentProof";
186+
type_url: "/ics23.CommitmentProof";
187187
value: Uint8Array;
188188
}
189189
/** CommitmentProof is either an ExistenceProof or a NonExistenceProof, or a Batch of such messages */
@@ -222,8 +222,8 @@ export interface CommitmentProofSDKType {
222222
*/
223223
export interface LeafOp {
224224
hash: HashOp;
225-
prehashKey: HashOp;
226-
prehashValue: HashOp;
225+
prehash_key: HashOp;
226+
prehash_value: HashOp;
227227
length: LengthOp;
228228
/**
229229
* prefix is a fixed bytes that may optionally be included at the beginning to differentiate
@@ -232,7 +232,7 @@ export interface LeafOp {
232232
prefix: Uint8Array;
233233
}
234234
export interface LeafOpProtoMsg {
235-
typeUrl: "/ics23.LeafOp";
235+
type_url: "/ics23.LeafOp";
236236
value: Uint8Array;
237237
}
238238
/**
@@ -312,7 +312,7 @@ export interface InnerOp {
312312
suffix: Uint8Array;
313313
}
314314
export interface InnerOpProtoMsg {
315-
typeUrl: "/ics23.InnerOp";
315+
type_url: "/ics23.InnerOp";
316316
value: Uint8Array;
317317
}
318318
/**
@@ -380,15 +380,15 @@ export interface ProofSpec {
380380
* any field in the ExistenceProof must be the same as in this spec.
381381
* except Prefix, which is just the first bytes of prefix (spec can be longer)
382382
*/
383-
leafSpec: LeafOp;
384-
innerSpec: InnerSpec;
383+
leaf_spec: LeafOp;
384+
inner_spec: InnerSpec;
385385
/** max_depth (if > 0) is the maximum number of InnerOps allowed (mainly for fixed-depth tries) */
386-
maxDepth: number;
386+
max_depth: number;
387387
/** min_depth (if > 0) is the minimum number of InnerOps allowed (mainly for fixed-depth tries) */
388-
minDepth: number;
388+
min_depth: number;
389389
}
390390
export interface ProofSpecProtoMsg {
391-
typeUrl: "/ics23.ProofSpec";
391+
type_url: "/ics23.ProofSpec";
392392
value: Uint8Array;
393393
}
394394
/**
@@ -453,17 +453,17 @@ export interface InnerSpec {
453453
* iavl tree is [0, 1] (left then right)
454454
* merk is [0, 2, 1] (left, right, here)
455455
*/
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;
460460
/** 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;
462462
/** hash is the algorithm that must be used for each InnerOp */
463463
hash: HashOp;
464464
}
465465
export interface InnerSpecProtoMsg {
466-
typeUrl: "/ics23.InnerSpec";
466+
type_url: "/ics23.InnerSpec";
467467
value: Uint8Array;
468468
}
469469
/**
@@ -518,7 +518,7 @@ export interface BatchProof {
518518
entries: BatchEntry[];
519519
}
520520
export interface BatchProofProtoMsg {
521-
typeUrl: "/ics23.BatchProof";
521+
type_url: "/ics23.BatchProof";
522522
value: Uint8Array;
523523
}
524524
/** BatchProof is a group of multiple proof types than can be compressed */
@@ -539,7 +539,7 @@ export interface BatchEntry {
539539
nonexist?: NonExistenceProof;
540540
}
541541
export interface BatchEntryProtoMsg {
542-
typeUrl: "/ics23.BatchEntry";
542+
type_url: "/ics23.BatchEntry";
543543
value: Uint8Array;
544544
}
545545
/** Use BatchEntry not CommitmentProof, to avoid recursion */
@@ -558,10 +558,10 @@ export interface BatchEntrySDKType {
558558
}
559559
export interface CompressedBatchProof {
560560
entries: CompressedBatchEntry[];
561-
lookupInners: InnerOp[];
561+
lookup_inners: InnerOp[];
562562
}
563563
export interface CompressedBatchProofProtoMsg {
564-
typeUrl: "/ics23.CompressedBatchProof";
564+
type_url: "/ics23.CompressedBatchProof";
565565
value: Uint8Array;
566566
}
567567
export interface CompressedBatchProofAmino {
@@ -582,7 +582,7 @@ export interface CompressedBatchEntry {
582582
nonexist?: CompressedNonExistenceProof;
583583
}
584584
export interface CompressedBatchEntryProtoMsg {
585-
typeUrl: "/ics23.CompressedBatchEntry";
585+
type_url: "/ics23.CompressedBatchEntry";
586586
value: Uint8Array;
587587
}
588588
/** Use BatchEntry not CommitmentProof, to avoid recursion */
@@ -607,7 +607,7 @@ export interface CompressedExistenceProof {
607607
path: number[];
608608
}
609609
export interface CompressedExistenceProofProtoMsg {
610-
typeUrl: "/ics23.CompressedExistenceProof";
610+
type_url: "/ics23.CompressedExistenceProof";
611611
value: Uint8Array;
612612
}
613613
export interface CompressedExistenceProofAmino {
@@ -634,7 +634,7 @@ export interface CompressedNonExistenceProof {
634634
right: CompressedExistenceProof;
635635
}
636636
export interface CompressedNonExistenceProofProtoMsg {
637-
typeUrl: "/ics23.CompressedNonExistenceProof";
637+
type_url: "/ics23.CompressedNonExistenceProof";
638638
value: Uint8Array;
639639
}
640640
export interface CompressedNonExistenceProofAmino {

0 commit comments

Comments
 (0)