Skip to content

Commit b38123f

Browse files
committed
build: update package imports for chain and qry
1 parent 197af19 commit b38123f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import {
2020
Node,
2121
TreasuryId,
2222
client,
23-
qry,
24-
} from "chain";
23+
} from "@zkn/chain";
24+
import { qry } from "@zkn/qry";
2525
import { IPFSNode } from "./ipfs";
2626
import { TxHandler } from "./tx";
2727
import { CommandRequest, CommandResponse, FAILURE, SUCCESS } from "./types";

src/tx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { PrivateKey, PublicKey } from "o1js";
22
import { CommandRequest, CommandResponse, FAILURE, PENDING } from "./types";
3-
import { qry } from "chain";
3+
import { qry } from "@zkn/qry";
44

55
interface TxTask {
66
txfn: () => Promise<void>;

0 commit comments

Comments
 (0)