Skip to content

Commit

Permalink
fix: lint and format code
Browse files Browse the repository at this point in the history
  • Loading branch information
0xlucian committed Nov 10, 2023
1 parent 9ab9c76 commit 77576da
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 22 deletions.
1 change: 0 additions & 1 deletion multisig/helpers/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { JsonRpcSigner } from "@ethersproject/providers";
import Safe, { ContractNetworksConfig, EthersAdapter } from "@safe-global/protocol-kit";
import { MetaTransactionData } from "@safe-global/safe-core-sdk-types";
import { ethers, network } from "hardhat";
Expand Down
13 changes: 3 additions & 10 deletions scripts/createProposal.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
import { TxBuilder } from "@morpho-labs/gnosis-tx-builder";
import Safe, { ContractNetworksConfig, EthersAdapter } from "@safe-global/protocol-kit";
import Ajv from "ajv";
import { BigNumber } from "ethers";
import fs from "fs/promises";
import { ethers, network } from "hardhat";

import {
buildMultiSigTx,
createGnosisTx,
getContractNetworks,
getSafeAddress,
loadMultisigTx,
} from "../multisig/helpers/utils";
import { network } from "hardhat";

import { buildMultiSigTx, getSafeAddress, loadMultisigTx } from "../multisig/helpers/utils";
import { loadProposal, proposeVIP } from "../src/transactions";
import { getCalldatas, proposalSchema } from "../src/utils";

Expand Down
12 changes: 1 addition & 11 deletions scripts/executeMultiSigTx.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
import Safe, { ContractNetworksConfig, EthersAdapter } from "@safe-global/protocol-kit";
import { ethers, network } from "hardhat";

import {
buildMultiSigTx,
createGnosisTx,
getContractNetworks,
getSafeAddress,
loadMultisigTx,
} from "../multisig/helpers/utils";

const readline = require("readline-sync");

let txName: string;
import { createGnosisTx, getContractNetworks, getSafeAddress } from "../multisig/helpers/utils";

const executeMultiSigTx = async () => {
const safeOwner = ethers.provider.getSigner(0);
Expand Down

0 comments on commit 77576da

Please sign in to comment.