From c947f8f39343d6a2b877fea057131668f304a714 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Fri, 2 Feb 2024 17:17:15 +0400 Subject: [PATCH] lint --- data/addresses.json | 8 ++++---- hardhat.config.ts | 9 ++++----- package.json | 2 +- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/data/addresses.json b/data/addresses.json index 3f204c42..08dc99f8 100644 --- a/data/addresses.json +++ b/data/addresses.json @@ -113,15 +113,15 @@ "bsc_testnet": { "zrc20": "0xd97B1de3619ed2c6BEb3860147E30cA8A7dC9891" }, + "btc_testnet": { + "zrc20": "0x65a45c57636f9BcCeD4fe193A602008578BcA90b" + }, "goerli_testnet": { "zrc20": "0x13A0c5930C028511Dc02665E7285134B6d11A5f4" }, "mumbai_testnet": { "zrc20": "0x48f80608B672DC30DC7e3dbBd0343c5F02C738Eb" }, - "btc_testnet": { - "zrc20": "0x65a45c57636f9BcCeD4fe193A602008578BcA90b" - }, "zeta_testnet": { "fungibleModule": "0x735b14BB79463307AAcBED86DAf3322B1e6226aB", "systemContract": "0xEdf1c3275d13489aCdC6cD6eD246E72458B8795B", @@ -129,4 +129,4 @@ "uniswapv2Router02": "0x2ca7d64A7EFE2D62A725E2B35Cf7230D6677FfEe" } } -} \ No newline at end of file +} diff --git a/hardhat.config.ts b/hardhat.config.ts index fafd83c9..7de96d4d 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -3,13 +3,12 @@ import "@nomiclabs/hardhat-etherscan"; import "@typechain/hardhat"; import "tsconfig-paths/register"; import "hardhat-abi-exporter"; +import "./tasks/addresses"; import { getHardhatConfigNetworks } from "@zetachain/networks"; import * as dotenv from "dotenv"; import type { HardhatUserConfig } from "hardhat/types"; -import "./tasks/addresses"; - dotenv.config(); const config: HardhatUserConfig = { @@ -31,22 +30,22 @@ const config: HardhatUserConfig = { { version: "0.4.19" /** For zevm/wzeta.sol */ }, { version: "0.5.10" /** For create2 factory */ }, { - version: "0.5.16", settings: { optimizer: { enabled: true, runs: 999999, }, }, + version: "0.5.16", }, { - version: "0.6.6", settings: { optimizer: { enabled: true, runs: 999999, }, - } /** For uniswap v2 */, + }, + version: "0.6.6" /** For uniswap v2 */, }, { version: "0.7.6" /** For uniswap v3 */ }, { version: "0.8.7" }, diff --git a/package.json b/package.json index 27768c18..6570cc24 100644 --- a/package.json +++ b/package.json @@ -79,4 +79,4 @@ }, "types": "./dist/lib/index.d.ts", "version": "0.0.8" -} \ No newline at end of file +}