@lifi/types 1.0.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/CHANGELOG.md +635 -0
- package/LICENSE +21 -0
- package/README.md +9 -0
- package/dist/api.d.ts +176 -0
- package/dist/api.js +50 -0
- package/dist/apiErrors.d.ts +9 -0
- package/dist/apiErrors.js +2 -0
- package/dist/base.d.ts +204 -0
- package/dist/base.js +174 -0
- package/dist/bridges.d.ts +34 -0
- package/dist/bridges.js +170 -0
- package/dist/chains/Chain.d.ts +15 -0
- package/dist/chains/Chain.js +8 -0
- package/dist/chains/EVMChain.d.ts +19 -0
- package/dist/chains/EVMChain.js +8 -0
- package/dist/chains/SolanaChain.d.ts +2 -0
- package/dist/chains/SolanaChain.js +2 -0
- package/dist/chains/chain.utils.d.ts +4 -0
- package/dist/chains/chain.utils.js +30 -0
- package/dist/chains/index.d.ts +5 -0
- package/dist/chains/index.js +21 -0
- package/dist/chains/supported.chains.d.ts +5 -0
- package/dist/chains/supported.chains.js +1172 -0
- package/dist/coins.d.ts +9 -0
- package/dist/coins.js +1334 -0
- package/dist/exchanges.d.ts +51 -0
- package/dist/exchanges.js +1047 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +24 -0
- package/dist/multicall.d.ts +3 -0
- package/dist/multicall.js +61 -0
- package/dist/step.d.ts +103 -0
- package/dist/step.js +19 -0
- package/package.json +77 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,635 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
## [1.0.0](https://github.com/lifinance/types/compare/v0.14.20...v1.0.0) (2022-07-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* move to a new @lifi scope (#83)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* move to a new [@lifi](https://github.com/lifi) scope ([#83](https://github.com/lifinance/types/issues/83)) ([ba1a3c1](https://github.com/lifinance/types/commit/ba1a3c14eb54fbc5e3ff9070137891fa5d12a262))
|
|
15
|
+
|
|
16
|
+
### [0.14.20](https://github.com/lifinance/types/compare/v0.14.19...v0.14.20) (2022-07-12)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* add evmos on chain list ([#82](https://github.com/lifinance/types/issues/82)) ([c86e989](https://github.com/lifinance/types/commit/c86e9897e22c25173f9a7f7205beca7f220f9c45))
|
|
22
|
+
|
|
23
|
+
### [0.14.19](https://github.com/lifinance/types/compare/v0.14.18...v0.14.19) (2022-07-07)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* **coin:** add coin keys again ([#81](https://github.com/lifinance/types/issues/81)) ([4fc2b9f](https://github.com/lifinance/types/commit/4fc2b9fdc24eb7f4800dfeb69dd13ef10f853f07))
|
|
29
|
+
|
|
30
|
+
### [0.14.18](https://github.com/lifinance/types/compare/v0.14.17...v0.14.18) (2022-07-06)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* **coins:** update names and symbols or tokens ([#80](https://github.com/lifinance/types/issues/80)) ([6f773e5](https://github.com/lifinance/types/commit/6f773e5bef863d7dd2ed238ac6fb32779d340424))
|
|
36
|
+
|
|
37
|
+
### [0.14.17](https://github.com/lifinance/types/compare/v0.14.16...v0.14.17) (2022-07-06)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Bug Fixes
|
|
41
|
+
|
|
42
|
+
* the native token on Gnosis is called XDAI, not DAI ([#79](https://github.com/lifinance/types/issues/79)) ([20e35d1](https://github.com/lifinance/types/commit/20e35d123b24726247999b43ec03da1152940d7a))
|
|
43
|
+
|
|
44
|
+
### [0.14.16](https://github.com/lifinance/types/compare/v0.14.14...v0.14.16) (2022-07-05)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Features
|
|
48
|
+
|
|
49
|
+
* added ToolError ([#78](https://github.com/lifinance/types/issues/78)) ([e2960ba](https://github.com/lifinance/types/commit/e2960ba955afdc4e7464cba1c4ca0286b6fb5b55))
|
|
50
|
+
* **api:** make `getTools` async ([1457c33](https://github.com/lifinance/types/commit/1457c335578a0ef3bccfc4a76a42e016a9344237))
|
|
51
|
+
|
|
52
|
+
### [0.14.15](https://github.com/lifinance/types/compare/v0.14.12...v0.14.15) (2022-07-05)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Features
|
|
56
|
+
|
|
57
|
+
* added substatus 'REFUND_IN_PROGRESS' ([#77](https://github.com/lifinance/types/issues/77)) ([56b0ef1](https://github.com/lifinance/types/commit/56b0ef172177c7a86fe290b0e507e5859ddec577))
|
|
58
|
+
* **api:** make `getTools` async ([1457c33](https://github.com/lifinance/types/commit/1457c335578a0ef3bccfc4a76a42e016a9344237))
|
|
59
|
+
* stargate logo ([#75](https://github.com/lifinance/types/issues/75)) ([710c9f2](https://github.com/lifinance/types/commit/710c9f2aff5b6f414c0c3ac64a38515aec0d8c66))
|
|
60
|
+
|
|
61
|
+
### [0.14.14](https://github.com/lifinance/types/compare/v0.14.13...v0.14.14) (2022-06-22)
|
|
62
|
+
|
|
63
|
+
### [0.14.13](https://github.com/lifinance/types/compare/v0.14.11...v0.14.13) (2022-06-22)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### Features
|
|
67
|
+
|
|
68
|
+
* added substatus 'REFUND_IN_PROGRESS' ([#77](https://github.com/lifinance/types/issues/77)) ([56b0ef1](https://github.com/lifinance/types/commit/56b0ef172177c7a86fe290b0e507e5859ddec577))
|
|
69
|
+
* stargate logo ([#75](https://github.com/lifinance/types/issues/75)) ([710c9f2](https://github.com/lifinance/types/commit/710c9f2aff5b6f414c0c3ac64a38515aec0d8c66))
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
### Bug Fixes
|
|
73
|
+
|
|
74
|
+
* rename _Order ([b627ac7](https://github.com/lifinance/types/commit/b627ac785dc6d31d3172d93369d8e1dada74bb25))
|
|
75
|
+
|
|
76
|
+
### [0.14.12](https://github.com/lifinance/types/compare/v0.14.11...v0.14.12) (2022-06-08)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
### Bug Fixes
|
|
80
|
+
|
|
81
|
+
* rename _Order ([b627ac7](https://github.com/lifinance/types/commit/b627ac785dc6d31d3172d93369d8e1dada74bb25))
|
|
82
|
+
|
|
83
|
+
### [0.14.11](https://github.com/lifinance/types/compare/v0.14.9...v0.14.11) (2022-06-08)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Features
|
|
87
|
+
|
|
88
|
+
* extend order type ([#73](https://github.com/lifinance/types/issues/73)) ([e49f64b](https://github.com/lifinance/types/commit/e49f64b7e10f130f155767f24ee59bf3ac243035))
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
### Bug Fixes
|
|
92
|
+
|
|
93
|
+
* removed substatus type RECEIVED_UNKNOWN_TOKEN ([#74](https://github.com/lifinance/types/issues/74)) ([41b49ed](https://github.com/lifinance/types/commit/41b49ede290e19c7f17d88563f1d7db954c173d6))
|
|
94
|
+
* removed unused NOT_AVAILABLE status ([#72](https://github.com/lifinance/types/issues/72)) ([3c570e2](https://github.com/lifinance/types/commit/3c570e2047a12f4c7b74ac920f7a1240c0ab91fc))
|
|
95
|
+
|
|
96
|
+
### [0.14.10](https://github.com/lifinance/types/compare/v0.14.9...v0.14.10) (2022-06-07)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Features
|
|
100
|
+
|
|
101
|
+
* extend order type ([#73](https://github.com/lifinance/types/issues/73)) ([e49f64b](https://github.com/lifinance/types/commit/e49f64b7e10f130f155767f24ee59bf3ac243035))
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Bug Fixes
|
|
105
|
+
|
|
106
|
+
* removed unused NOT_AVAILABLE status ([#72](https://github.com/lifinance/types/issues/72)) ([3c570e2](https://github.com/lifinance/types/commit/3c570e2047a12f4c7b74ac920f7a1240c0ab91fc))
|
|
107
|
+
|
|
108
|
+
### [0.14.9](https://github.com/lifinance/types/compare/v0.14.8...v0.14.9) (2022-06-06)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Features
|
|
112
|
+
|
|
113
|
+
* added substatus to status messages ([#71](https://github.com/lifinance/types/issues/71)) ([25982c8](https://github.com/lifinance/types/commit/25982c89bbc9fe705d211f9a5bde961b65f166d4))
|
|
114
|
+
|
|
115
|
+
### [0.14.8](https://github.com/lifinance/types/compare/v0.14.6...v0.14.8) (2022-06-02)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Features
|
|
119
|
+
|
|
120
|
+
* added tags to Route ([#70](https://github.com/lifinance/types/issues/70)) ([1ce70b0](https://github.com/lifinance/types/commit/1ce70b0da3bcc338461d3e50b939e9d034c39fca))
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Bug Fixes
|
|
124
|
+
|
|
125
|
+
* add padding to okex logo ([36abfc4](https://github.com/lifinance/types/commit/36abfc45fe6299961dd152140e7d269ae3d6062c))
|
|
126
|
+
* add padding to okex logo ([1c26d55](https://github.com/lifinance/types/commit/1c26d553cb04f6977ef54c4bb6162685c8383ff8))
|
|
127
|
+
* update OKX name and icon ([#69](https://github.com/lifinance/types/issues/69)) ([1ae44c0](https://github.com/lifinance/types/commit/1ae44c086ee6a814efb93957af8821bcebd151d8))
|
|
128
|
+
|
|
129
|
+
### [0.14.7](https://github.com/lifinance/types/compare/v0.14.6...v0.14.7) (2022-06-02)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Bug Fixes
|
|
133
|
+
|
|
134
|
+
* update OKX name and icon ([#69](https://github.com/lifinance/types/issues/69)) ([1ae44c0](https://github.com/lifinance/types/commit/1ae44c086ee6a814efb93957af8821bcebd151d8))
|
|
135
|
+
|
|
136
|
+
### [0.14.6](https://github.com/lifinance/types/compare/v0.14.5...v0.14.6) (2022-05-25)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Bug Fixes
|
|
140
|
+
|
|
141
|
+
* update getTokens method in LifiAPI class ([#68](https://github.com/lifinance/types/issues/68)) ([90570b5](https://github.com/lifinance/types/commit/90570b56f1a5a2fe7e515da796957f9cd057c48c))
|
|
142
|
+
|
|
143
|
+
### [0.14.5](https://github.com/lifinance/types/compare/v0.14.3...v0.14.5) (2022-05-25)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
### Features
|
|
147
|
+
|
|
148
|
+
* update testnets and multicall ([#65](https://github.com/lifinance/types/issues/65)) ([b5390a3](https://github.com/lifinance/types/commit/b5390a3ce3a39708ea9238da47907e224a5d257c))
|
|
149
|
+
|
|
150
|
+
### [0.14.4](https://github.com/lifinance/types/compare/v0.14.3...v0.14.4) (2022-05-25)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Features
|
|
154
|
+
|
|
155
|
+
* update testnets and multicall ([#65](https://github.com/lifinance/types/issues/65)) ([b5390a3](https://github.com/lifinance/types/commit/b5390a3ce3a39708ea9238da47907e224a5d257c))
|
|
156
|
+
|
|
157
|
+
### [0.14.3](https://github.com/lifinance/types/compare/v0.14.2...v0.14.3) (2022-05-23)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
### Bug Fixes
|
|
161
|
+
|
|
162
|
+
* re-added npm.README.md ([52ceace](https://github.com/lifinance/types/commit/52ceace0724f30140dcb07739e6203b8cfd978c2))
|
|
163
|
+
|
|
164
|
+
### [0.14.2](https://github.com/lifinance/types/compare/v0.14.1...v0.14.2) (2022-05-23)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Bug Fixes
|
|
168
|
+
|
|
169
|
+
* **deprecation:** marked methods and constants as deprecated (LF-766) ([#62](https://github.com/lifinance/types/issues/62)) ([3ac61a3](https://github.com/lifinance/types/commit/3ac61a3226e11991201297514e54febc01926f9b))
|
|
170
|
+
* removed cbridge encryption support ([#66](https://github.com/lifinance/types/issues/66)) ([a79e6fa](https://github.com/lifinance/types/commit/a79e6fa57c02b7b3b01dfe44129553cf8b98928b))
|
|
171
|
+
|
|
172
|
+
### [0.14.1](https://github.com/lifinance/types/compare/v0.14.0...v0.14.1) (2022-05-20)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Features
|
|
176
|
+
|
|
177
|
+
* new ordering possibilities ([#64](https://github.com/lifinance/types/issues/64)) ([ea2f336](https://github.com/lifinance/types/commit/ea2f3369c25049f5de0fe10abd11682b1e4f30ad))
|
|
178
|
+
|
|
179
|
+
## [0.14.0](https://github.com/lifinance/types/compare/v0.13.2...v0.14.0) (2022-05-13)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
### ⚠ BREAKING CHANGES
|
|
183
|
+
|
|
184
|
+
* add request options type (#61)
|
|
185
|
+
|
|
186
|
+
### Features
|
|
187
|
+
|
|
188
|
+
* add request options type ([#61](https://github.com/lifinance/types/issues/61)) ([0345946](https://github.com/lifinance/types/commit/034594622047f189b622cc33cbe7d6fd1708bd95))
|
|
189
|
+
|
|
190
|
+
### [0.13.2](https://github.com/lifinance/types/compare/v0.13.1...v0.13.2) (2022-05-12)
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
### Features
|
|
194
|
+
|
|
195
|
+
* changes to support non EVM chains ([#59](https://github.com/lifinance/types/issues/59)) ([a8ae8a6](https://github.com/lifinance/types/commit/a8ae8a6add9e921e86b4566d9a1464478747b01e))
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
### Bug Fixes
|
|
199
|
+
|
|
200
|
+
* updated multicall contract to multicallv2 ([#60](https://github.com/lifinance/types/issues/60)) ([2cd2dc0](https://github.com/lifinance/types/commit/2cd2dc0aa1f2df5d0feed205c2501824ef972f9b))
|
|
201
|
+
|
|
202
|
+
### [0.13.1](https://github.com/lifinance/types/compare/v0.13.0...v0.13.1) (2022-05-09)
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
### Features
|
|
206
|
+
|
|
207
|
+
* supporting types for LF-770 ([#57](https://github.com/lifinance/types/issues/57)) ([4b36e61](https://github.com/lifinance/types/commit/4b36e61db70f137623f761a9047fa2301cb5f736))
|
|
208
|
+
* supporting types for portal bridge ([#58](https://github.com/lifinance/types/issues/58)) ([0b813e3](https://github.com/lifinance/types/commit/0b813e3846c1b32c418e4c01cf3f8577aa8baf2b))
|
|
209
|
+
|
|
210
|
+
## [0.13.0](https://github.com/lifinance/types/compare/v0.12.1...v0.13.0) (2022-05-06)
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
### ⚠ BREAKING CHANGES
|
|
214
|
+
|
|
215
|
+
* add error object to process (#56)
|
|
216
|
+
|
|
217
|
+
### Features
|
|
218
|
+
|
|
219
|
+
* add error object to process ([#56](https://github.com/lifinance/types/issues/56)) ([cf7cea6](https://github.com/lifinance/types/commit/cf7cea6a062b85d202f9b20098b6519958811ebb))
|
|
220
|
+
|
|
221
|
+
### [0.12.1](https://github.com/lifinance/types/compare/v0.12.0...v0.12.1) (2022-05-05)
|
|
222
|
+
|
|
223
|
+
## [0.12.0](https://github.com/lifinance/types/compare/v0.11.9...v0.12.0) (2022-05-05)
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
### ⚠ BREAKING CHANGES
|
|
227
|
+
|
|
228
|
+
* add process types (#55)
|
|
229
|
+
|
|
230
|
+
### Features
|
|
231
|
+
|
|
232
|
+
* add process types ([#55](https://github.com/lifinance/types/issues/55)) ([9c52305](https://github.com/lifinance/types/commit/9c5230546c4d57eae62b7ef0e368657fa43f169d))
|
|
233
|
+
|
|
234
|
+
### [0.11.9](https://github.com/lifinance/types/compare/v0.11.8...v0.11.9) (2022-05-04)
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
### Features
|
|
238
|
+
|
|
239
|
+
* **api:** add getTokens endpoint ([#54](https://github.com/lifinance/types/issues/54)) ([0f4895b](https://github.com/lifinance/types/commit/0f4895b9800163df926a86f08d7a9848731dbb20))
|
|
240
|
+
|
|
241
|
+
### [0.11.8](https://github.com/lifinance/types/compare/v0.11.7...v0.11.8) (2022-05-03)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
### Features
|
|
245
|
+
|
|
246
|
+
* added required types for LF-672 ([#48](https://github.com/lifinance/types/issues/48)) ([9ff0c74](https://github.com/lifinance/types/commit/9ff0c74b0b1556448ab063d29879120ea5a1a8f9))
|
|
247
|
+
* added supporting types for LF-608 ([#53](https://github.com/lifinance/types/issues/53)) ([48454c5](https://github.com/lifinance/types/commit/48454c53bdac399a12ae2190931cdc9bffc1dc31))
|
|
248
|
+
|
|
249
|
+
### [0.11.7](https://github.com/lifinance/types/compare/v0.11.6...v0.11.7) (2022-04-26)
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
### Features
|
|
253
|
+
|
|
254
|
+
* add wrapped gas for ARBT ([#50](https://github.com/lifinance/types/issues/50)) ([2c2d5f8](https://github.com/lifinance/types/commit/2c2d5f848aeb30d2f817bb10bc7ba51a45267e40))
|
|
255
|
+
* update CHANGELOG.md ([6b5323b](https://github.com/lifinance/types/commit/6b5323ba4c45623cca9ff72374d0e442848fe4a6))
|
|
256
|
+
* update CHANGELOG.md ([b44c835](https://github.com/lifinance/types/commit/b44c83526831917e0e3a99b4b9a3f80787fa4608))
|
|
257
|
+
|
|
258
|
+
### [0.11.6](https://github.com/lifinance/types/compare/v0.11.5...v0.11.6) (2022-04-14)
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
### Features
|
|
262
|
+
|
|
263
|
+
* add JSwap on OKEX chain ([#43](https://github.com/lifinance/types/issues/43)) ([3400375](https://github.com/lifinance/types/commit/3400375f8bd6eabe3b792083569db78b40b0b6a9))
|
|
264
|
+
|
|
265
|
+
### [0.11.5](https://github.com/lifinance/types/compare/v0.11.4...v0.11.5) (2022-04-13)
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
### Features
|
|
269
|
+
|
|
270
|
+
* add optimism multicall ([#46](https://github.com/lifinance/types/issues/46)) ([0d0bb02](https://github.com/lifinance/types/commit/0d0bb024fb49c3be1863a980112ac1b0e625929c))
|
|
271
|
+
|
|
272
|
+
### [0.11.4](https://github.com/lifinance/types/compare/v0.11.1...v0.11.4) (2022-04-07)
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
### Features
|
|
276
|
+
|
|
277
|
+
* add multicall address to Chain type ([#45](https://github.com/lifinance/types/issues/45)) ([cfe5dcc](https://github.com/lifinance/types/commit/cfe5dcca9bef03b54f0bd716b189686505d16bcf))
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
### Bug Fixes
|
|
281
|
+
|
|
282
|
+
* fix sushiswap token lists ([#44](https://github.com/lifinance/types/issues/44)) ([03fd5a1](https://github.com/lifinance/types/commit/03fd5a1d9365abe1450c827656cbc30a9e372289))
|
|
283
|
+
|
|
284
|
+
### [0.11.2](https://github.com/lifinance/types/compare/v0.11.1...v0.11.2) (2022-04-07)
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
### Bug Fixes
|
|
288
|
+
|
|
289
|
+
* fix sushiswap token lists ([#44](https://github.com/lifinance/types/issues/44)) ([03fd5a1](https://github.com/lifinance/types/commit/03fd5a1d9365abe1450c827656cbc30a9e372289))
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
### [0.11.1](https://github.com/lifinance/types/compare/v0.11.0...v0.11.1) (2022-04-04)
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
### Bug Fixes
|
|
296
|
+
|
|
297
|
+
* export PossibilityTopic ([25c8150](https://github.com/lifinance/types/commit/25c815097fe03e6f25335b6492079241295c2910))
|
|
298
|
+
|
|
299
|
+
## [0.11.0](https://github.com/lifinance/types/compare/v0.10.15...v0.11.0) (2022-04-04)
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
### ⚠ BREAKING CHANGES
|
|
303
|
+
|
|
304
|
+
* add query option to possibilities (#42)
|
|
305
|
+
|
|
306
|
+
### Features
|
|
307
|
+
|
|
308
|
+
* add Aurora chain to types ([#41](https://github.com/lifinance/types/issues/41)) ([c176bb2](https://github.com/lifinance/types/commit/c176bb2547444130d6983bc3219961a5c196261e))
|
|
309
|
+
* add query option to possibilities ([#42](https://github.com/lifinance/types/issues/42)) ([319f85c](https://github.com/lifinance/types/commit/319f85c1535201e85b5e20ca9b58e4f7c84b283b))
|
|
310
|
+
|
|
311
|
+
### [0.10.15](https://github.com/lifinance/types/compare/v0.10.14...v0.10.15) (2022-03-31)
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
### Features
|
|
315
|
+
|
|
316
|
+
* remove horizon bridge ([#40](https://github.com/lifinance/types/issues/40)) ([34d15d2](https://github.com/lifinance/types/commit/34d15d250ad291be05a5e4c9c0c0b76d27ff89f3))
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
### Bug Fixes
|
|
320
|
+
|
|
321
|
+
* fix decimals of WETH on Optimism ([#39](https://github.com/lifinance/types/issues/39)) ([5c4e370](https://github.com/lifinance/types/commit/5c4e3700f7a26d0d31bcf2c0111a785b07cf49f7))
|
|
322
|
+
* update CHANGELOG.md ([eca4639](https://github.com/lifinance/types/commit/eca46390b4f55fd09e2c8d9837cc68de87f10a47))
|
|
323
|
+
|
|
324
|
+
### [0.10.14](https://github.com/lifinance/types/compare/v0.10.13...v0.10.14) (2022-03-22)
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
### Features
|
|
328
|
+
|
|
329
|
+
* extend StatusResponse to include gasPrice and gasUsed ([8eddc63](https://github.com/lifinance/types/commit/8eddc6342bfb3faafe7e160fd45bd4552e32ba40))
|
|
330
|
+
|
|
331
|
+
### [0.10.13](https://github.com/lifinance/types/compare/v0.10.12...v0.10.13) (2022-03-17)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Bug Fixes
|
|
335
|
+
|
|
336
|
+
* add missing beamswap icon ([#36](https://github.com/lifinance/types/issues/36)) ([5df4012](https://github.com/lifinance/types/commit/5df40128add17ba541e1056e9f47d28ad7643e3b))
|
|
337
|
+
* update celo token address ([#37](https://github.com/lifinance/types/issues/37)) ([32932e7](https://github.com/lifinance/types/commit/32932e7b7ad9e9b793207f6b8099ed63f0e8608c))
|
|
338
|
+
|
|
339
|
+
### [0.10.12](https://github.com/lifinance/types/compare/v0.10.11...v0.10.12) (2022-03-15)
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
### Features
|
|
343
|
+
|
|
344
|
+
* add toToken to Execution ([#34](https://github.com/lifinance/types/issues/34)) ([0b73108](https://github.com/lifinance/types/commit/0b73108607710deeebf333bffc2dfebf7e7f8383))
|
|
345
|
+
|
|
346
|
+
### [0.10.11](https://github.com/lifinance/types/compare/v0.10.10...v0.10.11) (2022-03-09)
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
### Features
|
|
350
|
+
|
|
351
|
+
* **GetStatusRequest:** make bridge parameter optional ([71e928f](https://github.com/lifinance/types/commit/71e928fa1a540b687ea89d29a28dfe1010719381))
|
|
352
|
+
|
|
353
|
+
### [0.10.10](https://github.com/lifinance/types/compare/v0.10.9...v0.10.10) (2022-03-09)
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
### Bug Fixes
|
|
357
|
+
|
|
358
|
+
* update moonriver default RPC ([#33](https://github.com/lifinance/types/issues/33)) ([df7d80e](https://github.com/lifinance/types/commit/df7d80eb714fc355ec5eed6c023f12e7f075bb30))
|
|
359
|
+
|
|
360
|
+
### [0.10.9](https://github.com/lifinance/types/compare/v0.10.8...v0.10.9) (2022-03-09)
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
### Features
|
|
364
|
+
|
|
365
|
+
* add usd value of fromAmount and toAmount to Estimate ([e69fd3c](https://github.com/lifinance/types/commit/e69fd3c3790f571fed01aff869c8d0d03db6726c))
|
|
366
|
+
* **api:** add chains endpoint ([#31](https://github.com/lifinance/types/issues/31)) ([d1ba120](https://github.com/lifinance/types/commit/d1ba12077ed24339484e2f22d09238200c887a95))
|
|
367
|
+
* **api:** add connections endpoint ([#32](https://github.com/lifinance/types/issues/32)) ([1bc650c](https://github.com/lifinance/types/commit/1bc650c09819a89aac956d25e8ec57df918c6b6e))
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
### Bug Fixes
|
|
371
|
+
|
|
372
|
+
* fix broken changelog ([4daa86a](https://github.com/lifinance/types/commit/4daa86a398ef2e5a012ca771059dbdf56725289c))
|
|
373
|
+
|
|
374
|
+
### [0.10.8](https://github.com/lifinance/types/compare/v0.10.7...v0.10.8) (2022-02-24)
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
### Features
|
|
378
|
+
|
|
379
|
+
* add SpiritSwap as an Exchange ([#29](https://github.com/lifinance/types/issues/29)) ([683422f](https://github.com/lifinance/types/commit/683422f6cb79804fcbfb09d4ef231f137f9e674e))
|
|
380
|
+
|
|
381
|
+
### [0.10.7](https://github.com/lifinance/types/compare/v0.10.6...v0.10.7) (2022-02-24)
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
### Bug Fixes
|
|
385
|
+
|
|
386
|
+
* **Hyphen:** fix logo URL ([3399a58](https://github.com/lifinance/types/commit/3399a58ee3a1fdc61fe18995849db8bdfc433268))
|
|
387
|
+
|
|
388
|
+
### [0.10.6](https://github.com/lifinance/types/compare/v0.10.5...v0.10.6) (2022-02-24)
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
### Features
|
|
392
|
+
|
|
393
|
+
* add more bridge definitions ([#26](https://github.com/lifinance/types/issues/26)) ([81dde1e](https://github.com/lifinance/types/commit/81dde1ecc41763f999e896bbd380245812ed14bf))
|
|
394
|
+
|
|
395
|
+
### [0.10.5](https://github.com/lifinance/types/compare/v0.10.4...v0.10.5) (2022-02-22)
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
### Bug Fixes
|
|
399
|
+
|
|
400
|
+
* remove connections endpoint ([#28](https://github.com/lifinance/types/issues/28)) ([7fa83f1](https://github.com/lifinance/types/commit/7fa83f1cbbabe456021e8a551148be4eb9a58a46))
|
|
401
|
+
|
|
402
|
+
### [0.10.4](https://github.com/lifinance/types/compare/v0.10.3...v0.10.4) (2022-02-22)
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
### Bug Fixes
|
|
406
|
+
|
|
407
|
+
* **MATIC:** fix token address of matic on bsc ([#27](https://github.com/lifinance/types/issues/27)) ([7641432](https://github.com/lifinance/types/commit/7641432bc43e07b8be95f2f385362a93a5165609))
|
|
408
|
+
|
|
409
|
+
### [0.10.3](https://github.com/lifinance/types/compare/v0.10.2...v0.10.3) (2022-02-14)
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
### Features
|
|
413
|
+
|
|
414
|
+
* **LifiAPI:** add getConnections endpoint ([#24](https://github.com/lifinance/types/issues/24)) ([0e6506b](https://github.com/lifinance/types/commit/0e6506bbfa0ce4f65ee3ebb1635e6b6a49d7d26d))
|
|
415
|
+
|
|
416
|
+
### [0.10.2](https://github.com/lifinance/types/compare/v0.10.1...v0.10.2) (2022-02-11)
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
### Bug Fixes
|
|
420
|
+
|
|
421
|
+
* some types for new chains ([57d33cb](https://github.com/lifinance/types/commit/57d33cb9bf169dd9434c37b4673c435fc054ac19))
|
|
422
|
+
|
|
423
|
+
### [0.10.1](https://github.com/lifinance/types/compare/v0.10.0...v0.10.1) (2022-02-08)
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
### Features
|
|
427
|
+
|
|
428
|
+
* add new chains and exchanges ([#19](https://github.com/lifinance/types/issues/19)) ([a898b58](https://github.com/lifinance/types/commit/a898b58c24fe4a998cd92e4ee01320d01cc6a358))
|
|
429
|
+
|
|
430
|
+
## [0.10.0](https://github.com/lifinance/types/compare/v0.9.8...v0.10.0) (2022-02-07)
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
### ⚠ BREAKING CHANGES
|
|
434
|
+
|
|
435
|
+
* **Estimate:** add executionDuration (#23)
|
|
436
|
+
|
|
437
|
+
### Features
|
|
438
|
+
|
|
439
|
+
* **Estimate:** add executionDuration ([#23](https://github.com/lifinance/types/issues/23)) ([fd08887](https://github.com/lifinance/types/commit/fd08887b96af2a6be6f6a3743e2f9392d54d0098))
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
### Bug Fixes
|
|
443
|
+
|
|
444
|
+
* remove old xDAI rpc ([9b57f35](https://github.com/lifinance/types/commit/9b57f35ad55aac920eedcc31e3a900cf625e857f))
|
|
445
|
+
|
|
446
|
+
### [0.9.8](https://github.com/lifinance/types/compare/v0.9.7...v0.9.8) (2022-01-28)
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
### Bug Fixes
|
|
450
|
+
|
|
451
|
+
* make new TransactionInfo parameters optional ([577f97f](https://github.com/lifinance/types/commit/577f97faadd2b93b69fefc7336ec2e3ba4dca732))
|
|
452
|
+
|
|
453
|
+
### [0.9.7](https://github.com/lifinance/types/compare/v0.9.6...v0.9.7) (2022-01-28)
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
### Features
|
|
457
|
+
|
|
458
|
+
* update tool names and add dodo ([#22](https://github.com/lifinance/types/issues/22)) ([f3fb9e3](https://github.com/lifinance/types/commit/f3fb9e396a5ab117bd4f042c6adba1c977ae411e))
|
|
459
|
+
|
|
460
|
+
### [0.9.6](https://github.com/lifinance/types/compare/v0.9.5...v0.9.6) (2022-01-28)
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
### Features
|
|
464
|
+
|
|
465
|
+
* extend status response type ([#21](https://github.com/lifinance/types/issues/21)) ([8b72734](https://github.com/lifinance/types/commit/8b727349c9a05e5c1bddbd0cd32cb074049d4cee))
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
### Bug Fixes
|
|
469
|
+
|
|
470
|
+
* **chains:** add new Gnosis chain default rpc ([1db5287](https://github.com/lifinance/types/commit/1db52879f094d4dc7d23164db70b988ab77652d9))
|
|
471
|
+
|
|
472
|
+
### [0.9.5](https://github.com/lifinance/types/compare/v0.9.4...v0.9.5) (2022-01-26)
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
### Features
|
|
476
|
+
|
|
477
|
+
* add status endpoint ([#20](https://github.com/lifinance/types/issues/20)) ([7c22d40](https://github.com/lifinance/types/commit/7c22d4015bfade43e51cde3ec0604d0cd2e408cd))
|
|
478
|
+
* **Process:** add htmlErrorMessage field ([#18](https://github.com/lifinance/types/issues/18)) ([580964d](https://github.com/lifinance/types/commit/580964d462d62f8dfb9cd2f1b61247444d6ab836))
|
|
479
|
+
* rename xDai to Gnosis ([#16](https://github.com/lifinance/types/issues/16)) ([ed1db72](https://github.com/lifinance/types/commit/ed1db72a31b9e8b85f14f366d09c564b4b16e233))
|
|
480
|
+
|
|
481
|
+
### [0.9.4](https://github.com/lifinance/types/compare/v0.9.3...v0.9.4) (2022-01-11)
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
### Bug Fixes
|
|
485
|
+
|
|
486
|
+
* **scripts:** make install script OS agnostic ([b829a48](https://github.com/lifinance/types/commit/b829a48c4baebf1fc8b32ad62d9c56f0978a8afc))
|
|
487
|
+
|
|
488
|
+
### [0.9.3](https://github.com/lifinance/types/compare/v0.9.2...v0.9.3) (2022-01-05)
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
### Features
|
|
492
|
+
|
|
493
|
+
* **status:** add cancelled status for executions ([04b7a7e](https://github.com/lifinance/types/commit/04b7a7e0403339ebd61bc2bc663bcbcfc84b1cb2))
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
### Bug Fixes
|
|
497
|
+
|
|
498
|
+
* **rpc:** update default rpcs ([820b762](https://github.com/lifinance/types/commit/820b762e3e6725bfcb0c3c5775debe4206efe9e7))
|
|
499
|
+
|
|
500
|
+
### [0.9.2](https://github.com/lifinance/types/compare/v0.8.2...v0.9.2) (2022-01-04)
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
### Features
|
|
504
|
+
|
|
505
|
+
* **TokenAmount:** add blockNumbers to TokenAmounts ([#14](https://github.com/lifinance/types/issues/14)) ([703b8d1](https://github.com/lifinance/types/commit/703b8d1b7eeb24db1b082d454268a0c51df428a6))
|
|
506
|
+
|
|
507
|
+
### [0.8.2](https://github.com/lifinance/types/compare/v0.8.1...v0.8.2) (2021-12-30)
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
### Features
|
|
511
|
+
|
|
512
|
+
* **bridges:** add bridges definitions ([b3a0816](https://github.com/lifinance/types/commit/b3a081600ef04ae74c0528193ba9b2b43fb802d3))
|
|
513
|
+
* **chains:** add chain icons ([a7034a3](https://github.com/lifinance/types/commit/a7034a3af87806ec6343945b1f3bbf278c45358c))
|
|
514
|
+
* **exchanges:** add logos and aggregators ([f5cf9fa](https://github.com/lifinance/types/commit/f5cf9fae0826672243bce3afdcffa175178ce08d))
|
|
515
|
+
* **icons:** add icon resources for chains, exchanges, bridges ([#13](https://github.com/lifinance/types/issues/13)) ([2e4331a](https://github.com/lifinance/types/commit/2e4331ab078de251eb86254937efe9f879c960c2))
|
|
516
|
+
|
|
517
|
+
### [0.8.1](https://github.com/lifinance/types/compare/v0.8.0...v0.8.1) (2021-12-21)
|
|
518
|
+
|
|
519
|
+
## [0.8.0](https://github.com/lifinance/types/compare/v0.7.0...v0.8.0) (2021-12-15)
|
|
520
|
+
|
|
521
|
+
## [0.7.0](https://github.com/lifinance/types/compare/v0.6.8...v0.7.0) (2021-12-09)
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
### Features
|
|
525
|
+
|
|
526
|
+
* **Status:** add CHAIN_SWITCH_REQUIRED status ([#9](https://github.com/lifinance/types/issues/9)) ([8dc03d5](https://github.com/lifinance/types/commit/8dc03d5a7fdd3a5199d17b24df82c559189aec65))
|
|
527
|
+
* **Token:** refactor token type ([#8](https://github.com/lifinance/types/issues/8)) ([ce444ce](https://github.com/lifinance/types/commit/ce444ce63cb83235c4563b93fca1914ff9d5e471))
|
|
528
|
+
|
|
529
|
+
### [0.6.8](https://github.com/lifinance/types/compare/v0.6.7...v0.6.8) (2021-12-06)
|
|
530
|
+
|
|
531
|
+
### [0.6.7](https://github.com/lifinance/types/compare/v0.6.6...v0.6.7) (2021-12-03)
|
|
532
|
+
|
|
533
|
+
### [0.6.6](https://github.com/lifinance/types/compare/v0.6.5...v0.6.6) (2021-12-03)
|
|
534
|
+
|
|
535
|
+
### [0.6.5](https://github.com/lifinance/types/compare/v0.6.4...v0.6.5) (2021-12-01)
|
|
536
|
+
|
|
537
|
+
### [0.6.4](https://github.com/lifinance/types/compare/v0.6.3...v0.6.4) (2021-11-25)
|
|
538
|
+
|
|
539
|
+
### [0.6.3](https://github.com/lifinance/types/compare/v0.6.2...v0.6.3) (2021-11-24)
|
|
540
|
+
|
|
541
|
+
### [0.6.2](https://github.com/lifinance/types/compare/v0.6.1...v0.6.2) (2021-11-22)
|
|
542
|
+
|
|
543
|
+
### [0.6.1](https://github.com/lifinance/types/compare/v0.5.2...v0.6.1) (2021-11-17)
|
|
544
|
+
|
|
545
|
+
## [0.6.0](https://github.com/lifinance/types/compare/v0.5.1...v0.6.0) (2021-11-16)
|
|
546
|
+
|
|
547
|
+
### [0.5.2](https://github.com/lifinance/types/compare/v0.6.0...v0.5.2) (2021-11-16)
|
|
548
|
+
|
|
549
|
+
## [0.6.0](https://github.com/lifinance/types/compare/v0.5.1...v0.6.0) (2021-11-16)
|
|
550
|
+
|
|
551
|
+
### [0.5.1](https://github.com/lifinance/types/compare/v0.5.0...v0.5.1) (2021-11-15)
|
|
552
|
+
|
|
553
|
+
## [0.5.0](https://github.com/lifinance/types/compare/v0.4.5...v0.5.0) (2021-11-15)
|
|
554
|
+
|
|
555
|
+
### [0.4.5](https://github.com/lifinance/types/compare/v0.4.4...v0.4.5) (2021-11-15)
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
### Features
|
|
559
|
+
|
|
560
|
+
* **config:** added watch script ([4e27e29](https://github.com/lifinance/types/commit/4e27e29a67e98e7f5a0f201355ab9118d94f4220))
|
|
561
|
+
|
|
562
|
+
### [0.4.4](https://github.com/lifinance/types/compare/v0.4.3...v0.4.4) (2021-11-15)
|
|
563
|
+
|
|
564
|
+
### [0.4.3](https://github.com/lifinance/types/compare/v0.4.2...v0.4.3) (2021-11-11)
|
|
565
|
+
|
|
566
|
+
### [0.4.2](https://github.com/lifinance/types/compare/v0.4.1...v0.4.2) (2021-11-09)
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
### Features
|
|
570
|
+
|
|
571
|
+
* **step, exchanges:** fixed linting ([3b74ccb](https://github.com/lifinance/types/commit/3b74ccba02ab7fb3d38ee0442cd8888d6e91d486))
|
|
572
|
+
|
|
573
|
+
### [0.4.1](https://github.com/lifinance/types/compare/v0.4.0...v0.4.1) (2021-11-09)
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
### Features
|
|
577
|
+
|
|
578
|
+
* **step, exchanges:** fixed linting ([9c76876](https://github.com/lifinance/types/commit/9c76876235508f231124014fdebfb7d381f754b0))
|
|
579
|
+
|
|
580
|
+
## [0.4.0](https://github.com/lifinance/types/compare/v0.3.0...v0.4.0) (2021-11-09)
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
### Features
|
|
584
|
+
|
|
585
|
+
* **app:** synced types with lifi-backend ([6d31482](https://github.com/lifinance/types/commit/6d314826e310f5bf03d9b41598fe02c69402e2c1))
|
|
586
|
+
* **step, exchanges:** fixed linting ([ceef8f6](https://github.com/lifinance/types/commit/ceef8f6de6f8264adb397c0bf0b0a63585343eb0))
|
|
587
|
+
|
|
588
|
+
## [0.3.0](https://github.com/lifinance/types/compare/v0.2.0...v0.3.0) (2021-11-08)
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
### Features
|
|
592
|
+
|
|
593
|
+
* **step:** added resume status ([71bff07](https://github.com/lifinance/types/commit/71bff07dd92c00a0aa5df5e5c422e511af658c5c))
|
|
594
|
+
|
|
595
|
+
## [0.2.0](https://github.com/lifinance/types/compare/v0.1.1...v0.2.0) (2021-11-04)
|
|
596
|
+
|
|
597
|
+
### [0.1.1](https://github.com/lifinance/types/compare/v0.1.0...v0.1.1) (2021-10-28)
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
### Features
|
|
601
|
+
|
|
602
|
+
* **types:** updated ([df0733c](https://github.com/lifinance/types/commit/df0733c790d79e9280e166580456673bed59dddb))
|
|
603
|
+
|
|
604
|
+
## [0.1.0](https://github.com/lifinance/types/compare/v0.0.9...v0.1.0) (2021-10-28)
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
### Features
|
|
608
|
+
|
|
609
|
+
* **package:** updated ([d95830c](https://github.com/lifinance/types/commit/d95830c059eb36defa49b5fb7aacbd7035188f97))
|
|
610
|
+
|
|
611
|
+
### [0.0.8](https://github.com/lifinance/types/compare/v0.0.7...v0.0.8) (2021-10-25)
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
### Features
|
|
615
|
+
|
|
616
|
+
* **readme:** updated ([2fd464a](https://github.com/lifinance/types/commit/2fd464a883773ca15f1747b2a24c9d32d9f1cee4))
|
|
617
|
+
|
|
618
|
+
### [0.0.7](https://github.com/lifinance/types/compare/v0.0.6...v0.0.7) (2021-10-25)
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
### Features
|
|
622
|
+
|
|
623
|
+
* **version:** updated ([fb72157](https://github.com/lifinance/types/commit/fb721577cb9e95acfc9f0c07cadb9be22c73803e))
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
### Bug Fixes
|
|
627
|
+
|
|
628
|
+
* **configs:** fixed ([74819c1](https://github.com/lifinance/types/commit/74819c1ba4e367466afff49f977e90cb6a5dc8d3))
|
|
629
|
+
|
|
630
|
+
### [0.0.6](https://github.com/lifinance/types/compare/v0.0.5...v0.0.6) (2021-10-25)
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
### Bug Fixes
|
|
634
|
+
|
|
635
|
+
* **configs:** fixed ([6cb6830](https://github.com/lifinance/types/commit/6cb68304640a98fbec34bcee8687d3dd70dde498))
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 Tom Chen (tomchen.org)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|