@galacticcouncil/sdk 2.0.1-beta.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -21,7 +21,17 @@ Install with [npm](https://www.npmjs.com/):
|
|
|
21
21
|
|
|
22
22
|
`npm install @galacticcouncil/sdk`
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
### Troubleshooting
|
|
25
|
+
|
|
26
|
+
As of **v2.x** .wasm files are no longer embedded in bundle
|
|
27
|
+
but rather deferred to improve load performance & decrease
|
|
28
|
+
module size.
|
|
29
|
+
|
|
30
|
+
If you upgrading from **v1.x** to **v2.x** make sure you use
|
|
31
|
+
corresponding wasm plugin in your build config to directly
|
|
32
|
+
import .wasm files as if they were a javascript module.
|
|
33
|
+
|
|
34
|
+
For more details visit [TROUBLESHOOTING.md](TROUBLESHOOTING.md)
|
|
25
35
|
|
|
26
36
|
### Router
|
|
27
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galacticcouncil/sdk",
|
|
3
|
-
"version": "2.0.1
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Galactic off-chain routing & optimization of orders across pools for best price execution",
|
|
5
5
|
"author": "GalacticCouncil",
|
|
6
6
|
"repository": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@galacticcouncil/math-lbp": "^0.2.1",
|
|
36
36
|
"@galacticcouncil/math-omnipool": "^0.2.0",
|
|
37
|
-
"@galacticcouncil/math-stableswap": "^0.2.
|
|
37
|
+
"@galacticcouncil/math-stableswap": "^0.2.2",
|
|
38
38
|
"@galacticcouncil/math-xyk": "^0.2.0",
|
|
39
39
|
"@thi.ng/cache": "^2.1.35",
|
|
40
40
|
"bignumber.js": "^9.1.0",
|