Skip to content

Commit 0921ad5

Browse files
committed
Merge branch 'master' into 1021-asset-type-refactor
2 parents 602ebcb + 1e18d0f commit 0921ad5

File tree

9 files changed

+41
-5
lines changed

9 files changed

+41
-5
lines changed

examples/mayachain-amm/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# xchainjs-maya-do-swap
22

3+
## 1.0.18
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [f54dcd2]
8+
- Updated dependencies [f54dcd2]
9+
- Updated dependencies [f54dcd2]
10+
- @xchainjs/xchain-mayachain-amm@2.0.14
11+
- @xchainjs/xchain-mayachain-query@0.1.21
12+
313
## 1.0.17
414

515
### Patch Changes

examples/mayachain-amm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "xchainjs-mayachain-amm",
33
"private": true,
4-
"version": "1.0.17",
4+
"version": "1.0.18",
55
"scripts": {
66
"approveRouter": "npx ts-node approve-router.ts",
77
"doSwap": "npx ts-node do-swap.ts",

packages/xchain-aggregator/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.2.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [f54dcd2]
8+
- Updated dependencies [f54dcd2]
9+
- Updated dependencies [f54dcd2]
10+
- @xchainjs/xchain-mayachain-amm@2.0.14
11+
- @xchainjs/xchain-mayachain-query@0.1.21
12+
313
## 0.2.5
414

515
### Patch Changes

packages/xchain-aggregator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xchainjs/xchain-aggregator",
33
"description": "Protocol aggregator to make actions in different protocols",
4-
"version": "0.2.5",
4+
"version": "0.2.6",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"module": "lib/index.esm.js",

packages/xchain-mayachain-amm/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 2.0.14
4+
5+
### Patch Changes
6+
7+
- f54dcd2: Streaming swap parameters for `estimateSwap`, `validateSwap` and `doSwap` method.
8+
- Updated dependencies [f54dcd2]
9+
- Updated dependencies [f54dcd2]
10+
- @xchainjs/xchain-mayachain-query@0.1.21
11+
312
## 2.0.13
413

514
### Patch Changes

packages/xchain-mayachain-amm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@xchainjs/xchain-mayachain-amm",
3-
"version": "2.0.13",
3+
"version": "2.0.14",
44
"description": "module that exposes estimating & swapping cryptocurrency assets on mayachain",
55
"keywords": [
66
"MAYAChain",

packages/xchain-mayachain-query/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.1.21
4+
5+
### Patch Changes
6+
7+
- f54dcd2: `QuoteSwap` type updated. `Fees` type with `liquidityFee` and `totalFee` parameters.
8+
- f54dcd2: Streaming swap parameters for `quoteSwap` method.
9+
310
## 0.1.20
411

512
### Patch Changes

packages/xchain-mayachain-query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@xchainjs/xchain-mayachain-query",
3-
"version": "0.1.20",
3+
"version": "0.1.21",
44
"license": "MIT",
55
"description": "Mayachain query module that is responsible for estimating swap calculations and add/remove liquidity for thorchain",
66
"keywords": [

packages/xchain-thorchain-amm/src/thorchain-amm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ export class ThorchainAMM {
681681
return {
682682
memo: '',
683683
errors: ['message' in e ? e.message : `Unknown error: ${e}`],
684-
value: new AssetCryptoAmount(baseAmount(0, RUNE_DECIMAL), AssetRuneNative),
684+
value: new CryptoAmount(baseAmount(0, RUNE_DECIMAL), AssetRuneNative),
685685
allowed: false,
686686
}
687687
}

0 commit comments

Comments
 (0)