Skip to content

Commit

Permalink
style: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
noyyyy committed Oct 12, 2023
1 parent 0eb6365 commit fa28af5
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 6 deletions.
1 change: 1 addition & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"linea",
"LINEASCAN",
"MAXTIME",
"Merkle",
"mload",
"mulmod",
"multicall",
Expand Down
4 changes: 2 additions & 2 deletions packages/dev/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ task('accounts', 'Prints the list of accounts', async (taskArgs, hre) => {

const accounts = process.env.ACCOUNTS ? process.env.ACCOUNTS.split(',') : [];
const deployer = process.env.DEPLOYER || '0x0000000000000000000000000000000000000000';
const prodDeployer = process.env.PROD_DEPLOYER || '0x0000000000000000000000000000000000000000';
const prodDeployerKey = process.env.PRDO_DEPLOYER_KEY || '0x0000000000000000000000000000000000000000000000000000000000000000';
// const prodDeployer = process.env.PROD_DEPLOYER || '0x0000000000000000000000000000000000000000';
const prodDeployerKey = process.env.PROD_DEPLOYER_KEY || '0x0000000000000000000000000000000000000000000000000000000000000000';

const config: HardhatUserConfig = {
solidity: {
Expand Down
3 changes: 2 additions & 1 deletion packages/dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@
"base64-sol": "^1.1.0",
"canonical-weth": "^1.4.0",
"hardhat-preprocessor": "^0.1.5",
"simple-git-hooks": "^2.8.1"
"simple-git-hooks": "^2.8.1",
"viem": "^1.16.4"
},
"overrides": {
"@nomiclabs/hardhat-waffle": {
Expand Down
4 changes: 2 additions & 2 deletions packages/dev/src/arcana/v1/AntiSybil.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {UUPSUpgradeable} from "@openzeppelin/contracts-upgradeable/proxy/utils/U
import {AddressUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import {Ownable2StepUpgradeable} from "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol";

contract AntiSybilStorge {
contract AntiSybilStorage {
uint256 internal _proofEthAmount;
mapping(address => bool) internal _isProvedHuman;
uint256[48] private __gap;
Expand All @@ -15,7 +15,7 @@ interface IAntiSybil {
error CannotBeProved();
}

contract AntiSybil is IAntiSybil, UUPSUpgradeable, Ownable2StepUpgradeable, AntiSybilStorge {
contract AntiSybil is IAntiSybil, UUPSUpgradeable, Ownable2StepUpgradeable, AntiSybilStorage {
using AddressUpgradeable for address payable;

function initialize(address owner_) public {
Expand Down
36 changes: 35 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fa28af5

Please sign in to comment.