Skip to content

Commit 10365ec

Browse files
committed
remove the use of the metapackage in published packages
1 parent fc36ea7 commit 10365ec

File tree

10 files changed

+11
-10
lines changed

10 files changed

+11
-10
lines changed

sdk/__tests__/accountant.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { encoding } from "@wormhole-foundation/sdk";
1+
import { encoding } from "@wormhole-foundation/sdk-base";
22
import {
33
getWallet,
44
getWormchainSigningClient,

sdk/__tests__/index.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Chain } from "@wormhole-foundation/sdk";
1+
import { Chain } from "@wormhole-foundation/sdk-base";
22
import { deploy, link, transferWithChecks, wh } from "./utils.js";
33
import { submitAccountantVAA } from "./accountant.js";
44

sdk/__tests__/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
serialize,
1818
signSendWait as ssw,
1919
toChainId,
20-
} from "@wormhole-foundation/sdk";
20+
} from "@wormhole-foundation/sdk-connect";
2121
import evm from "@wormhole-foundation/sdk/platforms/evm";
2222
import solana from "@wormhole-foundation/sdk/platforms/solana";
2323

sdk/definitions/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { registerPayloadTypes } from "@wormhole-foundation/sdk";
1+
import { registerPayloadTypes } from "@wormhole-foundation/sdk-definitions";
22
import { nttNamedPayloads } from "./layouts/index.js";
33

44
registerPayloadTypes("Ntt", nttNamedPayloads);

sdk/definitions/src/layouts/manager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { layoutItems } from "@wormhole-foundation/sdk";
1+
import { layoutItems } from "@wormhole-foundation/sdk-definitions";
22
import {
33
CustomizableBytes,
44
Layout,

sdk/definitions/src/layouts/transceiver.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { layoutItems } from "@wormhole-foundation/sdk";
1+
import { layoutItems } from "@wormhole-foundation/sdk-definitions";
22
import {
33
CustomizableBytes,
44
Layout,

sdk/definitions/src/layouts/transfer.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { Layout, LayoutToType, layoutItems } from "@wormhole-foundation/sdk";
1+
import { Layout, LayoutToType } from "@wormhole-foundation/sdk-base";
2+
import { layoutItems } from "@wormhole-foundation/sdk-definitions";
23
import { trimmedAmountItem } from "./amount.js";
34
import { prefixItem } from "./prefix.js";
45

sdk/examples/src/consts.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Chain } from "@wormhole-foundation/sdk";
1+
import { Chain } from "@wormhole-foundation/sdk-base";
22
import { Ntt } from "@wormhole-foundation/sdk-definitions-ntt";
33
import { NttRoute } from "@wormhole-foundation/sdk-route-ntt";
44
export type NttContracts = {

solana/tests/anchor.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { SolanaWormholeCore } from "@wormhole-foundation/sdk-solana-core";
2424
import * as fs from "fs";
2525

2626
import { PublicKey, SystemProgram, Transaction } from "@solana/web3.js";
27-
import { AccountAddress } from "@wormhole-foundation/sdk";
27+
import { AccountAddress } from "@wormhole-foundation/sdk-definitions";
2828
import { DummyTransferHook } from "../ts/idl/1_0_0/ts/dummy_transfer_hook.js";
2929
import { SolanaNtt } from "../ts/sdk/index.js";
3030

solana/ts/lib/quoter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
PublicKeyInitData,
77
SystemProgram,
88
} from "@solana/web3.js";
9-
import { amount, chainToPlatform } from "@wormhole-foundation/sdk";
9+
import { amount, chainToPlatform } from "@wormhole-foundation/sdk-base";
1010
import {
1111
Chain,
1212
deserializeLayout,

0 commit comments

Comments
 (0)