Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mainnet] Fixes for ledger issues #128

Merged
merged 1 commit into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions mainnet/2024-02-23-transfer-op/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ include ../../Makefile
include ../.env
include .env

ifndef LEDGER_ACCOUNT
override LEDGER_ACCOUNT = 0
endif

install-agora:
forge install --no-git [email protected]:voteagora/optimism-gov.git

Expand Down
7 changes: 7 additions & 0 deletions mainnet/2024-02-23-transfer-op/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ Make sure your ledger is still unlocked and run the following.
make sign-op # or make sign-cb for Coinbase signers
```

Note: there have been reports of some folks seeing this error `Error creating signer: error opening ledger: hidapi: failed to open device`. A fix is in progress, but not yet merged. If you come across this, open a new terminal and run.
```
git clone [email protected]:base-org/eip712sign.git
cd eip712sign
go install
```

You will see a "Simulation link" from the output.

Paste this URL in your browser. A prompt may ask you to choose a
Expand Down