Skip to content

Commit 6ef5bf6

Browse files
committed
remove connect dep from evm
1 parent 5bb99f1 commit 6ef5bf6

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

evm/ts/__tests__/versions.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Wormhole } from "@wormhole-foundation/sdk-connect";
1+
import { Wormhole } from "@wormhole-foundation/sdk";
22
import { EvmPlatform } from "@wormhole-foundation/sdk-evm";
33
import { EvmNtt } from "../src/index.js";
44

evm/ts/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,16 @@
4444
"test": "jest --config ./jest.config.ts"
4545
},
4646
"dependencies": {
47-
"@wormhole-foundation/sdk-connect": "0.7.1-beta.2",
47+
"@wormhole-foundation/sdk-base": "0.7.1-beta.2",
48+
"@wormhole-foundation/sdk-definitions": "0.7.1-beta.2",
4849
"@wormhole-foundation/sdk-definitions-ntt": "0.1.0-beta.0",
4950
"@wormhole-foundation/sdk-evm": "0.7.1-beta.2",
5051
"@wormhole-foundation/sdk-evm-core": "0.7.1-beta.2",
5152
"ethers": "^6.5.1"
5253
},
5354
"peerDependencies": {
54-
"@wormhole-foundation/sdk-connect": "0.7.1-beta.2",
55+
"@wormhole-foundation/sdk-base": "0.7.1-beta.2",
56+
"@wormhole-foundation/sdk-definitions": "0.7.1-beta.2",
5557
"@wormhole-foundation/sdk-evm": "0.7.1-beta.2",
5658
"@wormhole-foundation/sdk-evm-core": "0.7.1-beta.2"
5759
},

evm/ts/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { registerProtocol } from "@wormhole-foundation/sdk-connect";
1+
import { registerProtocol } from "@wormhole-foundation/sdk-definitions";
22
import { _platform } from "@wormhole-foundation/sdk-evm";
33
import { EvmNtt } from "./ntt.js";
44
import "@wormhole-foundation/sdk-definitions-ntt";

evm/ts/src/ntt.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
import {
2-
AccountAddress,
32
Chain,
3+
Network,
4+
nativeChainIds,
5+
toChainId,
6+
} from "@wormhole-foundation/sdk-base";
7+
import {
8+
AccountAddress,
49
ChainAddress,
510
ChainsConfig,
611
Contracts,
7-
Network,
812
TokenAddress,
913
VAA,
10-
nativeChainIds,
1114
serialize,
12-
toChainId,
1315
universalAddress,
14-
} from "@wormhole-foundation/sdk-connect";
16+
} from "@wormhole-foundation/sdk-definitions";
1517
import type { EvmChains, EvmPlatformType } from "@wormhole-foundation/sdk-evm";
1618
import {
1719
EvmAddress,

package-lock.json

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)