@sparkdreamnft/sparkdreamjs 0.0.11 → 0.0.13
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/esm/nested-amino.js +52 -0
- package/esm/sparkdream/blog/v1/tx.amino.js +14 -14
- package/esm/sparkdream/blog/v1/tx.js +98 -0
- package/esm/sparkdream/collect/v1/tx.amino.js +25 -25
- package/esm/sparkdream/collect/v1/tx.js +175 -0
- package/esm/sparkdream/commons/v1/query.js +379 -1
- package/esm/sparkdream/commons/v1/query.lcd.js +21 -0
- package/esm/sparkdream/commons/v1/query.rpc.Query.js +24 -1
- package/esm/sparkdream/commons/v1/tx.amino.js +80 -41
- package/esm/sparkdream/commons/v1/tx.js +91 -0
- package/esm/sparkdream/federation/v1/tx.amino.js +24 -24
- package/esm/sparkdream/federation/v1/tx.js +168 -0
- package/esm/sparkdream/forum/v1/tx.amino.js +33 -33
- package/esm/sparkdream/forum/v1/tx.js +231 -0
- package/esm/sparkdream/futarchy/v1/tx.amino.js +4 -4
- package/esm/sparkdream/futarchy/v1/tx.js +28 -0
- package/esm/sparkdream/name/v1/name_record.js +33 -2
- package/esm/sparkdream/name/v1/query.js +166 -0
- package/esm/sparkdream/name/v1/query.lcd.js +13 -0
- package/esm/sparkdream/name/v1/query.rpc.Query.js +12 -1
- package/esm/sparkdream/name/v1/tx.amino.js +21 -6
- package/esm/sparkdream/name/v1/tx.js +500 -0
- package/esm/sparkdream/name/v1/tx.registry.js +56 -2
- package/esm/sparkdream/name/v1/tx.rpc.msg.js +24 -1
- package/esm/sparkdream/rep/v1/query.js +204 -0
- package/esm/sparkdream/rep/v1/query.lcd.js +5 -0
- package/esm/sparkdream/rep/v1/query.rpc.Query.js +10 -1
- package/esm/sparkdream/rep/v1/tx.amino.js +45 -45
- package/esm/sparkdream/rep/v1/tx.js +315 -0
- package/esm/sparkdream/reveal/v1/tx.amino.js +9 -9
- package/esm/sparkdream/reveal/v1/tx.js +63 -0
- package/esm/sparkdream/season/v1/tx.amino.js +25 -25
- package/esm/sparkdream/season/v1/tx.js +175 -0
- package/esm/sparkdream/session/v1/tx.amino.js +33 -11
- package/esm/sparkdream/session/v1/tx.js +21 -0
- package/esm/sparkdream/shield/v1/tx.amino.js +4 -4
- package/esm/sparkdream/shield/v1/tx.js +28 -0
- package/nested-amino.d.ts +76 -0
- package/nested-amino.js +57 -0
- package/package.json +1 -1
- package/sparkdream/blog/v1/tx.amino.js +14 -14
- package/sparkdream/blog/v1/tx.d.ts +42 -14
- package/sparkdream/blog/v1/tx.js +98 -0
- package/sparkdream/bundle.d.ts +661 -6
- package/sparkdream/client.d.ts +21 -6
- package/sparkdream/collect/v1/tx.amino.js +25 -25
- package/sparkdream/collect/v1/tx.d.ts +75 -25
- package/sparkdream/collect/v1/tx.js +175 -0
- package/sparkdream/commons/v1/query.d.ts +243 -1
- package/sparkdream/commons/v1/query.js +379 -1
- package/sparkdream/commons/v1/query.lcd.d.ts +3 -1
- package/sparkdream/commons/v1/query.lcd.js +21 -0
- package/sparkdream/commons/v1/query.rpc.Query.d.ts +16 -1
- package/sparkdream/commons/v1/query.rpc.Query.js +23 -0
- package/sparkdream/commons/v1/tx.amino.d.ts +6 -5
- package/sparkdream/commons/v1/tx.amino.js +82 -42
- package/sparkdream/commons/v1/tx.d.ts +39 -13
- package/sparkdream/commons/v1/tx.js +91 -0
- package/sparkdream/federation/v1/tx.amino.js +24 -24
- package/sparkdream/federation/v1/tx.d.ts +72 -24
- package/sparkdream/federation/v1/tx.js +168 -0
- package/sparkdream/forum/v1/tx.amino.js +33 -33
- package/sparkdream/forum/v1/tx.d.ts +99 -33
- package/sparkdream/forum/v1/tx.js +231 -0
- package/sparkdream/futarchy/v1/tx.amino.js +4 -4
- package/sparkdream/futarchy/v1/tx.d.ts +12 -4
- package/sparkdream/futarchy/v1/tx.js +28 -0
- package/sparkdream/name/v1/name_record.d.ts +46 -3
- package/sparkdream/name/v1/name_record.js +33 -2
- package/sparkdream/name/v1/query.d.ts +95 -0
- package/sparkdream/name/v1/query.js +167 -1
- package/sparkdream/name/v1/query.lcd.d.ts +2 -1
- package/sparkdream/name/v1/query.lcd.js +13 -0
- package/sparkdream/name/v1/query.rpc.Query.d.ts +9 -1
- package/sparkdream/name/v1/query.rpc.Query.js +11 -0
- package/sparkdream/name/v1/tx.amino.d.ts +16 -1
- package/sparkdream/name/v1/tx.amino.js +20 -5
- package/sparkdream/name/v1/tx.d.ts +336 -5
- package/sparkdream/name/v1/tx.js +501 -1
- package/sparkdream/name/v1/tx.registry.d.ts +37 -1
- package/sparkdream/name/v1/tx.registry.js +55 -1
- package/sparkdream/name/v1/tx.rpc.msg.d.ts +21 -1
- package/sparkdream/name/v1/tx.rpc.msg.js +23 -0
- package/sparkdream/rep/v1/query.d.ts +153 -1
- package/sparkdream/rep/v1/query.js +205 -1
- package/sparkdream/rep/v1/query.lcd.d.ts +2 -1
- package/sparkdream/rep/v1/query.lcd.js +5 -0
- package/sparkdream/rep/v1/query.rpc.Query.d.ts +5 -1
- package/sparkdream/rep/v1/query.rpc.Query.js +9 -0
- package/sparkdream/rep/v1/tx.amino.js +45 -45
- package/sparkdream/rep/v1/tx.d.ts +135 -45
- package/sparkdream/rep/v1/tx.js +315 -0
- package/sparkdream/reveal/v1/tx.amino.js +9 -9
- package/sparkdream/reveal/v1/tx.d.ts +27 -9
- package/sparkdream/reveal/v1/tx.js +63 -0
- package/sparkdream/rpc.query.d.ts +4 -0
- package/sparkdream/season/v1/tx.amino.js +25 -25
- package/sparkdream/season/v1/tx.d.ts +75 -25
- package/sparkdream/season/v1/tx.js +175 -0
- package/sparkdream/session/v1/tx.amino.d.ts +3 -3
- package/sparkdream/session/v1/tx.amino.js +33 -11
- package/sparkdream/session/v1/tx.d.ts +9 -3
- package/sparkdream/session/v1/tx.js +21 -0
- package/sparkdream/shield/v1/tx.amino.js +4 -4
- package/sparkdream/shield/v1/tx.d.ts +12 -4
- package/sparkdream/shield/v1/tx.js +28 -0
|
@@ -82,7 +82,7 @@ export interface MsgRegisterPeerAmino {
|
|
|
82
82
|
metadata?: string;
|
|
83
83
|
}
|
|
84
84
|
export interface MsgRegisterPeerAminoMsg {
|
|
85
|
-
type: "/
|
|
85
|
+
type: "sparkdream/x/federation/MsgRegisterPeer";
|
|
86
86
|
value: MsgRegisterPeerAmino;
|
|
87
87
|
}
|
|
88
88
|
/**
|
|
@@ -132,7 +132,7 @@ export interface MsgRemovePeerAmino {
|
|
|
132
132
|
reason?: string;
|
|
133
133
|
}
|
|
134
134
|
export interface MsgRemovePeerAminoMsg {
|
|
135
|
-
type: "/
|
|
135
|
+
type: "sparkdream/x/federation/MsgRemovePeer";
|
|
136
136
|
value: MsgRemovePeerAmino;
|
|
137
137
|
}
|
|
138
138
|
/**
|
|
@@ -182,7 +182,7 @@ export interface MsgSuspendPeerAmino {
|
|
|
182
182
|
reason?: string;
|
|
183
183
|
}
|
|
184
184
|
export interface MsgSuspendPeerAminoMsg {
|
|
185
|
-
type: "/
|
|
185
|
+
type: "sparkdream/x/federation/MsgSuspendPeer";
|
|
186
186
|
value: MsgSuspendPeerAmino;
|
|
187
187
|
}
|
|
188
188
|
/**
|
|
@@ -230,7 +230,7 @@ export interface MsgResumePeerAmino {
|
|
|
230
230
|
peer_id?: string;
|
|
231
231
|
}
|
|
232
232
|
export interface MsgResumePeerAminoMsg {
|
|
233
|
-
type: "/
|
|
233
|
+
type: "sparkdream/x/federation/MsgResumePeer";
|
|
234
234
|
value: MsgResumePeerAmino;
|
|
235
235
|
}
|
|
236
236
|
/**
|
|
@@ -280,7 +280,7 @@ export interface MsgUpdatePeerPolicyAmino {
|
|
|
280
280
|
policy?: PeerPolicyAmino;
|
|
281
281
|
}
|
|
282
282
|
export interface MsgUpdatePeerPolicyAminoMsg {
|
|
283
|
-
type: "/
|
|
283
|
+
type: "sparkdream/x/federation/MsgUpdatePeerPolicy";
|
|
284
284
|
value: MsgUpdatePeerPolicyAmino;
|
|
285
285
|
}
|
|
286
286
|
/**
|
|
@@ -334,7 +334,7 @@ export interface MsgRegisterBridgeAmino {
|
|
|
334
334
|
endpoint?: string;
|
|
335
335
|
}
|
|
336
336
|
export interface MsgRegisterBridgeAminoMsg {
|
|
337
|
-
type: "/
|
|
337
|
+
type: "sparkdream/x/federation/MsgRegisterBridge";
|
|
338
338
|
value: MsgRegisterBridgeAmino;
|
|
339
339
|
}
|
|
340
340
|
/**
|
|
@@ -386,7 +386,7 @@ export interface MsgRevokeBridgeAmino {
|
|
|
386
386
|
reason?: string;
|
|
387
387
|
}
|
|
388
388
|
export interface MsgRevokeBridgeAminoMsg {
|
|
389
|
-
type: "/
|
|
389
|
+
type: "sparkdream/x/federation/MsgRevokeBridge";
|
|
390
390
|
value: MsgRevokeBridgeAmino;
|
|
391
391
|
}
|
|
392
392
|
/**
|
|
@@ -440,7 +440,7 @@ export interface MsgSlashBridgeAmino {
|
|
|
440
440
|
reason?: string;
|
|
441
441
|
}
|
|
442
442
|
export interface MsgSlashBridgeAminoMsg {
|
|
443
|
-
type: "/
|
|
443
|
+
type: "sparkdream/x/federation/MsgSlashBridge";
|
|
444
444
|
value: MsgSlashBridgeAmino;
|
|
445
445
|
}
|
|
446
446
|
/**
|
|
@@ -492,7 +492,7 @@ export interface MsgUpdateBridgeAmino {
|
|
|
492
492
|
endpoint?: string;
|
|
493
493
|
}
|
|
494
494
|
export interface MsgUpdateBridgeAminoMsg {
|
|
495
|
-
type: "/
|
|
495
|
+
type: "sparkdream/x/federation/MsgUpdateBridge";
|
|
496
496
|
value: MsgUpdateBridgeAmino;
|
|
497
497
|
}
|
|
498
498
|
/**
|
|
@@ -540,7 +540,7 @@ export interface MsgUnbondBridgeAmino {
|
|
|
540
540
|
peer_id?: string;
|
|
541
541
|
}
|
|
542
542
|
export interface MsgUnbondBridgeAminoMsg {
|
|
543
|
-
type: "/
|
|
543
|
+
type: "sparkdream/x/federation/MsgUnbondBridge";
|
|
544
544
|
value: MsgUnbondBridgeAmino;
|
|
545
545
|
}
|
|
546
546
|
/**
|
|
@@ -590,7 +590,7 @@ export interface MsgTopUpBridgeStakeAmino {
|
|
|
590
590
|
amount?: CoinAmino;
|
|
591
591
|
}
|
|
592
592
|
export interface MsgTopUpBridgeStakeAminoMsg {
|
|
593
|
-
type: "/
|
|
593
|
+
type: "sparkdream/x/federation/MsgTopUpBridgeStake";
|
|
594
594
|
value: MsgTopUpBridgeStakeAmino;
|
|
595
595
|
}
|
|
596
596
|
/**
|
|
@@ -658,7 +658,7 @@ export interface MsgSubmitFederatedContentAmino {
|
|
|
658
658
|
content_hash?: string;
|
|
659
659
|
}
|
|
660
660
|
export interface MsgSubmitFederatedContentAminoMsg {
|
|
661
|
-
type: "/
|
|
661
|
+
type: "sparkdream/x/federation/MsgSubmitFederatedContent";
|
|
662
662
|
value: MsgSubmitFederatedContentAmino;
|
|
663
663
|
}
|
|
664
664
|
/**
|
|
@@ -720,7 +720,7 @@ export interface MsgFederateContentAmino {
|
|
|
720
720
|
content_hash?: string;
|
|
721
721
|
}
|
|
722
722
|
export interface MsgFederateContentAminoMsg {
|
|
723
|
-
type: "/
|
|
723
|
+
type: "sparkdream/x/federation/MsgFederateContent";
|
|
724
724
|
value: MsgFederateContentAmino;
|
|
725
725
|
}
|
|
726
726
|
/**
|
|
@@ -772,7 +772,7 @@ export interface MsgAttestOutboundAmino {
|
|
|
772
772
|
local_content_id?: string;
|
|
773
773
|
}
|
|
774
774
|
export interface MsgAttestOutboundAminoMsg {
|
|
775
|
-
type: "/
|
|
775
|
+
type: "sparkdream/x/federation/MsgAttestOutbound";
|
|
776
776
|
value: MsgAttestOutboundAmino;
|
|
777
777
|
}
|
|
778
778
|
/**
|
|
@@ -824,7 +824,7 @@ export interface MsgModerateContentAmino {
|
|
|
824
824
|
reason?: string;
|
|
825
825
|
}
|
|
826
826
|
export interface MsgModerateContentAminoMsg {
|
|
827
|
-
type: "/
|
|
827
|
+
type: "sparkdream/x/federation/MsgModerateContent";
|
|
828
828
|
value: MsgModerateContentAmino;
|
|
829
829
|
}
|
|
830
830
|
/**
|
|
@@ -874,7 +874,7 @@ export interface MsgLinkIdentityAmino {
|
|
|
874
874
|
remote_identity?: string;
|
|
875
875
|
}
|
|
876
876
|
export interface MsgLinkIdentityAminoMsg {
|
|
877
|
-
type: "/
|
|
877
|
+
type: "sparkdream/x/federation/MsgLinkIdentity";
|
|
878
878
|
value: MsgLinkIdentityAmino;
|
|
879
879
|
}
|
|
880
880
|
/**
|
|
@@ -922,7 +922,7 @@ export interface MsgUnlinkIdentityAmino {
|
|
|
922
922
|
peer_id?: string;
|
|
923
923
|
}
|
|
924
924
|
export interface MsgUnlinkIdentityAminoMsg {
|
|
925
|
-
type: "/
|
|
925
|
+
type: "sparkdream/x/federation/MsgUnlinkIdentity";
|
|
926
926
|
value: MsgUnlinkIdentityAmino;
|
|
927
927
|
}
|
|
928
928
|
/**
|
|
@@ -970,7 +970,7 @@ export interface MsgConfirmIdentityLinkAmino {
|
|
|
970
970
|
claimant_chain_peer_id?: string;
|
|
971
971
|
}
|
|
972
972
|
export interface MsgConfirmIdentityLinkAminoMsg {
|
|
973
|
-
type: "/
|
|
973
|
+
type: "sparkdream/x/federation/MsgConfirmIdentityLink";
|
|
974
974
|
value: MsgConfirmIdentityLinkAmino;
|
|
975
975
|
}
|
|
976
976
|
/**
|
|
@@ -1020,7 +1020,7 @@ export interface MsgRequestReputationAttestationAmino {
|
|
|
1020
1020
|
remote_address?: string;
|
|
1021
1021
|
}
|
|
1022
1022
|
export interface MsgRequestReputationAttestationAminoMsg {
|
|
1023
|
-
type: "/
|
|
1023
|
+
type: "sparkdream/x/federation/MsgRequestReputationAttestation";
|
|
1024
1024
|
value: MsgRequestReputationAttestationAmino;
|
|
1025
1025
|
}
|
|
1026
1026
|
/**
|
|
@@ -1070,7 +1070,7 @@ export interface MsgVerifyContentAmino {
|
|
|
1070
1070
|
content_hash?: string;
|
|
1071
1071
|
}
|
|
1072
1072
|
export interface MsgVerifyContentAminoMsg {
|
|
1073
|
-
type: "/
|
|
1073
|
+
type: "sparkdream/x/federation/MsgVerifyContent";
|
|
1074
1074
|
value: MsgVerifyContentAmino;
|
|
1075
1075
|
}
|
|
1076
1076
|
/**
|
|
@@ -1122,7 +1122,7 @@ export interface MsgChallengeVerificationAmino {
|
|
|
1122
1122
|
evidence?: string;
|
|
1123
1123
|
}
|
|
1124
1124
|
export interface MsgChallengeVerificationAminoMsg {
|
|
1125
|
-
type: "/
|
|
1125
|
+
type: "sparkdream/x/federation/MsgChallengeVerification";
|
|
1126
1126
|
value: MsgChallengeVerificationAmino;
|
|
1127
1127
|
}
|
|
1128
1128
|
/**
|
|
@@ -1172,7 +1172,7 @@ export interface MsgSubmitArbiterHashAmino {
|
|
|
1172
1172
|
content_hash?: string;
|
|
1173
1173
|
}
|
|
1174
1174
|
export interface MsgSubmitArbiterHashAminoMsg {
|
|
1175
|
-
type: "/
|
|
1175
|
+
type: "sparkdream/x/federation/MsgSubmitArbiterHash";
|
|
1176
1176
|
value: MsgSubmitArbiterHashAmino;
|
|
1177
1177
|
}
|
|
1178
1178
|
/**
|
|
@@ -1220,7 +1220,7 @@ export interface MsgEscalateChallengeAmino {
|
|
|
1220
1220
|
content_id?: string;
|
|
1221
1221
|
}
|
|
1222
1222
|
export interface MsgEscalateChallengeAminoMsg {
|
|
1223
|
-
type: "/
|
|
1223
|
+
type: "sparkdream/x/federation/MsgEscalateChallenge";
|
|
1224
1224
|
value: MsgEscalateChallengeAmino;
|
|
1225
1225
|
}
|
|
1226
1226
|
/**
|
|
@@ -1268,7 +1268,7 @@ export interface MsgUpdateOperationalParamsAmino {
|
|
|
1268
1268
|
operational_params?: FederationOperationalParamsAmino;
|
|
1269
1269
|
}
|
|
1270
1270
|
export interface MsgUpdateOperationalParamsAminoMsg {
|
|
1271
|
-
type: "/
|
|
1271
|
+
type: "sparkdream/x/federation/MsgUpdateOperationalParams";
|
|
1272
1272
|
value: MsgUpdateOperationalParamsAmino;
|
|
1273
1273
|
}
|
|
1274
1274
|
/**
|
|
@@ -1336,12 +1336,14 @@ export declare const MsgUpdateParamsResponse: {
|
|
|
1336
1336
|
*/
|
|
1337
1337
|
export declare const MsgRegisterPeer: {
|
|
1338
1338
|
typeUrl: string;
|
|
1339
|
+
aminoType: string;
|
|
1339
1340
|
encode(message: MsgRegisterPeer, writer?: BinaryWriter): BinaryWriter;
|
|
1340
1341
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRegisterPeer;
|
|
1341
1342
|
fromPartial(object: DeepPartial<MsgRegisterPeer>): MsgRegisterPeer;
|
|
1342
1343
|
fromAmino(object: MsgRegisterPeerAmino): MsgRegisterPeer;
|
|
1343
1344
|
toAmino(message: MsgRegisterPeer): MsgRegisterPeerAmino;
|
|
1344
1345
|
fromAminoMsg(object: MsgRegisterPeerAminoMsg): MsgRegisterPeer;
|
|
1346
|
+
toAminoMsg(message: MsgRegisterPeer): MsgRegisterPeerAminoMsg;
|
|
1345
1347
|
fromProtoMsg(message: MsgRegisterPeerProtoMsg): MsgRegisterPeer;
|
|
1346
1348
|
toProto(message: MsgRegisterPeer): Uint8Array;
|
|
1347
1349
|
toProtoMsg(message: MsgRegisterPeer): MsgRegisterPeerProtoMsg;
|
|
@@ -1370,12 +1372,14 @@ export declare const MsgRegisterPeerResponse: {
|
|
|
1370
1372
|
*/
|
|
1371
1373
|
export declare const MsgRemovePeer: {
|
|
1372
1374
|
typeUrl: string;
|
|
1375
|
+
aminoType: string;
|
|
1373
1376
|
encode(message: MsgRemovePeer, writer?: BinaryWriter): BinaryWriter;
|
|
1374
1377
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemovePeer;
|
|
1375
1378
|
fromPartial(object: DeepPartial<MsgRemovePeer>): MsgRemovePeer;
|
|
1376
1379
|
fromAmino(object: MsgRemovePeerAmino): MsgRemovePeer;
|
|
1377
1380
|
toAmino(message: MsgRemovePeer): MsgRemovePeerAmino;
|
|
1378
1381
|
fromAminoMsg(object: MsgRemovePeerAminoMsg): MsgRemovePeer;
|
|
1382
|
+
toAminoMsg(message: MsgRemovePeer): MsgRemovePeerAminoMsg;
|
|
1379
1383
|
fromProtoMsg(message: MsgRemovePeerProtoMsg): MsgRemovePeer;
|
|
1380
1384
|
toProto(message: MsgRemovePeer): Uint8Array;
|
|
1381
1385
|
toProtoMsg(message: MsgRemovePeer): MsgRemovePeerProtoMsg;
|
|
@@ -1404,12 +1408,14 @@ export declare const MsgRemovePeerResponse: {
|
|
|
1404
1408
|
*/
|
|
1405
1409
|
export declare const MsgSuspendPeer: {
|
|
1406
1410
|
typeUrl: string;
|
|
1411
|
+
aminoType: string;
|
|
1407
1412
|
encode(message: MsgSuspendPeer, writer?: BinaryWriter): BinaryWriter;
|
|
1408
1413
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSuspendPeer;
|
|
1409
1414
|
fromPartial(object: DeepPartial<MsgSuspendPeer>): MsgSuspendPeer;
|
|
1410
1415
|
fromAmino(object: MsgSuspendPeerAmino): MsgSuspendPeer;
|
|
1411
1416
|
toAmino(message: MsgSuspendPeer): MsgSuspendPeerAmino;
|
|
1412
1417
|
fromAminoMsg(object: MsgSuspendPeerAminoMsg): MsgSuspendPeer;
|
|
1418
|
+
toAminoMsg(message: MsgSuspendPeer): MsgSuspendPeerAminoMsg;
|
|
1413
1419
|
fromProtoMsg(message: MsgSuspendPeerProtoMsg): MsgSuspendPeer;
|
|
1414
1420
|
toProto(message: MsgSuspendPeer): Uint8Array;
|
|
1415
1421
|
toProtoMsg(message: MsgSuspendPeer): MsgSuspendPeerProtoMsg;
|
|
@@ -1438,12 +1444,14 @@ export declare const MsgSuspendPeerResponse: {
|
|
|
1438
1444
|
*/
|
|
1439
1445
|
export declare const MsgResumePeer: {
|
|
1440
1446
|
typeUrl: string;
|
|
1447
|
+
aminoType: string;
|
|
1441
1448
|
encode(message: MsgResumePeer, writer?: BinaryWriter): BinaryWriter;
|
|
1442
1449
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgResumePeer;
|
|
1443
1450
|
fromPartial(object: DeepPartial<MsgResumePeer>): MsgResumePeer;
|
|
1444
1451
|
fromAmino(object: MsgResumePeerAmino): MsgResumePeer;
|
|
1445
1452
|
toAmino(message: MsgResumePeer): MsgResumePeerAmino;
|
|
1446
1453
|
fromAminoMsg(object: MsgResumePeerAminoMsg): MsgResumePeer;
|
|
1454
|
+
toAminoMsg(message: MsgResumePeer): MsgResumePeerAminoMsg;
|
|
1447
1455
|
fromProtoMsg(message: MsgResumePeerProtoMsg): MsgResumePeer;
|
|
1448
1456
|
toProto(message: MsgResumePeer): Uint8Array;
|
|
1449
1457
|
toProtoMsg(message: MsgResumePeer): MsgResumePeerProtoMsg;
|
|
@@ -1472,12 +1480,14 @@ export declare const MsgResumePeerResponse: {
|
|
|
1472
1480
|
*/
|
|
1473
1481
|
export declare const MsgUpdatePeerPolicy: {
|
|
1474
1482
|
typeUrl: string;
|
|
1483
|
+
aminoType: string;
|
|
1475
1484
|
encode(message: MsgUpdatePeerPolicy, writer?: BinaryWriter): BinaryWriter;
|
|
1476
1485
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdatePeerPolicy;
|
|
1477
1486
|
fromPartial(object: DeepPartial<MsgUpdatePeerPolicy>): MsgUpdatePeerPolicy;
|
|
1478
1487
|
fromAmino(object: MsgUpdatePeerPolicyAmino): MsgUpdatePeerPolicy;
|
|
1479
1488
|
toAmino(message: MsgUpdatePeerPolicy): MsgUpdatePeerPolicyAmino;
|
|
1480
1489
|
fromAminoMsg(object: MsgUpdatePeerPolicyAminoMsg): MsgUpdatePeerPolicy;
|
|
1490
|
+
toAminoMsg(message: MsgUpdatePeerPolicy): MsgUpdatePeerPolicyAminoMsg;
|
|
1481
1491
|
fromProtoMsg(message: MsgUpdatePeerPolicyProtoMsg): MsgUpdatePeerPolicy;
|
|
1482
1492
|
toProto(message: MsgUpdatePeerPolicy): Uint8Array;
|
|
1483
1493
|
toProtoMsg(message: MsgUpdatePeerPolicy): MsgUpdatePeerPolicyProtoMsg;
|
|
@@ -1506,12 +1516,14 @@ export declare const MsgUpdatePeerPolicyResponse: {
|
|
|
1506
1516
|
*/
|
|
1507
1517
|
export declare const MsgRegisterBridge: {
|
|
1508
1518
|
typeUrl: string;
|
|
1519
|
+
aminoType: string;
|
|
1509
1520
|
encode(message: MsgRegisterBridge, writer?: BinaryWriter): BinaryWriter;
|
|
1510
1521
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRegisterBridge;
|
|
1511
1522
|
fromPartial(object: DeepPartial<MsgRegisterBridge>): MsgRegisterBridge;
|
|
1512
1523
|
fromAmino(object: MsgRegisterBridgeAmino): MsgRegisterBridge;
|
|
1513
1524
|
toAmino(message: MsgRegisterBridge): MsgRegisterBridgeAmino;
|
|
1514
1525
|
fromAminoMsg(object: MsgRegisterBridgeAminoMsg): MsgRegisterBridge;
|
|
1526
|
+
toAminoMsg(message: MsgRegisterBridge): MsgRegisterBridgeAminoMsg;
|
|
1515
1527
|
fromProtoMsg(message: MsgRegisterBridgeProtoMsg): MsgRegisterBridge;
|
|
1516
1528
|
toProto(message: MsgRegisterBridge): Uint8Array;
|
|
1517
1529
|
toProtoMsg(message: MsgRegisterBridge): MsgRegisterBridgeProtoMsg;
|
|
@@ -1540,12 +1552,14 @@ export declare const MsgRegisterBridgeResponse: {
|
|
|
1540
1552
|
*/
|
|
1541
1553
|
export declare const MsgRevokeBridge: {
|
|
1542
1554
|
typeUrl: string;
|
|
1555
|
+
aminoType: string;
|
|
1543
1556
|
encode(message: MsgRevokeBridge, writer?: BinaryWriter): BinaryWriter;
|
|
1544
1557
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRevokeBridge;
|
|
1545
1558
|
fromPartial(object: DeepPartial<MsgRevokeBridge>): MsgRevokeBridge;
|
|
1546
1559
|
fromAmino(object: MsgRevokeBridgeAmino): MsgRevokeBridge;
|
|
1547
1560
|
toAmino(message: MsgRevokeBridge): MsgRevokeBridgeAmino;
|
|
1548
1561
|
fromAminoMsg(object: MsgRevokeBridgeAminoMsg): MsgRevokeBridge;
|
|
1562
|
+
toAminoMsg(message: MsgRevokeBridge): MsgRevokeBridgeAminoMsg;
|
|
1549
1563
|
fromProtoMsg(message: MsgRevokeBridgeProtoMsg): MsgRevokeBridge;
|
|
1550
1564
|
toProto(message: MsgRevokeBridge): Uint8Array;
|
|
1551
1565
|
toProtoMsg(message: MsgRevokeBridge): MsgRevokeBridgeProtoMsg;
|
|
@@ -1574,12 +1588,14 @@ export declare const MsgRevokeBridgeResponse: {
|
|
|
1574
1588
|
*/
|
|
1575
1589
|
export declare const MsgSlashBridge: {
|
|
1576
1590
|
typeUrl: string;
|
|
1591
|
+
aminoType: string;
|
|
1577
1592
|
encode(message: MsgSlashBridge, writer?: BinaryWriter): BinaryWriter;
|
|
1578
1593
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSlashBridge;
|
|
1579
1594
|
fromPartial(object: DeepPartial<MsgSlashBridge>): MsgSlashBridge;
|
|
1580
1595
|
fromAmino(object: MsgSlashBridgeAmino): MsgSlashBridge;
|
|
1581
1596
|
toAmino(message: MsgSlashBridge): MsgSlashBridgeAmino;
|
|
1582
1597
|
fromAminoMsg(object: MsgSlashBridgeAminoMsg): MsgSlashBridge;
|
|
1598
|
+
toAminoMsg(message: MsgSlashBridge): MsgSlashBridgeAminoMsg;
|
|
1583
1599
|
fromProtoMsg(message: MsgSlashBridgeProtoMsg): MsgSlashBridge;
|
|
1584
1600
|
toProto(message: MsgSlashBridge): Uint8Array;
|
|
1585
1601
|
toProtoMsg(message: MsgSlashBridge): MsgSlashBridgeProtoMsg;
|
|
@@ -1608,12 +1624,14 @@ export declare const MsgSlashBridgeResponse: {
|
|
|
1608
1624
|
*/
|
|
1609
1625
|
export declare const MsgUpdateBridge: {
|
|
1610
1626
|
typeUrl: string;
|
|
1627
|
+
aminoType: string;
|
|
1611
1628
|
encode(message: MsgUpdateBridge, writer?: BinaryWriter): BinaryWriter;
|
|
1612
1629
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateBridge;
|
|
1613
1630
|
fromPartial(object: DeepPartial<MsgUpdateBridge>): MsgUpdateBridge;
|
|
1614
1631
|
fromAmino(object: MsgUpdateBridgeAmino): MsgUpdateBridge;
|
|
1615
1632
|
toAmino(message: MsgUpdateBridge): MsgUpdateBridgeAmino;
|
|
1616
1633
|
fromAminoMsg(object: MsgUpdateBridgeAminoMsg): MsgUpdateBridge;
|
|
1634
|
+
toAminoMsg(message: MsgUpdateBridge): MsgUpdateBridgeAminoMsg;
|
|
1617
1635
|
fromProtoMsg(message: MsgUpdateBridgeProtoMsg): MsgUpdateBridge;
|
|
1618
1636
|
toProto(message: MsgUpdateBridge): Uint8Array;
|
|
1619
1637
|
toProtoMsg(message: MsgUpdateBridge): MsgUpdateBridgeProtoMsg;
|
|
@@ -1642,12 +1660,14 @@ export declare const MsgUpdateBridgeResponse: {
|
|
|
1642
1660
|
*/
|
|
1643
1661
|
export declare const MsgUnbondBridge: {
|
|
1644
1662
|
typeUrl: string;
|
|
1663
|
+
aminoType: string;
|
|
1645
1664
|
encode(message: MsgUnbondBridge, writer?: BinaryWriter): BinaryWriter;
|
|
1646
1665
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnbondBridge;
|
|
1647
1666
|
fromPartial(object: DeepPartial<MsgUnbondBridge>): MsgUnbondBridge;
|
|
1648
1667
|
fromAmino(object: MsgUnbondBridgeAmino): MsgUnbondBridge;
|
|
1649
1668
|
toAmino(message: MsgUnbondBridge): MsgUnbondBridgeAmino;
|
|
1650
1669
|
fromAminoMsg(object: MsgUnbondBridgeAminoMsg): MsgUnbondBridge;
|
|
1670
|
+
toAminoMsg(message: MsgUnbondBridge): MsgUnbondBridgeAminoMsg;
|
|
1651
1671
|
fromProtoMsg(message: MsgUnbondBridgeProtoMsg): MsgUnbondBridge;
|
|
1652
1672
|
toProto(message: MsgUnbondBridge): Uint8Array;
|
|
1653
1673
|
toProtoMsg(message: MsgUnbondBridge): MsgUnbondBridgeProtoMsg;
|
|
@@ -1676,12 +1696,14 @@ export declare const MsgUnbondBridgeResponse: {
|
|
|
1676
1696
|
*/
|
|
1677
1697
|
export declare const MsgTopUpBridgeStake: {
|
|
1678
1698
|
typeUrl: string;
|
|
1699
|
+
aminoType: string;
|
|
1679
1700
|
encode(message: MsgTopUpBridgeStake, writer?: BinaryWriter): BinaryWriter;
|
|
1680
1701
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgTopUpBridgeStake;
|
|
1681
1702
|
fromPartial(object: DeepPartial<MsgTopUpBridgeStake>): MsgTopUpBridgeStake;
|
|
1682
1703
|
fromAmino(object: MsgTopUpBridgeStakeAmino): MsgTopUpBridgeStake;
|
|
1683
1704
|
toAmino(message: MsgTopUpBridgeStake): MsgTopUpBridgeStakeAmino;
|
|
1684
1705
|
fromAminoMsg(object: MsgTopUpBridgeStakeAminoMsg): MsgTopUpBridgeStake;
|
|
1706
|
+
toAminoMsg(message: MsgTopUpBridgeStake): MsgTopUpBridgeStakeAminoMsg;
|
|
1685
1707
|
fromProtoMsg(message: MsgTopUpBridgeStakeProtoMsg): MsgTopUpBridgeStake;
|
|
1686
1708
|
toProto(message: MsgTopUpBridgeStake): Uint8Array;
|
|
1687
1709
|
toProtoMsg(message: MsgTopUpBridgeStake): MsgTopUpBridgeStakeProtoMsg;
|
|
@@ -1710,12 +1732,14 @@ export declare const MsgTopUpBridgeStakeResponse: {
|
|
|
1710
1732
|
*/
|
|
1711
1733
|
export declare const MsgSubmitFederatedContent: {
|
|
1712
1734
|
typeUrl: string;
|
|
1735
|
+
aminoType: string;
|
|
1713
1736
|
encode(message: MsgSubmitFederatedContent, writer?: BinaryWriter): BinaryWriter;
|
|
1714
1737
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitFederatedContent;
|
|
1715
1738
|
fromPartial(object: DeepPartial<MsgSubmitFederatedContent>): MsgSubmitFederatedContent;
|
|
1716
1739
|
fromAmino(object: MsgSubmitFederatedContentAmino): MsgSubmitFederatedContent;
|
|
1717
1740
|
toAmino(message: MsgSubmitFederatedContent): MsgSubmitFederatedContentAmino;
|
|
1718
1741
|
fromAminoMsg(object: MsgSubmitFederatedContentAminoMsg): MsgSubmitFederatedContent;
|
|
1742
|
+
toAminoMsg(message: MsgSubmitFederatedContent): MsgSubmitFederatedContentAminoMsg;
|
|
1719
1743
|
fromProtoMsg(message: MsgSubmitFederatedContentProtoMsg): MsgSubmitFederatedContent;
|
|
1720
1744
|
toProto(message: MsgSubmitFederatedContent): Uint8Array;
|
|
1721
1745
|
toProtoMsg(message: MsgSubmitFederatedContent): MsgSubmitFederatedContentProtoMsg;
|
|
@@ -1744,12 +1768,14 @@ export declare const MsgSubmitFederatedContentResponse: {
|
|
|
1744
1768
|
*/
|
|
1745
1769
|
export declare const MsgFederateContent: {
|
|
1746
1770
|
typeUrl: string;
|
|
1771
|
+
aminoType: string;
|
|
1747
1772
|
encode(message: MsgFederateContent, writer?: BinaryWriter): BinaryWriter;
|
|
1748
1773
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgFederateContent;
|
|
1749
1774
|
fromPartial(object: DeepPartial<MsgFederateContent>): MsgFederateContent;
|
|
1750
1775
|
fromAmino(object: MsgFederateContentAmino): MsgFederateContent;
|
|
1751
1776
|
toAmino(message: MsgFederateContent): MsgFederateContentAmino;
|
|
1752
1777
|
fromAminoMsg(object: MsgFederateContentAminoMsg): MsgFederateContent;
|
|
1778
|
+
toAminoMsg(message: MsgFederateContent): MsgFederateContentAminoMsg;
|
|
1753
1779
|
fromProtoMsg(message: MsgFederateContentProtoMsg): MsgFederateContent;
|
|
1754
1780
|
toProto(message: MsgFederateContent): Uint8Array;
|
|
1755
1781
|
toProtoMsg(message: MsgFederateContent): MsgFederateContentProtoMsg;
|
|
@@ -1778,12 +1804,14 @@ export declare const MsgFederateContentResponse: {
|
|
|
1778
1804
|
*/
|
|
1779
1805
|
export declare const MsgAttestOutbound: {
|
|
1780
1806
|
typeUrl: string;
|
|
1807
|
+
aminoType: string;
|
|
1781
1808
|
encode(message: MsgAttestOutbound, writer?: BinaryWriter): BinaryWriter;
|
|
1782
1809
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAttestOutbound;
|
|
1783
1810
|
fromPartial(object: DeepPartial<MsgAttestOutbound>): MsgAttestOutbound;
|
|
1784
1811
|
fromAmino(object: MsgAttestOutboundAmino): MsgAttestOutbound;
|
|
1785
1812
|
toAmino(message: MsgAttestOutbound): MsgAttestOutboundAmino;
|
|
1786
1813
|
fromAminoMsg(object: MsgAttestOutboundAminoMsg): MsgAttestOutbound;
|
|
1814
|
+
toAminoMsg(message: MsgAttestOutbound): MsgAttestOutboundAminoMsg;
|
|
1787
1815
|
fromProtoMsg(message: MsgAttestOutboundProtoMsg): MsgAttestOutbound;
|
|
1788
1816
|
toProto(message: MsgAttestOutbound): Uint8Array;
|
|
1789
1817
|
toProtoMsg(message: MsgAttestOutbound): MsgAttestOutboundProtoMsg;
|
|
@@ -1812,12 +1840,14 @@ export declare const MsgAttestOutboundResponse: {
|
|
|
1812
1840
|
*/
|
|
1813
1841
|
export declare const MsgModerateContent: {
|
|
1814
1842
|
typeUrl: string;
|
|
1843
|
+
aminoType: string;
|
|
1815
1844
|
encode(message: MsgModerateContent, writer?: BinaryWriter): BinaryWriter;
|
|
1816
1845
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgModerateContent;
|
|
1817
1846
|
fromPartial(object: DeepPartial<MsgModerateContent>): MsgModerateContent;
|
|
1818
1847
|
fromAmino(object: MsgModerateContentAmino): MsgModerateContent;
|
|
1819
1848
|
toAmino(message: MsgModerateContent): MsgModerateContentAmino;
|
|
1820
1849
|
fromAminoMsg(object: MsgModerateContentAminoMsg): MsgModerateContent;
|
|
1850
|
+
toAminoMsg(message: MsgModerateContent): MsgModerateContentAminoMsg;
|
|
1821
1851
|
fromProtoMsg(message: MsgModerateContentProtoMsg): MsgModerateContent;
|
|
1822
1852
|
toProto(message: MsgModerateContent): Uint8Array;
|
|
1823
1853
|
toProtoMsg(message: MsgModerateContent): MsgModerateContentProtoMsg;
|
|
@@ -1846,12 +1876,14 @@ export declare const MsgModerateContentResponse: {
|
|
|
1846
1876
|
*/
|
|
1847
1877
|
export declare const MsgLinkIdentity: {
|
|
1848
1878
|
typeUrl: string;
|
|
1879
|
+
aminoType: string;
|
|
1849
1880
|
encode(message: MsgLinkIdentity, writer?: BinaryWriter): BinaryWriter;
|
|
1850
1881
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgLinkIdentity;
|
|
1851
1882
|
fromPartial(object: DeepPartial<MsgLinkIdentity>): MsgLinkIdentity;
|
|
1852
1883
|
fromAmino(object: MsgLinkIdentityAmino): MsgLinkIdentity;
|
|
1853
1884
|
toAmino(message: MsgLinkIdentity): MsgLinkIdentityAmino;
|
|
1854
1885
|
fromAminoMsg(object: MsgLinkIdentityAminoMsg): MsgLinkIdentity;
|
|
1886
|
+
toAminoMsg(message: MsgLinkIdentity): MsgLinkIdentityAminoMsg;
|
|
1855
1887
|
fromProtoMsg(message: MsgLinkIdentityProtoMsg): MsgLinkIdentity;
|
|
1856
1888
|
toProto(message: MsgLinkIdentity): Uint8Array;
|
|
1857
1889
|
toProtoMsg(message: MsgLinkIdentity): MsgLinkIdentityProtoMsg;
|
|
@@ -1880,12 +1912,14 @@ export declare const MsgLinkIdentityResponse: {
|
|
|
1880
1912
|
*/
|
|
1881
1913
|
export declare const MsgUnlinkIdentity: {
|
|
1882
1914
|
typeUrl: string;
|
|
1915
|
+
aminoType: string;
|
|
1883
1916
|
encode(message: MsgUnlinkIdentity, writer?: BinaryWriter): BinaryWriter;
|
|
1884
1917
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnlinkIdentity;
|
|
1885
1918
|
fromPartial(object: DeepPartial<MsgUnlinkIdentity>): MsgUnlinkIdentity;
|
|
1886
1919
|
fromAmino(object: MsgUnlinkIdentityAmino): MsgUnlinkIdentity;
|
|
1887
1920
|
toAmino(message: MsgUnlinkIdentity): MsgUnlinkIdentityAmino;
|
|
1888
1921
|
fromAminoMsg(object: MsgUnlinkIdentityAminoMsg): MsgUnlinkIdentity;
|
|
1922
|
+
toAminoMsg(message: MsgUnlinkIdentity): MsgUnlinkIdentityAminoMsg;
|
|
1889
1923
|
fromProtoMsg(message: MsgUnlinkIdentityProtoMsg): MsgUnlinkIdentity;
|
|
1890
1924
|
toProto(message: MsgUnlinkIdentity): Uint8Array;
|
|
1891
1925
|
toProtoMsg(message: MsgUnlinkIdentity): MsgUnlinkIdentityProtoMsg;
|
|
@@ -1914,12 +1948,14 @@ export declare const MsgUnlinkIdentityResponse: {
|
|
|
1914
1948
|
*/
|
|
1915
1949
|
export declare const MsgConfirmIdentityLink: {
|
|
1916
1950
|
typeUrl: string;
|
|
1951
|
+
aminoType: string;
|
|
1917
1952
|
encode(message: MsgConfirmIdentityLink, writer?: BinaryWriter): BinaryWriter;
|
|
1918
1953
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgConfirmIdentityLink;
|
|
1919
1954
|
fromPartial(object: DeepPartial<MsgConfirmIdentityLink>): MsgConfirmIdentityLink;
|
|
1920
1955
|
fromAmino(object: MsgConfirmIdentityLinkAmino): MsgConfirmIdentityLink;
|
|
1921
1956
|
toAmino(message: MsgConfirmIdentityLink): MsgConfirmIdentityLinkAmino;
|
|
1922
1957
|
fromAminoMsg(object: MsgConfirmIdentityLinkAminoMsg): MsgConfirmIdentityLink;
|
|
1958
|
+
toAminoMsg(message: MsgConfirmIdentityLink): MsgConfirmIdentityLinkAminoMsg;
|
|
1923
1959
|
fromProtoMsg(message: MsgConfirmIdentityLinkProtoMsg): MsgConfirmIdentityLink;
|
|
1924
1960
|
toProto(message: MsgConfirmIdentityLink): Uint8Array;
|
|
1925
1961
|
toProtoMsg(message: MsgConfirmIdentityLink): MsgConfirmIdentityLinkProtoMsg;
|
|
@@ -1948,12 +1984,14 @@ export declare const MsgConfirmIdentityLinkResponse: {
|
|
|
1948
1984
|
*/
|
|
1949
1985
|
export declare const MsgRequestReputationAttestation: {
|
|
1950
1986
|
typeUrl: string;
|
|
1987
|
+
aminoType: string;
|
|
1951
1988
|
encode(message: MsgRequestReputationAttestation, writer?: BinaryWriter): BinaryWriter;
|
|
1952
1989
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRequestReputationAttestation;
|
|
1953
1990
|
fromPartial(object: DeepPartial<MsgRequestReputationAttestation>): MsgRequestReputationAttestation;
|
|
1954
1991
|
fromAmino(object: MsgRequestReputationAttestationAmino): MsgRequestReputationAttestation;
|
|
1955
1992
|
toAmino(message: MsgRequestReputationAttestation): MsgRequestReputationAttestationAmino;
|
|
1956
1993
|
fromAminoMsg(object: MsgRequestReputationAttestationAminoMsg): MsgRequestReputationAttestation;
|
|
1994
|
+
toAminoMsg(message: MsgRequestReputationAttestation): MsgRequestReputationAttestationAminoMsg;
|
|
1957
1995
|
fromProtoMsg(message: MsgRequestReputationAttestationProtoMsg): MsgRequestReputationAttestation;
|
|
1958
1996
|
toProto(message: MsgRequestReputationAttestation): Uint8Array;
|
|
1959
1997
|
toProtoMsg(message: MsgRequestReputationAttestation): MsgRequestReputationAttestationProtoMsg;
|
|
@@ -1982,12 +2020,14 @@ export declare const MsgRequestReputationAttestationResponse: {
|
|
|
1982
2020
|
*/
|
|
1983
2021
|
export declare const MsgVerifyContent: {
|
|
1984
2022
|
typeUrl: string;
|
|
2023
|
+
aminoType: string;
|
|
1985
2024
|
encode(message: MsgVerifyContent, writer?: BinaryWriter): BinaryWriter;
|
|
1986
2025
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgVerifyContent;
|
|
1987
2026
|
fromPartial(object: DeepPartial<MsgVerifyContent>): MsgVerifyContent;
|
|
1988
2027
|
fromAmino(object: MsgVerifyContentAmino): MsgVerifyContent;
|
|
1989
2028
|
toAmino(message: MsgVerifyContent): MsgVerifyContentAmino;
|
|
1990
2029
|
fromAminoMsg(object: MsgVerifyContentAminoMsg): MsgVerifyContent;
|
|
2030
|
+
toAminoMsg(message: MsgVerifyContent): MsgVerifyContentAminoMsg;
|
|
1991
2031
|
fromProtoMsg(message: MsgVerifyContentProtoMsg): MsgVerifyContent;
|
|
1992
2032
|
toProto(message: MsgVerifyContent): Uint8Array;
|
|
1993
2033
|
toProtoMsg(message: MsgVerifyContent): MsgVerifyContentProtoMsg;
|
|
@@ -2016,12 +2056,14 @@ export declare const MsgVerifyContentResponse: {
|
|
|
2016
2056
|
*/
|
|
2017
2057
|
export declare const MsgChallengeVerification: {
|
|
2018
2058
|
typeUrl: string;
|
|
2059
|
+
aminoType: string;
|
|
2019
2060
|
encode(message: MsgChallengeVerification, writer?: BinaryWriter): BinaryWriter;
|
|
2020
2061
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgChallengeVerification;
|
|
2021
2062
|
fromPartial(object: DeepPartial<MsgChallengeVerification>): MsgChallengeVerification;
|
|
2022
2063
|
fromAmino(object: MsgChallengeVerificationAmino): MsgChallengeVerification;
|
|
2023
2064
|
toAmino(message: MsgChallengeVerification): MsgChallengeVerificationAmino;
|
|
2024
2065
|
fromAminoMsg(object: MsgChallengeVerificationAminoMsg): MsgChallengeVerification;
|
|
2066
|
+
toAminoMsg(message: MsgChallengeVerification): MsgChallengeVerificationAminoMsg;
|
|
2025
2067
|
fromProtoMsg(message: MsgChallengeVerificationProtoMsg): MsgChallengeVerification;
|
|
2026
2068
|
toProto(message: MsgChallengeVerification): Uint8Array;
|
|
2027
2069
|
toProtoMsg(message: MsgChallengeVerification): MsgChallengeVerificationProtoMsg;
|
|
@@ -2050,12 +2092,14 @@ export declare const MsgChallengeVerificationResponse: {
|
|
|
2050
2092
|
*/
|
|
2051
2093
|
export declare const MsgSubmitArbiterHash: {
|
|
2052
2094
|
typeUrl: string;
|
|
2095
|
+
aminoType: string;
|
|
2053
2096
|
encode(message: MsgSubmitArbiterHash, writer?: BinaryWriter): BinaryWriter;
|
|
2054
2097
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitArbiterHash;
|
|
2055
2098
|
fromPartial(object: DeepPartial<MsgSubmitArbiterHash>): MsgSubmitArbiterHash;
|
|
2056
2099
|
fromAmino(object: MsgSubmitArbiterHashAmino): MsgSubmitArbiterHash;
|
|
2057
2100
|
toAmino(message: MsgSubmitArbiterHash): MsgSubmitArbiterHashAmino;
|
|
2058
2101
|
fromAminoMsg(object: MsgSubmitArbiterHashAminoMsg): MsgSubmitArbiterHash;
|
|
2102
|
+
toAminoMsg(message: MsgSubmitArbiterHash): MsgSubmitArbiterHashAminoMsg;
|
|
2059
2103
|
fromProtoMsg(message: MsgSubmitArbiterHashProtoMsg): MsgSubmitArbiterHash;
|
|
2060
2104
|
toProto(message: MsgSubmitArbiterHash): Uint8Array;
|
|
2061
2105
|
toProtoMsg(message: MsgSubmitArbiterHash): MsgSubmitArbiterHashProtoMsg;
|
|
@@ -2084,12 +2128,14 @@ export declare const MsgSubmitArbiterHashResponse: {
|
|
|
2084
2128
|
*/
|
|
2085
2129
|
export declare const MsgEscalateChallenge: {
|
|
2086
2130
|
typeUrl: string;
|
|
2131
|
+
aminoType: string;
|
|
2087
2132
|
encode(message: MsgEscalateChallenge, writer?: BinaryWriter): BinaryWriter;
|
|
2088
2133
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgEscalateChallenge;
|
|
2089
2134
|
fromPartial(object: DeepPartial<MsgEscalateChallenge>): MsgEscalateChallenge;
|
|
2090
2135
|
fromAmino(object: MsgEscalateChallengeAmino): MsgEscalateChallenge;
|
|
2091
2136
|
toAmino(message: MsgEscalateChallenge): MsgEscalateChallengeAmino;
|
|
2092
2137
|
fromAminoMsg(object: MsgEscalateChallengeAminoMsg): MsgEscalateChallenge;
|
|
2138
|
+
toAminoMsg(message: MsgEscalateChallenge): MsgEscalateChallengeAminoMsg;
|
|
2093
2139
|
fromProtoMsg(message: MsgEscalateChallengeProtoMsg): MsgEscalateChallenge;
|
|
2094
2140
|
toProto(message: MsgEscalateChallenge): Uint8Array;
|
|
2095
2141
|
toProtoMsg(message: MsgEscalateChallenge): MsgEscalateChallengeProtoMsg;
|
|
@@ -2118,12 +2164,14 @@ export declare const MsgEscalateChallengeResponse: {
|
|
|
2118
2164
|
*/
|
|
2119
2165
|
export declare const MsgUpdateOperationalParams: {
|
|
2120
2166
|
typeUrl: string;
|
|
2167
|
+
aminoType: string;
|
|
2121
2168
|
encode(message: MsgUpdateOperationalParams, writer?: BinaryWriter): BinaryWriter;
|
|
2122
2169
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateOperationalParams;
|
|
2123
2170
|
fromPartial(object: DeepPartial<MsgUpdateOperationalParams>): MsgUpdateOperationalParams;
|
|
2124
2171
|
fromAmino(object: MsgUpdateOperationalParamsAmino): MsgUpdateOperationalParams;
|
|
2125
2172
|
toAmino(message: MsgUpdateOperationalParams): MsgUpdateOperationalParamsAmino;
|
|
2126
2173
|
fromAminoMsg(object: MsgUpdateOperationalParamsAminoMsg): MsgUpdateOperationalParams;
|
|
2174
|
+
toAminoMsg(message: MsgUpdateOperationalParams): MsgUpdateOperationalParamsAminoMsg;
|
|
2127
2175
|
fromProtoMsg(message: MsgUpdateOperationalParamsProtoMsg): MsgUpdateOperationalParams;
|
|
2128
2176
|
toProto(message: MsgUpdateOperationalParams): Uint8Array;
|
|
2129
2177
|
toProtoMsg(message: MsgUpdateOperationalParams): MsgUpdateOperationalParamsProtoMsg;
|