Skip to content

Commit

Permalink
move extender to hre-extender
Browse files Browse the repository at this point in the history
  • Loading branch information
dule-git committed Sep 19, 2024
1 parent 52d02e2 commit b2bb71a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import {
DeployBeaconProxyOptions,
DeployProxyOptions,
} from "@openzeppelin/hardhat-upgrades/dist/utils";
import { TenderlyPlugin } from "../hre-extender/type-extensions";
import { TenderlyPlugin } from "./type-extensions";
import { logger } from "../utils/logger";
import { TdlyContractFactory } from "./ethers/ContractFactory";
import { TdlyContract } from "./ethers/Contract";
import { TdlyProxyContract } from "./ethers/ProxyContract";
import { TdlyContractFactory } from "../tenderly/ethers/ContractFactory";
import { TdlyContract } from "../tenderly/ethers/Contract";
import { TdlyProxyContract } from "../tenderly/ethers/ProxyContract";

export function wrapEthers(
nativeEthers: typeof ethers & HardhatEthersHelpers,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import {
import * as URLComposer from "../utils/url-composer";
import { wrapEthers, wrapUpgrades } from "./ethers";
import { wrapHHDeployments } from "./hardhat-deploy";
import { getVnetTypeByEndpointId, VnetType } from "./vnet-type";
import { getVnetTypeByEndpointId, VnetType } from "../tenderly/vnet-type";

const tenderlyService = new TenderlyService(PLUGIN_NAME);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
DeployResult,
} from "hardhat-deploy/types";

import { TenderlyPlugin } from "../hre-extender/type-extensions";
import { TenderlyPlugin } from "./type-extensions";

export function wrapHHDeployments(
deployments: DeploymentsExtension,
Expand Down
2 changes: 1 addition & 1 deletion packages/tenderly-hardhat/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "./hre-extender/type-extensions";
import "./tasks";

import * as tenderlyExtender from "./tenderly/extender";
import * as tenderlyExtender from "./hre-extender/extender";

export function setup(
cfg: { automaticVerifications: boolean } = { automaticVerifications: true },
Expand Down

0 comments on commit b2bb71a

Please sign in to comment.