@rango-dev/provider-ledger 0.0.0-experimental-936229e8-20251208
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/CHANGELOG.md +193 -0
- package/dist/Eth-Y5JFGVQA.js +33 -0
- package/dist/Eth-Y5JFGVQA.js.map +7 -0
- package/dist/Solana-UB4SGWQ3.js +2 -0
- package/dist/Solana-UB4SGWQ3.js.map +7 -0
- package/dist/TransportWebHID-JLT4ETY3.js +2 -0
- package/dist/TransportWebHID-JLT4ETY3.js.map +7 -0
- package/dist/chunk-5QSDSOWH.js +2 -0
- package/dist/chunk-5QSDSOWH.js.map +7 -0
- package/dist/chunk-CVKDPNYM.js +3 -0
- package/dist/chunk-CVKDPNYM.js.map +7 -0
- package/dist/constants.d.ts +6 -0
- package/dist/legacy/index.d.ts +16 -0
- package/dist/mod.d.ts +2 -0
- package/dist/mod.js +2 -0
- package/dist/mod.js.map +7 -0
- package/dist/namespaces/evm.d.ts +3 -0
- package/dist/namespaces/solana.d.ts +3 -0
- package/dist/provider-ledger.build.json +1 -0
- package/dist/provider.d.ts +2 -0
- package/dist/signer.d.ts +2 -0
- package/dist/signers/ethereum.d.ts +8 -0
- package/dist/signers/solana.d.ts +9 -0
- package/dist/state.d.ts +2 -0
- package/dist/utils.d.ts +10 -0
- package/package.json +42 -0
- package/readme.md +16 -0
- package/src/constants.ts +91 -0
- package/src/legacy/index.ts +167 -0
- package/src/mod.ts +12 -0
- package/src/namespaces/evm.ts +65 -0
- package/src/namespaces/solana.ts +50 -0
- package/src/provider.ts +22 -0
- package/src/signer.ts +13 -0
- package/src/signers/ethereum.ts +107 -0
- package/src/signers/solana.ts +94 -0
- package/src/state.ts +10 -0
- package/src/utils.ts +140 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
# [0.26.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.25.1...provider-ledger@0.26.0) (2025-12-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## [0.25.1](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.25.0...provider-ledger@0.25.1) (2025-11-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# [0.23.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.22.0...provider-ledger@0.23.0) (2025-10-29)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# [0.22.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.21.0...provider-ledger@0.22.0) (2025-09-29)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* fix dynamic import issue in provider ledger ([b997aa3](https://github.com/rango-exchange/rango-client/commit/b997aa39782eea98374d5de8dde79c6cc839b687))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* migrate ledger provider to use hub ([a114101](https://github.com/rango-exchange/rango-client/commit/a114101bd9c317ec5c82c6146a6e88813bcbebf3))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# [0.21.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.20.0...provider-ledger@0.21.0) (2025-09-06)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
# [0.20.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.19.0...provider-ledger@0.20.0) (2025-08-19)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
|
|
36
|
+
* remove retry dynamic import and throw refined error on dynamic import failure ([a2944ac](https://github.com/rango-exchange/rango-client/commit/a2944ac3c05a0e945f6e5621fa5693ab89625485))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* implement retry mechanism for lazy imports ([9a8e191](https://github.com/rango-exchange/rango-client/commit/9a8e191711d2319990ca4d0613e8188a5f86842f))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
# [0.19.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.18.0...provider-ledger@0.19.0) (2025-08-05)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
# [0.18.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.17.0...provider-ledger@0.18.0) (2025-07-22)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
### Features
|
|
53
|
+
|
|
54
|
+
* add derivation path to swap wallets ([0728ac4](https://github.com/rango-exchange/rango-client/commit/0728ac40a67f648d254db2461627b7cd408a28c5))
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
### Reverts
|
|
58
|
+
|
|
59
|
+
* Revert "chore(release): publish" ([064ce15](https://github.com/rango-exchange/rango-client/commit/064ce157a2f819856f647f83aeb1c0410542e8d7))
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
# [0.16.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.15.1...provider-ledger@0.16.0) (2025-06-09)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
## [0.15.1](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.15.0...provider-ledger@0.15.1) (2025-05-04)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
# [0.15.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.14.0...provider-ledger@0.15.0) (2025-04-30)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Bug Fixes
|
|
75
|
+
|
|
76
|
+
* rename pbt to ptb for sui ([3d6d89f](https://github.com/rango-exchange/rango-client/commit/3d6d89f2265766607a15d61e0df92643fb33072b))
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
### Features
|
|
80
|
+
|
|
81
|
+
* implement updated design for initial connect modal ([2873c63](https://github.com/rango-exchange/rango-client/commit/2873c630de0740bb3b9f4e52bfa018857bd54dcd))
|
|
82
|
+
* update sui to consider recent api changes ([d764b25](https://github.com/rango-exchange/rango-client/commit/d764b2501df9bb295f63cdbc0b05acd4a3abb4b9))
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
# [0.14.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.13.0...provider-ledger@0.14.0) (2025-03-11)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
# [0.13.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.12.0...provider-ledger@0.13.0) (2025-02-23)
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
# [0.12.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.11.0...provider-ledger@0.12.0) (2025-01-20)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
# [0.11.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.10.0...provider-ledger@0.11.0) (2024-12-30)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
# [0.10.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.9.0...provider-ledger@0.10.0) (2024-11-27)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
### Features
|
|
106
|
+
|
|
107
|
+
* add ton connect provider ([2a2dbb7](https://github.com/rango-exchange/rango-client/commit/2a2dbb79022263f19446ced49d298e04d63f927f))
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
# [0.9.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.8.0...provider-ledger@0.9.0) (2024-11-12)
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
# [0.8.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.7.1...provider-ledger@0.8.0) (2024-10-12)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Bug Fixes
|
|
119
|
+
|
|
120
|
+
* bump sdk and fix type issues ([d442208](https://github.com/rango-exchange/rango-client/commit/d4422083bf5dd27d5f509ce1db7f9560d05428c8))
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Performance Improvements
|
|
124
|
+
|
|
125
|
+
* enable code splitting in build process ([fe5a41e](https://github.com/rango-exchange/rango-client/commit/fe5a41e0e297298de11cd74ca5825544742aa03a))
|
|
126
|
+
* lazy load signer packages ([7b88f18](https://github.com/rango-exchange/rango-client/commit/7b88f1834f7b29b4b81ab6c81a07bb88e8ccf55c))
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
## [0.7.1](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.7.0...provider-ledger@0.7.1) (2024-09-25)
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
# [0.7.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.6.0...provider-ledger@0.7.0) (2024-09-10)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
# [0.6.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.5.1...provider-ledger@0.6.0) (2024-08-11)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
### Features
|
|
142
|
+
|
|
143
|
+
* add derivation path modal for trezor wallet ([364422f](https://github.com/rango-exchange/rango-client/commit/364422f099b202a27a529591c5e3628bbb35508d))
|
|
144
|
+
* implement sign message method for providers with a custom signer ([cf9515f](https://github.com/rango-exchange/rango-client/commit/cf9515feb5d3754aac9c228fe83315daf1350c85))
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
## [0.5.1](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.5.0...provider-ledger@0.5.1) (2024-07-14)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
# [0.5.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.3.0...provider-ledger@0.5.0) (2024-07-09)
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
### Bug Fixes
|
|
156
|
+
|
|
157
|
+
* exclud ledger on mobile and fix injected wallet bug ([a6d90aa](https://github.com/rango-exchange/rango-client/commit/a6d90aa01b7b1fcea01ab46d1a74583ff6f98ff8))
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
### Features
|
|
161
|
+
|
|
162
|
+
* add a modal for setting custom derivation path for ledger ([5b74ec0](https://github.com/rango-exchange/rango-client/commit/5b74ec049393ed74e3e7547edc72b68bd70b7dce))
|
|
163
|
+
* add support for Trezor hardware wallet ([6edecbb](https://github.com/rango-exchange/rango-client/commit/6edecbb14fd008fc741c892bfa3e025c10160b9b))
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
# [0.4.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.3.0...provider-ledger@0.4.0) (2024-06-01)
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
### Bug Fixes
|
|
171
|
+
|
|
172
|
+
* exclud ledger on mobile and fix injected wallet bug ([a6d90aa](https://github.com/rango-exchange/rango-client/commit/a6d90aa01b7b1fcea01ab46d1a74583ff6f98ff8))
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
# [0.3.0](https://github.com/rango-exchange/rango-client/compare/provider-ledger@0.2.0...provider-ledger@0.3.0) (2024-05-14)
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
### Features
|
|
180
|
+
|
|
181
|
+
* add solana to ledger ([77b6695](https://github.com/rango-exchange/rango-client/commit/77b6695758165f9258a0ba5bd3b2cf39b0b2aab5))
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
# 0.2.0 (2024-04-24)
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
### Features
|
|
189
|
+
|
|
190
|
+
* add ethereum for ledger ([084aae2](https://github.com/rango-exchange/rango-client/commit/084aae28adaf0310dffe3a3100dd783252393053))
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|