Skip to content

Commit 2c334b6

Browse files
authored
[sui 16/x] - update imports (#942)
* update some script imports * another one * remove @optke3/sui.js from dependencies
1 parent bef4073 commit 2c334b6

12 files changed

+11
-12
lines changed

target_chains/sui/scripts/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"dependencies": {
88
"@certusone/wormhole-sdk": "^0.9.12",
99
"@mysten/sui.js": "^0.32.2",
10-
"@optke3/sui.js": "0.33.0",
1110
"@pythnetwork/client": "^2.17.0",
1211
"@pythnetwork/price-service-client": "^1.4.0",
1312
"@pythnetwork/price-service-sdk": "^1.2.0",

target_chains/sui/scripts/pyth/create_all_price_feeds.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
JsonRpcProvider,
1111
Ed25519Keypair,
1212
Connection,
13-
} from "@optke3/sui.js";
13+
} from "@mysten/sui.js";
1414

1515
dotenv.config({ path: "~/.env" });
1616

target_chains/sui/scripts/pyth/create_price_feed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
JsonRpcProvider,
99
Ed25519Keypair,
1010
Connection,
11-
} from "@optke3/sui.js";
11+
} from "@mysten/sui.js";
1212

1313
dotenv.config({ path: "~/.env" });
1414

target_chains/sui/scripts/pyth/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
JsonRpcProvider,
99
Ed25519Keypair,
1010
Connection,
11-
} from "@optke3/sui.js";
11+
} from "@mysten/sui.js";
1212
import { execSync } from "child_process";
1313

1414
import dotenv from "dotenv";

target_chains/sui/scripts/pyth/init_state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
JsonRpcProvider,
77
Ed25519Keypair,
88
Connection,
9-
} from "@optke3/sui.js";
9+
} from "@mysten/sui.js";
1010

1111
import { REGISTRY, NETWORK, INITIAL_DATA_SOURCES } from "../registry";
1212
dotenv.config({ path: "~/.env" });

target_chains/sui/scripts/pyth/pyth_create_all_price_feeds.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
JsonRpcProvider,
1111
Ed25519Keypair,
1212
Connection,
13-
} from "@optke3/sui.js";
13+
} from "@mysten/sui.js";
1414

1515
dotenv.config({ path: "~/.env" });
1616

target_chains/sui/scripts/pyth/pyth_create_price_feed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
JsonRpcProvider,
99
Ed25519Keypair,
1010
Connection,
11-
} from "@optke3/sui.js";
11+
} from "@mysten/sui.js";
1212

1313
dotenv.config({ path: "~/.env" });
1414

target_chains/sui/scripts/pyth/pyth_deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
JsonRpcProvider,
99
Ed25519Keypair,
1010
Connection,
11-
} from "@optke3/sui.js";
11+
} from "@mysten/sui.js";
1212
import { execSync } from "child_process";
1313

1414
import dotenv from "dotenv";

target_chains/sui/scripts/pyth/pyth_init_state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
JsonRpcProvider,
77
Ed25519Keypair,
88
Connection,
9-
} from "@optke3/sui.js";
9+
} from "@mysten/sui.js";
1010

1111
import { REGISTRY, NETWORK, INITIAL_DATA_SOURCES } from "../registry";
1212
dotenv.config({ path: "~/.env" });

target_chains/sui/scripts/pyth/pyth_update_price_feeds.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
JsonRpcProvider,
1414
Ed25519Keypair,
1515
Connection,
16-
} from "@optke3/sui.js";
16+
} from "@mysten/sui.js";
1717

1818
dotenv.config({ path: "~/.env" });
1919

0 commit comments

Comments
 (0)