@@ -52,7 +52,7 @@ export interface MsgUpdateParamsResponseProtoMsg {
52
52
*/
53
53
export interface MsgUpdateParamsResponseAmino { }
54
54
export interface MsgUpdateParamsResponseAminoMsg {
55
- type : "/hyperweb. hvm. MsgUpdateParamsResponse" ;
55
+ type : "hvm/x/ hvm/ MsgUpdateParamsResponse" ;
56
56
value : MsgUpdateParamsResponseAmino ;
57
57
}
58
58
/**
@@ -79,7 +79,7 @@ export interface MsgInstantiateAmino {
79
79
source : string ;
80
80
}
81
81
export interface MsgInstantiateAminoMsg {
82
- type : "/hyperweb. hvm. MsgInstantiate" ;
82
+ type : "hvm/x/ hvm/ MsgInstantiate" ;
83
83
value : MsgInstantiateAmino ;
84
84
}
85
85
/** msg instantiate */
@@ -103,7 +103,7 @@ export interface MsgInstantiateResponseAmino {
103
103
address : string ;
104
104
}
105
105
export interface MsgInstantiateResponseAminoMsg {
106
- type : "/hyperweb. hvm. MsgInstantiateResponse" ;
106
+ type : "hvm/x/ hvm/ MsgInstantiateResponse" ;
107
107
value : MsgInstantiateResponseAmino ;
108
108
}
109
109
/** msg instantiate response */
@@ -142,7 +142,7 @@ export interface MsgEvalAmino {
142
142
args : string [ ] ;
143
143
}
144
144
export interface MsgEvalAminoMsg {
145
- type : "/hyperweb. hvm. MsgEval" ;
145
+ type : "hvm/x/ hvm/ MsgEval" ;
146
146
value : MsgEvalAmino ;
147
147
}
148
148
/** msg eval response */
@@ -165,7 +165,7 @@ export interface MsgEvalResponseAmino {
165
165
result : string ;
166
166
}
167
167
export interface MsgEvalResponseAminoMsg {
168
- type : "/hyperweb. hvm. MsgEvalResponse" ;
168
+ type : "hvm/x/ hvm/ MsgEvalResponse" ;
169
169
value : MsgEvalResponseAmino ;
170
170
}
171
171
/** msg eval response */
@@ -297,6 +297,7 @@ function createBaseMsgUpdateParamsResponse(): MsgUpdateParamsResponse {
297
297
}
298
298
export const MsgUpdateParamsResponse = {
299
299
typeUrl : "/hyperweb.hvm.MsgUpdateParamsResponse" ,
300
+ aminoType : "hvm/x/hvm/MsgUpdateParamsResponse" ,
300
301
is ( o : any ) : o is MsgUpdateParamsResponse {
301
302
return o && o . $typeUrl === MsgUpdateParamsResponse . typeUrl ;
302
303
} ,
@@ -353,6 +354,12 @@ export const MsgUpdateParamsResponse = {
353
354
fromAminoMsg ( object : MsgUpdateParamsResponseAminoMsg ) : MsgUpdateParamsResponse {
354
355
return MsgUpdateParamsResponse . fromAmino ( object . value ) ;
355
356
} ,
357
+ toAminoMsg ( message : MsgUpdateParamsResponse ) : MsgUpdateParamsResponseAminoMsg {
358
+ return {
359
+ type : "hvm/x/hvm/MsgUpdateParamsResponse" ,
360
+ value : MsgUpdateParamsResponse . toAmino ( message )
361
+ } ;
362
+ } ,
356
363
fromProtoMsg ( message : MsgUpdateParamsResponseProtoMsg ) : MsgUpdateParamsResponse {
357
364
return MsgUpdateParamsResponse . decode ( message . value ) ;
358
365
} ,
@@ -376,6 +383,7 @@ function createBaseMsgInstantiate(): MsgInstantiate {
376
383
}
377
384
export const MsgInstantiate = {
378
385
typeUrl : "/hyperweb.hvm.MsgInstantiate" ,
386
+ aminoType : "hvm/x/hvm/MsgInstantiate" ,
379
387
is ( o : any ) : o is MsgInstantiate {
380
388
return o && ( o . $typeUrl === MsgInstantiate . typeUrl || typeof o . creator === "string" && typeof o . code === "string" && typeof o . source === "string" ) ;
381
389
} ,
@@ -478,6 +486,12 @@ export const MsgInstantiate = {
478
486
fromAminoMsg ( object : MsgInstantiateAminoMsg ) : MsgInstantiate {
479
487
return MsgInstantiate . fromAmino ( object . value ) ;
480
488
} ,
489
+ toAminoMsg ( message : MsgInstantiate ) : MsgInstantiateAminoMsg {
490
+ return {
491
+ type : "hvm/x/hvm/MsgInstantiate" ,
492
+ value : MsgInstantiate . toAmino ( message )
493
+ } ;
494
+ } ,
481
495
fromProtoMsg ( message : MsgInstantiateProtoMsg ) : MsgInstantiate {
482
496
return MsgInstantiate . decode ( message . value ) ;
483
497
} ,
@@ -500,6 +514,7 @@ function createBaseMsgInstantiateResponse(): MsgInstantiateResponse {
500
514
}
501
515
export const MsgInstantiateResponse = {
502
516
typeUrl : "/hyperweb.hvm.MsgInstantiateResponse" ,
517
+ aminoType : "hvm/x/hvm/MsgInstantiateResponse" ,
503
518
is ( o : any ) : o is MsgInstantiateResponse {
504
519
return o && ( o . $typeUrl === MsgInstantiateResponse . typeUrl || typeof o . index === "bigint" && typeof o . address === "string" ) ;
505
520
} ,
@@ -589,6 +604,12 @@ export const MsgInstantiateResponse = {
589
604
fromAminoMsg ( object : MsgInstantiateResponseAminoMsg ) : MsgInstantiateResponse {
590
605
return MsgInstantiateResponse . fromAmino ( object . value ) ;
591
606
} ,
607
+ toAminoMsg ( message : MsgInstantiateResponse ) : MsgInstantiateResponseAminoMsg {
608
+ return {
609
+ type : "hvm/x/hvm/MsgInstantiateResponse" ,
610
+ value : MsgInstantiateResponse . toAmino ( message )
611
+ } ;
612
+ } ,
592
613
fromProtoMsg ( message : MsgInstantiateResponseProtoMsg ) : MsgInstantiateResponse {
593
614
return MsgInstantiateResponse . decode ( message . value ) ;
594
615
} ,
@@ -613,6 +634,7 @@ function createBaseMsgEval(): MsgEval {
613
634
}
614
635
export const MsgEval = {
615
636
typeUrl : "/hyperweb.hvm.MsgEval" ,
637
+ aminoType : "hvm/x/hvm/MsgEval" ,
616
638
is ( o : any ) : o is MsgEval {
617
639
return o && ( o . $typeUrl === MsgEval . typeUrl || typeof o . creator === "string" && typeof o . address === "string" && typeof o . callee === "string" && Array . isArray ( o . args ) && ( ! o . args . length || typeof o . args [ 0 ] === "string" ) ) ;
618
640
} ,
@@ -740,6 +762,12 @@ export const MsgEval = {
740
762
fromAminoMsg ( object : MsgEvalAminoMsg ) : MsgEval {
741
763
return MsgEval . fromAmino ( object . value ) ;
742
764
} ,
765
+ toAminoMsg ( message : MsgEval ) : MsgEvalAminoMsg {
766
+ return {
767
+ type : "hvm/x/hvm/MsgEval" ,
768
+ value : MsgEval . toAmino ( message )
769
+ } ;
770
+ } ,
743
771
fromProtoMsg ( message : MsgEvalProtoMsg ) : MsgEval {
744
772
return MsgEval . decode ( message . value ) ;
745
773
} ,
@@ -761,6 +789,7 @@ function createBaseMsgEvalResponse(): MsgEvalResponse {
761
789
}
762
790
export const MsgEvalResponse = {
763
791
typeUrl : "/hyperweb.hvm.MsgEvalResponse" ,
792
+ aminoType : "hvm/x/hvm/MsgEvalResponse" ,
764
793
is ( o : any ) : o is MsgEvalResponse {
765
794
return o && ( o . $typeUrl === MsgEvalResponse . typeUrl || typeof o . result === "string" ) ;
766
795
} ,
@@ -833,6 +862,12 @@ export const MsgEvalResponse = {
833
862
fromAminoMsg ( object : MsgEvalResponseAminoMsg ) : MsgEvalResponse {
834
863
return MsgEvalResponse . fromAmino ( object . value ) ;
835
864
} ,
865
+ toAminoMsg ( message : MsgEvalResponse ) : MsgEvalResponseAminoMsg {
866
+ return {
867
+ type : "hvm/x/hvm/MsgEvalResponse" ,
868
+ value : MsgEvalResponse . toAmino ( message )
869
+ } ;
870
+ } ,
836
871
fromProtoMsg ( message : MsgEvalResponseProtoMsg ) : MsgEvalResponse {
837
872
return MsgEvalResponse . decode ( message . value ) ;
838
873
} ,
0 commit comments