Skip to content

Commit

Permalink
Some refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
KyrylR committed Nov 2, 2024
1 parent 18b9611 commit 5d892b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
20 changes: 10 additions & 10 deletions contracts/verifiers/IdentityAuthVerifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,26 +31,26 @@ contract IdentityAuthVerifier {
uint256 public constant GAMMA_Y2 =
8495653923123431417604973247489272438418190587263600148770280649306958101930;
uint256 public constant DELTA_X1 =
6684890230251961292566799023404822167332348208062047407899235504225201711546;
8789938869788619419062308450461866340977573216827531504190726775733273916967;
uint256 public constant DELTA_X2 =
9702915170493141858399909440816940371732031814456059172829744617932129837987;
10244552505438808025266658451768173162344648728936434359313061206260344153871;
uint256 public constant DELTA_Y1 =
20951225712735454210565848743772875984494807528567999970403434558777400963520;
2836938874187173063749604262016440644680450051102655170818094657073051261329;
uint256 public constant DELTA_Y2 =
19149313269283073520087754006966867871049749765164816938309084448951306765929;
7678992582808484306547848385114836333764149366993631826999705726294223726348;

uint256 public constant IC0_X =
21029555936988346365736049036748712219216960868065573484355530273876470353811;
12336418705016287996067325865264927835864889051394418536639170317539923593151;
uint256 public constant IC0_Y =
901424059116605087243528934475122270000214644985471006079803537802022871055;
20982907524849044626834157061453868388477198986586685098036321813901751025405;
uint256 public constant IC1_X =
235157616531341545811539219014569802683877743510073682396126366647326595353;
11758723479811731399239123973267386124587642516498157870017837716481101970388;
uint256 public constant IC1_Y =
13746979507747839324465222361278180295907108716875698743625353973076924562818;
6928289584054677323474987737465915470301177498670606368119169577114088484953;
uint256 public constant IC2_X =
14411009894530908587763336188442379692296702436612920535199503077904971507457;
7675383082810955899150724482464085805136284855224381554545815112493707594272;
uint256 public constant IC2_Y =
2560772288800603792867157667712811530678192222482358985578469440769502439527;
14499292925354683895964805215559054534843648665511737300561468776963094839593;

/// @dev memory pointer sizes
uint16 public constant P_PUBLIC_SIGNALS_ACCUMULATOR_SIZE = 128;
Expand Down
1 change: 0 additions & 1 deletion deploy-local/3_demo.migration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {
import { buildNullifier, EVENT_ID } from "@scripts";

export = async (deployer: Deployer) => {
const token = await deployer.deployed(ERC20Mock__factory);
const entryPoint = await deployer.deployed(EntryPoint__factory);
const accountFactory = await deployer.deployed(SmartAccountFactory__factory, "SmartAccountFactoryProxy");

Expand Down

0 comments on commit 5d892b6

Please sign in to comment.