@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
|
@@ -470,6 +470,7 @@ function createBaseMsgCreatePolicyPermissions() {
|
|
|
470
470
|
*/
|
|
471
471
|
exports.MsgCreatePolicyPermissions = {
|
|
472
472
|
typeUrl: "/sparkdream.commons.v1.MsgCreatePolicyPermissions",
|
|
473
|
+
aminoType: "sparkdream/x/commons/MsgCreatePolicyPermissions",
|
|
473
474
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
474
475
|
if (message.authority !== "") {
|
|
475
476
|
writer.uint32(10).string(message.authority);
|
|
@@ -538,6 +539,12 @@ exports.MsgCreatePolicyPermissions = {
|
|
|
538
539
|
fromAminoMsg(object) {
|
|
539
540
|
return exports.MsgCreatePolicyPermissions.fromAmino(object.value);
|
|
540
541
|
},
|
|
542
|
+
toAminoMsg(message) {
|
|
543
|
+
return {
|
|
544
|
+
type: "sparkdream/x/commons/MsgCreatePolicyPermissions",
|
|
545
|
+
value: exports.MsgCreatePolicyPermissions.toAmino(message)
|
|
546
|
+
};
|
|
547
|
+
},
|
|
541
548
|
fromProtoMsg(message) {
|
|
542
549
|
return exports.MsgCreatePolicyPermissions.decode(message.value);
|
|
543
550
|
},
|
|
@@ -622,6 +629,7 @@ function createBaseMsgUpdatePolicyPermissions() {
|
|
|
622
629
|
*/
|
|
623
630
|
exports.MsgUpdatePolicyPermissions = {
|
|
624
631
|
typeUrl: "/sparkdream.commons.v1.MsgUpdatePolicyPermissions",
|
|
632
|
+
aminoType: "sparkdream/x/commons/MsgUpdatePolicyPermissions",
|
|
625
633
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
626
634
|
if (message.authority !== "") {
|
|
627
635
|
writer.uint32(10).string(message.authority);
|
|
@@ -690,6 +698,12 @@ exports.MsgUpdatePolicyPermissions = {
|
|
|
690
698
|
fromAminoMsg(object) {
|
|
691
699
|
return exports.MsgUpdatePolicyPermissions.fromAmino(object.value);
|
|
692
700
|
},
|
|
701
|
+
toAminoMsg(message) {
|
|
702
|
+
return {
|
|
703
|
+
type: "sparkdream/x/commons/MsgUpdatePolicyPermissions",
|
|
704
|
+
value: exports.MsgUpdatePolicyPermissions.toAmino(message)
|
|
705
|
+
};
|
|
706
|
+
},
|
|
693
707
|
fromProtoMsg(message) {
|
|
694
708
|
return exports.MsgUpdatePolicyPermissions.decode(message.value);
|
|
695
709
|
},
|
|
@@ -773,6 +787,7 @@ function createBaseMsgDeletePolicyPermissions() {
|
|
|
773
787
|
*/
|
|
774
788
|
exports.MsgDeletePolicyPermissions = {
|
|
775
789
|
typeUrl: "/sparkdream.commons.v1.MsgDeletePolicyPermissions",
|
|
790
|
+
aminoType: "sparkdream/x/commons/MsgDeletePolicyPermissions",
|
|
776
791
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
777
792
|
if (message.authority !== "") {
|
|
778
793
|
writer.uint32(10).string(message.authority);
|
|
@@ -827,6 +842,12 @@ exports.MsgDeletePolicyPermissions = {
|
|
|
827
842
|
fromAminoMsg(object) {
|
|
828
843
|
return exports.MsgDeletePolicyPermissions.fromAmino(object.value);
|
|
829
844
|
},
|
|
845
|
+
toAminoMsg(message) {
|
|
846
|
+
return {
|
|
847
|
+
type: "sparkdream/x/commons/MsgDeletePolicyPermissions",
|
|
848
|
+
value: exports.MsgDeletePolicyPermissions.toAmino(message)
|
|
849
|
+
};
|
|
850
|
+
},
|
|
830
851
|
fromProtoMsg(message) {
|
|
831
852
|
return exports.MsgDeletePolicyPermissions.decode(message.value);
|
|
832
853
|
},
|
|
@@ -928,6 +949,7 @@ function createBaseMsgRegisterGroup() {
|
|
|
928
949
|
*/
|
|
929
950
|
exports.MsgRegisterGroup = {
|
|
930
951
|
typeUrl: "/sparkdream.commons.v1.MsgRegisterGroup",
|
|
952
|
+
aminoType: "sparkdream/x/commons/MsgRegisterGroup",
|
|
931
953
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
932
954
|
if (message.authority !== "") {
|
|
933
955
|
writer.uint32(10).string(message.authority);
|
|
@@ -1189,6 +1211,12 @@ exports.MsgRegisterGroup = {
|
|
|
1189
1211
|
fromAminoMsg(object) {
|
|
1190
1212
|
return exports.MsgRegisterGroup.fromAmino(object.value);
|
|
1191
1213
|
},
|
|
1214
|
+
toAminoMsg(message) {
|
|
1215
|
+
return {
|
|
1216
|
+
type: "sparkdream/x/commons/MsgRegisterGroup",
|
|
1217
|
+
value: exports.MsgRegisterGroup.toAmino(message)
|
|
1218
|
+
};
|
|
1219
|
+
},
|
|
1192
1220
|
fromProtoMsg(message) {
|
|
1193
1221
|
return exports.MsgRegisterGroup.decode(message.value);
|
|
1194
1222
|
},
|
|
@@ -1274,6 +1302,7 @@ function createBaseMsgRenewGroup() {
|
|
|
1274
1302
|
*/
|
|
1275
1303
|
exports.MsgRenewGroup = {
|
|
1276
1304
|
typeUrl: "/sparkdream.commons.v1.MsgRenewGroup",
|
|
1305
|
+
aminoType: "sparkdream/x/commons/MsgRenewGroup",
|
|
1277
1306
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
1278
1307
|
if (message.authority !== "") {
|
|
1279
1308
|
writer.uint32(10).string(message.authority);
|
|
@@ -1356,6 +1385,12 @@ exports.MsgRenewGroup = {
|
|
|
1356
1385
|
fromAminoMsg(object) {
|
|
1357
1386
|
return exports.MsgRenewGroup.fromAmino(object.value);
|
|
1358
1387
|
},
|
|
1388
|
+
toAminoMsg(message) {
|
|
1389
|
+
return {
|
|
1390
|
+
type: "sparkdream/x/commons/MsgRenewGroup",
|
|
1391
|
+
value: exports.MsgRenewGroup.toAmino(message)
|
|
1392
|
+
};
|
|
1393
|
+
},
|
|
1359
1394
|
fromProtoMsg(message) {
|
|
1360
1395
|
return exports.MsgRenewGroup.decode(message.value);
|
|
1361
1396
|
},
|
|
@@ -1450,6 +1485,7 @@ function createBaseMsgUpdateGroupConfig() {
|
|
|
1450
1485
|
*/
|
|
1451
1486
|
exports.MsgUpdateGroupConfig = {
|
|
1452
1487
|
typeUrl: "/sparkdream.commons.v1.MsgUpdateGroupConfig",
|
|
1488
|
+
aminoType: "sparkdream/x/commons/MsgUpdateGroupConfig",
|
|
1453
1489
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
1454
1490
|
if (message.authority !== "") {
|
|
1455
1491
|
writer.uint32(10).string(message.authority);
|
|
@@ -1625,6 +1661,12 @@ exports.MsgUpdateGroupConfig = {
|
|
|
1625
1661
|
fromAminoMsg(object) {
|
|
1626
1662
|
return exports.MsgUpdateGroupConfig.fromAmino(object.value);
|
|
1627
1663
|
},
|
|
1664
|
+
toAminoMsg(message) {
|
|
1665
|
+
return {
|
|
1666
|
+
type: "sparkdream/x/commons/MsgUpdateGroupConfig",
|
|
1667
|
+
value: exports.MsgUpdateGroupConfig.toAmino(message)
|
|
1668
|
+
};
|
|
1669
|
+
},
|
|
1628
1670
|
fromProtoMsg(message) {
|
|
1629
1671
|
return exports.MsgUpdateGroupConfig.decode(message.value);
|
|
1630
1672
|
},
|
|
@@ -1711,6 +1753,7 @@ function createBaseMsgUpdateGroupMembers() {
|
|
|
1711
1753
|
*/
|
|
1712
1754
|
exports.MsgUpdateGroupMembers = {
|
|
1713
1755
|
typeUrl: "/sparkdream.commons.v1.MsgUpdateGroupMembers",
|
|
1756
|
+
aminoType: "sparkdream/x/commons/MsgUpdateGroupMembers",
|
|
1714
1757
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
1715
1758
|
if (message.authority !== "") {
|
|
1716
1759
|
writer.uint32(10).string(message.authority);
|
|
@@ -1807,6 +1850,12 @@ exports.MsgUpdateGroupMembers = {
|
|
|
1807
1850
|
fromAminoMsg(object) {
|
|
1808
1851
|
return exports.MsgUpdateGroupMembers.fromAmino(object.value);
|
|
1809
1852
|
},
|
|
1853
|
+
toAminoMsg(message) {
|
|
1854
|
+
return {
|
|
1855
|
+
type: "sparkdream/x/commons/MsgUpdateGroupMembers",
|
|
1856
|
+
value: exports.MsgUpdateGroupMembers.toAmino(message)
|
|
1857
|
+
};
|
|
1858
|
+
},
|
|
1810
1859
|
fromProtoMsg(message) {
|
|
1811
1860
|
return exports.MsgUpdateGroupMembers.decode(message.value);
|
|
1812
1861
|
},
|
|
@@ -1890,6 +1939,7 @@ function createBaseMsgForceUpgrade() {
|
|
|
1890
1939
|
*/
|
|
1891
1940
|
exports.MsgForceUpgrade = {
|
|
1892
1941
|
typeUrl: "/sparkdream.commons.v1.MsgForceUpgrade",
|
|
1942
|
+
aminoType: "sparkdream/x/commons/MsgForceUpgrade",
|
|
1893
1943
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
1894
1944
|
if (message.authority !== "") {
|
|
1895
1945
|
writer.uint32(10).string(message.authority);
|
|
@@ -1944,6 +1994,12 @@ exports.MsgForceUpgrade = {
|
|
|
1944
1994
|
fromAminoMsg(object) {
|
|
1945
1995
|
return exports.MsgForceUpgrade.fromAmino(object.value);
|
|
1946
1996
|
},
|
|
1997
|
+
toAminoMsg(message) {
|
|
1998
|
+
return {
|
|
1999
|
+
type: "sparkdream/x/commons/MsgForceUpgrade",
|
|
2000
|
+
value: exports.MsgForceUpgrade.toAmino(message)
|
|
2001
|
+
};
|
|
2002
|
+
},
|
|
1947
2003
|
fromProtoMsg(message) {
|
|
1948
2004
|
return exports.MsgForceUpgrade.decode(message.value);
|
|
1949
2005
|
},
|
|
@@ -2190,6 +2246,7 @@ function createBaseMsgDeleteGroup() {
|
|
|
2190
2246
|
*/
|
|
2191
2247
|
exports.MsgDeleteGroup = {
|
|
2192
2248
|
typeUrl: "/sparkdream.commons.v1.MsgDeleteGroup",
|
|
2249
|
+
aminoType: "sparkdream/x/commons/MsgDeleteGroup",
|
|
2193
2250
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
2194
2251
|
if (message.authority !== "") {
|
|
2195
2252
|
writer.uint32(10).string(message.authority);
|
|
@@ -2244,6 +2301,12 @@ exports.MsgDeleteGroup = {
|
|
|
2244
2301
|
fromAminoMsg(object) {
|
|
2245
2302
|
return exports.MsgDeleteGroup.fromAmino(object.value);
|
|
2246
2303
|
},
|
|
2304
|
+
toAminoMsg(message) {
|
|
2305
|
+
return {
|
|
2306
|
+
type: "sparkdream/x/commons/MsgDeleteGroup",
|
|
2307
|
+
value: exports.MsgDeleteGroup.toAmino(message)
|
|
2308
|
+
};
|
|
2309
|
+
},
|
|
2247
2310
|
fromProtoMsg(message) {
|
|
2248
2311
|
return exports.MsgDeleteGroup.decode(message.value);
|
|
2249
2312
|
},
|
|
@@ -2327,6 +2390,7 @@ function createBaseMsgVetoGroupProposals() {
|
|
|
2327
2390
|
*/
|
|
2328
2391
|
exports.MsgVetoGroupProposals = {
|
|
2329
2392
|
typeUrl: "/sparkdream.commons.v1.MsgVetoGroupProposals",
|
|
2393
|
+
aminoType: "sparkdream/x/commons/MsgVetoGroupProposals",
|
|
2330
2394
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
2331
2395
|
if (message.authority !== "") {
|
|
2332
2396
|
writer.uint32(10).string(message.authority);
|
|
@@ -2381,6 +2445,12 @@ exports.MsgVetoGroupProposals = {
|
|
|
2381
2445
|
fromAminoMsg(object) {
|
|
2382
2446
|
return exports.MsgVetoGroupProposals.fromAmino(object.value);
|
|
2383
2447
|
},
|
|
2448
|
+
toAminoMsg(message) {
|
|
2449
|
+
return {
|
|
2450
|
+
type: "sparkdream/x/commons/MsgVetoGroupProposals",
|
|
2451
|
+
value: exports.MsgVetoGroupProposals.toAmino(message)
|
|
2452
|
+
};
|
|
2453
|
+
},
|
|
2384
2454
|
fromProtoMsg(message) {
|
|
2385
2455
|
return exports.MsgVetoGroupProposals.decode(message.value);
|
|
2386
2456
|
},
|
|
@@ -2466,6 +2536,7 @@ function createBaseMsgSubmitProposal() {
|
|
|
2466
2536
|
*/
|
|
2467
2537
|
exports.MsgSubmitProposal = {
|
|
2468
2538
|
typeUrl: "/sparkdream.commons.v1.MsgSubmitProposal",
|
|
2539
|
+
aminoType: "sparkdream/x/commons/MsgSubmitProposal",
|
|
2469
2540
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
2470
2541
|
if (message.proposer !== "") {
|
|
2471
2542
|
writer.uint32(10).string(message.proposer);
|
|
@@ -2545,6 +2616,12 @@ exports.MsgSubmitProposal = {
|
|
|
2545
2616
|
fromAminoMsg(object) {
|
|
2546
2617
|
return exports.MsgSubmitProposal.fromAmino(object.value);
|
|
2547
2618
|
},
|
|
2619
|
+
toAminoMsg(message) {
|
|
2620
|
+
return {
|
|
2621
|
+
type: "sparkdream/x/commons/MsgSubmitProposal",
|
|
2622
|
+
value: exports.MsgSubmitProposal.toAmino(message)
|
|
2623
|
+
};
|
|
2624
|
+
},
|
|
2548
2625
|
fromProtoMsg(message) {
|
|
2549
2626
|
return exports.MsgSubmitProposal.decode(message.value);
|
|
2550
2627
|
},
|
|
@@ -2643,6 +2720,7 @@ function createBaseMsgVoteProposal() {
|
|
|
2643
2720
|
*/
|
|
2644
2721
|
exports.MsgVoteProposal = {
|
|
2645
2722
|
typeUrl: "/sparkdream.commons.v1.MsgVoteProposal",
|
|
2723
|
+
aminoType: "sparkdream/x/commons/MsgVoteProposal",
|
|
2646
2724
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
2647
2725
|
if (message.voter !== "") {
|
|
2648
2726
|
writer.uint32(10).string(message.voter);
|
|
@@ -2719,6 +2797,12 @@ exports.MsgVoteProposal = {
|
|
|
2719
2797
|
fromAminoMsg(object) {
|
|
2720
2798
|
return exports.MsgVoteProposal.fromAmino(object.value);
|
|
2721
2799
|
},
|
|
2800
|
+
toAminoMsg(message) {
|
|
2801
|
+
return {
|
|
2802
|
+
type: "sparkdream/x/commons/MsgVoteProposal",
|
|
2803
|
+
value: exports.MsgVoteProposal.toAmino(message)
|
|
2804
|
+
};
|
|
2805
|
+
},
|
|
2722
2806
|
fromProtoMsg(message) {
|
|
2723
2807
|
return exports.MsgVoteProposal.decode(message.value);
|
|
2724
2808
|
},
|
|
@@ -2802,6 +2886,7 @@ function createBaseMsgExecuteProposal() {
|
|
|
2802
2886
|
*/
|
|
2803
2887
|
exports.MsgExecuteProposal = {
|
|
2804
2888
|
typeUrl: "/sparkdream.commons.v1.MsgExecuteProposal",
|
|
2889
|
+
aminoType: "sparkdream/x/commons/MsgExecuteProposal",
|
|
2805
2890
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
2806
2891
|
if (message.executor !== "") {
|
|
2807
2892
|
writer.uint32(10).string(message.executor);
|
|
@@ -2856,6 +2941,12 @@ exports.MsgExecuteProposal = {
|
|
|
2856
2941
|
fromAminoMsg(object) {
|
|
2857
2942
|
return exports.MsgExecuteProposal.fromAmino(object.value);
|
|
2858
2943
|
},
|
|
2944
|
+
toAminoMsg(message) {
|
|
2945
|
+
return {
|
|
2946
|
+
type: "sparkdream/x/commons/MsgExecuteProposal",
|
|
2947
|
+
value: exports.MsgExecuteProposal.toAmino(message)
|
|
2948
|
+
};
|
|
2949
|
+
},
|
|
2859
2950
|
fromProtoMsg(message) {
|
|
2860
2951
|
return exports.MsgExecuteProposal.decode(message.value);
|
|
2861
2952
|
},
|
|
@@ -10,122 +10,122 @@ exports.AminoConverter = {
|
|
|
10
10
|
fromAmino: tx_1.MsgUpdateParams.fromAmino
|
|
11
11
|
},
|
|
12
12
|
"/sparkdream.federation.v1.MsgRegisterPeer": {
|
|
13
|
-
aminoType: "/
|
|
13
|
+
aminoType: "sparkdream/x/federation/MsgRegisterPeer",
|
|
14
14
|
toAmino: tx_1.MsgRegisterPeer.toAmino,
|
|
15
15
|
fromAmino: tx_1.MsgRegisterPeer.fromAmino
|
|
16
16
|
},
|
|
17
17
|
"/sparkdream.federation.v1.MsgRemovePeer": {
|
|
18
|
-
aminoType: "/
|
|
18
|
+
aminoType: "sparkdream/x/federation/MsgRemovePeer",
|
|
19
19
|
toAmino: tx_1.MsgRemovePeer.toAmino,
|
|
20
20
|
fromAmino: tx_1.MsgRemovePeer.fromAmino
|
|
21
21
|
},
|
|
22
22
|
"/sparkdream.federation.v1.MsgSuspendPeer": {
|
|
23
|
-
aminoType: "/
|
|
23
|
+
aminoType: "sparkdream/x/federation/MsgSuspendPeer",
|
|
24
24
|
toAmino: tx_1.MsgSuspendPeer.toAmino,
|
|
25
25
|
fromAmino: tx_1.MsgSuspendPeer.fromAmino
|
|
26
26
|
},
|
|
27
27
|
"/sparkdream.federation.v1.MsgResumePeer": {
|
|
28
|
-
aminoType: "/
|
|
28
|
+
aminoType: "sparkdream/x/federation/MsgResumePeer",
|
|
29
29
|
toAmino: tx_1.MsgResumePeer.toAmino,
|
|
30
30
|
fromAmino: tx_1.MsgResumePeer.fromAmino
|
|
31
31
|
},
|
|
32
32
|
"/sparkdream.federation.v1.MsgUpdatePeerPolicy": {
|
|
33
|
-
aminoType: "/
|
|
33
|
+
aminoType: "sparkdream/x/federation/MsgUpdatePeerPolicy",
|
|
34
34
|
toAmino: tx_1.MsgUpdatePeerPolicy.toAmino,
|
|
35
35
|
fromAmino: tx_1.MsgUpdatePeerPolicy.fromAmino
|
|
36
36
|
},
|
|
37
37
|
"/sparkdream.federation.v1.MsgRegisterBridge": {
|
|
38
|
-
aminoType: "/
|
|
38
|
+
aminoType: "sparkdream/x/federation/MsgRegisterBridge",
|
|
39
39
|
toAmino: tx_1.MsgRegisterBridge.toAmino,
|
|
40
40
|
fromAmino: tx_1.MsgRegisterBridge.fromAmino
|
|
41
41
|
},
|
|
42
42
|
"/sparkdream.federation.v1.MsgRevokeBridge": {
|
|
43
|
-
aminoType: "/
|
|
43
|
+
aminoType: "sparkdream/x/federation/MsgRevokeBridge",
|
|
44
44
|
toAmino: tx_1.MsgRevokeBridge.toAmino,
|
|
45
45
|
fromAmino: tx_1.MsgRevokeBridge.fromAmino
|
|
46
46
|
},
|
|
47
47
|
"/sparkdream.federation.v1.MsgSlashBridge": {
|
|
48
|
-
aminoType: "/
|
|
48
|
+
aminoType: "sparkdream/x/federation/MsgSlashBridge",
|
|
49
49
|
toAmino: tx_1.MsgSlashBridge.toAmino,
|
|
50
50
|
fromAmino: tx_1.MsgSlashBridge.fromAmino
|
|
51
51
|
},
|
|
52
52
|
"/sparkdream.federation.v1.MsgUpdateBridge": {
|
|
53
|
-
aminoType: "/
|
|
53
|
+
aminoType: "sparkdream/x/federation/MsgUpdateBridge",
|
|
54
54
|
toAmino: tx_1.MsgUpdateBridge.toAmino,
|
|
55
55
|
fromAmino: tx_1.MsgUpdateBridge.fromAmino
|
|
56
56
|
},
|
|
57
57
|
"/sparkdream.federation.v1.MsgUnbondBridge": {
|
|
58
|
-
aminoType: "/
|
|
58
|
+
aminoType: "sparkdream/x/federation/MsgUnbondBridge",
|
|
59
59
|
toAmino: tx_1.MsgUnbondBridge.toAmino,
|
|
60
60
|
fromAmino: tx_1.MsgUnbondBridge.fromAmino
|
|
61
61
|
},
|
|
62
62
|
"/sparkdream.federation.v1.MsgTopUpBridgeStake": {
|
|
63
|
-
aminoType: "/
|
|
63
|
+
aminoType: "sparkdream/x/federation/MsgTopUpBridgeStake",
|
|
64
64
|
toAmino: tx_1.MsgTopUpBridgeStake.toAmino,
|
|
65
65
|
fromAmino: tx_1.MsgTopUpBridgeStake.fromAmino
|
|
66
66
|
},
|
|
67
67
|
"/sparkdream.federation.v1.MsgSubmitFederatedContent": {
|
|
68
|
-
aminoType: "/
|
|
68
|
+
aminoType: "sparkdream/x/federation/MsgSubmitFederatedContent",
|
|
69
69
|
toAmino: tx_1.MsgSubmitFederatedContent.toAmino,
|
|
70
70
|
fromAmino: tx_1.MsgSubmitFederatedContent.fromAmino
|
|
71
71
|
},
|
|
72
72
|
"/sparkdream.federation.v1.MsgFederateContent": {
|
|
73
|
-
aminoType: "/
|
|
73
|
+
aminoType: "sparkdream/x/federation/MsgFederateContent",
|
|
74
74
|
toAmino: tx_1.MsgFederateContent.toAmino,
|
|
75
75
|
fromAmino: tx_1.MsgFederateContent.fromAmino
|
|
76
76
|
},
|
|
77
77
|
"/sparkdream.federation.v1.MsgAttestOutbound": {
|
|
78
|
-
aminoType: "/
|
|
78
|
+
aminoType: "sparkdream/x/federation/MsgAttestOutbound",
|
|
79
79
|
toAmino: tx_1.MsgAttestOutbound.toAmino,
|
|
80
80
|
fromAmino: tx_1.MsgAttestOutbound.fromAmino
|
|
81
81
|
},
|
|
82
82
|
"/sparkdream.federation.v1.MsgModerateContent": {
|
|
83
|
-
aminoType: "/
|
|
83
|
+
aminoType: "sparkdream/x/federation/MsgModerateContent",
|
|
84
84
|
toAmino: tx_1.MsgModerateContent.toAmino,
|
|
85
85
|
fromAmino: tx_1.MsgModerateContent.fromAmino
|
|
86
86
|
},
|
|
87
87
|
"/sparkdream.federation.v1.MsgLinkIdentity": {
|
|
88
|
-
aminoType: "/
|
|
88
|
+
aminoType: "sparkdream/x/federation/MsgLinkIdentity",
|
|
89
89
|
toAmino: tx_1.MsgLinkIdentity.toAmino,
|
|
90
90
|
fromAmino: tx_1.MsgLinkIdentity.fromAmino
|
|
91
91
|
},
|
|
92
92
|
"/sparkdream.federation.v1.MsgUnlinkIdentity": {
|
|
93
|
-
aminoType: "/
|
|
93
|
+
aminoType: "sparkdream/x/federation/MsgUnlinkIdentity",
|
|
94
94
|
toAmino: tx_1.MsgUnlinkIdentity.toAmino,
|
|
95
95
|
fromAmino: tx_1.MsgUnlinkIdentity.fromAmino
|
|
96
96
|
},
|
|
97
97
|
"/sparkdream.federation.v1.MsgConfirmIdentityLink": {
|
|
98
|
-
aminoType: "/
|
|
98
|
+
aminoType: "sparkdream/x/federation/MsgConfirmIdentityLink",
|
|
99
99
|
toAmino: tx_1.MsgConfirmIdentityLink.toAmino,
|
|
100
100
|
fromAmino: tx_1.MsgConfirmIdentityLink.fromAmino
|
|
101
101
|
},
|
|
102
102
|
"/sparkdream.federation.v1.MsgRequestReputationAttestation": {
|
|
103
|
-
aminoType: "/
|
|
103
|
+
aminoType: "sparkdream/x/federation/MsgRequestReputationAttestation",
|
|
104
104
|
toAmino: tx_1.MsgRequestReputationAttestation.toAmino,
|
|
105
105
|
fromAmino: tx_1.MsgRequestReputationAttestation.fromAmino
|
|
106
106
|
},
|
|
107
107
|
"/sparkdream.federation.v1.MsgVerifyContent": {
|
|
108
|
-
aminoType: "/
|
|
108
|
+
aminoType: "sparkdream/x/federation/MsgVerifyContent",
|
|
109
109
|
toAmino: tx_1.MsgVerifyContent.toAmino,
|
|
110
110
|
fromAmino: tx_1.MsgVerifyContent.fromAmino
|
|
111
111
|
},
|
|
112
112
|
"/sparkdream.federation.v1.MsgChallengeVerification": {
|
|
113
|
-
aminoType: "/
|
|
113
|
+
aminoType: "sparkdream/x/federation/MsgChallengeVerification",
|
|
114
114
|
toAmino: tx_1.MsgChallengeVerification.toAmino,
|
|
115
115
|
fromAmino: tx_1.MsgChallengeVerification.fromAmino
|
|
116
116
|
},
|
|
117
117
|
"/sparkdream.federation.v1.MsgSubmitArbiterHash": {
|
|
118
|
-
aminoType: "/
|
|
118
|
+
aminoType: "sparkdream/x/federation/MsgSubmitArbiterHash",
|
|
119
119
|
toAmino: tx_1.MsgSubmitArbiterHash.toAmino,
|
|
120
120
|
fromAmino: tx_1.MsgSubmitArbiterHash.fromAmino
|
|
121
121
|
},
|
|
122
122
|
"/sparkdream.federation.v1.MsgEscalateChallenge": {
|
|
123
|
-
aminoType: "/
|
|
123
|
+
aminoType: "sparkdream/x/federation/MsgEscalateChallenge",
|
|
124
124
|
toAmino: tx_1.MsgEscalateChallenge.toAmino,
|
|
125
125
|
fromAmino: tx_1.MsgEscalateChallenge.fromAmino
|
|
126
126
|
},
|
|
127
127
|
"/sparkdream.federation.v1.MsgUpdateOperationalParams": {
|
|
128
|
-
aminoType: "/
|
|
128
|
+
aminoType: "sparkdream/x/federation/MsgUpdateOperationalParams",
|
|
129
129
|
toAmino: tx_1.MsgUpdateOperationalParams.toAmino,
|
|
130
130
|
fromAmino: tx_1.MsgUpdateOperationalParams.fromAmino
|
|
131
131
|
}
|