@keepkey/device-protocol 7.7.1 → 7.9.1
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/lib/messages-cosmos_pb.d.ts +236 -0
- package/lib/messages-cosmos_pb.js +1964 -91
- package/lib/messages-osmosis_pb.d.ts +242 -198
- package/lib/messages-osmosis_pb.js +2005 -1686
- package/lib/messages-tendermint_pb.d.ts +230 -0
- package/lib/messages-tendermint_pb.js +1917 -92
- package/lib/messages_pb.d.ts +20 -9
- package/lib/messages_pb.js +20 -9
- package/lib/proto.json +453 -105
- package/package.json +1 -1
package/lib/proto.json
CHANGED
@@ -1691,6 +1691,11 @@
|
|
1691
1691
|
"MessageType_CosmosMsgRequest": 903,
|
1692
1692
|
"MessageType_CosmosMsgAck": 904,
|
1693
1693
|
"MessageType_CosmosSignedTx": 905,
|
1694
|
+
"MessageType_CosmosMsgDelegate": 906,
|
1695
|
+
"MessageType_CosmosMsgUndelegate": 907,
|
1696
|
+
"MessageType_CosmosMsgRedelegate": 908,
|
1697
|
+
"MessageType_CosmosMsgRewards": 909,
|
1698
|
+
"MessageType_CosmosMsgIBCTransfer": 910,
|
1694
1699
|
"MessageType_TendermintGetAddress": 1000,
|
1695
1700
|
"MessageType_TendermintAddress": 1001,
|
1696
1701
|
"MessageType_TendermintSignTx": 1002,
|
@@ -1698,22 +1703,28 @@
|
|
1698
1703
|
"MessageType_TendermintMsgAck": 1004,
|
1699
1704
|
"MessageType_TendermintMsgSend": 1005,
|
1700
1705
|
"MessageType_TendermintSignedTx": 1006,
|
1706
|
+
"MessageType_TendermintMsgDelegate": 1007,
|
1707
|
+
"MessageType_TendermintMsgUndelegate": 1008,
|
1708
|
+
"MessageType_TendermintMsgRedelegate": 1009,
|
1709
|
+
"MessageType_TendermintMsgRewards": 1010,
|
1710
|
+
"MessageType_TendermintMsgIBCTransfer": 1011,
|
1701
1711
|
"MessageType_OsmosisGetAddress": 1100,
|
1702
1712
|
"MessageType_OsmosisAddress": 1101,
|
1703
1713
|
"MessageType_OsmosisSignTx": 1102,
|
1704
1714
|
"MessageType_OsmosisMsgRequest": 1103,
|
1705
1715
|
"MessageType_OsmosisMsgAck": 1104,
|
1706
1716
|
"MessageType_OsmosisMsgSend": 1105,
|
1707
|
-
"
|
1717
|
+
"MessageType_OsmosisMsgDelegate": 1106,
|
1708
1718
|
"MessageType_OsmosisMsgUndelegate": 1107,
|
1709
|
-
"
|
1710
|
-
"
|
1711
|
-
"
|
1712
|
-
"
|
1713
|
-
"
|
1714
|
-
"
|
1715
|
-
"
|
1716
|
-
"
|
1719
|
+
"MessageType_OsmosisMsgRedelegate": 1108,
|
1720
|
+
"MessageType_OsmosisMsgRewards": 1109,
|
1721
|
+
"MessageType_OsmosisMsgLPAdd": 1110,
|
1722
|
+
"MessageType_OsmosisMsgLPRemove": 1111,
|
1723
|
+
"MessageType_OsmosisMsgLPStake": 1112,
|
1724
|
+
"MessageType_OsmosisMsgLPUnstake": 1113,
|
1725
|
+
"MessageType_OsmosisMsgIBCTranfer": 1114,
|
1726
|
+
"MessageType_OsmosisMsgSwap": 1115,
|
1727
|
+
"MessageType_OsmosisSignedTx": 1116
|
1717
1728
|
}
|
1718
1729
|
},
|
1719
1730
|
"Initialize": {
|
@@ -3808,6 +3819,26 @@
|
|
3808
3819
|
"send": {
|
3809
3820
|
"type": "CosmosMsgSend",
|
3810
3821
|
"id": 1
|
3822
|
+
},
|
3823
|
+
"delegate": {
|
3824
|
+
"type": "CosmosMsgDelegate",
|
3825
|
+
"id": 2
|
3826
|
+
},
|
3827
|
+
"undelegate": {
|
3828
|
+
"type": "CosmosMsgUndelegate",
|
3829
|
+
"id": 3
|
3830
|
+
},
|
3831
|
+
"redelegate": {
|
3832
|
+
"type": "CosmosMsgRedelegate",
|
3833
|
+
"id": 4
|
3834
|
+
},
|
3835
|
+
"rewards": {
|
3836
|
+
"type": "CosmosMsgRewards",
|
3837
|
+
"id": 5
|
3838
|
+
},
|
3839
|
+
"ibc_transfer": {
|
3840
|
+
"type": "CosmosMsgIBCTransfer",
|
3841
|
+
"id": 6
|
3811
3842
|
}
|
3812
3843
|
}
|
3813
3844
|
},
|
@@ -3838,6 +3869,122 @@
|
|
3838
3869
|
}
|
3839
3870
|
}
|
3840
3871
|
},
|
3872
|
+
"CosmosMsgDelegate": {
|
3873
|
+
"fields": {
|
3874
|
+
"delegator_address": {
|
3875
|
+
"type": "string",
|
3876
|
+
"id": 1
|
3877
|
+
},
|
3878
|
+
"validator_address": {
|
3879
|
+
"type": "string",
|
3880
|
+
"id": 2
|
3881
|
+
},
|
3882
|
+
"amount": {
|
3883
|
+
"type": "uint64",
|
3884
|
+
"id": 3,
|
3885
|
+
"options": {
|
3886
|
+
"jstype": "JS_STRING"
|
3887
|
+
}
|
3888
|
+
}
|
3889
|
+
}
|
3890
|
+
},
|
3891
|
+
"CosmosMsgUndelegate": {
|
3892
|
+
"fields": {
|
3893
|
+
"delegator_address": {
|
3894
|
+
"type": "string",
|
3895
|
+
"id": 1
|
3896
|
+
},
|
3897
|
+
"validator_address": {
|
3898
|
+
"type": "string",
|
3899
|
+
"id": 2
|
3900
|
+
},
|
3901
|
+
"amount": {
|
3902
|
+
"type": "uint64",
|
3903
|
+
"id": 3,
|
3904
|
+
"options": {
|
3905
|
+
"jstype": "JS_STRING"
|
3906
|
+
}
|
3907
|
+
}
|
3908
|
+
}
|
3909
|
+
},
|
3910
|
+
"CosmosMsgRedelegate": {
|
3911
|
+
"fields": {
|
3912
|
+
"delegator_address": {
|
3913
|
+
"type": "string",
|
3914
|
+
"id": 1
|
3915
|
+
},
|
3916
|
+
"validator_src_address": {
|
3917
|
+
"type": "string",
|
3918
|
+
"id": 2
|
3919
|
+
},
|
3920
|
+
"validator_dst_address": {
|
3921
|
+
"type": "string",
|
3922
|
+
"id": 3
|
3923
|
+
},
|
3924
|
+
"amount": {
|
3925
|
+
"type": "uint64",
|
3926
|
+
"id": 4,
|
3927
|
+
"options": {
|
3928
|
+
"jstype": "JS_STRING"
|
3929
|
+
}
|
3930
|
+
}
|
3931
|
+
}
|
3932
|
+
},
|
3933
|
+
"CosmosMsgRewards": {
|
3934
|
+
"fields": {
|
3935
|
+
"delegator_address": {
|
3936
|
+
"type": "string",
|
3937
|
+
"id": 1
|
3938
|
+
},
|
3939
|
+
"validator_address": {
|
3940
|
+
"type": "string",
|
3941
|
+
"id": 2
|
3942
|
+
},
|
3943
|
+
"amount": {
|
3944
|
+
"type": "uint64",
|
3945
|
+
"id": 3,
|
3946
|
+
"options": {
|
3947
|
+
"jstype": "JS_STRING"
|
3948
|
+
}
|
3949
|
+
}
|
3950
|
+
}
|
3951
|
+
},
|
3952
|
+
"CosmosMsgIBCTransfer": {
|
3953
|
+
"fields": {
|
3954
|
+
"receiver": {
|
3955
|
+
"type": "string",
|
3956
|
+
"id": 1
|
3957
|
+
},
|
3958
|
+
"sender": {
|
3959
|
+
"type": "string",
|
3960
|
+
"id": 2
|
3961
|
+
},
|
3962
|
+
"source_channel": {
|
3963
|
+
"type": "string",
|
3964
|
+
"id": 3
|
3965
|
+
},
|
3966
|
+
"source_port": {
|
3967
|
+
"type": "string",
|
3968
|
+
"id": 4
|
3969
|
+
},
|
3970
|
+
"revision_height": {
|
3971
|
+
"type": "string",
|
3972
|
+
"id": 5
|
3973
|
+
},
|
3974
|
+
"revision_number": {
|
3975
|
+
"type": "string",
|
3976
|
+
"id": 6
|
3977
|
+
},
|
3978
|
+
"denom": {
|
3979
|
+
"type": "string",
|
3980
|
+
"id": 7
|
3981
|
+
},
|
3982
|
+
"amount": {
|
3983
|
+
"type": "uint64",
|
3984
|
+
"id": 8
|
3985
|
+
}
|
3986
|
+
}
|
3987
|
+
},
|
3841
3988
|
"CosmosSignedTx": {
|
3842
3989
|
"fields": {
|
3843
3990
|
"public_key": {
|
@@ -4288,17 +4435,37 @@
|
|
4288
4435
|
"type": "TendermintMsgSend",
|
4289
4436
|
"id": 1
|
4290
4437
|
},
|
4438
|
+
"delegate": {
|
4439
|
+
"type": "TendermintMsgDelegate",
|
4440
|
+
"id": 2
|
4441
|
+
},
|
4442
|
+
"undelegate": {
|
4443
|
+
"type": "TendermintMsgUndelegate",
|
4444
|
+
"id": 3
|
4445
|
+
},
|
4446
|
+
"redelegate": {
|
4447
|
+
"type": "TendermintMsgRedelegate",
|
4448
|
+
"id": 4
|
4449
|
+
},
|
4450
|
+
"rewards": {
|
4451
|
+
"type": "TendermintMsgRewards",
|
4452
|
+
"id": 5
|
4453
|
+
},
|
4454
|
+
"ibc_transfer": {
|
4455
|
+
"type": "TendermintMsgIBCTransfer",
|
4456
|
+
"id": 6
|
4457
|
+
},
|
4291
4458
|
"denom": {
|
4292
4459
|
"type": "string",
|
4293
|
-
"id":
|
4460
|
+
"id": 7
|
4294
4461
|
},
|
4295
4462
|
"chain_name": {
|
4296
4463
|
"type": "string",
|
4297
|
-
"id":
|
4464
|
+
"id": 8
|
4298
4465
|
},
|
4299
4466
|
"message_type_prefix": {
|
4300
4467
|
"type": "string",
|
4301
|
-
"id":
|
4468
|
+
"id": 9
|
4302
4469
|
}
|
4303
4470
|
}
|
4304
4471
|
},
|
@@ -4329,6 +4496,118 @@
|
|
4329
4496
|
}
|
4330
4497
|
}
|
4331
4498
|
},
|
4499
|
+
"TendermintMsgDelegate": {
|
4500
|
+
"fields": {
|
4501
|
+
"delegator_address": {
|
4502
|
+
"type": "string",
|
4503
|
+
"id": 1
|
4504
|
+
},
|
4505
|
+
"validator_address": {
|
4506
|
+
"type": "string",
|
4507
|
+
"id": 2
|
4508
|
+
},
|
4509
|
+
"amount": {
|
4510
|
+
"type": "uint64",
|
4511
|
+
"id": 3,
|
4512
|
+
"options": {
|
4513
|
+
"jstype": "JS_STRING"
|
4514
|
+
}
|
4515
|
+
}
|
4516
|
+
}
|
4517
|
+
},
|
4518
|
+
"TendermintMsgUndelegate": {
|
4519
|
+
"fields": {
|
4520
|
+
"delegator_address": {
|
4521
|
+
"type": "string",
|
4522
|
+
"id": 1
|
4523
|
+
},
|
4524
|
+
"validator_address": {
|
4525
|
+
"type": "string",
|
4526
|
+
"id": 2
|
4527
|
+
},
|
4528
|
+
"amount": {
|
4529
|
+
"type": "uint64",
|
4530
|
+
"id": 3,
|
4531
|
+
"options": {
|
4532
|
+
"jstype": "JS_STRING"
|
4533
|
+
}
|
4534
|
+
}
|
4535
|
+
}
|
4536
|
+
},
|
4537
|
+
"TendermintMsgRedelegate": {
|
4538
|
+
"fields": {
|
4539
|
+
"delegator_address": {
|
4540
|
+
"type": "string",
|
4541
|
+
"id": 1
|
4542
|
+
},
|
4543
|
+
"validator_src_address": {
|
4544
|
+
"type": "string",
|
4545
|
+
"id": 2
|
4546
|
+
},
|
4547
|
+
"validator_dst_address": {
|
4548
|
+
"type": "string",
|
4549
|
+
"id": 3
|
4550
|
+
},
|
4551
|
+
"amount": {
|
4552
|
+
"type": "uint64",
|
4553
|
+
"id": 4,
|
4554
|
+
"options": {
|
4555
|
+
"jstype": "JS_STRING"
|
4556
|
+
}
|
4557
|
+
}
|
4558
|
+
}
|
4559
|
+
},
|
4560
|
+
"TendermintMsgRewards": {
|
4561
|
+
"fields": {
|
4562
|
+
"delegator_address": {
|
4563
|
+
"type": "string",
|
4564
|
+
"id": 1
|
4565
|
+
},
|
4566
|
+
"validator_address": {
|
4567
|
+
"type": "string",
|
4568
|
+
"id": 2
|
4569
|
+
},
|
4570
|
+
"amount": {
|
4571
|
+
"type": "uint64",
|
4572
|
+
"id": 3,
|
4573
|
+
"options": {
|
4574
|
+
"jstype": "JS_STRING"
|
4575
|
+
}
|
4576
|
+
}
|
4577
|
+
}
|
4578
|
+
},
|
4579
|
+
"TendermintMsgIBCTransfer": {
|
4580
|
+
"fields": {
|
4581
|
+
"receiver": {
|
4582
|
+
"type": "string",
|
4583
|
+
"id": 1
|
4584
|
+
},
|
4585
|
+
"sender": {
|
4586
|
+
"type": "string",
|
4587
|
+
"id": 2
|
4588
|
+
},
|
4589
|
+
"source_channel": {
|
4590
|
+
"type": "string",
|
4591
|
+
"id": 3
|
4592
|
+
},
|
4593
|
+
"source_port": {
|
4594
|
+
"type": "string",
|
4595
|
+
"id": 4
|
4596
|
+
},
|
4597
|
+
"revision_height": {
|
4598
|
+
"type": "string",
|
4599
|
+
"id": 5
|
4600
|
+
},
|
4601
|
+
"revision_number": {
|
4602
|
+
"type": "string",
|
4603
|
+
"id": 6
|
4604
|
+
},
|
4605
|
+
"denom": {
|
4606
|
+
"type": "string",
|
4607
|
+
"id": 7
|
4608
|
+
}
|
4609
|
+
}
|
4610
|
+
},
|
4332
4611
|
"TendermintSignedTx": {
|
4333
4612
|
"fields": {
|
4334
4613
|
"public_key": {
|
@@ -4524,33 +4803,6 @@
|
|
4524
4803
|
}
|
4525
4804
|
}
|
4526
4805
|
},
|
4527
|
-
"OsmosisToken": {
|
4528
|
-
"fields": {
|
4529
|
-
"denom": {
|
4530
|
-
"type": "string",
|
4531
|
-
"id": 1
|
4532
|
-
},
|
4533
|
-
"amount": {
|
4534
|
-
"type": "uint64",
|
4535
|
-
"id": 2,
|
4536
|
-
"options": {
|
4537
|
-
"jstype": "JS_STRING"
|
4538
|
-
}
|
4539
|
-
}
|
4540
|
-
}
|
4541
|
-
},
|
4542
|
-
"OsmosisTimeoutHeight": {
|
4543
|
-
"fields": {
|
4544
|
-
"revision_number": {
|
4545
|
-
"type": "uint64",
|
4546
|
-
"id": 1
|
4547
|
-
},
|
4548
|
-
"revision_height": {
|
4549
|
-
"type": "uint64",
|
4550
|
-
"id": 2
|
4551
|
-
}
|
4552
|
-
}
|
4553
|
-
},
|
4554
4806
|
"OsmosisSignTx": {
|
4555
4807
|
"fields": {
|
4556
4808
|
"address_n": {
|
@@ -4618,33 +4870,37 @@
|
|
4618
4870
|
"type": "OsmosisMsgUndelegate",
|
4619
4871
|
"id": 3
|
4620
4872
|
},
|
4621
|
-
"
|
4622
|
-
"type": "
|
4873
|
+
"redelegate": {
|
4874
|
+
"type": "OsmosisMsgRedelegate",
|
4623
4875
|
"id": 4
|
4624
4876
|
},
|
4877
|
+
"rewards": {
|
4878
|
+
"type": "OsmosisMsgRewards",
|
4879
|
+
"id": 5
|
4880
|
+
},
|
4625
4881
|
"lp_add": {
|
4626
4882
|
"type": "OsmosisMsgLPAdd",
|
4627
|
-
"id":
|
4883
|
+
"id": 6
|
4628
4884
|
},
|
4629
4885
|
"lp_remove": {
|
4630
4886
|
"type": "OsmosisMsgLPRemove",
|
4631
|
-
"id": 6
|
4632
|
-
},
|
4633
|
-
"farm_tokens": {
|
4634
|
-
"type": "OsmosisMsgFarmTokens",
|
4635
4887
|
"id": 7
|
4636
4888
|
},
|
4637
|
-
"
|
4638
|
-
"type": "
|
4889
|
+
"lp_stake": {
|
4890
|
+
"type": "OsmosisMsgLPStake",
|
4639
4891
|
"id": 8
|
4640
4892
|
},
|
4641
|
-
"
|
4642
|
-
"type": "
|
4893
|
+
"lp_unstake": {
|
4894
|
+
"type": "OsmosisMsgLPUnstake",
|
4643
4895
|
"id": 9
|
4644
4896
|
},
|
4897
|
+
"ibc_transfer": {
|
4898
|
+
"type": "OsmosisMsgIBCTransfer",
|
4899
|
+
"id": 10
|
4900
|
+
},
|
4645
4901
|
"swap": {
|
4646
4902
|
"type": "OsmosisMsgSwap",
|
4647
|
-
"id":
|
4903
|
+
"id": 11
|
4648
4904
|
}
|
4649
4905
|
}
|
4650
4906
|
},
|
@@ -4658,13 +4914,20 @@
|
|
4658
4914
|
"type": "string",
|
4659
4915
|
"id": 2
|
4660
4916
|
},
|
4661
|
-
"
|
4662
|
-
"type": "
|
4917
|
+
"denom": {
|
4918
|
+
"type": "string",
|
4663
4919
|
"id": 3
|
4664
4920
|
},
|
4921
|
+
"amount": {
|
4922
|
+
"type": "uint64",
|
4923
|
+
"id": 4,
|
4924
|
+
"options": {
|
4925
|
+
"jstype": "JS_STRING"
|
4926
|
+
}
|
4927
|
+
},
|
4665
4928
|
"address_type": {
|
4666
4929
|
"type": "OutputAddressType",
|
4667
|
-
"id":
|
4930
|
+
"id": 5
|
4668
4931
|
}
|
4669
4932
|
}
|
4670
4933
|
},
|
@@ -4678,9 +4941,16 @@
|
|
4678
4941
|
"type": "string",
|
4679
4942
|
"id": 2
|
4680
4943
|
},
|
4681
|
-
"
|
4682
|
-
"type": "
|
4944
|
+
"denom": {
|
4945
|
+
"type": "string",
|
4683
4946
|
"id": 3
|
4947
|
+
},
|
4948
|
+
"amount": {
|
4949
|
+
"type": "uint64",
|
4950
|
+
"id": 4,
|
4951
|
+
"options": {
|
4952
|
+
"jstype": "JS_STRING"
|
4953
|
+
}
|
4684
4954
|
}
|
4685
4955
|
}
|
4686
4956
|
},
|
@@ -4694,13 +4964,47 @@
|
|
4694
4964
|
"type": "string",
|
4695
4965
|
"id": 2
|
4696
4966
|
},
|
4697
|
-
"
|
4698
|
-
"type": "
|
4967
|
+
"denom": {
|
4968
|
+
"type": "string",
|
4699
4969
|
"id": 3
|
4970
|
+
},
|
4971
|
+
"amount": {
|
4972
|
+
"type": "uint64",
|
4973
|
+
"id": 4,
|
4974
|
+
"options": {
|
4975
|
+
"jstype": "JS_STRING"
|
4976
|
+
}
|
4700
4977
|
}
|
4701
4978
|
}
|
4702
4979
|
},
|
4703
|
-
"
|
4980
|
+
"OsmosisMsgRedelegate": {
|
4981
|
+
"fields": {
|
4982
|
+
"delegator_address": {
|
4983
|
+
"type": "string",
|
4984
|
+
"id": 1
|
4985
|
+
},
|
4986
|
+
"validator_src_address": {
|
4987
|
+
"type": "string",
|
4988
|
+
"id": 2
|
4989
|
+
},
|
4990
|
+
"validator_dst_address": {
|
4991
|
+
"type": "string",
|
4992
|
+
"id": 3
|
4993
|
+
},
|
4994
|
+
"denom": {
|
4995
|
+
"type": "string",
|
4996
|
+
"id": 4
|
4997
|
+
},
|
4998
|
+
"amount": {
|
4999
|
+
"type": "uint64",
|
5000
|
+
"id": 5,
|
5001
|
+
"options": {
|
5002
|
+
"jstype": "JS_STRING"
|
5003
|
+
}
|
5004
|
+
}
|
5005
|
+
}
|
5006
|
+
},
|
5007
|
+
"OsmosisMsgRewards": {
|
4704
5008
|
"fields": {
|
4705
5009
|
"delegator_address": {
|
4706
5010
|
"type": "string",
|
@@ -4710,9 +5014,16 @@
|
|
4710
5014
|
"type": "string",
|
4711
5015
|
"id": 2
|
4712
5016
|
},
|
4713
|
-
"
|
4714
|
-
"type": "
|
5017
|
+
"denom": {
|
5018
|
+
"type": "string",
|
4715
5019
|
"id": 3
|
5020
|
+
},
|
5021
|
+
"amount": {
|
5022
|
+
"type": "uint64",
|
5023
|
+
"id": 4,
|
5024
|
+
"options": {
|
5025
|
+
"jstype": "JS_STRING"
|
5026
|
+
}
|
4716
5027
|
}
|
4717
5028
|
}
|
4718
5029
|
},
|
@@ -4730,13 +5041,27 @@
|
|
4730
5041
|
"type": "uint64",
|
4731
5042
|
"id": 3
|
4732
5043
|
},
|
4733
|
-
"
|
4734
|
-
"type": "
|
5044
|
+
"denom_in_max_a": {
|
5045
|
+
"type": "string",
|
4735
5046
|
"id": 4
|
4736
5047
|
},
|
4737
|
-
"
|
4738
|
-
"type": "
|
4739
|
-
"id": 5
|
5048
|
+
"amount_in_max_a": {
|
5049
|
+
"type": "uint64",
|
5050
|
+
"id": 5,
|
5051
|
+
"options": {
|
5052
|
+
"jstype": "JS_STRING"
|
5053
|
+
}
|
5054
|
+
},
|
5055
|
+
"denom_in_max_b": {
|
5056
|
+
"type": "string",
|
5057
|
+
"id": 6
|
5058
|
+
},
|
5059
|
+
"amount_in_max_b": {
|
5060
|
+
"type": "uint64",
|
5061
|
+
"id": 7,
|
5062
|
+
"options": {
|
5063
|
+
"jstype": "JS_STRING"
|
5064
|
+
}
|
4740
5065
|
}
|
4741
5066
|
}
|
4742
5067
|
},
|
@@ -4754,17 +5079,31 @@
|
|
4754
5079
|
"type": "uint64",
|
4755
5080
|
"id": 3
|
4756
5081
|
},
|
4757
|
-
"
|
4758
|
-
"type": "
|
5082
|
+
"denom_out_min_a": {
|
5083
|
+
"type": "string",
|
4759
5084
|
"id": 4
|
4760
5085
|
},
|
4761
|
-
"
|
4762
|
-
"type": "
|
4763
|
-
"id": 5
|
5086
|
+
"amount_out_min_a": {
|
5087
|
+
"type": "uint64",
|
5088
|
+
"id": 5,
|
5089
|
+
"options": {
|
5090
|
+
"jstype": "JS_STRING"
|
5091
|
+
}
|
5092
|
+
},
|
5093
|
+
"denom_out_min_b": {
|
5094
|
+
"type": "string",
|
5095
|
+
"id": 6
|
5096
|
+
},
|
5097
|
+
"amount_out_min_b": {
|
5098
|
+
"type": "uint64",
|
5099
|
+
"id": 7,
|
5100
|
+
"options": {
|
5101
|
+
"jstype": "JS_STRING"
|
5102
|
+
}
|
4764
5103
|
}
|
4765
5104
|
}
|
4766
5105
|
},
|
4767
|
-
"
|
5106
|
+
"OsmosisMsgLPStake": {
|
4768
5107
|
"fields": {
|
4769
5108
|
"owner": {
|
4770
5109
|
"type": "string",
|
@@ -4774,41 +5113,32 @@
|
|
4774
5113
|
"type": "uint64",
|
4775
5114
|
"id": 2
|
4776
5115
|
},
|
4777
|
-
"
|
4778
|
-
"type": "
|
4779
|
-
"id":
|
5116
|
+
"denom": {
|
5117
|
+
"type": "string",
|
5118
|
+
"id": 4
|
5119
|
+
},
|
5120
|
+
"amount": {
|
5121
|
+
"type": "uint64",
|
5122
|
+
"id": 5,
|
5123
|
+
"options": {
|
5124
|
+
"jstype": "JS_STRING"
|
5125
|
+
}
|
4780
5126
|
}
|
4781
5127
|
}
|
4782
5128
|
},
|
4783
|
-
"
|
5129
|
+
"OsmosisMsgLPUnstake": {
|
4784
5130
|
"fields": {
|
4785
|
-
"
|
5131
|
+
"owner": {
|
4786
5132
|
"type": "string",
|
4787
5133
|
"id": 1
|
4788
5134
|
},
|
4789
|
-
"
|
5135
|
+
"id": {
|
4790
5136
|
"type": "string",
|
4791
5137
|
"id": 2
|
4792
|
-
},
|
4793
|
-
"token": {
|
4794
|
-
"type": "OsmosisToken",
|
4795
|
-
"id": 3
|
4796
|
-
},
|
4797
|
-
"sender": {
|
4798
|
-
"type": "string",
|
4799
|
-
"id": 4
|
4800
|
-
},
|
4801
|
-
"receiver": {
|
4802
|
-
"type": "string",
|
4803
|
-
"id": 5
|
4804
|
-
},
|
4805
|
-
"timeout_height": {
|
4806
|
-
"type": "OsmosisTimeoutHeight",
|
4807
|
-
"id": 6
|
4808
5138
|
}
|
4809
5139
|
}
|
4810
5140
|
},
|
4811
|
-
"
|
5141
|
+
"OsmosisMsgIBCTransfer": {
|
4812
5142
|
"fields": {
|
4813
5143
|
"source_port": {
|
4814
5144
|
"type": "string",
|
@@ -4818,21 +5148,32 @@
|
|
4818
5148
|
"type": "string",
|
4819
5149
|
"id": 2
|
4820
5150
|
},
|
4821
|
-
"
|
4822
|
-
"type": "
|
5151
|
+
"denom": {
|
5152
|
+
"type": "string",
|
4823
5153
|
"id": 3
|
4824
5154
|
},
|
5155
|
+
"amount": {
|
5156
|
+
"type": "uint64",
|
5157
|
+
"id": 4,
|
5158
|
+
"options": {
|
5159
|
+
"jstype": "JS_STRING"
|
5160
|
+
}
|
5161
|
+
},
|
4825
5162
|
"sender": {
|
4826
5163
|
"type": "string",
|
4827
|
-
"id":
|
5164
|
+
"id": 5
|
4828
5165
|
},
|
4829
5166
|
"receiver": {
|
4830
5167
|
"type": "string",
|
4831
|
-
"id": 5
|
4832
|
-
},
|
4833
|
-
"timeout_height": {
|
4834
|
-
"type": "OsmosisTimeoutHeight",
|
4835
5168
|
"id": 6
|
5169
|
+
},
|
5170
|
+
"revision_number": {
|
5171
|
+
"type": "string",
|
5172
|
+
"id": 7
|
5173
|
+
},
|
5174
|
+
"revision_height": {
|
5175
|
+
"type": "string",
|
5176
|
+
"id": 8
|
4836
5177
|
}
|
4837
5178
|
}
|
4838
5179
|
},
|
@@ -4850,13 +5191,20 @@
|
|
4850
5191
|
"type": "string",
|
4851
5192
|
"id": 3
|
4852
5193
|
},
|
4853
|
-
"
|
4854
|
-
"type": "
|
5194
|
+
"token_in_denom": {
|
5195
|
+
"type": "string",
|
4855
5196
|
"id": 4
|
4856
5197
|
},
|
5198
|
+
"token_in_amount": {
|
5199
|
+
"type": "uint64",
|
5200
|
+
"id": 5,
|
5201
|
+
"options": {
|
5202
|
+
"jstype": "JS_STRING"
|
5203
|
+
}
|
5204
|
+
},
|
4857
5205
|
"token_out_min_amount": {
|
4858
5206
|
"type": "uint64",
|
4859
|
-
"id":
|
5207
|
+
"id": 6
|
4860
5208
|
}
|
4861
5209
|
}
|
4862
5210
|
},
|