WIP Minor fixes

This commit is contained in:
jacque006
2023-12-12 18:46:34 +01:00
parent a921acf56c
commit 967c9b9474
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ const userOpHash1 =
describe("ERC4337PasswordVerifier", () => {
let client: ERC4337ZKPPasswordClient;
beforeEach(async () => {
beforeEach(async function () {
client = await ERC4337ZKPPasswordClient.create();
});

View File

@@ -1,5 +1,6 @@
import { ethers } from 'ethers';
import { z } from 'zod';
import { ERC4337ZKPPasswordClient } from '@getwax/circuits';
import {
SafeZKPPasswordPlugin,
SafeZKPPasswordPlugin__factory,
@@ -7,7 +8,6 @@ import {
import EthereumRpc from '../EthereumRpc';
import IAccount from './IAccount';
import WaxInPage from '..';
import { ERC4337ZKPPasswordClient } from '@getwax/circuits';
import { SafeZKPPasswordFactory } from '../../hardhat/typechain-types/lib/account-integrations/safe/src/SafeZKPPasswordFactory';
import receiptOf from '../helpers/receiptOf';