@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.
Files changed (106) hide show
  1. package/esm/nested-amino.js +52 -0
  2. package/esm/sparkdream/blog/v1/tx.amino.js +14 -14
  3. package/esm/sparkdream/blog/v1/tx.js +98 -0
  4. package/esm/sparkdream/collect/v1/tx.amino.js +25 -25
  5. package/esm/sparkdream/collect/v1/tx.js +175 -0
  6. package/esm/sparkdream/commons/v1/query.js +379 -1
  7. package/esm/sparkdream/commons/v1/query.lcd.js +21 -0
  8. package/esm/sparkdream/commons/v1/query.rpc.Query.js +24 -1
  9. package/esm/sparkdream/commons/v1/tx.amino.js +80 -41
  10. package/esm/sparkdream/commons/v1/tx.js +91 -0
  11. package/esm/sparkdream/federation/v1/tx.amino.js +24 -24
  12. package/esm/sparkdream/federation/v1/tx.js +168 -0
  13. package/esm/sparkdream/forum/v1/tx.amino.js +33 -33
  14. package/esm/sparkdream/forum/v1/tx.js +231 -0
  15. package/esm/sparkdream/futarchy/v1/tx.amino.js +4 -4
  16. package/esm/sparkdream/futarchy/v1/tx.js +28 -0
  17. package/esm/sparkdream/name/v1/name_record.js +33 -2
  18. package/esm/sparkdream/name/v1/query.js +166 -0
  19. package/esm/sparkdream/name/v1/query.lcd.js +13 -0
  20. package/esm/sparkdream/name/v1/query.rpc.Query.js +12 -1
  21. package/esm/sparkdream/name/v1/tx.amino.js +21 -6
  22. package/esm/sparkdream/name/v1/tx.js +500 -0
  23. package/esm/sparkdream/name/v1/tx.registry.js +56 -2
  24. package/esm/sparkdream/name/v1/tx.rpc.msg.js +24 -1
  25. package/esm/sparkdream/rep/v1/query.js +204 -0
  26. package/esm/sparkdream/rep/v1/query.lcd.js +5 -0
  27. package/esm/sparkdream/rep/v1/query.rpc.Query.js +10 -1
  28. package/esm/sparkdream/rep/v1/tx.amino.js +45 -45
  29. package/esm/sparkdream/rep/v1/tx.js +315 -0
  30. package/esm/sparkdream/reveal/v1/tx.amino.js +9 -9
  31. package/esm/sparkdream/reveal/v1/tx.js +63 -0
  32. package/esm/sparkdream/season/v1/tx.amino.js +25 -25
  33. package/esm/sparkdream/season/v1/tx.js +175 -0
  34. package/esm/sparkdream/session/v1/tx.amino.js +33 -11
  35. package/esm/sparkdream/session/v1/tx.js +21 -0
  36. package/esm/sparkdream/shield/v1/tx.amino.js +4 -4
  37. package/esm/sparkdream/shield/v1/tx.js +28 -0
  38. package/nested-amino.d.ts +76 -0
  39. package/nested-amino.js +57 -0
  40. package/package.json +1 -1
  41. package/sparkdream/blog/v1/tx.amino.js +14 -14
  42. package/sparkdream/blog/v1/tx.d.ts +42 -14
  43. package/sparkdream/blog/v1/tx.js +98 -0
  44. package/sparkdream/bundle.d.ts +661 -6
  45. package/sparkdream/client.d.ts +21 -6
  46. package/sparkdream/collect/v1/tx.amino.js +25 -25
  47. package/sparkdream/collect/v1/tx.d.ts +75 -25
  48. package/sparkdream/collect/v1/tx.js +175 -0
  49. package/sparkdream/commons/v1/query.d.ts +243 -1
  50. package/sparkdream/commons/v1/query.js +379 -1
  51. package/sparkdream/commons/v1/query.lcd.d.ts +3 -1
  52. package/sparkdream/commons/v1/query.lcd.js +21 -0
  53. package/sparkdream/commons/v1/query.rpc.Query.d.ts +16 -1
  54. package/sparkdream/commons/v1/query.rpc.Query.js +23 -0
  55. package/sparkdream/commons/v1/tx.amino.d.ts +6 -5
  56. package/sparkdream/commons/v1/tx.amino.js +82 -42
  57. package/sparkdream/commons/v1/tx.d.ts +39 -13
  58. package/sparkdream/commons/v1/tx.js +91 -0
  59. package/sparkdream/federation/v1/tx.amino.js +24 -24
  60. package/sparkdream/federation/v1/tx.d.ts +72 -24
  61. package/sparkdream/federation/v1/tx.js +168 -0
  62. package/sparkdream/forum/v1/tx.amino.js +33 -33
  63. package/sparkdream/forum/v1/tx.d.ts +99 -33
  64. package/sparkdream/forum/v1/tx.js +231 -0
  65. package/sparkdream/futarchy/v1/tx.amino.js +4 -4
  66. package/sparkdream/futarchy/v1/tx.d.ts +12 -4
  67. package/sparkdream/futarchy/v1/tx.js +28 -0
  68. package/sparkdream/name/v1/name_record.d.ts +46 -3
  69. package/sparkdream/name/v1/name_record.js +33 -2
  70. package/sparkdream/name/v1/query.d.ts +95 -0
  71. package/sparkdream/name/v1/query.js +167 -1
  72. package/sparkdream/name/v1/query.lcd.d.ts +2 -1
  73. package/sparkdream/name/v1/query.lcd.js +13 -0
  74. package/sparkdream/name/v1/query.rpc.Query.d.ts +9 -1
  75. package/sparkdream/name/v1/query.rpc.Query.js +11 -0
  76. package/sparkdream/name/v1/tx.amino.d.ts +16 -1
  77. package/sparkdream/name/v1/tx.amino.js +20 -5
  78. package/sparkdream/name/v1/tx.d.ts +336 -5
  79. package/sparkdream/name/v1/tx.js +501 -1
  80. package/sparkdream/name/v1/tx.registry.d.ts +37 -1
  81. package/sparkdream/name/v1/tx.registry.js +55 -1
  82. package/sparkdream/name/v1/tx.rpc.msg.d.ts +21 -1
  83. package/sparkdream/name/v1/tx.rpc.msg.js +23 -0
  84. package/sparkdream/rep/v1/query.d.ts +153 -1
  85. package/sparkdream/rep/v1/query.js +205 -1
  86. package/sparkdream/rep/v1/query.lcd.d.ts +2 -1
  87. package/sparkdream/rep/v1/query.lcd.js +5 -0
  88. package/sparkdream/rep/v1/query.rpc.Query.d.ts +5 -1
  89. package/sparkdream/rep/v1/query.rpc.Query.js +9 -0
  90. package/sparkdream/rep/v1/tx.amino.js +45 -45
  91. package/sparkdream/rep/v1/tx.d.ts +135 -45
  92. package/sparkdream/rep/v1/tx.js +315 -0
  93. package/sparkdream/reveal/v1/tx.amino.js +9 -9
  94. package/sparkdream/reveal/v1/tx.d.ts +27 -9
  95. package/sparkdream/reveal/v1/tx.js +63 -0
  96. package/sparkdream/rpc.query.d.ts +4 -0
  97. package/sparkdream/season/v1/tx.amino.js +25 -25
  98. package/sparkdream/season/v1/tx.d.ts +75 -25
  99. package/sparkdream/season/v1/tx.js +175 -0
  100. package/sparkdream/session/v1/tx.amino.d.ts +3 -3
  101. package/sparkdream/session/v1/tx.amino.js +33 -11
  102. package/sparkdream/session/v1/tx.d.ts +9 -3
  103. package/sparkdream/session/v1/tx.js +21 -0
  104. package/sparkdream/shield/v1/tx.amino.js +4 -4
  105. package/sparkdream/shield/v1/tx.d.ts +12 -4
  106. package/sparkdream/shield/v1/tx.js +28 -0
@@ -59,8 +59,8 @@ export declare const sparkdreamAminoConverters: {
59
59
  };
60
60
  "/sparkdream.session.v1.MsgExecSession": {
61
61
  aminoType: string;
62
- toAmino: (message: import("./session/v1/tx").MsgExecSession) => import("./session/v1/tx").MsgExecSessionAmino;
63
- fromAmino: (object: import("./session/v1/tx").MsgExecSessionAmino) => import("./session/v1/tx").MsgExecSession;
62
+ toAmino(message: any): any;
63
+ fromAmino(object: any): any;
64
64
  };
65
65
  "/sparkdream.season.v1.MsgUpdateParams": {
66
66
  aminoType: string;
@@ -607,6 +607,21 @@ export declare const sparkdreamAminoConverters: {
607
607
  toAmino: (message: import("./name/v1/tx").MsgSetDisplayName) => import("./name/v1/tx").MsgSetDisplayNameAmino;
608
608
  fromAmino: (object: import("./name/v1/tx").MsgSetDisplayNameAmino) => import("./name/v1/tx").MsgSetDisplayName;
609
609
  };
610
+ "/sparkdream.name.v1.MsgSetTarget": {
611
+ aminoType: string;
612
+ toAmino: (message: import("./name/v1/tx").MsgSetTarget) => import("./name/v1/tx").MsgSetTargetAmino;
613
+ fromAmino: (object: import("./name/v1/tx").MsgSetTargetAmino) => import("./name/v1/tx").MsgSetTarget;
614
+ };
615
+ "/sparkdream.name.v1.MsgAcceptTarget": {
616
+ aminoType: string;
617
+ toAmino: (message: import("./name/v1/tx").MsgAcceptTarget) => import("./name/v1/tx").MsgAcceptTargetAmino;
618
+ fromAmino: (object: import("./name/v1/tx").MsgAcceptTargetAmino) => import("./name/v1/tx").MsgAcceptTarget;
619
+ };
620
+ "/sparkdream.name.v1.MsgTransferName": {
621
+ aminoType: string;
622
+ toAmino: (message: import("./name/v1/tx").MsgTransferName) => import("./name/v1/tx").MsgTransferNameAmino;
623
+ fromAmino: (object: import("./name/v1/tx").MsgTransferNameAmino) => import("./name/v1/tx").MsgTransferName;
624
+ };
610
625
  "/sparkdream.futarchy.v1.MsgUpdateParams": {
611
626
  aminoType: string;
612
627
  toAmino: (message: import("./futarchy/v1/tx").MsgUpdateParams) => import("./futarchy/v1/tx").MsgUpdateParamsAmino;
@@ -1019,8 +1034,8 @@ export declare const sparkdreamAminoConverters: {
1019
1034
  };
1020
1035
  "/sparkdream.commons.v1.MsgSubmitProposal": {
1021
1036
  aminoType: string;
1022
- toAmino: (message: import("./commons/v1/tx").MsgSubmitProposal) => import("./commons/v1/tx").MsgSubmitProposalAmino;
1023
- fromAmino: (object: import("./commons/v1/tx").MsgSubmitProposalAmino) => import("./commons/v1/tx").MsgSubmitProposal;
1037
+ toAmino(message: any): any;
1038
+ fromAmino(object: any): any;
1024
1039
  };
1025
1040
  "/sparkdream.commons.v1.MsgVoteProposal": {
1026
1041
  aminoType: string;
@@ -1034,8 +1049,8 @@ export declare const sparkdreamAminoConverters: {
1034
1049
  };
1035
1050
  "/sparkdream.commons.v1.MsgSubmitAnonymousProposal": {
1036
1051
  aminoType: string;
1037
- toAmino: (message: import("./commons/v1/tx").MsgSubmitAnonymousProposal) => import("./commons/v1/tx").MsgSubmitAnonymousProposalAmino;
1038
- fromAmino: (object: import("./commons/v1/tx").MsgSubmitAnonymousProposalAmino) => import("./commons/v1/tx").MsgSubmitAnonymousProposal;
1052
+ toAmino(message: any): any;
1053
+ fromAmino(object: any): any;
1039
1054
  };
1040
1055
  "/sparkdream.commons.v1.MsgAnonymousVoteProposal": {
1041
1056
  aminoType: string;
@@ -10,87 +10,87 @@ exports.AminoConverter = {
10
10
  fromAmino: tx_1.MsgUpdateParams.fromAmino
11
11
  },
12
12
  "/sparkdream.collect.v1.MsgCreateCollection": {
13
- aminoType: "/sparkdream.collect.v1.MsgCreateCollection",
13
+ aminoType: "sparkdream/x/collect/MsgCreateCollection",
14
14
  toAmino: tx_1.MsgCreateCollection.toAmino,
15
15
  fromAmino: tx_1.MsgCreateCollection.fromAmino
16
16
  },
17
17
  "/sparkdream.collect.v1.MsgUpdateCollection": {
18
- aminoType: "/sparkdream.collect.v1.MsgUpdateCollection",
18
+ aminoType: "sparkdream/x/collect/MsgUpdateCollection",
19
19
  toAmino: tx_1.MsgUpdateCollection.toAmino,
20
20
  fromAmino: tx_1.MsgUpdateCollection.fromAmino
21
21
  },
22
22
  "/sparkdream.collect.v1.MsgDeleteCollection": {
23
- aminoType: "/sparkdream.collect.v1.MsgDeleteCollection",
23
+ aminoType: "sparkdream/x/collect/MsgDeleteCollection",
24
24
  toAmino: tx_1.MsgDeleteCollection.toAmino,
25
25
  fromAmino: tx_1.MsgDeleteCollection.fromAmino
26
26
  },
27
27
  "/sparkdream.collect.v1.MsgAddItem": {
28
- aminoType: "/sparkdream.collect.v1.MsgAddItem",
28
+ aminoType: "sparkdream/x/collect/MsgAddItem",
29
29
  toAmino: tx_1.MsgAddItem.toAmino,
30
30
  fromAmino: tx_1.MsgAddItem.fromAmino
31
31
  },
32
32
  "/sparkdream.collect.v1.MsgAddItems": {
33
- aminoType: "/sparkdream.collect.v1.MsgAddItems",
33
+ aminoType: "sparkdream/x/collect/MsgAddItems",
34
34
  toAmino: tx_1.MsgAddItems.toAmino,
35
35
  fromAmino: tx_1.MsgAddItems.fromAmino
36
36
  },
37
37
  "/sparkdream.collect.v1.MsgUpdateItem": {
38
- aminoType: "/sparkdream.collect.v1.MsgUpdateItem",
38
+ aminoType: "sparkdream/x/collect/MsgUpdateItem",
39
39
  toAmino: tx_1.MsgUpdateItem.toAmino,
40
40
  fromAmino: tx_1.MsgUpdateItem.fromAmino
41
41
  },
42
42
  "/sparkdream.collect.v1.MsgRemoveItem": {
43
- aminoType: "/sparkdream.collect.v1.MsgRemoveItem",
43
+ aminoType: "sparkdream/x/collect/MsgRemoveItem",
44
44
  toAmino: tx_1.MsgRemoveItem.toAmino,
45
45
  fromAmino: tx_1.MsgRemoveItem.fromAmino
46
46
  },
47
47
  "/sparkdream.collect.v1.MsgRemoveItems": {
48
- aminoType: "/sparkdream.collect.v1.MsgRemoveItems",
48
+ aminoType: "sparkdream/x/collect/MsgRemoveItems",
49
49
  toAmino: tx_1.MsgRemoveItems.toAmino,
50
50
  fromAmino: tx_1.MsgRemoveItems.fromAmino
51
51
  },
52
52
  "/sparkdream.collect.v1.MsgReorderItem": {
53
- aminoType: "/sparkdream.collect.v1.MsgReorderItem",
53
+ aminoType: "sparkdream/x/collect/MsgReorderItem",
54
54
  toAmino: tx_1.MsgReorderItem.toAmino,
55
55
  fromAmino: tx_1.MsgReorderItem.fromAmino
56
56
  },
57
57
  "/sparkdream.collect.v1.MsgAddCollaborator": {
58
- aminoType: "/sparkdream.collect.v1.MsgAddCollaborator",
58
+ aminoType: "sparkdream/x/collect/MsgAddCollaborator",
59
59
  toAmino: tx_1.MsgAddCollaborator.toAmino,
60
60
  fromAmino: tx_1.MsgAddCollaborator.fromAmino
61
61
  },
62
62
  "/sparkdream.collect.v1.MsgRemoveCollaborator": {
63
- aminoType: "/sparkdream.collect.v1.MsgRemoveCollaborator",
63
+ aminoType: "sparkdream/x/collect/MsgRemoveCollaborator",
64
64
  toAmino: tx_1.MsgRemoveCollaborator.toAmino,
65
65
  fromAmino: tx_1.MsgRemoveCollaborator.fromAmino
66
66
  },
67
67
  "/sparkdream.collect.v1.MsgUpdateCollaboratorRole": {
68
- aminoType: "/sparkdream.collect.v1.MsgUpdateCollaboratorRole",
68
+ aminoType: "sparkdream/x/collect/MsgUpdateCollaboratorRole",
69
69
  toAmino: tx_1.MsgUpdateCollaboratorRole.toAmino,
70
70
  fromAmino: tx_1.MsgUpdateCollaboratorRole.fromAmino
71
71
  },
72
72
  "/sparkdream.collect.v1.MsgRateCollection": {
73
- aminoType: "/sparkdream.collect.v1.MsgRateCollection",
73
+ aminoType: "sparkdream/x/collect/MsgRateCollection",
74
74
  toAmino: tx_1.MsgRateCollection.toAmino,
75
75
  fromAmino: tx_1.MsgRateCollection.fromAmino
76
76
  },
77
77
  "/sparkdream.collect.v1.MsgChallengeReview": {
78
- aminoType: "/sparkdream.collect.v1.MsgChallengeReview",
78
+ aminoType: "sparkdream/x/collect/MsgChallengeReview",
79
79
  toAmino: tx_1.MsgChallengeReview.toAmino,
80
80
  fromAmino: tx_1.MsgChallengeReview.fromAmino
81
81
  },
82
82
  "/sparkdream.collect.v1.MsgRequestSponsorship": {
83
- aminoType: "/sparkdream.collect.v1.MsgRequestSponsorship",
83
+ aminoType: "sparkdream/x/collect/MsgRequestSponsorship",
84
84
  toAmino: tx_1.MsgRequestSponsorship.toAmino,
85
85
  fromAmino: tx_1.MsgRequestSponsorship.fromAmino
86
86
  },
87
87
  "/sparkdream.collect.v1.MsgCancelSponsorshipRequest": {
88
- aminoType: "/sparkdream.collect.v1.MsgCancelSponsorshipRequest",
88
+ aminoType: "sparkdream/x/collect/MsgCancelSponsorshipRequest",
89
89
  toAmino: tx_1.MsgCancelSponsorshipRequest.toAmino,
90
90
  fromAmino: tx_1.MsgCancelSponsorshipRequest.fromAmino
91
91
  },
92
92
  "/sparkdream.collect.v1.MsgSponsorCollection": {
93
- aminoType: "/sparkdream.collect.v1.MsgSponsorCollection",
93
+ aminoType: "sparkdream/x/collect/MsgSponsorCollection",
94
94
  toAmino: tx_1.MsgSponsorCollection.toAmino,
95
95
  fromAmino: tx_1.MsgSponsorCollection.fromAmino
96
96
  },
@@ -100,42 +100,42 @@ exports.AminoConverter = {
100
100
  fromAmino: tx_1.MsgUpdateOperationalParams.fromAmino
101
101
  },
102
102
  "/sparkdream.collect.v1.MsgUpvoteContent": {
103
- aminoType: "/sparkdream.collect.v1.MsgUpvoteContent",
103
+ aminoType: "sparkdream/x/collect/MsgUpvoteContent",
104
104
  toAmino: tx_1.MsgUpvoteContent.toAmino,
105
105
  fromAmino: tx_1.MsgUpvoteContent.fromAmino
106
106
  },
107
107
  "/sparkdream.collect.v1.MsgDownvoteContent": {
108
- aminoType: "/sparkdream.collect.v1.MsgDownvoteContent",
108
+ aminoType: "sparkdream/x/collect/MsgDownvoteContent",
109
109
  toAmino: tx_1.MsgDownvoteContent.toAmino,
110
110
  fromAmino: tx_1.MsgDownvoteContent.fromAmino
111
111
  },
112
112
  "/sparkdream.collect.v1.MsgFlagContent": {
113
- aminoType: "/sparkdream.collect.v1.MsgFlagContent",
113
+ aminoType: "sparkdream/x/collect/MsgFlagContent",
114
114
  toAmino: tx_1.MsgFlagContent.toAmino,
115
115
  fromAmino: tx_1.MsgFlagContent.fromAmino
116
116
  },
117
117
  "/sparkdream.collect.v1.MsgHideContent": {
118
- aminoType: "/sparkdream.collect.v1.MsgHideContent",
118
+ aminoType: "sparkdream/x/collect/MsgHideContent",
119
119
  toAmino: tx_1.MsgHideContent.toAmino,
120
120
  fromAmino: tx_1.MsgHideContent.fromAmino
121
121
  },
122
122
  "/sparkdream.collect.v1.MsgAppealHide": {
123
- aminoType: "/sparkdream.collect.v1.MsgAppealHide",
123
+ aminoType: "sparkdream/x/collect/MsgAppealHide",
124
124
  toAmino: tx_1.MsgAppealHide.toAmino,
125
125
  fromAmino: tx_1.MsgAppealHide.fromAmino
126
126
  },
127
127
  "/sparkdream.collect.v1.MsgEndorseCollection": {
128
- aminoType: "/sparkdream.collect.v1.MsgEndorseCollection",
128
+ aminoType: "sparkdream/x/collect/MsgEndorseCollection",
129
129
  toAmino: tx_1.MsgEndorseCollection.toAmino,
130
130
  fromAmino: tx_1.MsgEndorseCollection.fromAmino
131
131
  },
132
132
  "/sparkdream.collect.v1.MsgSetSeekingEndorsement": {
133
- aminoType: "/sparkdream.collect.v1.MsgSetSeekingEndorsement",
133
+ aminoType: "sparkdream/x/collect/MsgSetSeekingEndorsement",
134
134
  toAmino: tx_1.MsgSetSeekingEndorsement.toAmino,
135
135
  fromAmino: tx_1.MsgSetSeekingEndorsement.fromAmino
136
136
  },
137
137
  "/sparkdream.collect.v1.MsgPinCollection": {
138
- aminoType: "/sparkdream.collect.v1.MsgPinCollection",
138
+ aminoType: "sparkdream/x/collect/MsgPinCollection",
139
139
  toAmino: tx_1.MsgPinCollection.toAmino,
140
140
  fromAmino: tx_1.MsgPinCollection.fromAmino
141
141
  }