@pioneer-platform/thorchain-client 0.18.5 → 0.19.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +20 -0
- package/lib/index.js +1 -0
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @pioneer-platform/thorchain-client@0.
|
|
3
|
+
> @pioneer-platform/thorchain-client@0.19.0 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/intergrations/thorchain
|
|
4
4
|
> tsc -p .
|
|
5
5
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @pioneer-platform/thorchain-client
|
|
2
2
|
|
|
3
|
+
## 0.19.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat(monorepo): production release preparation with strict TypeScript and enhanced swap functionality
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @pioneer-platform/pioneer-caip@9.21.0
|
|
13
|
+
- @pioneer-platform/pioneer-coins@9.20.0
|
|
14
|
+
|
|
15
|
+
## 0.18.6
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @pioneer-platform/pioneer-caip@9.20.0
|
|
21
|
+
- @pioneer-platform/pioneer-coins@9.19.0
|
|
22
|
+
|
|
3
23
|
## 0.18.5
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/lib/index.js
CHANGED
|
@@ -384,6 +384,7 @@ var get_quote = function (quote) {
|
|
|
384
384
|
output.amountOut = amountOutEstimated;
|
|
385
385
|
output.amountOutMin = amountOutMinFormatted;
|
|
386
386
|
output.buyAmount = amountOutEstimated; // Alias for consistency with quote API
|
|
387
|
+
output.inbound_address = quoteFromNode.inbound_address; // THORChain vault address for vault UI verification
|
|
387
388
|
memoInput = {
|
|
388
389
|
type: 'SWAP',
|
|
389
390
|
asset: quote.buyAsset,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pioneer-platform/thorchain-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"dotenv": "^17.2.3",
|
|
9
9
|
"rango-sdk": "^0.1.45",
|
|
10
10
|
"uuidv4": "^6.2.13",
|
|
11
|
-
"@pioneer-platform/pioneer-
|
|
12
|
-
"@pioneer-platform/
|
|
13
|
-
"@pioneer-platform/
|
|
11
|
+
"@pioneer-platform/pioneer-coins": "9.20.0",
|
|
12
|
+
"@pioneer-platform/loggerdog": "8.11.0",
|
|
13
|
+
"@pioneer-platform/pioneer-caip": "9.21.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@types/jest": "^25.2.3",
|