@keepkey/device-protocol 7.7.0 → 7.9.0

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/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
- "MessageType_OsmosisMsgelegate": 1106,
1717
+ "MessageType_OsmosisMsgDelegate": 1106,
1708
1718
  "MessageType_OsmosisMsgUndelegate": 1107,
1709
- "MessageType_OsmosisMsgClaim": 1108,
1710
- "MessageType_OsmosisMsgLPAdd": 1109,
1711
- "MessageType_OsmosisMsgLPRemove": 1110,
1712
- "MessageType_OsmosisMsgFarmTokens": 1111,
1713
- "MessageType_OsmosisMsgIBCDeposit": 1112,
1714
- "MessageType_OsmosisMsgWithdrawal": 1113,
1715
- "MessageType_OsmosisMsgSwap": 1114,
1716
- "MessageType_OsmosisSignedTx": 1115
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": {
@@ -1817,6 +1828,10 @@
1817
1828
  "wipe_code_protection": {
1818
1829
  "type": "bool",
1819
1830
  "id": 25
1831
+ },
1832
+ "auto_lock_delay_ms": {
1833
+ "type": "uint32",
1834
+ "id": 26
1820
1835
  }
1821
1836
  }
1822
1837
  },
@@ -3804,6 +3819,26 @@
3804
3819
  "send": {
3805
3820
  "type": "CosmosMsgSend",
3806
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
3807
3842
  }
3808
3843
  }
3809
3844
  },
@@ -3834,6 +3869,122 @@
3834
3869
  }
3835
3870
  }
3836
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
+ },
3837
3988
  "CosmosSignedTx": {
3838
3989
  "fields": {
3839
3990
  "public_key": {
@@ -4284,17 +4435,37 @@
4284
4435
  "type": "TendermintMsgSend",
4285
4436
  "id": 1
4286
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
+ },
4287
4458
  "denom": {
4288
4459
  "type": "string",
4289
- "id": 2
4460
+ "id": 7
4290
4461
  },
4291
4462
  "chain_name": {
4292
4463
  "type": "string",
4293
- "id": 3
4464
+ "id": 8
4294
4465
  },
4295
4466
  "message_type_prefix": {
4296
4467
  "type": "string",
4297
- "id": 4
4468
+ "id": 9
4298
4469
  }
4299
4470
  }
4300
4471
  },
@@ -4325,6 +4496,118 @@
4325
4496
  }
4326
4497
  }
4327
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
+ },
4328
4611
  "TendermintSignedTx": {
4329
4612
  "fields": {
4330
4613
  "public_key": {
@@ -4520,33 +4803,6 @@
4520
4803
  }
4521
4804
  }
4522
4805
  },
4523
- "OsmosisToken": {
4524
- "fields": {
4525
- "denom": {
4526
- "type": "string",
4527
- "id": 1
4528
- },
4529
- "amount": {
4530
- "type": "uint64",
4531
- "id": 2,
4532
- "options": {
4533
- "jstype": "JS_STRING"
4534
- }
4535
- }
4536
- }
4537
- },
4538
- "OsmosisTimeoutHeight": {
4539
- "fields": {
4540
- "revision_number": {
4541
- "type": "uint64",
4542
- "id": 1
4543
- },
4544
- "revision_height": {
4545
- "type": "uint64",
4546
- "id": 2
4547
- }
4548
- }
4549
- },
4550
4806
  "OsmosisSignTx": {
4551
4807
  "fields": {
4552
4808
  "address_n": {
@@ -4614,33 +4870,37 @@
4614
4870
  "type": "OsmosisMsgUndelegate",
4615
4871
  "id": 3
4616
4872
  },
4617
- "claim": {
4618
- "type": "OsmosisMsgClaim",
4873
+ "redelegate": {
4874
+ "type": "OsmosisMsgRedelegate",
4619
4875
  "id": 4
4620
4876
  },
4877
+ "rewards": {
4878
+ "type": "OsmosisMsgRewards",
4879
+ "id": 5
4880
+ },
4621
4881
  "lp_add": {
4622
4882
  "type": "OsmosisMsgLPAdd",
4623
- "id": 5
4883
+ "id": 6
4624
4884
  },
4625
4885
  "lp_remove": {
4626
4886
  "type": "OsmosisMsgLPRemove",
4627
- "id": 6
4628
- },
4629
- "farm_tokens": {
4630
- "type": "OsmosisMsgFarmTokens",
4631
4887
  "id": 7
4632
4888
  },
4633
- "ibc_deposit": {
4634
- "type": "OsmosisMsgIBCDeposit",
4889
+ "lp_stake": {
4890
+ "type": "OsmosisMsgLPStake",
4635
4891
  "id": 8
4636
4892
  },
4637
- "ibc_withdrawal": {
4638
- "type": "OsmosisMsgIBCWithdrawal",
4893
+ "lp_unstake": {
4894
+ "type": "OsmosisMsgLPUnstake",
4639
4895
  "id": 9
4640
4896
  },
4897
+ "ibc_transfer": {
4898
+ "type": "OsmosisMsgIBCTransfer",
4899
+ "id": 10
4900
+ },
4641
4901
  "swap": {
4642
4902
  "type": "OsmosisMsgSwap",
4643
- "id": 10
4903
+ "id": 11
4644
4904
  }
4645
4905
  }
4646
4906
  },
@@ -4654,13 +4914,20 @@
4654
4914
  "type": "string",
4655
4915
  "id": 2
4656
4916
  },
4657
- "token": {
4658
- "type": "OsmosisToken",
4917
+ "denom": {
4918
+ "type": "string",
4659
4919
  "id": 3
4660
4920
  },
4921
+ "amount": {
4922
+ "type": "uint64",
4923
+ "id": 4,
4924
+ "options": {
4925
+ "jstype": "JS_STRING"
4926
+ }
4927
+ },
4661
4928
  "address_type": {
4662
4929
  "type": "OutputAddressType",
4663
- "id": 4
4930
+ "id": 5
4664
4931
  }
4665
4932
  }
4666
4933
  },
@@ -4674,9 +4941,16 @@
4674
4941
  "type": "string",
4675
4942
  "id": 2
4676
4943
  },
4677
- "token": {
4678
- "type": "OsmosisToken",
4944
+ "denom": {
4945
+ "type": "string",
4679
4946
  "id": 3
4947
+ },
4948
+ "amount": {
4949
+ "type": "uint64",
4950
+ "id": 4,
4951
+ "options": {
4952
+ "jstype": "JS_STRING"
4953
+ }
4680
4954
  }
4681
4955
  }
4682
4956
  },
@@ -4690,13 +4964,47 @@
4690
4964
  "type": "string",
4691
4965
  "id": 2
4692
4966
  },
4693
- "token": {
4694
- "type": "OsmosisToken",
4967
+ "denom": {
4968
+ "type": "string",
4695
4969
  "id": 3
4970
+ },
4971
+ "amount": {
4972
+ "type": "uint64",
4973
+ "id": 4,
4974
+ "options": {
4975
+ "jstype": "JS_STRING"
4976
+ }
4696
4977
  }
4697
4978
  }
4698
4979
  },
4699
- "OsmosisMsgClaim": {
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": {
4700
5008
  "fields": {
4701
5009
  "delegator_address": {
4702
5010
  "type": "string",
@@ -4706,9 +5014,16 @@
4706
5014
  "type": "string",
4707
5015
  "id": 2
4708
5016
  },
4709
- "token": {
4710
- "type": "OsmosisToken",
5017
+ "denom": {
5018
+ "type": "string",
4711
5019
  "id": 3
5020
+ },
5021
+ "amount": {
5022
+ "type": "uint64",
5023
+ "id": 4,
5024
+ "options": {
5025
+ "jstype": "JS_STRING"
5026
+ }
4712
5027
  }
4713
5028
  }
4714
5029
  },
@@ -4726,13 +5041,27 @@
4726
5041
  "type": "uint64",
4727
5042
  "id": 3
4728
5043
  },
4729
- "token_in_max_a": {
4730
- "type": "OsmosisToken",
5044
+ "denom_in_max_a": {
5045
+ "type": "string",
4731
5046
  "id": 4
4732
5047
  },
4733
- "token_in_max_b": {
4734
- "type": "OsmosisToken",
4735
- "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
+ }
4736
5065
  }
4737
5066
  }
4738
5067
  },
@@ -4750,17 +5079,31 @@
4750
5079
  "type": "uint64",
4751
5080
  "id": 3
4752
5081
  },
4753
- "token_out_min_a": {
4754
- "type": "OsmosisToken",
5082
+ "denom_out_min_a": {
5083
+ "type": "string",
4755
5084
  "id": 4
4756
5085
  },
4757
- "token_out_min_b": {
4758
- "type": "OsmosisToken",
4759
- "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
+ }
4760
5103
  }
4761
5104
  }
4762
5105
  },
4763
- "OsmosisMsgFarmTokens": {
5106
+ "OsmosisMsgLPStake": {
4764
5107
  "fields": {
4765
5108
  "owner": {
4766
5109
  "type": "string",
@@ -4770,41 +5113,32 @@
4770
5113
  "type": "uint64",
4771
5114
  "id": 2
4772
5115
  },
4773
- "token": {
4774
- "type": "OsmosisToken",
4775
- "id": 3
5116
+ "denom": {
5117
+ "type": "string",
5118
+ "id": 4
5119
+ },
5120
+ "amount": {
5121
+ "type": "uint64",
5122
+ "id": 5,
5123
+ "options": {
5124
+ "jstype": "JS_STRING"
5125
+ }
4776
5126
  }
4777
5127
  }
4778
5128
  },
4779
- "OsmosisMsgIBCDeposit": {
5129
+ "OsmosisMsgLPUnstake": {
4780
5130
  "fields": {
4781
- "source_port": {
5131
+ "owner": {
4782
5132
  "type": "string",
4783
5133
  "id": 1
4784
5134
  },
4785
- "source_channel": {
5135
+ "id": {
4786
5136
  "type": "string",
4787
5137
  "id": 2
4788
- },
4789
- "token": {
4790
- "type": "OsmosisToken",
4791
- "id": 3
4792
- },
4793
- "sender": {
4794
- "type": "string",
4795
- "id": 4
4796
- },
4797
- "receiver": {
4798
- "type": "string",
4799
- "id": 5
4800
- },
4801
- "timeout_height": {
4802
- "type": "OsmosisTimeoutHeight",
4803
- "id": 6
4804
5138
  }
4805
5139
  }
4806
5140
  },
4807
- "OsmosisMsgIBCWithdrawal": {
5141
+ "OsmosisMsgIBCTransfer": {
4808
5142
  "fields": {
4809
5143
  "source_port": {
4810
5144
  "type": "string",
@@ -4814,21 +5148,32 @@
4814
5148
  "type": "string",
4815
5149
  "id": 2
4816
5150
  },
4817
- "token": {
4818
- "type": "OsmosisToken",
5151
+ "denom": {
5152
+ "type": "string",
4819
5153
  "id": 3
4820
5154
  },
5155
+ "amount": {
5156
+ "type": "uint64",
5157
+ "id": 4,
5158
+ "options": {
5159
+ "jstype": "JS_STRING"
5160
+ }
5161
+ },
4821
5162
  "sender": {
4822
5163
  "type": "string",
4823
- "id": 4
5164
+ "id": 5
4824
5165
  },
4825
5166
  "receiver": {
4826
5167
  "type": "string",
4827
- "id": 5
4828
- },
4829
- "timeout_height": {
4830
- "type": "OsmosisTimeoutHeight",
4831
5168
  "id": 6
5169
+ },
5170
+ "revision_number": {
5171
+ "type": "uint64",
5172
+ "id": 7
5173
+ },
5174
+ "revision_height": {
5175
+ "type": "uint64",
5176
+ "id": 8
4832
5177
  }
4833
5178
  }
4834
5179
  },
@@ -4846,13 +5191,20 @@
4846
5191
  "type": "string",
4847
5192
  "id": 3
4848
5193
  },
4849
- "token_in": {
4850
- "type": "OsmosisToken",
5194
+ "token_in_denom": {
5195
+ "type": "string",
4851
5196
  "id": 4
4852
5197
  },
5198
+ "token_in_amount": {
5199
+ "type": "uint64",
5200
+ "id": 5,
5201
+ "options": {
5202
+ "jstype": "JS_STRING"
5203
+ }
5204
+ },
4853
5205
  "token_out_min_amount": {
4854
5206
  "type": "uint64",
4855
- "id": 5
5207
+ "id": 6
4856
5208
  }
4857
5209
  }
4858
5210
  },