Skip to content

Commit 9875d89

Browse files
committed
refactor: moved token folder
1 parent 421141c commit 9875d89

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed

web/src/hooks/queries/usePNKAllowance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import useSWR from "swr";
2-
import { PNK } from "@kleros/kleros-v2-contracts/typechain-types/src/arbitration/mock/PNK";
2+
import { PNK } from "@kleros/kleros-v2-contracts/typechain-types/src/token/PNK";
33
import { useConnectedContract } from "hooks/useConnectedContract";
44
import { CONTRACTS } from "utils/getContract";
55

web/src/hooks/queries/usePNKBalance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import useSWR from "swr";
2-
import { PNK } from "@kleros/kleros-v2-contracts/typechain-types/src/arbitration/mock/PNK";
2+
import { PNK } from "@kleros/kleros-v2-contracts/typechain-types/src/token/PNK";
33
import { useConnectedContract } from "hooks/useConnectedContract";
44

55
export const usePNKBalance = (user?: string | null) => {

web/src/pages/Courts/CourtDetails/StakeModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useParams } from "react-router-dom";
44
import Modal from "react-modal";
55
import { BigNumber } from "ethers";
66
import { Field, Button } from "@kleros/ui-components-library";
7-
import { PNK } from "@kleros/kleros-v2-contracts/typechain-types/src/arbitration/mock/PNK";
7+
import { PNK } from "@kleros/kleros-v2-contracts/typechain-types/src/token/PNK";
88
import { KlerosCore } from "@kleros/kleros-v2-contracts/typechain-types/src/arbitration/KlerosCore";
99
import { useWeb3 } from "hooks/useWeb3";
1010
import { useConnectedContract } from "hooks/useConnectedContract";

0 commit comments

Comments
 (0)