Skip to content

Commit

Permalink
RELEASE: Releasing 4 package(s)
Browse files Browse the repository at this point in the history
Releases:
  @galacticcouncil/xcm-core@5.3.0
  @galacticcouncil/xcm-cfg@5.4.0
  @galacticcouncil/sdk@4.5.0
  @galacticcouncil/xcm-sdk@6.3.0
  • Loading branch information
nohaapav committed Nov 8, 2024
1 parent ee2e395 commit f895410
Show file tree
Hide file tree
Showing 14 changed files with 65 additions and 32 deletions.
6 changes: 3 additions & 3 deletions examples/sdk-cjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"node": "^21.6.0"
},
"dependencies": {
"@galacticcouncil/sdk": "^4.4.0",
"@galacticcouncil/xcm-sdk": "^6.2.1",
"@galacticcouncil/xcm-cfg": "^5.3.2"
"@galacticcouncil/sdk": "^4.5.0",
"@galacticcouncil/xcm-sdk": "^6.3.0",
"@galacticcouncil/xcm-cfg": "^5.4.0"
}
}
2 changes: 1 addition & 1 deletion examples/sdk-esm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"esbuild": "^0.17.11"
},
"dependencies": {
"@galacticcouncil/sdk": "^4.4.0"
"@galacticcouncil/sdk": "^4.5.0"
}
}
6 changes: 3 additions & 3 deletions examples/xcm-transfer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"esbuild-plugin-wasm": "^1.0.0"
},
"dependencies": {
"@galacticcouncil/sdk": "^4.4.0",
"@galacticcouncil/xcm-cfg": "^5.3.2",
"@galacticcouncil/xcm-sdk": "^6.2.1",
"@galacticcouncil/sdk": "^4.5.0",
"@galacticcouncil/xcm-cfg": "^5.4.0",
"@galacticcouncil/xcm-sdk": "^6.3.0",
"@talismn/connect-wallets": "^1.2.5"
}
}
4 changes: 2 additions & 2 deletions integration-tests/xcm-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"test:file": "jest --json --outputFile=output.json"
},
"dependencies": {
"@galacticcouncil/xcm-cfg": "^5.3.2",
"@galacticcouncil/xcm-sdk": "^6.2.1"
"@galacticcouncil/xcm-cfg": "^5.4.0",
"@galacticcouncil/xcm-sdk": "^6.3.0"
}
}
30 changes: 15 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @galacticcouncil/sdk

## 4.5.0

### Minor Changes

- Bump pjs to 14.x
- Call currencies api directly

## 4.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galacticcouncil/sdk",
"version": "4.4.0",
"version": "4.5.0",
"description": "Galactic off-chain routing & optimization of orders across pools for best price execution",
"author": "GalacticCouncil",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/src/pool/CachingPoolService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class CachingPoolService extends PoolService {
const key = [pool.address, feeAsset].join('-');
const hasKey = this.feeCache.has(key);
if (hasKey) {
return this.feeCache.get(key);
return this.feeCache.get(key)!;
} else {
const fees = await super.getPoolFees(feeAsset, pool);
this.feeCache.set(key, fees);
Expand Down
11 changes: 11 additions & 0 deletions packages/xcm-cfg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @galacticcouncil/xcm-cfg

## 5.4.0

### Minor Changes

- Custom ethereum rpcs (fallback)

### Patch Changes

- Updated dependencies
- @galacticcouncil/xcm-core@5.3.0

## 5.3.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/xcm-cfg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galacticcouncil/xcm-cfg",
"version": "5.3.2",
"version": "5.4.0",
"description": "Cross-chain hydradx & basilisk dapp configuration",
"author": "GalacticCouncil",
"repository": {
Expand Down Expand Up @@ -31,6 +31,6 @@
"test": "jest --passWithNoTests"
},
"dependencies": {
"@galacticcouncil/xcm-core": "^5.2.0"
"@galacticcouncil/xcm-core": "^5.3.0"
}
}
7 changes: 7 additions & 0 deletions packages/xcm-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @galacticcouncil/xcm-core

## 5.3.0

### Minor Changes

- Bump pjs to 14.x
- Support EvmChain rpcs fallback

## 5.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/xcm-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galacticcouncil/xcm-core",
"version": "5.2.0",
"version": "5.3.0",
"description": "Cross-chain sdk core",
"author": "GalacticCouncil",
"repository": {
Expand Down
8 changes: 8 additions & 0 deletions packages/xcm-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @galacticcouncil/xcm-sdk

## 6.3.0

### Patch Changes

- Updated dependencies
- @galacticcouncil/xcm-core@5.3.0
- @galacticcouncil/sdk@4.5.0

## 6.2.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/xcm-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galacticcouncil/xcm-sdk",
"version": "6.2.1",
"version": "6.3.0",
"description": "Cross-chain sdk",
"author": "GalacticCouncil",
"repository": {
Expand Down Expand Up @@ -32,9 +32,9 @@
"link": "npm ln"
},
"dependencies": {
"@galacticcouncil/xcm-core": "^5.2.0"
"@galacticcouncil/xcm-core": "^5.3.0"
},
"peerDependencies": {
"@galacticcouncil/sdk": "^4.4.0"
"@galacticcouncil/sdk": "^4.5.0"
}
}

0 comments on commit f895410

Please sign in to comment.