Skip to content

Commit

Permalink
fix(target_chains/sui/cli): use proper imports (#2453)
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-bahjati authored Mar 7, 2025
1 parent f61d4dd commit c1bec00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions target_chains/sui/cli/src/pyth_deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import { Transaction } from "@mysten/sui/transactions";

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

import { Ed25519Keypair } from "@mysten/sui/dist/cjs/keypairs/ed25519";
import { Ed25519Keypair } from "@mysten/sui/keypairs/ed25519";
import { execSync } from "child_process";
import { DataSource } from "@pythnetwork/xc-admin-common";
import { SuiClient } from "@mysten/sui/client";
import { bcs } from "@mysten/sui/dist/cjs/bcs";
import { bcs } from "@mysten/sui/bcs";

export async function publishPackage(
keypair: Ed25519Keypair,
Expand Down

0 comments on commit c1bec00

Please sign in to comment.