Skip to content

Commit

Permalink
Rename signer-with-address.ts to signers.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
alcuadrado committed Dec 29, 2020
1 parent ec3ef0c commit 95807c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/hardhat-ethers/src/internal/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
NetworkConfig,
} from "hardhat/types";

import type { SignerWithAddress } from "../signer-with-address";
import type { SignerWithAddress } from "../signers";
import type { FactoryOptions, Libraries } from "../types";

interface Link {
Expand All @@ -21,7 +21,7 @@ export async function getSigners(
hre: HardhatRuntimeEnvironment
): Promise<SignerWithAddress[]> {
const { SignerWithAddress: SignerWithAddressImpl } = await import(
"../signer-with-address"
"../signers"
);

const accounts = await hre.ethers.provider.listAccounts();
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/hardhat-ethers/src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type * as ethers from "ethers";

import type { SignerWithAddress } from "../signer-with-address";
import type { SignerWithAddress } from "../signers";

export interface Libraries {
[libraryName: string]: string;
Expand Down

0 comments on commit 95807c5

Please sign in to comment.