Files
bundler/packages/client/test/ERC4337EthersSigner.test.ts
Alex Forshtat a1d487478c AA-41: ERC-4337 Provider, Bundler Server and a Docker Image (#1)
* Initial commit with lerna AA-4337 provider, bundler and helper contract

* Initial CircleCI workflow

* Initial commit for eslint task

* Initial bundler class decomposition

* Initial migration to commander.js

* Transaction is sent by MethodHandler

* Get transaction receipt by requestID

* Create yarn script for Flows with Hardhat-node, Bundler as separate processes

* Add server-side error handling to avoid unreadable errors (still WIP)

* Add docker step

* Added docker-compose.yml file

* Enable depcheck task
2022-08-23 16:20:21 +02:00

12 lines
473 B
TypeScript

import { deployments } from 'hardhat'
describe('ERC4337EthersSigner', function () {
it('should load deployed hardhat fixture', async function () {
await deployments.fixture(['BundlerHelper'])
const bundlerHelper = await deployments.get('BundlerHelper') // Token is available because the fixture was executed
console.log('bundlerHelper', bundlerHelper.address)
})
it('should use ERC-4337 Signer and Provider to send the UserOperation to the bundler')
})