mirror of
https://github.com/getwax/bundler.git
synced 2026-01-09 23:57:58 -05:00
* 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
12 lines
473 B
TypeScript
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')
|
|
})
|