@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
|
@@ -467,6 +467,7 @@ function createBaseMsgCreatePolicyPermissions() {
|
|
|
467
467
|
*/
|
|
468
468
|
export const MsgCreatePolicyPermissions = {
|
|
469
469
|
typeUrl: "/sparkdream.commons.v1.MsgCreatePolicyPermissions",
|
|
470
|
+
aminoType: "sparkdream/x/commons/MsgCreatePolicyPermissions",
|
|
470
471
|
encode(message, writer = BinaryWriter.create()) {
|
|
471
472
|
if (message.authority !== "") {
|
|
472
473
|
writer.uint32(10).string(message.authority);
|
|
@@ -535,6 +536,12 @@ export const MsgCreatePolicyPermissions = {
|
|
|
535
536
|
fromAminoMsg(object) {
|
|
536
537
|
return MsgCreatePolicyPermissions.fromAmino(object.value);
|
|
537
538
|
},
|
|
539
|
+
toAminoMsg(message) {
|
|
540
|
+
return {
|
|
541
|
+
type: "sparkdream/x/commons/MsgCreatePolicyPermissions",
|
|
542
|
+
value: MsgCreatePolicyPermissions.toAmino(message)
|
|
543
|
+
};
|
|
544
|
+
},
|
|
538
545
|
fromProtoMsg(message) {
|
|
539
546
|
return MsgCreatePolicyPermissions.decode(message.value);
|
|
540
547
|
},
|
|
@@ -619,6 +626,7 @@ function createBaseMsgUpdatePolicyPermissions() {
|
|
|
619
626
|
*/
|
|
620
627
|
export const MsgUpdatePolicyPermissions = {
|
|
621
628
|
typeUrl: "/sparkdream.commons.v1.MsgUpdatePolicyPermissions",
|
|
629
|
+
aminoType: "sparkdream/x/commons/MsgUpdatePolicyPermissions",
|
|
622
630
|
encode(message, writer = BinaryWriter.create()) {
|
|
623
631
|
if (message.authority !== "") {
|
|
624
632
|
writer.uint32(10).string(message.authority);
|
|
@@ -687,6 +695,12 @@ export const MsgUpdatePolicyPermissions = {
|
|
|
687
695
|
fromAminoMsg(object) {
|
|
688
696
|
return MsgUpdatePolicyPermissions.fromAmino(object.value);
|
|
689
697
|
},
|
|
698
|
+
toAminoMsg(message) {
|
|
699
|
+
return {
|
|
700
|
+
type: "sparkdream/x/commons/MsgUpdatePolicyPermissions",
|
|
701
|
+
value: MsgUpdatePolicyPermissions.toAmino(message)
|
|
702
|
+
};
|
|
703
|
+
},
|
|
690
704
|
fromProtoMsg(message) {
|
|
691
705
|
return MsgUpdatePolicyPermissions.decode(message.value);
|
|
692
706
|
},
|
|
@@ -770,6 +784,7 @@ function createBaseMsgDeletePolicyPermissions() {
|
|
|
770
784
|
*/
|
|
771
785
|
export const MsgDeletePolicyPermissions = {
|
|
772
786
|
typeUrl: "/sparkdream.commons.v1.MsgDeletePolicyPermissions",
|
|
787
|
+
aminoType: "sparkdream/x/commons/MsgDeletePolicyPermissions",
|
|
773
788
|
encode(message, writer = BinaryWriter.create()) {
|
|
774
789
|
if (message.authority !== "") {
|
|
775
790
|
writer.uint32(10).string(message.authority);
|
|
@@ -824,6 +839,12 @@ export const MsgDeletePolicyPermissions = {
|
|
|
824
839
|
fromAminoMsg(object) {
|
|
825
840
|
return MsgDeletePolicyPermissions.fromAmino(object.value);
|
|
826
841
|
},
|
|
842
|
+
toAminoMsg(message) {
|
|
843
|
+
return {
|
|
844
|
+
type: "sparkdream/x/commons/MsgDeletePolicyPermissions",
|
|
845
|
+
value: MsgDeletePolicyPermissions.toAmino(message)
|
|
846
|
+
};
|
|
847
|
+
},
|
|
827
848
|
fromProtoMsg(message) {
|
|
828
849
|
return MsgDeletePolicyPermissions.decode(message.value);
|
|
829
850
|
},
|
|
@@ -925,6 +946,7 @@ function createBaseMsgRegisterGroup() {
|
|
|
925
946
|
*/
|
|
926
947
|
export const MsgRegisterGroup = {
|
|
927
948
|
typeUrl: "/sparkdream.commons.v1.MsgRegisterGroup",
|
|
949
|
+
aminoType: "sparkdream/x/commons/MsgRegisterGroup",
|
|
928
950
|
encode(message, writer = BinaryWriter.create()) {
|
|
929
951
|
if (message.authority !== "") {
|
|
930
952
|
writer.uint32(10).string(message.authority);
|
|
@@ -1186,6 +1208,12 @@ export const MsgRegisterGroup = {
|
|
|
1186
1208
|
fromAminoMsg(object) {
|
|
1187
1209
|
return MsgRegisterGroup.fromAmino(object.value);
|
|
1188
1210
|
},
|
|
1211
|
+
toAminoMsg(message) {
|
|
1212
|
+
return {
|
|
1213
|
+
type: "sparkdream/x/commons/MsgRegisterGroup",
|
|
1214
|
+
value: MsgRegisterGroup.toAmino(message)
|
|
1215
|
+
};
|
|
1216
|
+
},
|
|
1189
1217
|
fromProtoMsg(message) {
|
|
1190
1218
|
return MsgRegisterGroup.decode(message.value);
|
|
1191
1219
|
},
|
|
@@ -1271,6 +1299,7 @@ function createBaseMsgRenewGroup() {
|
|
|
1271
1299
|
*/
|
|
1272
1300
|
export const MsgRenewGroup = {
|
|
1273
1301
|
typeUrl: "/sparkdream.commons.v1.MsgRenewGroup",
|
|
1302
|
+
aminoType: "sparkdream/x/commons/MsgRenewGroup",
|
|
1274
1303
|
encode(message, writer = BinaryWriter.create()) {
|
|
1275
1304
|
if (message.authority !== "") {
|
|
1276
1305
|
writer.uint32(10).string(message.authority);
|
|
@@ -1353,6 +1382,12 @@ export const MsgRenewGroup = {
|
|
|
1353
1382
|
fromAminoMsg(object) {
|
|
1354
1383
|
return MsgRenewGroup.fromAmino(object.value);
|
|
1355
1384
|
},
|
|
1385
|
+
toAminoMsg(message) {
|
|
1386
|
+
return {
|
|
1387
|
+
type: "sparkdream/x/commons/MsgRenewGroup",
|
|
1388
|
+
value: MsgRenewGroup.toAmino(message)
|
|
1389
|
+
};
|
|
1390
|
+
},
|
|
1356
1391
|
fromProtoMsg(message) {
|
|
1357
1392
|
return MsgRenewGroup.decode(message.value);
|
|
1358
1393
|
},
|
|
@@ -1447,6 +1482,7 @@ function createBaseMsgUpdateGroupConfig() {
|
|
|
1447
1482
|
*/
|
|
1448
1483
|
export const MsgUpdateGroupConfig = {
|
|
1449
1484
|
typeUrl: "/sparkdream.commons.v1.MsgUpdateGroupConfig",
|
|
1485
|
+
aminoType: "sparkdream/x/commons/MsgUpdateGroupConfig",
|
|
1450
1486
|
encode(message, writer = BinaryWriter.create()) {
|
|
1451
1487
|
if (message.authority !== "") {
|
|
1452
1488
|
writer.uint32(10).string(message.authority);
|
|
@@ -1622,6 +1658,12 @@ export const MsgUpdateGroupConfig = {
|
|
|
1622
1658
|
fromAminoMsg(object) {
|
|
1623
1659
|
return MsgUpdateGroupConfig.fromAmino(object.value);
|
|
1624
1660
|
},
|
|
1661
|
+
toAminoMsg(message) {
|
|
1662
|
+
return {
|
|
1663
|
+
type: "sparkdream/x/commons/MsgUpdateGroupConfig",
|
|
1664
|
+
value: MsgUpdateGroupConfig.toAmino(message)
|
|
1665
|
+
};
|
|
1666
|
+
},
|
|
1625
1667
|
fromProtoMsg(message) {
|
|
1626
1668
|
return MsgUpdateGroupConfig.decode(message.value);
|
|
1627
1669
|
},
|
|
@@ -1708,6 +1750,7 @@ function createBaseMsgUpdateGroupMembers() {
|
|
|
1708
1750
|
*/
|
|
1709
1751
|
export const MsgUpdateGroupMembers = {
|
|
1710
1752
|
typeUrl: "/sparkdream.commons.v1.MsgUpdateGroupMembers",
|
|
1753
|
+
aminoType: "sparkdream/x/commons/MsgUpdateGroupMembers",
|
|
1711
1754
|
encode(message, writer = BinaryWriter.create()) {
|
|
1712
1755
|
if (message.authority !== "") {
|
|
1713
1756
|
writer.uint32(10).string(message.authority);
|
|
@@ -1804,6 +1847,12 @@ export const MsgUpdateGroupMembers = {
|
|
|
1804
1847
|
fromAminoMsg(object) {
|
|
1805
1848
|
return MsgUpdateGroupMembers.fromAmino(object.value);
|
|
1806
1849
|
},
|
|
1850
|
+
toAminoMsg(message) {
|
|
1851
|
+
return {
|
|
1852
|
+
type: "sparkdream/x/commons/MsgUpdateGroupMembers",
|
|
1853
|
+
value: MsgUpdateGroupMembers.toAmino(message)
|
|
1854
|
+
};
|
|
1855
|
+
},
|
|
1807
1856
|
fromProtoMsg(message) {
|
|
1808
1857
|
return MsgUpdateGroupMembers.decode(message.value);
|
|
1809
1858
|
},
|
|
@@ -1887,6 +1936,7 @@ function createBaseMsgForceUpgrade() {
|
|
|
1887
1936
|
*/
|
|
1888
1937
|
export const MsgForceUpgrade = {
|
|
1889
1938
|
typeUrl: "/sparkdream.commons.v1.MsgForceUpgrade",
|
|
1939
|
+
aminoType: "sparkdream/x/commons/MsgForceUpgrade",
|
|
1890
1940
|
encode(message, writer = BinaryWriter.create()) {
|
|
1891
1941
|
if (message.authority !== "") {
|
|
1892
1942
|
writer.uint32(10).string(message.authority);
|
|
@@ -1941,6 +1991,12 @@ export const MsgForceUpgrade = {
|
|
|
1941
1991
|
fromAminoMsg(object) {
|
|
1942
1992
|
return MsgForceUpgrade.fromAmino(object.value);
|
|
1943
1993
|
},
|
|
1994
|
+
toAminoMsg(message) {
|
|
1995
|
+
return {
|
|
1996
|
+
type: "sparkdream/x/commons/MsgForceUpgrade",
|
|
1997
|
+
value: MsgForceUpgrade.toAmino(message)
|
|
1998
|
+
};
|
|
1999
|
+
},
|
|
1944
2000
|
fromProtoMsg(message) {
|
|
1945
2001
|
return MsgForceUpgrade.decode(message.value);
|
|
1946
2002
|
},
|
|
@@ -2187,6 +2243,7 @@ function createBaseMsgDeleteGroup() {
|
|
|
2187
2243
|
*/
|
|
2188
2244
|
export const MsgDeleteGroup = {
|
|
2189
2245
|
typeUrl: "/sparkdream.commons.v1.MsgDeleteGroup",
|
|
2246
|
+
aminoType: "sparkdream/x/commons/MsgDeleteGroup",
|
|
2190
2247
|
encode(message, writer = BinaryWriter.create()) {
|
|
2191
2248
|
if (message.authority !== "") {
|
|
2192
2249
|
writer.uint32(10).string(message.authority);
|
|
@@ -2241,6 +2298,12 @@ export const MsgDeleteGroup = {
|
|
|
2241
2298
|
fromAminoMsg(object) {
|
|
2242
2299
|
return MsgDeleteGroup.fromAmino(object.value);
|
|
2243
2300
|
},
|
|
2301
|
+
toAminoMsg(message) {
|
|
2302
|
+
return {
|
|
2303
|
+
type: "sparkdream/x/commons/MsgDeleteGroup",
|
|
2304
|
+
value: MsgDeleteGroup.toAmino(message)
|
|
2305
|
+
};
|
|
2306
|
+
},
|
|
2244
2307
|
fromProtoMsg(message) {
|
|
2245
2308
|
return MsgDeleteGroup.decode(message.value);
|
|
2246
2309
|
},
|
|
@@ -2324,6 +2387,7 @@ function createBaseMsgVetoGroupProposals() {
|
|
|
2324
2387
|
*/
|
|
2325
2388
|
export const MsgVetoGroupProposals = {
|
|
2326
2389
|
typeUrl: "/sparkdream.commons.v1.MsgVetoGroupProposals",
|
|
2390
|
+
aminoType: "sparkdream/x/commons/MsgVetoGroupProposals",
|
|
2327
2391
|
encode(message, writer = BinaryWriter.create()) {
|
|
2328
2392
|
if (message.authority !== "") {
|
|
2329
2393
|
writer.uint32(10).string(message.authority);
|
|
@@ -2378,6 +2442,12 @@ export const MsgVetoGroupProposals = {
|
|
|
2378
2442
|
fromAminoMsg(object) {
|
|
2379
2443
|
return MsgVetoGroupProposals.fromAmino(object.value);
|
|
2380
2444
|
},
|
|
2445
|
+
toAminoMsg(message) {
|
|
2446
|
+
return {
|
|
2447
|
+
type: "sparkdream/x/commons/MsgVetoGroupProposals",
|
|
2448
|
+
value: MsgVetoGroupProposals.toAmino(message)
|
|
2449
|
+
};
|
|
2450
|
+
},
|
|
2381
2451
|
fromProtoMsg(message) {
|
|
2382
2452
|
return MsgVetoGroupProposals.decode(message.value);
|
|
2383
2453
|
},
|
|
@@ -2463,6 +2533,7 @@ function createBaseMsgSubmitProposal() {
|
|
|
2463
2533
|
*/
|
|
2464
2534
|
export const MsgSubmitProposal = {
|
|
2465
2535
|
typeUrl: "/sparkdream.commons.v1.MsgSubmitProposal",
|
|
2536
|
+
aminoType: "sparkdream/x/commons/MsgSubmitProposal",
|
|
2466
2537
|
encode(message, writer = BinaryWriter.create()) {
|
|
2467
2538
|
if (message.proposer !== "") {
|
|
2468
2539
|
writer.uint32(10).string(message.proposer);
|
|
@@ -2542,6 +2613,12 @@ export const MsgSubmitProposal = {
|
|
|
2542
2613
|
fromAminoMsg(object) {
|
|
2543
2614
|
return MsgSubmitProposal.fromAmino(object.value);
|
|
2544
2615
|
},
|
|
2616
|
+
toAminoMsg(message) {
|
|
2617
|
+
return {
|
|
2618
|
+
type: "sparkdream/x/commons/MsgSubmitProposal",
|
|
2619
|
+
value: MsgSubmitProposal.toAmino(message)
|
|
2620
|
+
};
|
|
2621
|
+
},
|
|
2545
2622
|
fromProtoMsg(message) {
|
|
2546
2623
|
return MsgSubmitProposal.decode(message.value);
|
|
2547
2624
|
},
|
|
@@ -2640,6 +2717,7 @@ function createBaseMsgVoteProposal() {
|
|
|
2640
2717
|
*/
|
|
2641
2718
|
export const MsgVoteProposal = {
|
|
2642
2719
|
typeUrl: "/sparkdream.commons.v1.MsgVoteProposal",
|
|
2720
|
+
aminoType: "sparkdream/x/commons/MsgVoteProposal",
|
|
2643
2721
|
encode(message, writer = BinaryWriter.create()) {
|
|
2644
2722
|
if (message.voter !== "") {
|
|
2645
2723
|
writer.uint32(10).string(message.voter);
|
|
@@ -2716,6 +2794,12 @@ export const MsgVoteProposal = {
|
|
|
2716
2794
|
fromAminoMsg(object) {
|
|
2717
2795
|
return MsgVoteProposal.fromAmino(object.value);
|
|
2718
2796
|
},
|
|
2797
|
+
toAminoMsg(message) {
|
|
2798
|
+
return {
|
|
2799
|
+
type: "sparkdream/x/commons/MsgVoteProposal",
|
|
2800
|
+
value: MsgVoteProposal.toAmino(message)
|
|
2801
|
+
};
|
|
2802
|
+
},
|
|
2719
2803
|
fromProtoMsg(message) {
|
|
2720
2804
|
return MsgVoteProposal.decode(message.value);
|
|
2721
2805
|
},
|
|
@@ -2799,6 +2883,7 @@ function createBaseMsgExecuteProposal() {
|
|
|
2799
2883
|
*/
|
|
2800
2884
|
export const MsgExecuteProposal = {
|
|
2801
2885
|
typeUrl: "/sparkdream.commons.v1.MsgExecuteProposal",
|
|
2886
|
+
aminoType: "sparkdream/x/commons/MsgExecuteProposal",
|
|
2802
2887
|
encode(message, writer = BinaryWriter.create()) {
|
|
2803
2888
|
if (message.executor !== "") {
|
|
2804
2889
|
writer.uint32(10).string(message.executor);
|
|
@@ -2853,6 +2938,12 @@ export const MsgExecuteProposal = {
|
|
|
2853
2938
|
fromAminoMsg(object) {
|
|
2854
2939
|
return MsgExecuteProposal.fromAmino(object.value);
|
|
2855
2940
|
},
|
|
2941
|
+
toAminoMsg(message) {
|
|
2942
|
+
return {
|
|
2943
|
+
type: "sparkdream/x/commons/MsgExecuteProposal",
|
|
2944
|
+
value: MsgExecuteProposal.toAmino(message)
|
|
2945
|
+
};
|
|
2946
|
+
},
|
|
2856
2947
|
fromProtoMsg(message) {
|
|
2857
2948
|
return MsgExecuteProposal.decode(message.value);
|
|
2858
2949
|
},
|
|
@@ -7,122 +7,122 @@ export const AminoConverter = {
|
|
|
7
7
|
fromAmino: MsgUpdateParams.fromAmino
|
|
8
8
|
},
|
|
9
9
|
"/sparkdream.federation.v1.MsgRegisterPeer": {
|
|
10
|
-
aminoType: "/
|
|
10
|
+
aminoType: "sparkdream/x/federation/MsgRegisterPeer",
|
|
11
11
|
toAmino: MsgRegisterPeer.toAmino,
|
|
12
12
|
fromAmino: MsgRegisterPeer.fromAmino
|
|
13
13
|
},
|
|
14
14
|
"/sparkdream.federation.v1.MsgRemovePeer": {
|
|
15
|
-
aminoType: "/
|
|
15
|
+
aminoType: "sparkdream/x/federation/MsgRemovePeer",
|
|
16
16
|
toAmino: MsgRemovePeer.toAmino,
|
|
17
17
|
fromAmino: MsgRemovePeer.fromAmino
|
|
18
18
|
},
|
|
19
19
|
"/sparkdream.federation.v1.MsgSuspendPeer": {
|
|
20
|
-
aminoType: "/
|
|
20
|
+
aminoType: "sparkdream/x/federation/MsgSuspendPeer",
|
|
21
21
|
toAmino: MsgSuspendPeer.toAmino,
|
|
22
22
|
fromAmino: MsgSuspendPeer.fromAmino
|
|
23
23
|
},
|
|
24
24
|
"/sparkdream.federation.v1.MsgResumePeer": {
|
|
25
|
-
aminoType: "/
|
|
25
|
+
aminoType: "sparkdream/x/federation/MsgResumePeer",
|
|
26
26
|
toAmino: MsgResumePeer.toAmino,
|
|
27
27
|
fromAmino: MsgResumePeer.fromAmino
|
|
28
28
|
},
|
|
29
29
|
"/sparkdream.federation.v1.MsgUpdatePeerPolicy": {
|
|
30
|
-
aminoType: "/
|
|
30
|
+
aminoType: "sparkdream/x/federation/MsgUpdatePeerPolicy",
|
|
31
31
|
toAmino: MsgUpdatePeerPolicy.toAmino,
|
|
32
32
|
fromAmino: MsgUpdatePeerPolicy.fromAmino
|
|
33
33
|
},
|
|
34
34
|
"/sparkdream.federation.v1.MsgRegisterBridge": {
|
|
35
|
-
aminoType: "/
|
|
35
|
+
aminoType: "sparkdream/x/federation/MsgRegisterBridge",
|
|
36
36
|
toAmino: MsgRegisterBridge.toAmino,
|
|
37
37
|
fromAmino: MsgRegisterBridge.fromAmino
|
|
38
38
|
},
|
|
39
39
|
"/sparkdream.federation.v1.MsgRevokeBridge": {
|
|
40
|
-
aminoType: "/
|
|
40
|
+
aminoType: "sparkdream/x/federation/MsgRevokeBridge",
|
|
41
41
|
toAmino: MsgRevokeBridge.toAmino,
|
|
42
42
|
fromAmino: MsgRevokeBridge.fromAmino
|
|
43
43
|
},
|
|
44
44
|
"/sparkdream.federation.v1.MsgSlashBridge": {
|
|
45
|
-
aminoType: "/
|
|
45
|
+
aminoType: "sparkdream/x/federation/MsgSlashBridge",
|
|
46
46
|
toAmino: MsgSlashBridge.toAmino,
|
|
47
47
|
fromAmino: MsgSlashBridge.fromAmino
|
|
48
48
|
},
|
|
49
49
|
"/sparkdream.federation.v1.MsgUpdateBridge": {
|
|
50
|
-
aminoType: "/
|
|
50
|
+
aminoType: "sparkdream/x/federation/MsgUpdateBridge",
|
|
51
51
|
toAmino: MsgUpdateBridge.toAmino,
|
|
52
52
|
fromAmino: MsgUpdateBridge.fromAmino
|
|
53
53
|
},
|
|
54
54
|
"/sparkdream.federation.v1.MsgUnbondBridge": {
|
|
55
|
-
aminoType: "/
|
|
55
|
+
aminoType: "sparkdream/x/federation/MsgUnbondBridge",
|
|
56
56
|
toAmino: MsgUnbondBridge.toAmino,
|
|
57
57
|
fromAmino: MsgUnbondBridge.fromAmino
|
|
58
58
|
},
|
|
59
59
|
"/sparkdream.federation.v1.MsgTopUpBridgeStake": {
|
|
60
|
-
aminoType: "/
|
|
60
|
+
aminoType: "sparkdream/x/federation/MsgTopUpBridgeStake",
|
|
61
61
|
toAmino: MsgTopUpBridgeStake.toAmino,
|
|
62
62
|
fromAmino: MsgTopUpBridgeStake.fromAmino
|
|
63
63
|
},
|
|
64
64
|
"/sparkdream.federation.v1.MsgSubmitFederatedContent": {
|
|
65
|
-
aminoType: "/
|
|
65
|
+
aminoType: "sparkdream/x/federation/MsgSubmitFederatedContent",
|
|
66
66
|
toAmino: MsgSubmitFederatedContent.toAmino,
|
|
67
67
|
fromAmino: MsgSubmitFederatedContent.fromAmino
|
|
68
68
|
},
|
|
69
69
|
"/sparkdream.federation.v1.MsgFederateContent": {
|
|
70
|
-
aminoType: "/
|
|
70
|
+
aminoType: "sparkdream/x/federation/MsgFederateContent",
|
|
71
71
|
toAmino: MsgFederateContent.toAmino,
|
|
72
72
|
fromAmino: MsgFederateContent.fromAmino
|
|
73
73
|
},
|
|
74
74
|
"/sparkdream.federation.v1.MsgAttestOutbound": {
|
|
75
|
-
aminoType: "/
|
|
75
|
+
aminoType: "sparkdream/x/federation/MsgAttestOutbound",
|
|
76
76
|
toAmino: MsgAttestOutbound.toAmino,
|
|
77
77
|
fromAmino: MsgAttestOutbound.fromAmino
|
|
78
78
|
},
|
|
79
79
|
"/sparkdream.federation.v1.MsgModerateContent": {
|
|
80
|
-
aminoType: "/
|
|
80
|
+
aminoType: "sparkdream/x/federation/MsgModerateContent",
|
|
81
81
|
toAmino: MsgModerateContent.toAmino,
|
|
82
82
|
fromAmino: MsgModerateContent.fromAmino
|
|
83
83
|
},
|
|
84
84
|
"/sparkdream.federation.v1.MsgLinkIdentity": {
|
|
85
|
-
aminoType: "/
|
|
85
|
+
aminoType: "sparkdream/x/federation/MsgLinkIdentity",
|
|
86
86
|
toAmino: MsgLinkIdentity.toAmino,
|
|
87
87
|
fromAmino: MsgLinkIdentity.fromAmino
|
|
88
88
|
},
|
|
89
89
|
"/sparkdream.federation.v1.MsgUnlinkIdentity": {
|
|
90
|
-
aminoType: "/
|
|
90
|
+
aminoType: "sparkdream/x/federation/MsgUnlinkIdentity",
|
|
91
91
|
toAmino: MsgUnlinkIdentity.toAmino,
|
|
92
92
|
fromAmino: MsgUnlinkIdentity.fromAmino
|
|
93
93
|
},
|
|
94
94
|
"/sparkdream.federation.v1.MsgConfirmIdentityLink": {
|
|
95
|
-
aminoType: "/
|
|
95
|
+
aminoType: "sparkdream/x/federation/MsgConfirmIdentityLink",
|
|
96
96
|
toAmino: MsgConfirmIdentityLink.toAmino,
|
|
97
97
|
fromAmino: MsgConfirmIdentityLink.fromAmino
|
|
98
98
|
},
|
|
99
99
|
"/sparkdream.federation.v1.MsgRequestReputationAttestation": {
|
|
100
|
-
aminoType: "/
|
|
100
|
+
aminoType: "sparkdream/x/federation/MsgRequestReputationAttestation",
|
|
101
101
|
toAmino: MsgRequestReputationAttestation.toAmino,
|
|
102
102
|
fromAmino: MsgRequestReputationAttestation.fromAmino
|
|
103
103
|
},
|
|
104
104
|
"/sparkdream.federation.v1.MsgVerifyContent": {
|
|
105
|
-
aminoType: "/
|
|
105
|
+
aminoType: "sparkdream/x/federation/MsgVerifyContent",
|
|
106
106
|
toAmino: MsgVerifyContent.toAmino,
|
|
107
107
|
fromAmino: MsgVerifyContent.fromAmino
|
|
108
108
|
},
|
|
109
109
|
"/sparkdream.federation.v1.MsgChallengeVerification": {
|
|
110
|
-
aminoType: "/
|
|
110
|
+
aminoType: "sparkdream/x/federation/MsgChallengeVerification",
|
|
111
111
|
toAmino: MsgChallengeVerification.toAmino,
|
|
112
112
|
fromAmino: MsgChallengeVerification.fromAmino
|
|
113
113
|
},
|
|
114
114
|
"/sparkdream.federation.v1.MsgSubmitArbiterHash": {
|
|
115
|
-
aminoType: "/
|
|
115
|
+
aminoType: "sparkdream/x/federation/MsgSubmitArbiterHash",
|
|
116
116
|
toAmino: MsgSubmitArbiterHash.toAmino,
|
|
117
117
|
fromAmino: MsgSubmitArbiterHash.fromAmino
|
|
118
118
|
},
|
|
119
119
|
"/sparkdream.federation.v1.MsgEscalateChallenge": {
|
|
120
|
-
aminoType: "/
|
|
120
|
+
aminoType: "sparkdream/x/federation/MsgEscalateChallenge",
|
|
121
121
|
toAmino: MsgEscalateChallenge.toAmino,
|
|
122
122
|
fromAmino: MsgEscalateChallenge.fromAmino
|
|
123
123
|
},
|
|
124
124
|
"/sparkdream.federation.v1.MsgUpdateOperationalParams": {
|
|
125
|
-
aminoType: "/
|
|
125
|
+
aminoType: "sparkdream/x/federation/MsgUpdateOperationalParams",
|
|
126
126
|
toAmino: MsgUpdateOperationalParams.toAmino,
|
|
127
127
|
fromAmino: MsgUpdateOperationalParams.fromAmino
|
|
128
128
|
}
|