Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .solhint.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"^0.8.0"
],
"no-global-import": "off",
"gas-custom-errors": "off",
"private-vars-leading-underscore": "error",
"func-visibility": ["error", { "ignoreConstructors": true }]
}
Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import 'hardhat-gas-reporter';
import 'hardhat-deploy';
import '@nomicfoundation/hardhat-verify';
import 'solidity-docgen';
require('solidity-coverage'); // require because no TS typings available
import 'solidity-coverage';
import dotenv from 'dotenv';
import { HardhatUserConfig } from 'hardhat/config';
import { HardhatNetworkUserConfig } from 'hardhat/types';
Expand Down
60 changes: 30 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,51 +38,51 @@
"typechain": "hardhat typechain"
},
"dependencies": {
"@metamask/eth-sig-util": "7.0.1",
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-network-helpers": "1.0.10",
"@nomicfoundation/hardhat-verify": "2.0.5",
"@openzeppelin/contracts": "5.0.2",
"@uniswap/permit2-sdk": "1.2.0",
"chai": "4.4.0",
"@metamask/eth-sig-util": "8.0.0",
"@nomicfoundation/hardhat-ethers": "3.0.8",
"@nomicfoundation/hardhat-network-helpers": "1.0.12",
"@nomicfoundation/hardhat-verify": "2.0.11",
"@openzeppelin/contracts": "5.1.0",
"@uniswap/permit2-sdk": "1.3.0",
"chai": "4.5.0",
"dotenv": "16.4.5",
"ethereumjs-util": "7.1.5",
"ethers": "6.11.1",
"hardhat": "2.22.2",
"hardhat-deploy": "0.12.2",
"mocha-chai-jest-snapshot": "1.1.4",
"ethers": "6.13.4",
"hardhat": "2.22.15",
"hardhat-deploy": "0.14.0",
"mocha-chai-jest-snapshot": "1.1.6",
"node-fetch": "2.7.0"
},
"devDependencies": {
"@0xsequence/create3": "0xsequence/create3",
"@nomicfoundation/hardhat-chai-matchers": "2.0.6",
"@nomicfoundation/hardhat-chai-matchers": "2.0.8",
"@typechain/ethers-v6": "0.5.1",
"@typechain/hardhat": "9.1.0",
"@types/mocha": "10.0.6",
"@types/mocha": "10.0.9",
"@types/node-fetch": "2.6.11",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"acquit": "1.3.0",
"commander": "12.0.0",
"commander": "12.1.0",
"create-ts-index": "1.14.0",
"eslint": "8.57.0",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"hardhat-gas-reporter": "2.0.2",
"prettier": "3.2.5",
"prettier-plugin-solidity": "1.3.1",
"rimraf": "5.0.5",
"solc": "0.8.25",
"solhint": "4.5.2",
"solidity-coverage": "0.8.11",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.12.0",
"eslint-plugin-promise": "7.1.0",
"hardhat-gas-reporter": "2.2.1",
"prettier": "3.3.3",
"prettier-plugin-solidity": "1.4.1",
"rimraf": "6.0.1",
"solc": "0.8.28",
"solhint": "5.0.3",
"solidity-coverage": "0.8.13",
"solidity-docgen": "0.6.0-beta.36",
"ts-node": "10.9.2",
"typechain": "8.3.2",
"typedoc": "0.25.12",
"typedoc-plugin-markdown": "3.17.1",
"typescript": "5.4.3"
"typedoc": "0.26.11",
"typedoc-plugin-markdown": "4.2.10",
"typescript": "5.6.3"
},
"bugs": {
"url": "https://github.com/1inch/solidity-utils/issues"
Expand Down
2 changes: 2 additions & 0 deletions test/contracts/AddressLib.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { SignerWithAddress } from '@nomicfoundation/hardhat-ethers/signers';
import { loadFixture } from '@nomicfoundation/hardhat-network-helpers';
import { ethers } from 'hardhat';

/* eslint-disable @typescript-eslint/no-unused-expressions */

describe('AddressLib', function () {
let signer: SignerWithAddress;

Expand Down
2 changes: 2 additions & 0 deletions test/contracts/AddressSet.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import { SignerWithAddress } from '@nomicfoundation/hardhat-ethers/signers';
import { loadFixture } from '@nomicfoundation/hardhat-network-helpers';
import { ethers } from 'hardhat';

/* eslint-disable @typescript-eslint/no-unused-expressions */

describe('AddressSet', function () {
let signer1: SignerWithAddress;
let signer2: SignerWithAddress;
Expand Down
2 changes: 2 additions & 0 deletions test/contracts/ECDSA.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import { ethers } from 'hardhat';
import { loadFixture } from '@nomicfoundation/hardhat-network-helpers';
import { getBytes, concat, Signature, hashMessage, HDNodeWallet, keccak256, toUtf8Bytes } from 'ethers';

/* eslint-disable @typescript-eslint/no-unused-expressions */

describe('ECDSA', function () {
let account: SignerWithAddress;
let randomAccount: HDNodeWallet;
Expand Down
2 changes: 2 additions & 0 deletions test/contracts/UniERC20.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import { loadFixture } from '@nomicfoundation/hardhat-network-helpers';
import { ethers } from 'hardhat';
import { encodeBytes32String, getAddress } from 'ethers';

/* eslint-disable @typescript-eslint/no-unused-expressions */

describe('UniERC20', function () {
let signer1: SignerWithAddress;
let signer2: SignerWithAddress;
Expand Down
Loading
Loading