Skip to content

Commit

Permalink
Bump versions and e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
hippocampus-web3 committed Nov 7, 2023
1 parent 4037efe commit 7eff7bd
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
6 changes: 6 additions & 0 deletions packages/xchain-thorchain-amm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.7.12 (2023-11-07)

## Update

- Update thorchain-query dependency

# v0.7.11 (2023-11-04)

## Update
Expand Down
6 changes: 3 additions & 3 deletions packages/xchain-thorchain-amm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xchainjs/xchain-thorchain-amm",
"version": "0.7.11",
"version": "0.7.12",
"description": "module that exposes estimating & swappping cryptocurrency assets on thorchain",
"keywords": [
"THORChain",
Expand Down Expand Up @@ -50,7 +50,7 @@
"@xchainjs/xchain-doge": "^0.7.3",
"@xchainjs/xchain-ethereum": "^0.30.5",
"@xchainjs/xchain-thornode": "^0.3.8",
"@xchainjs/xchain-thorchain-query": "^0.6.8",
"@xchainjs/xchain-thorchain-query": "^0.6.9",
"@xchainjs/xchain-evm": "^0.3.5",
"@xchainjs/xchain-litecoin": "^0.13.2",
"@xchainjs/xchain-mayachain": "^0.2.8",
Expand Down Expand Up @@ -86,7 +86,7 @@
"@xchainjs/xchain-doge": "^0.7.3",
"@xchainjs/xchain-ethereum": "^0.30.5",
"@xchainjs/xchain-thornode": "^0.3.8",
"@xchainjs/xchain-thorchain-query": "^0.6.8",
"@xchainjs/xchain-thorchain-query": "^0.6.9",
"@xchainjs/xchain-evm": "^0.3.5",
"@xchainjs/xchain-litecoin": "^0.13.2",
"@xchainjs/xchain-mayachain": "^0.2.8",
Expand Down
6 changes: 6 additions & 0 deletions packages/xchain-thorchain-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.6.9 (2023-11-07)

## Fix

- Trim memo for thorname registation

# v0.6.8 (2023-11-04)

## Update
Expand Down
11 changes: 11 additions & 0 deletions packages/xchain-thorchain-query/__e2e__/thorchain-thorname.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,15 @@ describe('Thorchain-query thorname Integration Tests', () => {
console.log(thorname.value.baseAmount.amount().toString())
console.log(thorname.memo)
})
it('Remove uneccessary : at the end and start of MEMO', async () => {
const thorname = await thorchainQuery.estimateThorname({
thorname: 'hippo',
chain: BTCChain,
chainAddress: btcAddress,
owner: owner2,
isUpdate: true,
})
console.log(thorname.value.baseAmount.amount().toString())
console.log(thorname.memo)
})
})
2 changes: 1 addition & 1 deletion packages/xchain-thorchain-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xchainjs/xchain-thorchain-query",
"version": "0.6.8",
"version": "0.6.9",
"license": "MIT",
"description": "Thorchain query module that is resposible for estimating swap calculations and add/remove liquidity for thorchain ",
"keywords": [
Expand Down

0 comments on commit 7eff7bd

Please sign in to comment.