Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 850 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 850 Bytes

Ledger Web Abstraction

Ledger Hacktathon creating a web version of Ledger Live, capable of using ERC-4337 to have an EVM experience without using a hardware wallet. Using a modified version of @eth-infinitism Bundler and FreshCryptoLib for secp256r1 verification.

Installation

  1. Clone the repository:
git clone [email protected]:lambertkevin/live-web-abstraction.git
  1. Create your .env file:
cp .env.dist .env
  1. Use the makefile:
make start
  1. Regarding Anvil: If you're using anvil as RPC, you'll have to add in your etc/hosts:
127.0.0.1 host.docker.internal

then set the RPC environement variable of your .env to http://host.docker.internal:8545 and BUNDLER_UNSAFE to true.

Usage