Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Feb 2, 2024
1 parent 2be5087 commit c947f8f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
8 changes: 4 additions & 4 deletions data/addresses.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,20 +113,20 @@
"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",
"uniswapv2Factory": "0x9fd96203f7b22bCF72d9DCb40ff98302376cE09c",
"uniswapv2Router02": "0x2ca7d64A7EFE2D62A725E2B35Cf7230D6677FfEe"
}
}
}
}
9 changes: 4 additions & 5 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -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" },
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@
},
"types": "./dist/lib/index.d.ts",
"version": "0.0.8"
}
}

0 comments on commit c947f8f

Please sign in to comment.