Skip to content

Commit

Permalink
Fix code style issues with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Nov 28, 2023
1 parent edc689e commit c242120
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion networks.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const networks = {
linkToken: "0xa85233C63b9Ee964Add6F2cffe00Fd84eb32338f",
functionsRouter: "0x7a2088a1bFc9d81c55368AE168C2C02570cB814F",
donId: "local-functions-testnet",
uniswapV3Router: "0xE592427A0AEce92De3Edee1F18E0157C05861564"
uniswapV3Router: "0xE592427A0AEce92De3Edee1F18E0157C05861564",
},
}

Expand Down
8 changes: 4 additions & 4 deletions scripts/deployContracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
// Runtime Environment's members available in the global scope.
const { networks } = require("../networks")
const hre = require("hardhat")
const createBilling = require("./createBilling");
const NEED_DEPLOY_BILLING = true;
const INTERVAL = 5; //Value in seconds
const createBilling = require("./createBilling")
const NEED_DEPLOY_BILLING = true
const INTERVAL = 5 //Value in seconds
require("dotenv").config()
async function main() {
const networkName = network.name;
const networkName = network.name
//Deploy Drex and TSelic contracts
const [admin] = await ethers.getSigners()
const feeCollector = admin.address //TODO @dev replace with your fee collector address
Expand Down

0 comments on commit c242120

Please sign in to comment.