Skip to content

Commit fe986ef

Browse files
authored
Bump version (#371)
1 parent 15a1adb commit fe986ef

File tree

32 files changed

+192
-188
lines changed

32 files changed

+192
-188
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.4-beta.5
1+
0.4.4-beta.6

connect/__tests__/index.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe("Wormhole Tests", () => {
2828
expect(p).toBeTruthy();
2929
});
3030

31-
let c: ChainContext<TNet, "Evm", "Ethereum">;
31+
let c: ChainContext<TNet, "Ethereum">;
3232
test("returns chain", async () => {
3333
c = wh.getChain("Ethereum");
3434
expect(c).toBeTruthy();
@@ -80,7 +80,7 @@ describe("Platform Tests", () => {
8080
});
8181

8282
describe("Chain Tests", () => {
83-
let c: ChainContext<"Testnet", "Evm", "Ethereum">;
83+
let c: ChainContext<"Testnet", "Ethereum">;
8484
beforeEach(() => {
8585
const wh = new Wormhole(network, allPlatformCtrs);
8686
c = wh.getChain("Ethereum");

connect/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wormhole-foundation/connect-sdk",
3-
"version": "0.4.4-beta.5",
3+
"version": "0.4.4-beta.6",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/wormhole-foundation/connect-sdk.git"
@@ -45,7 +45,7 @@
4545
},
4646
"dependencies": {
4747
"axios": "^1.4.0",
48-
"@wormhole-foundation/sdk-base": "0.4.4-beta.5",
49-
"@wormhole-foundation/sdk-definitions": "0.4.4-beta.5"
48+
"@wormhole-foundation/sdk-base": "0.4.4-beta.6",
49+
"@wormhole-foundation/sdk-definitions": "0.4.4-beta.6"
5050
}
5151
}

core/base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wormhole-foundation/sdk-base",
3-
"version": "0.4.4-beta.5",
3+
"version": "0.4.4-beta.6",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/wormhole-foundation/connect-sdk.git"

core/definitions/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wormhole-foundation/sdk-definitions",
3-
"version": "0.4.4-beta.5",
3+
"version": "0.4.4-beta.6",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/wormhole-foundation/connect-sdk.git"
@@ -30,6 +30,6 @@
3030
},
3131
"dependencies": {
3232
"@noble/hashes": "^1.3.1",
33-
"@wormhole-foundation/sdk-base": "0.4.4-beta.5"
33+
"@wormhole-foundation/sdk-base": "0.4.4-beta.6"
3434
}
3535
}

core/definitions/src/chain.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { Chain, Network, Platform, tokens } from "@wormhole-foundation/sdk-base";
2-
import { ChainToPlatform } from "@wormhole-foundation/sdk-base/src";
1+
import { Chain, ChainToPlatform, Network, Platform, tokens } from "@wormhole-foundation/sdk-base";
32
import { ChainAddress, UniversalOrNative, toNative } from "./address";
43
import { WormholeMessageId } from "./attestation";
54
import { PlatformContext } from "./platform";

core/definitions/src/testing/mocks/chain.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
import { Chain, Network, Platform, PlatformToChains } from "@wormhole-foundation/sdk-base";
2-
import { ChainToPlatform } from "@wormhole-foundation/sdk-base/src";
1+
import {
2+
Chain,
3+
ChainToPlatform,
4+
Network,
5+
Platform,
6+
PlatformToChains,
7+
} from "@wormhole-foundation/sdk-base";
38
import { ChainContext, PlatformContext } from "../..";
49

510
export function chainFactory<N extends Network, P extends Platform, C extends PlatformToChains<P>>(

examples/package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wormhole-foundation/connect-sdk-examples",
3-
"version": "0.4.4-beta.5",
3+
"version": "0.4.4-beta.6",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/wormhole-foundation/connect-sdk.git"
@@ -53,18 +53,18 @@
5353
"algosdk": "^2.7.0"
5454
},
5555
"dependencies": {
56-
"@wormhole-foundation/connect-sdk": "0.4.4-beta.5",
57-
"@wormhole-foundation/connect-sdk-solana": "0.4.4-beta.5",
58-
"@wormhole-foundation/connect-sdk-evm": "0.4.4-beta.5",
59-
"@wormhole-foundation/connect-sdk-cosmwasm": "0.4.4-beta.5",
60-
"@wormhole-foundation/connect-sdk-evm-core": "0.4.4-beta.5",
61-
"@wormhole-foundation/connect-sdk-solana-core": "0.4.4-beta.5",
62-
"@wormhole-foundation/connect-sdk-cosmwasm-core": "0.4.4-beta.5",
63-
"@wormhole-foundation/connect-sdk-evm-tokenbridge": "0.4.4-beta.5",
64-
"@wormhole-foundation/connect-sdk-solana-tokenbridge": "0.4.4-beta.5",
65-
"@wormhole-foundation/connect-sdk-cosmwasm-tokenbridge": "0.4.4-beta.5",
66-
"@wormhole-foundation/connect-sdk-evm-cctp": "0.4.4-beta.5",
67-
"@wormhole-foundation/connect-sdk-solana-cctp": "0.4.4-beta.5",
68-
"@wormhole-foundation/connect-sdk-cosmwasm-ibc": "0.4.4-beta.5"
56+
"@wormhole-foundation/connect-sdk": "0.4.4-beta.6",
57+
"@wormhole-foundation/connect-sdk-solana": "0.4.4-beta.6",
58+
"@wormhole-foundation/connect-sdk-evm": "0.4.4-beta.6",
59+
"@wormhole-foundation/connect-sdk-cosmwasm": "0.4.4-beta.6",
60+
"@wormhole-foundation/connect-sdk-evm-core": "0.4.4-beta.6",
61+
"@wormhole-foundation/connect-sdk-solana-core": "0.4.4-beta.6",
62+
"@wormhole-foundation/connect-sdk-cosmwasm-core": "0.4.4-beta.6",
63+
"@wormhole-foundation/connect-sdk-evm-tokenbridge": "0.4.4-beta.6",
64+
"@wormhole-foundation/connect-sdk-solana-tokenbridge": "0.4.4-beta.6",
65+
"@wormhole-foundation/connect-sdk-cosmwasm-tokenbridge": "0.4.4-beta.6",
66+
"@wormhole-foundation/connect-sdk-evm-cctp": "0.4.4-beta.6",
67+
"@wormhole-foundation/connect-sdk-solana-cctp": "0.4.4-beta.6",
68+
"@wormhole-foundation/connect-sdk-cosmwasm-ibc": "0.4.4-beta.6"
6969
}
7070
}

0 commit comments

Comments
 (0)