Skip to content

Commit

Permalink
fix: resolve additional import issues
Browse files Browse the repository at this point in the history
Signed-off-by: james-a-morris <jaamorris@cs.stonybrook.edu>
  • Loading branch information
james-a-morris committed May 30, 2023
1 parent d46576e commit fe3dde2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
3 changes: 2 additions & 1 deletion scripts/mintERC1155.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { getContractFactory, ethers, hre } from "../utils/utils";
import { getContractFactory, ethers } from "../utils/utils";
import { readFileSync } from "fs";
import path from "path";
import { getNodeUrl } from "@uma/common";
import { hre } from "../utils/utils.hre";

const RECIPIENTS_CHUNK_SIZE = 100; // TODO: Still need to figure out which size is optimal

Expand Down
3 changes: 2 additions & 1 deletion scripts/setERC1155Metadata.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { getContractFactory, ethers, hre } from "../utils/utils";
import { getContractFactory, ethers } from "../utils/utils";
import { hre } from "../utils/utils.hre";
import { readFileSync } from "fs";
import path from "path";
import { CID } from "multiformats/cid";
Expand Down
16 changes: 14 additions & 2 deletions test/gas-analytics/HubPool.RootExecution.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
import { toBNWei, toBN, SignerWithAddress, seedWallet, Contract, ethers, hre, expect } from "../../utils/utils";
import { getContractFactory, BigNumber, randomAddress, createRandomBytes32 } from "../../utils/utils";
import {
toBNWei,
toBN,
SignerWithAddress,
seedWallet,
Contract,
ethers,
expect,
getContractFactory,
BigNumber,
randomAddress,
createRandomBytes32,
} from "../../utils/utils";
import { deployErc20 } from "./utils";
import * as consts from "../constants";
import { hubPoolFixture, enableTokensForLP } from "../fixtures/HubPool.Fixture";
import { buildPoolRebalanceLeafTree, buildPoolRebalanceLeaves, PoolRebalanceLeaf } from "../MerkleLib.utils";
import { MerkleTree } from "../../utils/MerkleTree";
import { hre } from "../../utils/utils.hre";

require("dotenv").config();

Expand Down

0 comments on commit fe3dde2

Please sign in to comment.