@sparkdreamnft/sparkdreamjs 0.0.11 → 0.0.12
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/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 +13 -13
- 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 +3 -3
- 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/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 +653 -0
- package/sparkdream/client.d.ts +15 -0
- 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.js +13 -13
- 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.js +3 -3
- 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
|
@@ -170,6 +170,7 @@ function createBaseMsgShieldedExec() {
|
|
|
170
170
|
*/
|
|
171
171
|
export const MsgShieldedExec = {
|
|
172
172
|
typeUrl: "/sparkdream.shield.v1.MsgShieldedExec",
|
|
173
|
+
aminoType: "sparkdream/x/shield/MsgShieldedExec",
|
|
173
174
|
encode(message, writer = BinaryWriter.create()) {
|
|
174
175
|
if (message.submitter !== "") {
|
|
175
176
|
writer.uint32(10).string(message.submitter);
|
|
@@ -323,6 +324,12 @@ export const MsgShieldedExec = {
|
|
|
323
324
|
fromAminoMsg(object) {
|
|
324
325
|
return MsgShieldedExec.fromAmino(object.value);
|
|
325
326
|
},
|
|
327
|
+
toAminoMsg(message) {
|
|
328
|
+
return {
|
|
329
|
+
type: "sparkdream/x/shield/MsgShieldedExec",
|
|
330
|
+
value: MsgShieldedExec.toAmino(message)
|
|
331
|
+
};
|
|
332
|
+
},
|
|
326
333
|
fromProtoMsg(message) {
|
|
327
334
|
return MsgShieldedExec.decode(message.value);
|
|
328
335
|
},
|
|
@@ -431,6 +438,7 @@ function createBaseMsgTriggerDkg() {
|
|
|
431
438
|
*/
|
|
432
439
|
export const MsgTriggerDkg = {
|
|
433
440
|
typeUrl: "/sparkdream.shield.v1.MsgTriggerDkg",
|
|
441
|
+
aminoType: "sparkdream/x/shield/MsgTriggerDkg",
|
|
434
442
|
encode(message, writer = BinaryWriter.create()) {
|
|
435
443
|
if (message.authority !== "") {
|
|
436
444
|
writer.uint32(10).string(message.authority);
|
|
@@ -496,6 +504,12 @@ export const MsgTriggerDkg = {
|
|
|
496
504
|
fromAminoMsg(object) {
|
|
497
505
|
return MsgTriggerDkg.fromAmino(object.value);
|
|
498
506
|
},
|
|
507
|
+
toAminoMsg(message) {
|
|
508
|
+
return {
|
|
509
|
+
type: "sparkdream/x/shield/MsgTriggerDkg",
|
|
510
|
+
value: MsgTriggerDkg.toAmino(message)
|
|
511
|
+
};
|
|
512
|
+
},
|
|
499
513
|
fromProtoMsg(message) {
|
|
500
514
|
return MsgTriggerDkg.decode(message.value);
|
|
501
515
|
},
|
|
@@ -578,6 +592,7 @@ function createBaseMsgRegisterShieldedOp() {
|
|
|
578
592
|
*/
|
|
579
593
|
export const MsgRegisterShieldedOp = {
|
|
580
594
|
typeUrl: "/sparkdream.shield.v1.MsgRegisterShieldedOp",
|
|
595
|
+
aminoType: "sparkdream/x/shield/MsgRegisterShieldedOp",
|
|
581
596
|
encode(message, writer = BinaryWriter.create()) {
|
|
582
597
|
if (message.authority !== "") {
|
|
583
598
|
writer.uint32(10).string(message.authority);
|
|
@@ -632,6 +647,12 @@ export const MsgRegisterShieldedOp = {
|
|
|
632
647
|
fromAminoMsg(object) {
|
|
633
648
|
return MsgRegisterShieldedOp.fromAmino(object.value);
|
|
634
649
|
},
|
|
650
|
+
toAminoMsg(message) {
|
|
651
|
+
return {
|
|
652
|
+
type: "sparkdream/x/shield/MsgRegisterShieldedOp",
|
|
653
|
+
value: MsgRegisterShieldedOp.toAmino(message)
|
|
654
|
+
};
|
|
655
|
+
},
|
|
635
656
|
fromProtoMsg(message) {
|
|
636
657
|
return MsgRegisterShieldedOp.decode(message.value);
|
|
637
658
|
},
|
|
@@ -714,6 +735,7 @@ function createBaseMsgDeregisterShieldedOp() {
|
|
|
714
735
|
*/
|
|
715
736
|
export const MsgDeregisterShieldedOp = {
|
|
716
737
|
typeUrl: "/sparkdream.shield.v1.MsgDeregisterShieldedOp",
|
|
738
|
+
aminoType: "sparkdream/x/shield/MsgDeregisterShieldedOp",
|
|
717
739
|
encode(message, writer = BinaryWriter.create()) {
|
|
718
740
|
if (message.authority !== "") {
|
|
719
741
|
writer.uint32(10).string(message.authority);
|
|
@@ -768,6 +790,12 @@ export const MsgDeregisterShieldedOp = {
|
|
|
768
790
|
fromAminoMsg(object) {
|
|
769
791
|
return MsgDeregisterShieldedOp.fromAmino(object.value);
|
|
770
792
|
},
|
|
793
|
+
toAminoMsg(message) {
|
|
794
|
+
return {
|
|
795
|
+
type: "sparkdream/x/shield/MsgDeregisterShieldedOp",
|
|
796
|
+
value: MsgDeregisterShieldedOp.toAmino(message)
|
|
797
|
+
};
|
|
798
|
+
},
|
|
771
799
|
fromProtoMsg(message) {
|
|
772
800
|
return MsgDeregisterShieldedOp.decode(message.value);
|
|
773
801
|
},
|
package/package.json
CHANGED
|
@@ -15,72 +15,72 @@ exports.AminoConverter = {
|
|
|
15
15
|
fromAmino: tx_1.MsgUpdateOperationalParams.fromAmino
|
|
16
16
|
},
|
|
17
17
|
"/sparkdream.blog.v1.MsgCreatePost": {
|
|
18
|
-
aminoType: "/
|
|
18
|
+
aminoType: "sparkdream/x/blog/MsgCreatePost",
|
|
19
19
|
toAmino: tx_1.MsgCreatePost.toAmino,
|
|
20
20
|
fromAmino: tx_1.MsgCreatePost.fromAmino
|
|
21
21
|
},
|
|
22
22
|
"/sparkdream.blog.v1.MsgUpdatePost": {
|
|
23
|
-
aminoType: "/
|
|
23
|
+
aminoType: "sparkdream/x/blog/MsgUpdatePost",
|
|
24
24
|
toAmino: tx_1.MsgUpdatePost.toAmino,
|
|
25
25
|
fromAmino: tx_1.MsgUpdatePost.fromAmino
|
|
26
26
|
},
|
|
27
27
|
"/sparkdream.blog.v1.MsgDeletePost": {
|
|
28
|
-
aminoType: "/
|
|
28
|
+
aminoType: "sparkdream/x/blog/MsgDeletePost",
|
|
29
29
|
toAmino: tx_1.MsgDeletePost.toAmino,
|
|
30
30
|
fromAmino: tx_1.MsgDeletePost.fromAmino
|
|
31
31
|
},
|
|
32
32
|
"/sparkdream.blog.v1.MsgHidePost": {
|
|
33
|
-
aminoType: "/
|
|
33
|
+
aminoType: "sparkdream/x/blog/MsgHidePost",
|
|
34
34
|
toAmino: tx_1.MsgHidePost.toAmino,
|
|
35
35
|
fromAmino: tx_1.MsgHidePost.fromAmino
|
|
36
36
|
},
|
|
37
37
|
"/sparkdream.blog.v1.MsgUnhidePost": {
|
|
38
|
-
aminoType: "/
|
|
38
|
+
aminoType: "sparkdream/x/blog/MsgUnhidePost",
|
|
39
39
|
toAmino: tx_1.MsgUnhidePost.toAmino,
|
|
40
40
|
fromAmino: tx_1.MsgUnhidePost.fromAmino
|
|
41
41
|
},
|
|
42
42
|
"/sparkdream.blog.v1.MsgCreateReply": {
|
|
43
|
-
aminoType: "/
|
|
43
|
+
aminoType: "sparkdream/x/blog/MsgCreateReply",
|
|
44
44
|
toAmino: tx_1.MsgCreateReply.toAmino,
|
|
45
45
|
fromAmino: tx_1.MsgCreateReply.fromAmino
|
|
46
46
|
},
|
|
47
47
|
"/sparkdream.blog.v1.MsgUpdateReply": {
|
|
48
|
-
aminoType: "/
|
|
48
|
+
aminoType: "sparkdream/x/blog/MsgUpdateReply",
|
|
49
49
|
toAmino: tx_1.MsgUpdateReply.toAmino,
|
|
50
50
|
fromAmino: tx_1.MsgUpdateReply.fromAmino
|
|
51
51
|
},
|
|
52
52
|
"/sparkdream.blog.v1.MsgDeleteReply": {
|
|
53
|
-
aminoType: "/
|
|
53
|
+
aminoType: "sparkdream/x/blog/MsgDeleteReply",
|
|
54
54
|
toAmino: tx_1.MsgDeleteReply.toAmino,
|
|
55
55
|
fromAmino: tx_1.MsgDeleteReply.fromAmino
|
|
56
56
|
},
|
|
57
57
|
"/sparkdream.blog.v1.MsgHideReply": {
|
|
58
|
-
aminoType: "/
|
|
58
|
+
aminoType: "sparkdream/x/blog/MsgHideReply",
|
|
59
59
|
toAmino: tx_1.MsgHideReply.toAmino,
|
|
60
60
|
fromAmino: tx_1.MsgHideReply.fromAmino
|
|
61
61
|
},
|
|
62
62
|
"/sparkdream.blog.v1.MsgUnhideReply": {
|
|
63
|
-
aminoType: "/
|
|
63
|
+
aminoType: "sparkdream/x/blog/MsgUnhideReply",
|
|
64
64
|
toAmino: tx_1.MsgUnhideReply.toAmino,
|
|
65
65
|
fromAmino: tx_1.MsgUnhideReply.fromAmino
|
|
66
66
|
},
|
|
67
67
|
"/sparkdream.blog.v1.MsgReact": {
|
|
68
|
-
aminoType: "/
|
|
68
|
+
aminoType: "sparkdream/x/blog/MsgReact",
|
|
69
69
|
toAmino: tx_1.MsgReact.toAmino,
|
|
70
70
|
fromAmino: tx_1.MsgReact.fromAmino
|
|
71
71
|
},
|
|
72
72
|
"/sparkdream.blog.v1.MsgRemoveReaction": {
|
|
73
|
-
aminoType: "/
|
|
73
|
+
aminoType: "sparkdream/x/blog/MsgRemoveReaction",
|
|
74
74
|
toAmino: tx_1.MsgRemoveReaction.toAmino,
|
|
75
75
|
fromAmino: tx_1.MsgRemoveReaction.fromAmino
|
|
76
76
|
},
|
|
77
77
|
"/sparkdream.blog.v1.MsgPinPost": {
|
|
78
|
-
aminoType: "/
|
|
78
|
+
aminoType: "sparkdream/x/blog/MsgPinPost",
|
|
79
79
|
toAmino: tx_1.MsgPinPost.toAmino,
|
|
80
80
|
fromAmino: tx_1.MsgPinPost.fromAmino
|
|
81
81
|
},
|
|
82
82
|
"/sparkdream.blog.v1.MsgPinReply": {
|
|
83
|
-
aminoType: "/
|
|
83
|
+
aminoType: "sparkdream/x/blog/MsgPinReply",
|
|
84
84
|
toAmino: tx_1.MsgPinReply.toAmino,
|
|
85
85
|
fromAmino: tx_1.MsgPinReply.fromAmino
|
|
86
86
|
}
|
|
@@ -204,7 +204,7 @@ export interface MsgCreatePostAmino {
|
|
|
204
204
|
tags?: string[];
|
|
205
205
|
}
|
|
206
206
|
export interface MsgCreatePostAminoMsg {
|
|
207
|
-
type: "/
|
|
207
|
+
type: "sparkdream/x/blog/MsgCreatePost";
|
|
208
208
|
value: MsgCreatePostAmino;
|
|
209
209
|
}
|
|
210
210
|
/**
|
|
@@ -282,7 +282,7 @@ export interface MsgUpdatePostAmino {
|
|
|
282
282
|
tags?: string[];
|
|
283
283
|
}
|
|
284
284
|
export interface MsgUpdatePostAminoMsg {
|
|
285
|
-
type: "/
|
|
285
|
+
type: "sparkdream/x/blog/MsgUpdatePost";
|
|
286
286
|
value: MsgUpdatePostAmino;
|
|
287
287
|
}
|
|
288
288
|
/**
|
|
@@ -334,7 +334,7 @@ export interface MsgDeletePostAmino {
|
|
|
334
334
|
id?: string;
|
|
335
335
|
}
|
|
336
336
|
export interface MsgDeletePostAminoMsg {
|
|
337
|
-
type: "/
|
|
337
|
+
type: "sparkdream/x/blog/MsgDeletePost";
|
|
338
338
|
value: MsgDeletePostAmino;
|
|
339
339
|
}
|
|
340
340
|
/**
|
|
@@ -386,7 +386,7 @@ export interface MsgHidePostAmino {
|
|
|
386
386
|
id?: string;
|
|
387
387
|
}
|
|
388
388
|
export interface MsgHidePostAminoMsg {
|
|
389
|
-
type: "/
|
|
389
|
+
type: "sparkdream/x/blog/MsgHidePost";
|
|
390
390
|
value: MsgHidePostAmino;
|
|
391
391
|
}
|
|
392
392
|
/**
|
|
@@ -438,7 +438,7 @@ export interface MsgUnhidePostAmino {
|
|
|
438
438
|
id?: string;
|
|
439
439
|
}
|
|
440
440
|
export interface MsgUnhidePostAminoMsg {
|
|
441
|
-
type: "/
|
|
441
|
+
type: "sparkdream/x/blog/MsgUnhidePost";
|
|
442
442
|
value: MsgUnhidePostAmino;
|
|
443
443
|
}
|
|
444
444
|
/**
|
|
@@ -504,7 +504,7 @@ export interface MsgCreateReplyAmino {
|
|
|
504
504
|
author_bond?: string;
|
|
505
505
|
}
|
|
506
506
|
export interface MsgCreateReplyAminoMsg {
|
|
507
|
-
type: "/
|
|
507
|
+
type: "sparkdream/x/blog/MsgCreateReply";
|
|
508
508
|
value: MsgCreateReplyAmino;
|
|
509
509
|
}
|
|
510
510
|
/**
|
|
@@ -562,7 +562,7 @@ export interface MsgUpdateReplyAmino {
|
|
|
562
562
|
content_type?: ContentType;
|
|
563
563
|
}
|
|
564
564
|
export interface MsgUpdateReplyAminoMsg {
|
|
565
|
-
type: "/
|
|
565
|
+
type: "sparkdream/x/blog/MsgUpdateReply";
|
|
566
566
|
value: MsgUpdateReplyAmino;
|
|
567
567
|
}
|
|
568
568
|
/**
|
|
@@ -614,7 +614,7 @@ export interface MsgDeleteReplyAmino {
|
|
|
614
614
|
id?: string;
|
|
615
615
|
}
|
|
616
616
|
export interface MsgDeleteReplyAminoMsg {
|
|
617
|
-
type: "/
|
|
617
|
+
type: "sparkdream/x/blog/MsgDeleteReply";
|
|
618
618
|
value: MsgDeleteReplyAmino;
|
|
619
619
|
}
|
|
620
620
|
/**
|
|
@@ -666,7 +666,7 @@ export interface MsgHideReplyAmino {
|
|
|
666
666
|
id?: string;
|
|
667
667
|
}
|
|
668
668
|
export interface MsgHideReplyAminoMsg {
|
|
669
|
-
type: "/
|
|
669
|
+
type: "sparkdream/x/blog/MsgHideReply";
|
|
670
670
|
value: MsgHideReplyAmino;
|
|
671
671
|
}
|
|
672
672
|
/**
|
|
@@ -718,7 +718,7 @@ export interface MsgUnhideReplyAmino {
|
|
|
718
718
|
id?: string;
|
|
719
719
|
}
|
|
720
720
|
export interface MsgUnhideReplyAminoMsg {
|
|
721
|
-
type: "/
|
|
721
|
+
type: "sparkdream/x/blog/MsgUnhideReply";
|
|
722
722
|
value: MsgUnhideReplyAmino;
|
|
723
723
|
}
|
|
724
724
|
/**
|
|
@@ -780,7 +780,7 @@ export interface MsgReactAmino {
|
|
|
780
780
|
reaction_type?: ReactionType;
|
|
781
781
|
}
|
|
782
782
|
export interface MsgReactAminoMsg {
|
|
783
|
-
type: "/
|
|
783
|
+
type: "sparkdream/x/blog/MsgReact";
|
|
784
784
|
value: MsgReactAmino;
|
|
785
785
|
}
|
|
786
786
|
/**
|
|
@@ -834,7 +834,7 @@ export interface MsgRemoveReactionAmino {
|
|
|
834
834
|
reply_id?: string;
|
|
835
835
|
}
|
|
836
836
|
export interface MsgRemoveReactionAminoMsg {
|
|
837
|
-
type: "/
|
|
837
|
+
type: "sparkdream/x/blog/MsgRemoveReaction";
|
|
838
838
|
value: MsgRemoveReactionAmino;
|
|
839
839
|
}
|
|
840
840
|
/**
|
|
@@ -886,7 +886,7 @@ export interface MsgPinPostAmino {
|
|
|
886
886
|
id?: string;
|
|
887
887
|
}
|
|
888
888
|
export interface MsgPinPostAminoMsg {
|
|
889
|
-
type: "/
|
|
889
|
+
type: "sparkdream/x/blog/MsgPinPost";
|
|
890
890
|
value: MsgPinPostAmino;
|
|
891
891
|
}
|
|
892
892
|
/**
|
|
@@ -938,7 +938,7 @@ export interface MsgPinReplyAmino {
|
|
|
938
938
|
id?: string;
|
|
939
939
|
}
|
|
940
940
|
export interface MsgPinReplyAminoMsg {
|
|
941
|
-
type: "/
|
|
941
|
+
type: "sparkdream/x/blog/MsgPinReply";
|
|
942
942
|
value: MsgPinReplyAmino;
|
|
943
943
|
}
|
|
944
944
|
/**
|
|
@@ -1052,12 +1052,14 @@ export declare const MsgUpdateOperationalParamsResponse: {
|
|
|
1052
1052
|
*/
|
|
1053
1053
|
export declare const MsgCreatePost: {
|
|
1054
1054
|
typeUrl: string;
|
|
1055
|
+
aminoType: string;
|
|
1055
1056
|
encode(message: MsgCreatePost, writer?: BinaryWriter): BinaryWriter;
|
|
1056
1057
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreatePost;
|
|
1057
1058
|
fromPartial(object: DeepPartial<MsgCreatePost>): MsgCreatePost;
|
|
1058
1059
|
fromAmino(object: MsgCreatePostAmino): MsgCreatePost;
|
|
1059
1060
|
toAmino(message: MsgCreatePost): MsgCreatePostAmino;
|
|
1060
1061
|
fromAminoMsg(object: MsgCreatePostAminoMsg): MsgCreatePost;
|
|
1062
|
+
toAminoMsg(message: MsgCreatePost): MsgCreatePostAminoMsg;
|
|
1061
1063
|
fromProtoMsg(message: MsgCreatePostProtoMsg): MsgCreatePost;
|
|
1062
1064
|
toProto(message: MsgCreatePost): Uint8Array;
|
|
1063
1065
|
toProtoMsg(message: MsgCreatePost): MsgCreatePostProtoMsg;
|
|
@@ -1088,12 +1090,14 @@ export declare const MsgCreatePostResponse: {
|
|
|
1088
1090
|
*/
|
|
1089
1091
|
export declare const MsgUpdatePost: {
|
|
1090
1092
|
typeUrl: string;
|
|
1093
|
+
aminoType: string;
|
|
1091
1094
|
encode(message: MsgUpdatePost, writer?: BinaryWriter): BinaryWriter;
|
|
1092
1095
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdatePost;
|
|
1093
1096
|
fromPartial(object: DeepPartial<MsgUpdatePost>): MsgUpdatePost;
|
|
1094
1097
|
fromAmino(object: MsgUpdatePostAmino): MsgUpdatePost;
|
|
1095
1098
|
toAmino(message: MsgUpdatePost): MsgUpdatePostAmino;
|
|
1096
1099
|
fromAminoMsg(object: MsgUpdatePostAminoMsg): MsgUpdatePost;
|
|
1100
|
+
toAminoMsg(message: MsgUpdatePost): MsgUpdatePostAminoMsg;
|
|
1097
1101
|
fromProtoMsg(message: MsgUpdatePostProtoMsg): MsgUpdatePost;
|
|
1098
1102
|
toProto(message: MsgUpdatePost): Uint8Array;
|
|
1099
1103
|
toProtoMsg(message: MsgUpdatePost): MsgUpdatePostProtoMsg;
|
|
@@ -1124,12 +1128,14 @@ export declare const MsgUpdatePostResponse: {
|
|
|
1124
1128
|
*/
|
|
1125
1129
|
export declare const MsgDeletePost: {
|
|
1126
1130
|
typeUrl: string;
|
|
1131
|
+
aminoType: string;
|
|
1127
1132
|
encode(message: MsgDeletePost, writer?: BinaryWriter): BinaryWriter;
|
|
1128
1133
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgDeletePost;
|
|
1129
1134
|
fromPartial(object: DeepPartial<MsgDeletePost>): MsgDeletePost;
|
|
1130
1135
|
fromAmino(object: MsgDeletePostAmino): MsgDeletePost;
|
|
1131
1136
|
toAmino(message: MsgDeletePost): MsgDeletePostAmino;
|
|
1132
1137
|
fromAminoMsg(object: MsgDeletePostAminoMsg): MsgDeletePost;
|
|
1138
|
+
toAminoMsg(message: MsgDeletePost): MsgDeletePostAminoMsg;
|
|
1133
1139
|
fromProtoMsg(message: MsgDeletePostProtoMsg): MsgDeletePost;
|
|
1134
1140
|
toProto(message: MsgDeletePost): Uint8Array;
|
|
1135
1141
|
toProtoMsg(message: MsgDeletePost): MsgDeletePostProtoMsg;
|
|
@@ -1160,12 +1166,14 @@ export declare const MsgDeletePostResponse: {
|
|
|
1160
1166
|
*/
|
|
1161
1167
|
export declare const MsgHidePost: {
|
|
1162
1168
|
typeUrl: string;
|
|
1169
|
+
aminoType: string;
|
|
1163
1170
|
encode(message: MsgHidePost, writer?: BinaryWriter): BinaryWriter;
|
|
1164
1171
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgHidePost;
|
|
1165
1172
|
fromPartial(object: DeepPartial<MsgHidePost>): MsgHidePost;
|
|
1166
1173
|
fromAmino(object: MsgHidePostAmino): MsgHidePost;
|
|
1167
1174
|
toAmino(message: MsgHidePost): MsgHidePostAmino;
|
|
1168
1175
|
fromAminoMsg(object: MsgHidePostAminoMsg): MsgHidePost;
|
|
1176
|
+
toAminoMsg(message: MsgHidePost): MsgHidePostAminoMsg;
|
|
1169
1177
|
fromProtoMsg(message: MsgHidePostProtoMsg): MsgHidePost;
|
|
1170
1178
|
toProto(message: MsgHidePost): Uint8Array;
|
|
1171
1179
|
toProtoMsg(message: MsgHidePost): MsgHidePostProtoMsg;
|
|
@@ -1196,12 +1204,14 @@ export declare const MsgHidePostResponse: {
|
|
|
1196
1204
|
*/
|
|
1197
1205
|
export declare const MsgUnhidePost: {
|
|
1198
1206
|
typeUrl: string;
|
|
1207
|
+
aminoType: string;
|
|
1199
1208
|
encode(message: MsgUnhidePost, writer?: BinaryWriter): BinaryWriter;
|
|
1200
1209
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnhidePost;
|
|
1201
1210
|
fromPartial(object: DeepPartial<MsgUnhidePost>): MsgUnhidePost;
|
|
1202
1211
|
fromAmino(object: MsgUnhidePostAmino): MsgUnhidePost;
|
|
1203
1212
|
toAmino(message: MsgUnhidePost): MsgUnhidePostAmino;
|
|
1204
1213
|
fromAminoMsg(object: MsgUnhidePostAminoMsg): MsgUnhidePost;
|
|
1214
|
+
toAminoMsg(message: MsgUnhidePost): MsgUnhidePostAminoMsg;
|
|
1205
1215
|
fromProtoMsg(message: MsgUnhidePostProtoMsg): MsgUnhidePost;
|
|
1206
1216
|
toProto(message: MsgUnhidePost): Uint8Array;
|
|
1207
1217
|
toProtoMsg(message: MsgUnhidePost): MsgUnhidePostProtoMsg;
|
|
@@ -1232,12 +1242,14 @@ export declare const MsgUnhidePostResponse: {
|
|
|
1232
1242
|
*/
|
|
1233
1243
|
export declare const MsgCreateReply: {
|
|
1234
1244
|
typeUrl: string;
|
|
1245
|
+
aminoType: string;
|
|
1235
1246
|
encode(message: MsgCreateReply, writer?: BinaryWriter): BinaryWriter;
|
|
1236
1247
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateReply;
|
|
1237
1248
|
fromPartial(object: DeepPartial<MsgCreateReply>): MsgCreateReply;
|
|
1238
1249
|
fromAmino(object: MsgCreateReplyAmino): MsgCreateReply;
|
|
1239
1250
|
toAmino(message: MsgCreateReply): MsgCreateReplyAmino;
|
|
1240
1251
|
fromAminoMsg(object: MsgCreateReplyAminoMsg): MsgCreateReply;
|
|
1252
|
+
toAminoMsg(message: MsgCreateReply): MsgCreateReplyAminoMsg;
|
|
1241
1253
|
fromProtoMsg(message: MsgCreateReplyProtoMsg): MsgCreateReply;
|
|
1242
1254
|
toProto(message: MsgCreateReply): Uint8Array;
|
|
1243
1255
|
toProtoMsg(message: MsgCreateReply): MsgCreateReplyProtoMsg;
|
|
@@ -1268,12 +1280,14 @@ export declare const MsgCreateReplyResponse: {
|
|
|
1268
1280
|
*/
|
|
1269
1281
|
export declare const MsgUpdateReply: {
|
|
1270
1282
|
typeUrl: string;
|
|
1283
|
+
aminoType: string;
|
|
1271
1284
|
encode(message: MsgUpdateReply, writer?: BinaryWriter): BinaryWriter;
|
|
1272
1285
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateReply;
|
|
1273
1286
|
fromPartial(object: DeepPartial<MsgUpdateReply>): MsgUpdateReply;
|
|
1274
1287
|
fromAmino(object: MsgUpdateReplyAmino): MsgUpdateReply;
|
|
1275
1288
|
toAmino(message: MsgUpdateReply): MsgUpdateReplyAmino;
|
|
1276
1289
|
fromAminoMsg(object: MsgUpdateReplyAminoMsg): MsgUpdateReply;
|
|
1290
|
+
toAminoMsg(message: MsgUpdateReply): MsgUpdateReplyAminoMsg;
|
|
1277
1291
|
fromProtoMsg(message: MsgUpdateReplyProtoMsg): MsgUpdateReply;
|
|
1278
1292
|
toProto(message: MsgUpdateReply): Uint8Array;
|
|
1279
1293
|
toProtoMsg(message: MsgUpdateReply): MsgUpdateReplyProtoMsg;
|
|
@@ -1304,12 +1318,14 @@ export declare const MsgUpdateReplyResponse: {
|
|
|
1304
1318
|
*/
|
|
1305
1319
|
export declare const MsgDeleteReply: {
|
|
1306
1320
|
typeUrl: string;
|
|
1321
|
+
aminoType: string;
|
|
1307
1322
|
encode(message: MsgDeleteReply, writer?: BinaryWriter): BinaryWriter;
|
|
1308
1323
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgDeleteReply;
|
|
1309
1324
|
fromPartial(object: DeepPartial<MsgDeleteReply>): MsgDeleteReply;
|
|
1310
1325
|
fromAmino(object: MsgDeleteReplyAmino): MsgDeleteReply;
|
|
1311
1326
|
toAmino(message: MsgDeleteReply): MsgDeleteReplyAmino;
|
|
1312
1327
|
fromAminoMsg(object: MsgDeleteReplyAminoMsg): MsgDeleteReply;
|
|
1328
|
+
toAminoMsg(message: MsgDeleteReply): MsgDeleteReplyAminoMsg;
|
|
1313
1329
|
fromProtoMsg(message: MsgDeleteReplyProtoMsg): MsgDeleteReply;
|
|
1314
1330
|
toProto(message: MsgDeleteReply): Uint8Array;
|
|
1315
1331
|
toProtoMsg(message: MsgDeleteReply): MsgDeleteReplyProtoMsg;
|
|
@@ -1340,12 +1356,14 @@ export declare const MsgDeleteReplyResponse: {
|
|
|
1340
1356
|
*/
|
|
1341
1357
|
export declare const MsgHideReply: {
|
|
1342
1358
|
typeUrl: string;
|
|
1359
|
+
aminoType: string;
|
|
1343
1360
|
encode(message: MsgHideReply, writer?: BinaryWriter): BinaryWriter;
|
|
1344
1361
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgHideReply;
|
|
1345
1362
|
fromPartial(object: DeepPartial<MsgHideReply>): MsgHideReply;
|
|
1346
1363
|
fromAmino(object: MsgHideReplyAmino): MsgHideReply;
|
|
1347
1364
|
toAmino(message: MsgHideReply): MsgHideReplyAmino;
|
|
1348
1365
|
fromAminoMsg(object: MsgHideReplyAminoMsg): MsgHideReply;
|
|
1366
|
+
toAminoMsg(message: MsgHideReply): MsgHideReplyAminoMsg;
|
|
1349
1367
|
fromProtoMsg(message: MsgHideReplyProtoMsg): MsgHideReply;
|
|
1350
1368
|
toProto(message: MsgHideReply): Uint8Array;
|
|
1351
1369
|
toProtoMsg(message: MsgHideReply): MsgHideReplyProtoMsg;
|
|
@@ -1376,12 +1394,14 @@ export declare const MsgHideReplyResponse: {
|
|
|
1376
1394
|
*/
|
|
1377
1395
|
export declare const MsgUnhideReply: {
|
|
1378
1396
|
typeUrl: string;
|
|
1397
|
+
aminoType: string;
|
|
1379
1398
|
encode(message: MsgUnhideReply, writer?: BinaryWriter): BinaryWriter;
|
|
1380
1399
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnhideReply;
|
|
1381
1400
|
fromPartial(object: DeepPartial<MsgUnhideReply>): MsgUnhideReply;
|
|
1382
1401
|
fromAmino(object: MsgUnhideReplyAmino): MsgUnhideReply;
|
|
1383
1402
|
toAmino(message: MsgUnhideReply): MsgUnhideReplyAmino;
|
|
1384
1403
|
fromAminoMsg(object: MsgUnhideReplyAminoMsg): MsgUnhideReply;
|
|
1404
|
+
toAminoMsg(message: MsgUnhideReply): MsgUnhideReplyAminoMsg;
|
|
1385
1405
|
fromProtoMsg(message: MsgUnhideReplyProtoMsg): MsgUnhideReply;
|
|
1386
1406
|
toProto(message: MsgUnhideReply): Uint8Array;
|
|
1387
1407
|
toProtoMsg(message: MsgUnhideReply): MsgUnhideReplyProtoMsg;
|
|
@@ -1412,12 +1432,14 @@ export declare const MsgUnhideReplyResponse: {
|
|
|
1412
1432
|
*/
|
|
1413
1433
|
export declare const MsgReact: {
|
|
1414
1434
|
typeUrl: string;
|
|
1435
|
+
aminoType: string;
|
|
1415
1436
|
encode(message: MsgReact, writer?: BinaryWriter): BinaryWriter;
|
|
1416
1437
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgReact;
|
|
1417
1438
|
fromPartial(object: DeepPartial<MsgReact>): MsgReact;
|
|
1418
1439
|
fromAmino(object: MsgReactAmino): MsgReact;
|
|
1419
1440
|
toAmino(message: MsgReact): MsgReactAmino;
|
|
1420
1441
|
fromAminoMsg(object: MsgReactAminoMsg): MsgReact;
|
|
1442
|
+
toAminoMsg(message: MsgReact): MsgReactAminoMsg;
|
|
1421
1443
|
fromProtoMsg(message: MsgReactProtoMsg): MsgReact;
|
|
1422
1444
|
toProto(message: MsgReact): Uint8Array;
|
|
1423
1445
|
toProtoMsg(message: MsgReact): MsgReactProtoMsg;
|
|
@@ -1448,12 +1470,14 @@ export declare const MsgReactResponse: {
|
|
|
1448
1470
|
*/
|
|
1449
1471
|
export declare const MsgRemoveReaction: {
|
|
1450
1472
|
typeUrl: string;
|
|
1473
|
+
aminoType: string;
|
|
1451
1474
|
encode(message: MsgRemoveReaction, writer?: BinaryWriter): BinaryWriter;
|
|
1452
1475
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveReaction;
|
|
1453
1476
|
fromPartial(object: DeepPartial<MsgRemoveReaction>): MsgRemoveReaction;
|
|
1454
1477
|
fromAmino(object: MsgRemoveReactionAmino): MsgRemoveReaction;
|
|
1455
1478
|
toAmino(message: MsgRemoveReaction): MsgRemoveReactionAmino;
|
|
1456
1479
|
fromAminoMsg(object: MsgRemoveReactionAminoMsg): MsgRemoveReaction;
|
|
1480
|
+
toAminoMsg(message: MsgRemoveReaction): MsgRemoveReactionAminoMsg;
|
|
1457
1481
|
fromProtoMsg(message: MsgRemoveReactionProtoMsg): MsgRemoveReaction;
|
|
1458
1482
|
toProto(message: MsgRemoveReaction): Uint8Array;
|
|
1459
1483
|
toProtoMsg(message: MsgRemoveReaction): MsgRemoveReactionProtoMsg;
|
|
@@ -1484,12 +1508,14 @@ export declare const MsgRemoveReactionResponse: {
|
|
|
1484
1508
|
*/
|
|
1485
1509
|
export declare const MsgPinPost: {
|
|
1486
1510
|
typeUrl: string;
|
|
1511
|
+
aminoType: string;
|
|
1487
1512
|
encode(message: MsgPinPost, writer?: BinaryWriter): BinaryWriter;
|
|
1488
1513
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgPinPost;
|
|
1489
1514
|
fromPartial(object: DeepPartial<MsgPinPost>): MsgPinPost;
|
|
1490
1515
|
fromAmino(object: MsgPinPostAmino): MsgPinPost;
|
|
1491
1516
|
toAmino(message: MsgPinPost): MsgPinPostAmino;
|
|
1492
1517
|
fromAminoMsg(object: MsgPinPostAminoMsg): MsgPinPost;
|
|
1518
|
+
toAminoMsg(message: MsgPinPost): MsgPinPostAminoMsg;
|
|
1493
1519
|
fromProtoMsg(message: MsgPinPostProtoMsg): MsgPinPost;
|
|
1494
1520
|
toProto(message: MsgPinPost): Uint8Array;
|
|
1495
1521
|
toProtoMsg(message: MsgPinPost): MsgPinPostProtoMsg;
|
|
@@ -1520,12 +1546,14 @@ export declare const MsgPinPostResponse: {
|
|
|
1520
1546
|
*/
|
|
1521
1547
|
export declare const MsgPinReply: {
|
|
1522
1548
|
typeUrl: string;
|
|
1549
|
+
aminoType: string;
|
|
1523
1550
|
encode(message: MsgPinReply, writer?: BinaryWriter): BinaryWriter;
|
|
1524
1551
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgPinReply;
|
|
1525
1552
|
fromPartial(object: DeepPartial<MsgPinReply>): MsgPinReply;
|
|
1526
1553
|
fromAmino(object: MsgPinReplyAmino): MsgPinReply;
|
|
1527
1554
|
toAmino(message: MsgPinReply): MsgPinReplyAmino;
|
|
1528
1555
|
fromAminoMsg(object: MsgPinReplyAminoMsg): MsgPinReply;
|
|
1556
|
+
toAminoMsg(message: MsgPinReply): MsgPinReplyAminoMsg;
|
|
1529
1557
|
fromProtoMsg(message: MsgPinReplyProtoMsg): MsgPinReply;
|
|
1530
1558
|
toProto(message: MsgPinReply): Uint8Array;
|
|
1531
1559
|
toProtoMsg(message: MsgPinReply): MsgPinReplyProtoMsg;
|