@galacticcouncil/sdk 0.0.2 → 0.0.4
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 +3 -4
- package/dist/index.esm.js +1 -3
- package/dist/index.js +1 -3
- package/dist/types/client/polkadotApi.d.ts +0 -10
- package/dist/types/consts.d.ts +6 -0
- package/dist/types/errors.d.ts +4 -0
- package/dist/types/index.d.ts +3 -1
- package/dist/types/pool/index.d.ts +3 -0
- package/dist/types/pool/lbp/lbpMath.d.ts +7 -13
- package/dist/types/pool/lbp/lbpPolkadotApiClient.d.ts +3 -2
- package/dist/types/pool/omni/omniMath.d.ts +16 -11
- package/dist/types/pool/omni/omniPolkadotApiClient.d.ts +2 -1
- package/dist/types/pool/xyk/xykMath.d.ts +10 -11
- package/dist/types/pool/xyk/xykPolkadotApiClient.d.ts +2 -1
- package/dist/types/types.d.ts +1 -0
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
<p>
|
|
1
|
+
# Galactic SDK
|
|
3
2
|
|
|
4
3
|
[](https://www.npmjs.com/package/@galacticcouncil/sdk)
|
|
5
4
|

|
|
@@ -12,8 +11,8 @@ Table of content:
|
|
|
12
11
|
|
|
13
12
|
- [Installation](#installation)
|
|
14
13
|
- [Components](#components)
|
|
14
|
+
- [Router](#router)
|
|
15
15
|
- [TradeRouter](#traderouter)
|
|
16
|
-
- [TradeExecutor](#tradeexecutor)
|
|
17
16
|
- [Examples](#examples)
|
|
18
17
|
- [Roadmap](#roadmap)
|
|
19
18
|
- [Issue reporting](#issue-reporting)
|
|
@@ -28,7 +27,7 @@ Install with [npm](https://www.npmjs.com/):
|
|
|
28
27
|
|
|
29
28
|
### Router
|
|
30
29
|
|
|
31
|
-
Off-chain routing, build to find the most suitable routes across the
|
|
30
|
+
Off-chain routing, build to find the most suitable routes across the pools. Building block for TradeRouter.
|
|
32
31
|
|
|
33
32
|
#### API
|
|
34
33
|
|