@bitgo-beta/abstract-lightning 1.0.1-beta.75 → 1.0.1-beta.751
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/.mocharc.yml +1 -1
- package/CHANGELOG.md +363 -0
- package/dist/src/abstractLightningCoin.d.ts +3 -2
- package/dist/src/abstractLightningCoin.d.ts.map +1 -1
- package/dist/src/abstractLightningCoin.js +7 -2
- package/dist/src/codecs/api/backup.d.ts +15 -0
- package/dist/src/codecs/api/backup.d.ts.map +1 -0
- package/dist/src/codecs/api/backup.js +47 -0
- package/dist/src/codecs/api/balance.d.ts +132 -0
- package/dist/src/codecs/api/balance.d.ts.map +1 -0
- package/dist/src/codecs/api/balance.js +101 -0
- package/dist/src/codecs/api/index.d.ts +8 -0
- package/dist/src/codecs/api/index.d.ts.map +1 -0
- package/dist/src/codecs/api/index.js +24 -0
- package/dist/src/codecs/api/invoice.d.ts +66 -0
- package/dist/src/codecs/api/invoice.d.ts.map +1 -0
- package/dist/src/codecs/api/invoice.js +102 -0
- package/dist/src/codecs/api/payment.d.ts +107 -0
- package/dist/src/codecs/api/payment.d.ts.map +1 -0
- package/dist/src/codecs/api/payment.js +153 -0
- package/dist/src/codecs/api/transaction.d.ts +82 -0
- package/dist/src/codecs/api/transaction.d.ts.map +1 -0
- package/dist/src/codecs/api/transaction.js +104 -0
- package/dist/src/codecs/api/wallet.d.ts +96 -0
- package/dist/src/codecs/api/wallet.d.ts.map +1 -0
- package/dist/src/codecs/api/wallet.js +99 -0
- package/dist/src/codecs/api/withdraw.d.ts +85 -0
- package/dist/src/codecs/api/withdraw.d.ts.map +1 -0
- package/dist/src/codecs/api/withdraw.js +89 -0
- package/dist/src/codecs/index.d.ts +3 -0
- package/dist/src/codecs/index.d.ts.map +1 -0
- package/dist/src/codecs/index.js +19 -0
- package/dist/src/codecs/shared.d.ts +7 -0
- package/dist/src/codecs/shared.d.ts.map +1 -0
- package/dist/src/codecs/shared.js +42 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +4 -1
- package/dist/src/lightning/index.d.ts +4 -0
- package/dist/src/lightning/index.d.ts.map +1 -0
- package/dist/src/lightning/index.js +20 -0
- package/dist/src/lightning/lightningUtils.d.ts +74 -0
- package/dist/src/lightning/lightningUtils.d.ts.map +1 -0
- package/dist/src/lightning/lightningUtils.js +255 -0
- package/dist/src/lightning/signableJson.d.ts +17 -0
- package/dist/src/lightning/signableJson.d.ts.map +1 -0
- package/dist/src/lightning/signableJson.js +29 -0
- package/dist/src/lightning/signature.d.ts +22 -0
- package/dist/src/lightning/signature.d.ts.map +1 -0
- package/dist/src/lightning/signature.js +69 -0
- package/dist/src/wallet/custodialLightning.d.ts +7 -0
- package/dist/src/wallet/custodialLightning.d.ts.map +1 -0
- package/dist/src/wallet/custodialLightning.js +14 -0
- package/dist/src/wallet/index.d.ts +5 -0
- package/dist/src/wallet/index.d.ts.map +1 -0
- package/dist/src/wallet/index.js +21 -0
- package/dist/src/wallet/lightning.d.ts +143 -0
- package/dist/src/wallet/lightning.d.ts.map +1 -0
- package/dist/src/wallet/lightning.js +271 -0
- package/dist/src/wallet/selfCustodialLightning.d.ts +32 -0
- package/dist/src/wallet/selfCustodialLightning.d.ts.map +1 -0
- package/dist/src/wallet/selfCustodialLightning.js +131 -0
- package/dist/src/wallet/wallet.d.ts +7 -0
- package/dist/src/wallet/wallet.d.ts.map +1 -0
- package/dist/src/wallet/wallet.js +22 -0
- package/package.json +14 -5
package/.mocharc.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,369 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [6.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.2.10...@bitgo/abstract-lightning@6.3.0) (2025-08-22)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **root:** migrate ts-node -> tsx ([ea180b4](https://github.com/BitGo/BitGoJS/commit/ea180b43001d8e956196bc07b32798e3a7031eeb))
|
|
11
|
+
|
|
12
|
+
## [6.2.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.2.9...@bitgo/abstract-lightning@6.2.10) (2025-08-22)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
15
|
+
|
|
16
|
+
## [6.2.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.2.8...@bitgo/abstract-lightning@6.2.9) (2025-08-19)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
19
|
+
|
|
20
|
+
## [6.2.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.2.7...@bitgo/abstract-lightning@6.2.8) (2025-08-14)
|
|
21
|
+
|
|
22
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
23
|
+
|
|
24
|
+
## [6.2.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.2.6...@bitgo/abstract-lightning@6.2.7) (2025-08-07)
|
|
25
|
+
|
|
26
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
27
|
+
|
|
28
|
+
## [6.2.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.2.5...@bitgo/abstract-lightning@6.2.6) (2025-07-31)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
31
|
+
|
|
32
|
+
## [6.2.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.2.4...@bitgo/abstract-lightning@6.2.5) (2025-07-30)
|
|
33
|
+
|
|
34
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
35
|
+
|
|
36
|
+
## [6.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.2.2...@bitgo/abstract-lightning@6.2.4) (2025-07-25)
|
|
37
|
+
|
|
38
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
39
|
+
|
|
40
|
+
## [6.2.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.2.2...@bitgo/abstract-lightning@6.2.3) (2025-07-23)
|
|
41
|
+
|
|
42
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
43
|
+
|
|
44
|
+
## [6.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.2.1...@bitgo/abstract-lightning@6.2.2) (2025-07-15)
|
|
45
|
+
|
|
46
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
47
|
+
|
|
48
|
+
## [6.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.2.0...@bitgo/abstract-lightning@6.2.1) (2025-07-10)
|
|
49
|
+
|
|
50
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
51
|
+
|
|
52
|
+
# [6.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.1.1...@bitgo/abstract-lightning@6.2.0) (2025-07-03)
|
|
53
|
+
|
|
54
|
+
### Bug Fixes
|
|
55
|
+
|
|
56
|
+
- **abstract-lightning:** correct derivation index computation ([6800e77](https://github.com/BitGo/BitGoJS/commit/6800e779ba84d639a6dcd9e81a6789543c6422d6))
|
|
57
|
+
|
|
58
|
+
### Features
|
|
59
|
+
|
|
60
|
+
- added withdrawStatus in response lightning ([8666309](https://github.com/BitGo/BitGoJS/commit/866630934dfdea696d5f185e18785278999bb9cc))
|
|
61
|
+
- primary key changes for payment apis ([b398ae3](https://github.com/BitGo/BitGoJS/commit/b398ae3ee3af9749c16ebfb5c630e3b2ce26b043))
|
|
62
|
+
|
|
63
|
+
## [6.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.1.0...@bitgo/abstract-lightning@6.1.1) (2025-06-25)
|
|
64
|
+
|
|
65
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
66
|
+
|
|
67
|
+
# [6.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.0.2...@bitgo/abstract-lightning@6.1.0) (2025-06-24)
|
|
68
|
+
|
|
69
|
+
### Bug Fixes
|
|
70
|
+
|
|
71
|
+
- added payment_already_exist failure reason lightning ([220ca18](https://github.com/BitGo/BitGoJS/commit/220ca18417c2c9e196600f59a6eb921ecae31fd3))
|
|
72
|
+
- creating transfer before sending tx ([c7e30c5](https://github.com/BitGo/BitGoJS/commit/c7e30c5565c8485ff383fe5d24b9472e9328bafe))
|
|
73
|
+
- not send a error if get transfer fail lightning ([47a0568](https://github.com/BitGo/BitGoJS/commit/47a0568eba4509fb83c773ecc0d27a19e2d88ca3))
|
|
74
|
+
|
|
75
|
+
### Features
|
|
76
|
+
|
|
77
|
+
- **abstract-lightning:** add utility to compute BIP32 derivation index ([0ef9228](https://github.com/BitGo/BitGoJS/commit/0ef9228da2014e4a806c0735a05e41a5cc7a4414))
|
|
78
|
+
- **statics:** add middleware public key field to LightningNetwork ([579a9a3](https://github.com/BitGo/BitGoJS/commit/579a9a35cf96213b7ece8c6f38b99f53df61fec4))
|
|
79
|
+
- **statics:** add TAT shared secret derivation function ([8a75e82](https://github.com/BitGo/BitGoJS/commit/8a75e82068a9d8d44db7b276079c88fb46eefaee))
|
|
80
|
+
|
|
81
|
+
## [6.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.0.1...@bitgo/abstract-lightning@6.0.2) (2025-06-18)
|
|
82
|
+
|
|
83
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
84
|
+
|
|
85
|
+
## [6.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@6.0.0...@bitgo/abstract-lightning@6.0.1) (2025-06-10)
|
|
86
|
+
|
|
87
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
88
|
+
|
|
89
|
+
# [6.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@5.0.0...@bitgo/abstract-lightning@6.0.0) (2025-06-05)
|
|
90
|
+
|
|
91
|
+
### Bug Fixes
|
|
92
|
+
|
|
93
|
+
- removed InvoiceInfo codec ([9864abf](https://github.com/BitGo/BitGoJS/commit/9864abf35bc721059204377a359583c82556df92))
|
|
94
|
+
|
|
95
|
+
### Features
|
|
96
|
+
|
|
97
|
+
- added common withdraw codecs in abstract-lightning ([af6d555](https://github.com/BitGo/BitGoJS/commit/af6d55576fd83359387e42b0997ab3b64c1e8c23))
|
|
98
|
+
- **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
|
|
99
|
+
|
|
100
|
+
### BREAKING CHANGES
|
|
101
|
+
|
|
102
|
+
- create invoice response changed
|
|
103
|
+
|
|
104
|
+
TICKET: BTC-2155
|
|
105
|
+
|
|
106
|
+
# [5.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.3.4...@bitgo/abstract-lightning@5.0.0) (2025-06-02)
|
|
107
|
+
|
|
108
|
+
### Features
|
|
109
|
+
|
|
110
|
+
- **abstract-lightning:** locked to outbound locked balance name ([f0dcff0](https://github.com/BitGo/BitGoJS/commit/f0dcff01597fc6b30e7a10ec6a1c87b2a5f18207))
|
|
111
|
+
- **abstract-lightning:** make offchain lightning balance composed ([2a0ebfa](https://github.com/BitGo/BitGoJS/commit/2a0ebfa4a63533811bb4fa76cdcc72fe5325853b))
|
|
112
|
+
- added pagination in invoice ([3ce776b](https://github.com/BitGo/BitGoJS/commit/3ce776b40f4ad98b19e88568479cb7586bded5d7))
|
|
113
|
+
- added pagination in payments ([2389a6d](https://github.com/BitGo/BitGoJS/commit/2389a6dd952989d67143f078ad8dbd01348e8c6c))
|
|
114
|
+
- rename audit function naming and signature ([1a885ab](https://github.com/BitGo/BitGoJS/commit/1a885ab60d30ca8595e284a728f2ab9d3c09994e))
|
|
115
|
+
|
|
116
|
+
### BREAKING CHANGES
|
|
117
|
+
|
|
118
|
+
- response structure changed
|
|
119
|
+
- response structure changed
|
|
120
|
+
|
|
121
|
+
## [4.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.3.3...@bitgo/abstract-lightning@4.3.4) (2025-05-28)
|
|
122
|
+
|
|
123
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
124
|
+
|
|
125
|
+
## [4.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.3.2...@bitgo/abstract-lightning@4.3.3) (2025-05-22)
|
|
126
|
+
|
|
127
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
128
|
+
|
|
129
|
+
## [4.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.3.1...@bitgo/abstract-lightning@4.3.2) (2025-05-20)
|
|
130
|
+
|
|
131
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
132
|
+
|
|
133
|
+
## [4.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.3.0...@bitgo/abstract-lightning@4.3.1) (2025-05-07)
|
|
134
|
+
|
|
135
|
+
### Bug Fixes
|
|
136
|
+
|
|
137
|
+
- making satsPerVbyte compulsory ([db457bb](https://github.com/BitGo/BitGoJS/commit/db457bb07ffbc90aab4d1f67bf525a3e438e7069))
|
|
138
|
+
|
|
139
|
+
# [4.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.2.4...@bitgo/abstract-lightning@4.3.0) (2025-04-29)
|
|
140
|
+
|
|
141
|
+
### Features
|
|
142
|
+
|
|
143
|
+
- added withdraw route ([3206726](https://github.com/BitGo/BitGoJS/commit/32067263f63afdc2d1eb46a118643eb1dd066e6d))
|
|
144
|
+
|
|
145
|
+
## [4.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.2.3...@bitgo/abstract-lightning@4.2.4) (2025-04-25)
|
|
146
|
+
|
|
147
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
148
|
+
|
|
149
|
+
## [4.2.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.2.2...@bitgo/abstract-lightning@4.2.3) (2025-04-15)
|
|
150
|
+
|
|
151
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
152
|
+
|
|
153
|
+
## [4.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.2.1...@bitgo/abstract-lightning@4.2.2) (2025-04-04)
|
|
154
|
+
|
|
155
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
156
|
+
|
|
157
|
+
## [4.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.2.0...@bitgo/abstract-lightning@4.2.1) (2025-04-02)
|
|
158
|
+
|
|
159
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
160
|
+
|
|
161
|
+
# [4.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.1.1...@bitgo/abstract-lightning@4.2.0) (2025-03-28)
|
|
162
|
+
|
|
163
|
+
### Features
|
|
164
|
+
|
|
165
|
+
- **abstract-lightning:** add manually failed failure type ([3ea064d](https://github.com/BitGo/BitGoJS/commit/3ea064ddda7383b3a85bb64e965787623b465176))
|
|
166
|
+
- **abstract-lightning:** make encrypted prv key optional in get key ([be728ab](https://github.com/BitGo/BitGoJS/commit/be728ab7935fe00476647cb7b7e002a5af304d88))
|
|
167
|
+
|
|
168
|
+
## [4.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.1.0...@bitgo/abstract-lightning@4.1.1) (2025-03-20)
|
|
169
|
+
|
|
170
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
171
|
+
|
|
172
|
+
# [4.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.0.1...@bitgo/abstract-lightning@4.1.0) (2025-03-18)
|
|
173
|
+
|
|
174
|
+
### Bug Fixes
|
|
175
|
+
|
|
176
|
+
- **abstract-lightning:** nest intent ([bba99ce](https://github.com/BitGo/BitGoJS/commit/bba99cec98e3ed6c3d7ab48dec6ddb5f6c47b5e7))
|
|
177
|
+
|
|
178
|
+
### Features
|
|
179
|
+
|
|
180
|
+
- **abstract-lightning:** add custodial lightning api functions ([16b825a](https://github.com/BitGo/BitGoJS/commit/16b825a4d052399d4360c689b24888ab327ff6c0))
|
|
181
|
+
- **abstract-lightning:** add dev docs for pay invoice function ([8214e9e](https://github.com/BitGo/BitGoJS/commit/8214e9eae28b94a7592dfcccf84763158963fc16))
|
|
182
|
+
- **abstract-lightning:** get transfer for lightning pay invoice ([cfc6127](https://github.com/BitGo/BitGoJS/commit/cfc61278903976c8409574ba773c29dea7cfd743))
|
|
183
|
+
- **abstract-lightning:** move lightning wallet update ([f374f41](https://github.com/BitGo/BitGoJS/commit/f374f416e8ab907ef340dedd6c9d6c271d34253d))
|
|
184
|
+
- **express:** remove unneeded express routes and use subtype on wallet ([3356783](https://github.com/BitGo/BitGoJS/commit/335678378737608280f768b8306ced454d88a7c2))
|
|
185
|
+
- set a base factor for lightning ([32d0e48](https://github.com/BitGo/BitGoJS/commit/32d0e487cacf5ce6c840217ea0ab2bb7cedf79a2))
|
|
186
|
+
|
|
187
|
+
## [4.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@4.0.0...@bitgo/abstract-lightning@4.0.1) (2025-03-06)
|
|
188
|
+
|
|
189
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
190
|
+
|
|
191
|
+
# [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.44...@bitgo/abstract-lightning@4.0.0) (2025-03-04)
|
|
192
|
+
|
|
193
|
+
### Features
|
|
194
|
+
|
|
195
|
+
- **abstract-lightning:** add codecs for more lightning apis ([1b6d238](https://github.com/BitGo/BitGoJS/commit/1b6d238a3538f7059ce773f8bd218ad8b723f17c))
|
|
196
|
+
- **abstract-lightning:** move lnv2 logic from sdk-core ([5c9114d](https://github.com/BitGo/BitGoJS/commit/5c9114d6a4dbdd5a130bde7cb897ff6f1f8132e0))
|
|
197
|
+
- **abstract-lightning:** wire up lnv2 invoices ([dba5411](https://github.com/BitGo/BitGoJS/commit/dba5411dea805ab3bf5e3937736d5c0d6f166e49))
|
|
198
|
+
- add express endpoints for lightning ([97a163d](https://github.com/BitGo/BitGoJS/commit/97a163dc2465fc3b64a8993ca0099431df2583d6))
|
|
199
|
+
- add express endpoints for lightning ([d431322](https://github.com/BitGo/BitGoJS/commit/d431322aa8d76df8f88867c554df61574fd25b7a))
|
|
200
|
+
- add express endpoints for lightning invoice ([01d89de](https://github.com/BitGo/BitGoJS/commit/01d89de0aaa33d47953edd3aede9b8161b734195))
|
|
201
|
+
- add express endpoints for lightning invoice ([563c250](https://github.com/BitGo/BitGoJS/commit/563c250f1c028f10a3a0662c9faae900d6ee137c))
|
|
202
|
+
- add support to create lightning payments ([ffa5e71](https://github.com/BitGo/BitGoJS/commit/ffa5e71f12b640d9e5bffd41fd47cc144858d09d))
|
|
203
|
+
|
|
204
|
+
### BREAKING CHANGES
|
|
205
|
+
|
|
206
|
+
- **abstract-lightning:** Lightning v2
|
|
207
|
+
- **abstract-lightning:** Lightning v2
|
|
208
|
+
|
|
209
|
+
# [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.44...@bitgo/abstract-lightning@3.0.0) (2025-02-26)
|
|
210
|
+
|
|
211
|
+
### Features
|
|
212
|
+
|
|
213
|
+
- **abstract-lightning:** add codecs for more lightning apis ([1b6d238](https://github.com/BitGo/BitGoJS/commit/1b6d238a3538f7059ce773f8bd218ad8b723f17c))
|
|
214
|
+
- **abstract-lightning:** move lnv2 logic from sdk-core ([5c9114d](https://github.com/BitGo/BitGoJS/commit/5c9114d6a4dbdd5a130bde7cb897ff6f1f8132e0))
|
|
215
|
+
- **abstract-lightning:** wire up lnv2 invoices ([dba5411](https://github.com/BitGo/BitGoJS/commit/dba5411dea805ab3bf5e3937736d5c0d6f166e49))
|
|
216
|
+
|
|
217
|
+
### BREAKING CHANGES
|
|
218
|
+
|
|
219
|
+
- **abstract-lightning:** Lightning v2
|
|
220
|
+
- **abstract-lightning:** Lightning v2
|
|
221
|
+
|
|
222
|
+
# [2.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.44...@bitgo/abstract-lightning@2.0.0) (2025-02-20)
|
|
223
|
+
|
|
224
|
+
### Features
|
|
225
|
+
|
|
226
|
+
- **abstract-lightning:** move lnv2 logic from sdk-core ([5c9114d](https://github.com/BitGo/BitGoJS/commit/5c9114d6a4dbdd5a130bde7cb897ff6f1f8132e0))
|
|
227
|
+
- **abstract-lightning:** wire up lnv2 invoices ([dba5411](https://github.com/BitGo/BitGoJS/commit/dba5411dea805ab3bf5e3937736d5c0d6f166e49))
|
|
228
|
+
|
|
229
|
+
### BREAKING CHANGES
|
|
230
|
+
|
|
231
|
+
- **abstract-lightning:** Lightning v2
|
|
232
|
+
|
|
233
|
+
## [1.2.44](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.42...@bitgo/abstract-lightning@1.2.44) (2025-02-19)
|
|
234
|
+
|
|
235
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
236
|
+
|
|
237
|
+
## [1.2.43](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.42...@bitgo/abstract-lightning@1.2.43) (2025-02-11)
|
|
238
|
+
|
|
239
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
240
|
+
|
|
241
|
+
## [1.2.42](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.41...@bitgo/abstract-lightning@1.2.42) (2025-02-05)
|
|
242
|
+
|
|
243
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
244
|
+
|
|
245
|
+
## [1.2.41](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.40...@bitgo/abstract-lightning@1.2.41) (2025-01-28)
|
|
246
|
+
|
|
247
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
248
|
+
|
|
249
|
+
## [1.2.40](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.39...@bitgo/abstract-lightning@1.2.40) (2025-01-23)
|
|
250
|
+
|
|
251
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
252
|
+
|
|
253
|
+
## [1.2.39](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.38...@bitgo/abstract-lightning@1.2.39) (2025-01-23)
|
|
254
|
+
|
|
255
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
256
|
+
|
|
257
|
+
## [1.2.38](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.37...@bitgo/abstract-lightning@1.2.38) (2025-01-20)
|
|
258
|
+
|
|
259
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
260
|
+
|
|
261
|
+
## [1.2.37](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.36...@bitgo/abstract-lightning@1.2.37) (2025-01-15)
|
|
262
|
+
|
|
263
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
264
|
+
|
|
265
|
+
## [1.2.36](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.35...@bitgo/abstract-lightning@1.2.36) (2025-01-09)
|
|
266
|
+
|
|
267
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
268
|
+
|
|
269
|
+
## [1.2.35](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.34...@bitgo/abstract-lightning@1.2.35) (2025-01-03)
|
|
270
|
+
|
|
271
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
272
|
+
|
|
273
|
+
## [1.2.34](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.33...@bitgo/abstract-lightning@1.2.34) (2024-12-24)
|
|
274
|
+
|
|
275
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
276
|
+
|
|
277
|
+
## [1.2.33](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.32...@bitgo/abstract-lightning@1.2.33) (2024-12-19)
|
|
278
|
+
|
|
279
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
280
|
+
|
|
281
|
+
## [1.2.32](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.30...@bitgo/abstract-lightning@1.2.32) (2024-12-17)
|
|
282
|
+
|
|
283
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
284
|
+
|
|
285
|
+
## [1.2.31](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.30...@bitgo/abstract-lightning@1.2.31) (2024-12-17)
|
|
286
|
+
|
|
287
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
288
|
+
|
|
289
|
+
## [1.2.30](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.29...@bitgo/abstract-lightning@1.2.30) (2024-12-12)
|
|
290
|
+
|
|
291
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
292
|
+
|
|
293
|
+
## [1.2.29](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.28...@bitgo/abstract-lightning@1.2.29) (2024-12-11)
|
|
294
|
+
|
|
295
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
296
|
+
|
|
297
|
+
## [1.2.28](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.27...@bitgo/abstract-lightning@1.2.28) (2024-12-03)
|
|
298
|
+
|
|
299
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
300
|
+
|
|
301
|
+
## [1.2.27](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.26...@bitgo/abstract-lightning@1.2.27) (2024-11-26)
|
|
302
|
+
|
|
303
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
304
|
+
|
|
305
|
+
## [1.2.26](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.25...@bitgo/abstract-lightning@1.2.26) (2024-11-21)
|
|
306
|
+
|
|
307
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
308
|
+
|
|
309
|
+
## [1.2.25](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.23...@bitgo/abstract-lightning@1.2.25) (2024-11-19)
|
|
310
|
+
|
|
311
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
312
|
+
|
|
313
|
+
## [1.2.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.23...@bitgo/abstract-lightning@1.2.24) (2024-11-14)
|
|
314
|
+
|
|
315
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
316
|
+
|
|
317
|
+
## [1.2.23](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.22...@bitgo/abstract-lightning@1.2.23) (2024-11-08)
|
|
318
|
+
|
|
319
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
320
|
+
|
|
321
|
+
## [1.2.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.21...@bitgo/abstract-lightning@1.2.22) (2024-11-07)
|
|
322
|
+
|
|
323
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
324
|
+
|
|
325
|
+
## [1.2.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.20...@bitgo/abstract-lightning@1.2.21) (2024-11-01)
|
|
326
|
+
|
|
327
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
328
|
+
|
|
329
|
+
## [1.2.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.19...@bitgo/abstract-lightning@1.2.20) (2024-10-22)
|
|
330
|
+
|
|
331
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
332
|
+
|
|
333
|
+
## [1.2.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.18...@bitgo/abstract-lightning@1.2.19) (2024-10-15)
|
|
334
|
+
|
|
335
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
336
|
+
|
|
337
|
+
## [1.2.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.17...@bitgo/abstract-lightning@1.2.18) (2024-10-08)
|
|
338
|
+
|
|
339
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
340
|
+
|
|
341
|
+
## [1.2.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.16...@bitgo/abstract-lightning@1.2.17) (2024-10-04)
|
|
342
|
+
|
|
343
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
344
|
+
|
|
345
|
+
## [1.2.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.15...@bitgo/abstract-lightning@1.2.16) (2024-09-24)
|
|
346
|
+
|
|
347
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
348
|
+
|
|
349
|
+
## [1.2.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.14...@bitgo/abstract-lightning@1.2.15) (2024-09-19)
|
|
350
|
+
|
|
351
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
352
|
+
|
|
353
|
+
## [1.2.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.13...@bitgo/abstract-lightning@1.2.14) (2024-09-16)
|
|
354
|
+
|
|
355
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
356
|
+
|
|
357
|
+
## [1.2.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.12...@bitgo/abstract-lightning@1.2.13) (2024-09-10)
|
|
358
|
+
|
|
359
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
360
|
+
|
|
361
|
+
## [1.2.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.11...@bitgo/abstract-lightning@1.2.12) (2024-09-03)
|
|
362
|
+
|
|
363
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
364
|
+
|
|
365
|
+
## [1.2.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.10...@bitgo/abstract-lightning@1.2.11) (2024-08-29)
|
|
366
|
+
|
|
367
|
+
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
368
|
+
|
|
6
369
|
## [1.2.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-lightning@1.2.9...@bitgo/abstract-lightning@1.2.10) (2024-08-27)
|
|
7
370
|
|
|
8
371
|
**Note:** Version bump only for package @bitgo/abstract-lightning
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
import { BaseCoin, BitGoBase, KeyPair, ParsedTransaction, ParseTransactionOptions, SignedTransaction, SignTransactionOptions, VerifyAddressOptions, VerifyTransactionOptions } from '@bitgo-beta/sdk-core';
|
|
1
|
+
import { AuditDecryptedKeyParams, BaseCoin, BitGoBase, KeyPair, ParsedTransaction, ParseTransactionOptions, SignedTransaction, SignTransactionOptions, VerifyAddressOptions, VerifyTransactionOptions } from '@bitgo-beta/sdk-core';
|
|
3
2
|
import * as utxolib from '@bitgo-beta/utxo-lib';
|
|
4
3
|
export declare abstract class AbstractLightningCoin extends BaseCoin {
|
|
5
4
|
private readonly _network;
|
|
@@ -12,5 +11,7 @@ export declare abstract class AbstractLightningCoin extends BaseCoin {
|
|
|
12
11
|
isValidPub(pub: string): boolean;
|
|
13
12
|
isValidAddress(address: string): boolean;
|
|
14
13
|
signTransaction(params: SignTransactionOptions): Promise<SignedTransaction>;
|
|
14
|
+
/** @inheritDoc */
|
|
15
|
+
auditDecryptedKey(params: AuditDecryptedKeyParams): void;
|
|
15
16
|
}
|
|
16
17
|
//# sourceMappingURL=abstractLightningCoin.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"abstractLightningCoin.d.ts","sourceRoot":"","sources":["../../src/abstractLightningCoin.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"abstractLightningCoin.d.ts","sourceRoot":"","sources":["../../src/abstractLightningCoin.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,uBAAuB,EACvB,QAAQ,EACR,SAAS,EACT,OAAO,EACP,iBAAiB,EACjB,uBAAuB,EACvB,iBAAiB,EACjB,sBAAsB,EACtB,oBAAoB,EACpB,wBAAwB,EACzB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,OAAO,MAAM,sBAAsB,CAAC;AAIhD,8BAAsB,qBAAsB,SAAQ,QAAQ;IAC1D,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAkB;IAC3C,SAAS,aAAa,KAAK,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,CAAC,OAAO;IAKhE,aAAa,IAAI,MAAM;IAIvB,iBAAiB,CAAC,MAAM,EAAE,wBAAwB,GAAG,OAAO,CAAC,OAAO,CAAC;IAIrE,eAAe,CAAC,MAAM,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC;IAI/D,gBAAgB,CAAC,MAAM,EAAE,uBAAuB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAI7E,eAAe,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO;IAcvC,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAIhC,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO;IAIxC,eAAe,CAAC,MAAM,EAAE,sBAAsB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAI3E,kBAAkB;IAClB,iBAAiB,CAAC,MAAM,EAAE,uBAAuB;CAIlD"}
|
|
@@ -10,7 +10,7 @@ class AbstractLightningCoin extends sdk_core_1.BaseCoin {
|
|
|
10
10
|
this._network = network;
|
|
11
11
|
}
|
|
12
12
|
getBaseFactor() {
|
|
13
|
-
|
|
13
|
+
return 10e11;
|
|
14
14
|
}
|
|
15
15
|
verifyTransaction(params) {
|
|
16
16
|
throw new Error('Method not implemented.');
|
|
@@ -43,6 +43,11 @@ class AbstractLightningCoin extends sdk_core_1.BaseCoin {
|
|
|
43
43
|
signTransaction(params) {
|
|
44
44
|
throw new Error('Method not implemented.');
|
|
45
45
|
}
|
|
46
|
+
/** @inheritDoc */
|
|
47
|
+
auditDecryptedKey(params) {
|
|
48
|
+
/** https://bitgoinc.atlassian.net/browse/BTC-2149 */
|
|
49
|
+
throw new Error('Method not implemented.');
|
|
50
|
+
}
|
|
46
51
|
}
|
|
47
52
|
exports.AbstractLightningCoin = AbstractLightningCoin;
|
|
48
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
53
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWJzdHJhY3RMaWdodG5pbmdDb2luLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2Fic3RyYWN0TGlnaHRuaW5nQ29pbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSxtREFXOEI7QUFFOUIsbUNBQXFDO0FBQ3JDLG1EQUE2QztBQUU3QyxNQUFzQixxQkFBc0IsU0FBUSxtQkFBUTtJQUUxRCxZQUFzQixLQUFnQixFQUFFLE9BQXdCO1FBQzlELEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNiLElBQUksQ0FBQyxRQUFRLEdBQUcsT0FBTyxDQUFDO0lBQzFCLENBQUM7SUFFRCxhQUFhO1FBQ1gsT0FBTyxLQUFLLENBQUM7SUFDZixDQUFDO0lBRUQsaUJBQWlCLENBQUMsTUFBZ0M7UUFDaEQsTUFBTSxJQUFJLEtBQUssQ0FBQyx5QkFBeUIsQ0FBQyxDQUFDO0lBQzdDLENBQUM7SUFFRCxlQUFlLENBQUMsTUFBNEI7UUFDMUMsTUFBTSxJQUFJLEtBQUssQ0FBQyx5QkFBeUIsQ0FBQyxDQUFDO0lBQzdDLENBQUM7SUFFRCxnQkFBZ0IsQ0FBQyxNQUErQjtRQUM5QyxNQUFNLElBQUksS0FBSyxDQUFDLHlCQUF5QixDQUFDLENBQUM7SUFDN0MsQ0FBQztJQUVELGVBQWUsQ0FBQyxJQUFhO1FBQzNCLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQztZQUNWLDBFQUEwRTtZQUMxRSwwRUFBMEU7WUFDMUUsa0VBQWtFO1lBQ2xFLElBQUksR0FBRyxJQUFBLG9CQUFXLEVBQUMsR0FBRyxHQUFHLENBQUMsQ0FBQyxDQUFDO1FBQzlCLENBQUM7UUFDRCxNQUFNLFdBQVcsR0FBRyxnQkFBSyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUN6QyxPQUFPO1lBQ0wsR0FBRyxFQUFFLFdBQVcsQ0FBQyxRQUFRLEVBQUUsQ0FBQyxRQUFRLEVBQUU7WUFDdEMsR0FBRyxFQUFFLFdBQVcsQ0FBQyxRQUFRLEVBQUU7U0FDNUIsQ0FBQztJQUNKLENBQUM7SUFFRCxVQUFVLENBQUMsR0FBVztRQUNwQixNQUFNLElBQUksS0FBSyxDQUFDLHlCQUF5QixDQUFDLENBQUM7SUFDN0MsQ0FBQztJQUVELGNBQWMsQ0FBQyxPQUFlO1FBQzVCLE1BQU0sSUFBSSxLQUFLLENBQUMseUJBQXlCLENBQUMsQ0FBQztJQUM3QyxDQUFDO0lBRUQsZUFBZSxDQUFDLE1BQThCO1FBQzVDLE1BQU0sSUFBSSxLQUFLLENBQUMseUJBQXlCLENBQUMsQ0FBQztJQUM3QyxDQUFDO0lBRUQsa0JBQWtCO0lBQ2xCLGlCQUFpQixDQUFDLE1BQStCO1FBQy9DLHFEQUFxRDtRQUNyRCxNQUFNLElBQUksS0FBSyxDQUFDLHlCQUF5QixDQUFDLENBQUM7SUFDN0MsQ0FBQztDQUNGO0FBdERELHNEQXNEQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIEF1ZGl0RGVjcnlwdGVkS2V5UGFyYW1zLFxuICBCYXNlQ29pbixcbiAgQml0R29CYXNlLFxuICBLZXlQYWlyLFxuICBQYXJzZWRUcmFuc2FjdGlvbixcbiAgUGFyc2VUcmFuc2FjdGlvbk9wdGlvbnMsXG4gIFNpZ25lZFRyYW5zYWN0aW9uLFxuICBTaWduVHJhbnNhY3Rpb25PcHRpb25zLFxuICBWZXJpZnlBZGRyZXNzT3B0aW9ucyxcbiAgVmVyaWZ5VHJhbnNhY3Rpb25PcHRpb25zLFxufSBmcm9tICdAYml0Z28tYmV0YS9zZGstY29yZSc7XG5pbXBvcnQgKiBhcyB1dHhvbGliIGZyb20gJ0BiaXRnby1iZXRhL3V0eG8tbGliJztcbmltcG9ydCB7IHJhbmRvbUJ5dGVzIH0gZnJvbSAnY3J5cHRvJztcbmltcG9ydCB7IGJpcDMyIH0gZnJvbSAnQGJpdGdvLWJldGEvdXR4by1saWInO1xuXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgQWJzdHJhY3RMaWdodG5pbmdDb2luIGV4dGVuZHMgQmFzZUNvaW4ge1xuICBwcml2YXRlIHJlYWRvbmx5IF9uZXR3b3JrOiB1dHhvbGliLk5ldHdvcms7XG4gIHByb3RlY3RlZCBjb25zdHJ1Y3RvcihiaXRnbzogQml0R29CYXNlLCBuZXR3b3JrOiB1dHhvbGliLk5ldHdvcmspIHtcbiAgICBzdXBlcihiaXRnbyk7XG4gICAgdGhpcy5fbmV0d29yayA9IG5ldHdvcms7XG4gIH1cblxuICBnZXRCYXNlRmFjdG9yKCk6IG51bWJlciB7XG4gICAgcmV0dXJuIDEwZTExO1xuICB9XG5cbiAgdmVyaWZ5VHJhbnNhY3Rpb24ocGFyYW1zOiBWZXJpZnlUcmFuc2FjdGlvbk9wdGlvbnMpOiBQcm9taXNlPGJvb2xlYW4+IHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoJ01ldGhvZCBub3QgaW1wbGVtZW50ZWQuJyk7XG4gIH1cblxuICBpc1dhbGxldEFkZHJlc3MocGFyYW1zOiBWZXJpZnlBZGRyZXNzT3B0aW9ucyk6IFByb21pc2U8Ym9vbGVhbj4ge1xuICAgIHRocm93IG5ldyBFcnJvcignTWV0aG9kIG5vdCBpbXBsZW1lbnRlZC4nKTtcbiAgfVxuXG4gIHBhcnNlVHJhbnNhY3Rpb24ocGFyYW1zOiBQYXJzZVRyYW5zYWN0aW9uT3B0aW9ucyk6IFByb21pc2U8UGFyc2VkVHJhbnNhY3Rpb24+IHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoJ01ldGhvZCBub3QgaW1wbGVtZW50ZWQuJyk7XG4gIH1cblxuICBnZW5lcmF0ZUtleVBhaXIoc2VlZD86IEJ1ZmZlcik6IEtleVBhaXIge1xuICAgIGlmICghc2VlZCkge1xuICAgICAgLy8gQW4gZXh0ZW5kZWQgcHJpdmF0ZSBrZXkgaGFzIGJvdGggYSBub3JtYWwgMjU2IGJpdCBwcml2YXRlIGtleSBhbmQgYSAyNTZcbiAgICAgIC8vIGJpdCBjaGFpbiBjb2RlLCBib3RoIG9mIHdoaWNoIG11c3QgYmUgcmFuZG9tLiA1MTIgYml0cyBpcyB0aGVyZWZvcmUgdGhlXG4gICAgICAvLyBtYXhpbXVtIGVudHJvcHkgYW5kIGdpdmVzIHVzIG1heGltdW0gc2VjdXJpdHkgYWdhaW5zdCBjcmFja2luZy5cbiAgICAgIHNlZWQgPSByYW5kb21CeXRlcyg1MTIgLyA4KTtcbiAgICB9XG4gICAgY29uc3QgZXh0ZW5kZWRLZXkgPSBiaXAzMi5mcm9tU2VlZChzZWVkKTtcbiAgICByZXR1cm4ge1xuICAgICAgcHViOiBleHRlbmRlZEtleS5uZXV0ZXJlZCgpLnRvQmFzZTU4KCksXG4gICAgICBwcnY6IGV4dGVuZGVkS2V5LnRvQmFzZTU4KCksXG4gICAgfTtcbiAgfVxuXG4gIGlzVmFsaWRQdWIocHViOiBzdHJpbmcpOiBib29sZWFuIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoJ01ldGhvZCBub3QgaW1wbGVtZW50ZWQuJyk7XG4gIH1cblxuICBpc1ZhbGlkQWRkcmVzcyhhZGRyZXNzOiBzdHJpbmcpOiBib29sZWFuIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoJ01ldGhvZCBub3QgaW1wbGVtZW50ZWQuJyk7XG4gIH1cblxuICBzaWduVHJhbnNhY3Rpb24ocGFyYW1zOiBTaWduVHJhbnNhY3Rpb25PcHRpb25zKTogUHJvbWlzZTxTaWduZWRUcmFuc2FjdGlvbj4ge1xuICAgIHRocm93IG5ldyBFcnJvcignTWV0aG9kIG5vdCBpbXBsZW1lbnRlZC4nKTtcbiAgfVxuXG4gIC8qKiBAaW5oZXJpdERvYyAqL1xuICBhdWRpdERlY3J5cHRlZEtleShwYXJhbXM6IEF1ZGl0RGVjcnlwdGVkS2V5UGFyYW1zKSB7XG4gICAgLyoqIGh0dHBzOi8vYml0Z29pbmMuYXRsYXNzaWFuLm5ldC9icm93c2UvQlRDLTIxNDkgKi9cbiAgICB0aHJvdyBuZXcgRXJyb3IoJ01ldGhvZCBub3QgaW1wbGVtZW50ZWQuJyk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as t from 'io-ts';
|
|
2
|
+
export declare const ChanPoints: t.ExactC<t.TypeC<{
|
|
3
|
+
fundingTxid: t.StringC;
|
|
4
|
+
outputIndex: t.NumberC;
|
|
5
|
+
}>>;
|
|
6
|
+
export type ChanPoints = t.TypeOf<typeof ChanPoints>;
|
|
7
|
+
export declare const BackupResponse: t.ExactC<t.TypeC<{
|
|
8
|
+
chanPoints: t.ArrayC<t.ExactC<t.TypeC<{
|
|
9
|
+
fundingTxid: t.StringC;
|
|
10
|
+
outputIndex: t.NumberC;
|
|
11
|
+
}>>>;
|
|
12
|
+
multiChanBackup: t.StringC;
|
|
13
|
+
}>>;
|
|
14
|
+
export type BackupResponse = t.TypeOf<typeof BackupResponse>;
|
|
15
|
+
//# sourceMappingURL=backup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"backup.d.ts","sourceRoot":"","sources":["../../../../src/codecs/api/backup.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAI3B,eAAO,MAAM,UAAU;;;GAMtB,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,UAAU,CAAC,CAAC;AAErD,eAAO,MAAM,cAAc;;;;;;GAM1B,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,cAAc,CAAC,CAAC"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.BackupResponse = exports.ChanPoints = void 0;
|
|
37
|
+
const t = __importStar(require("io-ts"));
|
|
38
|
+
// codecs for lightning wallet channel backup api
|
|
39
|
+
exports.ChanPoints = t.strict({
|
|
40
|
+
fundingTxid: t.string,
|
|
41
|
+
outputIndex: t.number,
|
|
42
|
+
}, 'ChanPoints');
|
|
43
|
+
exports.BackupResponse = t.strict({
|
|
44
|
+
chanPoints: t.array(exports.ChanPoints),
|
|
45
|
+
multiChanBackup: t.string,
|
|
46
|
+
}, 'BackupResponse');
|
|
47
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFja3VwLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2NvZGVjcy9hcGkvYmFja3VwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLHlDQUEyQjtBQUUzQixpREFBaUQ7QUFFcEMsUUFBQSxVQUFVLEdBQUcsQ0FBQyxDQUFDLE1BQU0sQ0FDaEM7SUFDRSxXQUFXLEVBQUUsQ0FBQyxDQUFDLE1BQU07SUFDckIsV0FBVyxFQUFFLENBQUMsQ0FBQyxNQUFNO0NBQ3RCLEVBQ0QsWUFBWSxDQUNiLENBQUM7QUFJVyxRQUFBLGNBQWMsR0FBRyxDQUFDLENBQUMsTUFBTSxDQUNwQztJQUNFLFVBQVUsRUFBRSxDQUFDLENBQUMsS0FBSyxDQUFDLGtCQUFVLENBQUM7SUFDL0IsZUFBZSxFQUFFLENBQUMsQ0FBQyxNQUFNO0NBQzFCLEVBQ0QsZ0JBQWdCLENBQ2pCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyB0IGZyb20gJ2lvLXRzJztcblxuLy8gY29kZWNzIGZvciBsaWdodG5pbmcgd2FsbGV0IGNoYW5uZWwgYmFja3VwIGFwaVxuXG5leHBvcnQgY29uc3QgQ2hhblBvaW50cyA9IHQuc3RyaWN0KFxuICB7XG4gICAgZnVuZGluZ1R4aWQ6IHQuc3RyaW5nLFxuICAgIG91dHB1dEluZGV4OiB0Lm51bWJlcixcbiAgfSxcbiAgJ0NoYW5Qb2ludHMnXG4pO1xuXG5leHBvcnQgdHlwZSBDaGFuUG9pbnRzID0gdC5UeXBlT2Y8dHlwZW9mIENoYW5Qb2ludHM+O1xuXG5leHBvcnQgY29uc3QgQmFja3VwUmVzcG9uc2UgPSB0LnN0cmljdChcbiAge1xuICAgIGNoYW5Qb2ludHM6IHQuYXJyYXkoQ2hhblBvaW50cyksXG4gICAgbXVsdGlDaGFuQmFja3VwOiB0LnN0cmluZyxcbiAgfSxcbiAgJ0JhY2t1cFJlc3BvbnNlJ1xuKTtcblxuZXhwb3J0IHR5cGUgQmFja3VwUmVzcG9uc2UgPSB0LlR5cGVPZjx0eXBlb2YgQmFja3VwUmVzcG9uc2U+O1xuIl19
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import * as t from 'io-ts';
|
|
2
|
+
export declare const LndAmount: t.ExactC<t.TypeC<{
|
|
3
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
4
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
5
|
+
}>>;
|
|
6
|
+
export type LndAmount = t.TypeOf<typeof LndAmount>;
|
|
7
|
+
export declare const ChannelBalance: t.ExactC<t.TypeC<{
|
|
8
|
+
/** The balance on your side of the channel and what you the user can spend. */
|
|
9
|
+
localBalance: t.ExactC<t.TypeC<{
|
|
10
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
11
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
12
|
+
}>>;
|
|
13
|
+
/** The balance on the other side of the channel, what your channel partner can controls. */
|
|
14
|
+
remoteBalance: t.ExactC<t.TypeC<{
|
|
15
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
16
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
17
|
+
}>>;
|
|
18
|
+
/** Sum of local unsettled balances. */
|
|
19
|
+
unsettledLocalBalance: t.ExactC<t.TypeC<{
|
|
20
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
21
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
22
|
+
}>>;
|
|
23
|
+
/** Sum of remote unsettled balances. */
|
|
24
|
+
unsettledRemoteBalance: t.ExactC<t.TypeC<{
|
|
25
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
26
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
27
|
+
}>>;
|
|
28
|
+
/** Sum of local pending balances. */
|
|
29
|
+
pendingOpenLocalBalance: t.ExactC<t.TypeC<{
|
|
30
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
31
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
32
|
+
}>>;
|
|
33
|
+
/** Sum of local remote balances. */
|
|
34
|
+
pendingOpenRemoteBalance: t.ExactC<t.TypeC<{
|
|
35
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
36
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
37
|
+
}>>;
|
|
38
|
+
}>>;
|
|
39
|
+
export type ChannelBalance = t.TypeOf<typeof ChannelBalance>;
|
|
40
|
+
export declare const LndWalletBalance: t.ExactC<t.TypeC<{
|
|
41
|
+
/** Total balance, confirmed and unconfirmed */
|
|
42
|
+
totalBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
43
|
+
confirmedBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
44
|
+
unconfirmedBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
45
|
+
lockedBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
46
|
+
reservedBalanceAnchorChan: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
47
|
+
}>>;
|
|
48
|
+
export type LndWalletBalance = t.TypeOf<typeof LndWalletBalance>;
|
|
49
|
+
/**
|
|
50
|
+
The balances as returned from lnd.
|
|
51
|
+
|
|
52
|
+
Wallet Balance
|
|
53
|
+
https://api.lightning.community/api/lnd/lightning/wallet-balance/index.html
|
|
54
|
+
|
|
55
|
+
Channel Balance
|
|
56
|
+
https://api.lightning.community/api/lnd/lightning/channel-balance/index.html
|
|
57
|
+
*/
|
|
58
|
+
export declare const LndBalance: t.ExactC<t.TypeC<{
|
|
59
|
+
offchain: t.ExactC<t.TypeC<{
|
|
60
|
+
/** The balance on your side of the channel and what you the user can spend. */
|
|
61
|
+
localBalance: t.ExactC<t.TypeC<{
|
|
62
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
63
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
64
|
+
}>>;
|
|
65
|
+
/** The balance on the other side of the channel, what your channel partner can controls. */
|
|
66
|
+
remoteBalance: t.ExactC<t.TypeC<{
|
|
67
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
68
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
69
|
+
}>>;
|
|
70
|
+
/** Sum of local unsettled balances. */
|
|
71
|
+
unsettledLocalBalance: t.ExactC<t.TypeC<{
|
|
72
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
73
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
74
|
+
}>>;
|
|
75
|
+
/** Sum of remote unsettled balances. */
|
|
76
|
+
unsettledRemoteBalance: t.ExactC<t.TypeC<{
|
|
77
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
78
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
79
|
+
}>>;
|
|
80
|
+
/** Sum of local pending balances. */
|
|
81
|
+
pendingOpenLocalBalance: t.ExactC<t.TypeC<{
|
|
82
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
83
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
84
|
+
}>>;
|
|
85
|
+
/** Sum of local remote balances. */
|
|
86
|
+
pendingOpenRemoteBalance: t.ExactC<t.TypeC<{
|
|
87
|
+
sat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
88
|
+
msat: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
89
|
+
}>>;
|
|
90
|
+
}>>;
|
|
91
|
+
onchain: t.ExactC<t.TypeC<{
|
|
92
|
+
/** Total balance, confirmed and unconfirmed */
|
|
93
|
+
totalBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
94
|
+
confirmedBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
95
|
+
unconfirmedBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
96
|
+
lockedBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
97
|
+
reservedBalanceAnchorChan: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
98
|
+
}>>;
|
|
99
|
+
totalLimboBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
100
|
+
}>>;
|
|
101
|
+
export type LndBalance = t.TypeOf<typeof LndBalance>;
|
|
102
|
+
export declare const LndGetOffchainBalances: t.ExactC<t.TypeC<{
|
|
103
|
+
outboundBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
104
|
+
outboundPendingBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
105
|
+
outboundUnsettledBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
106
|
+
outboundLockedBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
107
|
+
inboundBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
108
|
+
inboundPendingBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
109
|
+
inboundUnsettledBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
110
|
+
}>>;
|
|
111
|
+
export declare const LndGetOnchainBalances: t.ExactC<t.TypeC<{
|
|
112
|
+
spendableBalanceString: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
113
|
+
balanceString: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
114
|
+
confirmedBalanceString: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
115
|
+
}>>;
|
|
116
|
+
export declare const LndGetBalancesResponse: t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
117
|
+
offchain: t.ExactC<t.TypeC<{
|
|
118
|
+
outboundBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
119
|
+
outboundPendingBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
120
|
+
outboundUnsettledBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
121
|
+
outboundLockedBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
122
|
+
inboundBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
123
|
+
inboundPendingBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
124
|
+
inboundUnsettledBalance: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
125
|
+
}>>;
|
|
126
|
+
}>>, t.ExactC<t.TypeC<{
|
|
127
|
+
spendableBalanceString: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
128
|
+
balanceString: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
129
|
+
confirmedBalanceString: import("io-ts-types/BigIntFromString").BigIntFromStringC;
|
|
130
|
+
}>>]>;
|
|
131
|
+
export type LndGetBalancesResponse = t.TypeOf<typeof LndGetBalancesResponse>;
|
|
132
|
+
//# sourceMappingURL=balance.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"balance.d.ts","sourceRoot":"","sources":["../../../../src/codecs/api/balance.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAK3B,eAAO,MAAM,SAAS;;;GAMrB,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,SAAS,CAAC,CAAC;AAEnD,eAAO,MAAM,cAAc;IAEvB,+EAA+E;;;;;IAE/E,4FAA4F;;;;;IAE5F,uCAAuC;;;;;IAEvC,wCAAwC;;;;;IAExC,qCAAqC;;;;;IAErC,oCAAoC;;;;;GAIvC,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,cAAc,CAAC,CAAC;AAE7D,eAAO,MAAM,gBAAgB;IAEzB,+CAA+C;;;;;;GAQlD,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEjE;;;;;;;;GAQG;AACH,eAAO,MAAM,UAAU;;QAzCnB,+EAA+E;;;;;QAE/E,4FAA4F;;;;;QAE5F,uCAAuC;;;;;QAEvC,wCAAwC;;;;;QAExC,qCAAqC;;;;;QAErC,oCAAoC;;;;;;;QAUpC,+CAA+C;;;;;;;;GA4BlD,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,UAAU,CAAC,CAAC;AAErD,eAAO,MAAM,sBAAsB;;;;;;;;GAWlC,CAAC;AAGF,eAAO,MAAM,qBAAqB;;;;GAOjC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;KAQlC,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|