Skip to content

Commit fa2aad3

Browse files
committed
chore: clean unused imports
1 parent 5044606 commit fa2aad3

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

contracts/deploy/00-home-chain-arbitration.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { HardhatRuntimeEnvironment } from "hardhat/types";
22
import { DeployFunction } from "hardhat-deploy/types";
33
import { BigNumber } from "ethers";
44
import getContractAddress from "../deploy-helpers/getContractAddress";
5-
import { SortitionModule, VRFSubscriptionManagerV2, VRFSubscriptionManagerV2Mock } from "../typechain-types";
5+
import { VRFSubscriptionManagerV2, VRFSubscriptionManagerV2Mock } from "../typechain-types";
66

77
enum HomeChains {
88
ARBITRUM_ONE = 42161,

contracts/deploy/00-rng.ts

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
import { HardhatRuntimeEnvironment } from "hardhat/types";
22
import { BigNumber } from "ethers";
33
import { DeployFunction } from "hardhat-deploy/types";
4-
import {
5-
SortitionModule,
6-
RandomizerRNG,
7-
VRFSubscriptionManagerV2Mock,
8-
VRFSubscriptionManagerV2,
9-
} from "../typechain-types";
4+
import { SortitionModule, VRFSubscriptionManagerV2Mock, VRFSubscriptionManagerV2 } from "../typechain-types";
105

116
enum HomeChains {
127
ARBITRUM_ONE = 42161,

contracts/scripts/creditLink.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import { deployments, getNamedAccounts, getChainId, ethers } from "hardhat";
21
import { LinkTokenInterface, VRFSubscriptionManagerV2 } from "../typechain-types";
3-
import { task, types } from "hardhat/config";
2+
import { task } from "hardhat/config";
43
import { BigNumber } from "ethers";
54

65
enum HomeChains {

contracts/test/integration/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import {
1313
RandomizerMock,
1414
SortitionModule,
1515
VRFConsumerV2,
16-
VRFSubscriptionManagerV2Mock,
1716
VRFCoordinatorV2Mock,
1817
} from "../../typechain-types";
1918

0 commit comments

Comments
 (0)