Skip to content

Commit c1bec00

Browse files
authored
fix(target_chains/sui/cli): use proper imports (#2453)
1 parent f61d4dd commit c1bec00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

target_chains/sui/cli/src/pyth_deploy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import { Transaction } from "@mysten/sui/transactions";
22

33
import { MIST_PER_SUI, normalizeSuiObjectId, fromB64 } from "@mysten/sui/utils";
44

5-
import { Ed25519Keypair } from "@mysten/sui/dist/cjs/keypairs/ed25519";
5+
import { Ed25519Keypair } from "@mysten/sui/keypairs/ed25519";
66
import { execSync } from "child_process";
77
import { DataSource } from "@pythnetwork/xc-admin-common";
88
import { SuiClient } from "@mysten/sui/client";
9-
import { bcs } from "@mysten/sui/dist/cjs/bcs";
9+
import { bcs } from "@mysten/sui/bcs";
1010

1111
export async function publishPackage(
1212
keypair: Ed25519Keypair,

0 commit comments

Comments
 (0)