Skip to content

Commit

Permalink
RELEASE: Releasing 3 package(s)
Browse files Browse the repository at this point in the history
Releases:
  @galacticcouncil/[email protected]
  @galacticcouncil/[email protected]
  @galacticcouncil/[email protected]
  • Loading branch information
nohaapav committed Oct 16, 2024
1 parent 19a31cb commit 6dac1fd
Show file tree
Hide file tree
Showing 10 changed files with 57 additions and 29 deletions.
4 changes: 2 additions & 2 deletions examples/sdk-cjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"@galacticcouncil/sdk": "^4.2.0",
"@galacticcouncil/xcm-sdk": "^5.0.0",
"@galacticcouncil/xcm-cfg": "^4.0.0"
"@galacticcouncil/xcm-sdk": "^6.0.0",
"@galacticcouncil/xcm-cfg": "^5.0.0"
}
}
4 changes: 2 additions & 2 deletions examples/xcm-transfer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
},
"dependencies": {
"@galacticcouncil/sdk": "^4.2.0",
"@galacticcouncil/xcm-cfg": "^4.0.0",
"@galacticcouncil/xcm-sdk": "^5.0.0",
"@galacticcouncil/xcm-cfg": "^5.0.0",
"@galacticcouncil/xcm-sdk": "^6.0.0",
"@talismn/connect-wallets": "^1.2.5"
}
}
10 changes: 5 additions & 5 deletions examples/xcm-transfer/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ const wallet = new Wallet({
configureExternal(externals, configService);

// Define transfer
const srcChain = configService.getChain('hydration');
const destChain = configService.getChain('assethub');
const asset = configService.getAsset('beefy_ah_420');
const srcChain = configService.getChain('ethereum');
const destChain = configService.getChain('hydration');
const asset = configService.getAsset('eth');

const configBuilder = ConfigBuilder(configService);
const { sourceChains } = configBuilder.assets().asset(asset);
Expand All @@ -71,8 +71,8 @@ logDestChains(asset.key, destinationChains);
logSrcChains(asset.key, sourceChains);

// Define source & dest accounts
const srcAddr = '5FkNiM6iAQ6rrNk9muuWbSnfWufdJ5wdRa4uQmkxnCAit88n';
const destAddr = '5FkNiM6iAQ6rrNk9muuWbSnfWufdJ5wdRa4uQmkxnCAit88n';
const srcAddr = 'INSERT_ADDRESS';
const destAddr = 'INSERT_ADDRESS';

// Subscribe source chain token balance
const balanceObserver = (balances: AssetAmount[]) => console.log(balances);
Expand Down
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.

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.0.0

### Major Changes

- New config/route setup, HydrationConfigService

### Patch Changes

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

## 4.1.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": "4.1.2",
"version": "5.0.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": "^4.0.0"
"@galacticcouncil/xcm-core": "^5.0.0"
}
}
6 changes: 6 additions & 0 deletions packages/xcm-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @galacticcouncil/xcm-core

## 5.0.0

### Major Changes

- New config/route definition, context upgrade

## 4.0.1

### Patch 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": "4.0.1",
"version": "5.0.0",
"description": "Cross-chain sdk core",
"author": "GalacticCouncil",
"repository": {
Expand Down
11 changes: 11 additions & 0 deletions packages/xcm-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @galacticcouncil/xcm-sdk

## 6.0.0

### Major Changes

- New config/route changes, XTransfer v2

### Patch Changes

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

## 5.2.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 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": "5.2.3",
"version": "6.0.0",
"description": "Cross-chain sdk",
"author": "GalacticCouncil",
"repository": {
Expand Down Expand Up @@ -32,7 +32,7 @@
"link": "npm ln"
},
"dependencies": {
"@galacticcouncil/xcm-core": "^4.0.0"
"@galacticcouncil/xcm-core": "^5.0.0"
},
"peerDependencies": {
"@galacticcouncil/sdk": "^4.2.1"
Expand Down

0 comments on commit 6dac1fd

Please sign in to comment.