Skip to content

Commit

Permalink
Merge pull request #8 from base-org/michael/fix-usb
Browse files Browse the repository at this point in the history
Fix support for more recent ledgers
  • Loading branch information
mdehoog committed Feb 3, 2024
2 parents 0632d1e + 4711dba commit 6c7985a
Show file tree
Hide file tree
Showing 3 changed files with 129 additions and 77 deletions.
27 changes: 18 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
module github.com/base-org/eip712sign

go 1.19
go 1.21

toolchain go1.21.1

require (
github.com/decred/dcrd/hdkeychain/v3 v3.1.1
github.com/ethereum/go-ethereum v1.13.4
github.com/ethereum/go-ethereum v1.13.11
github.com/tyler-smith/go-bip39 v1.1.0
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa
)

require (
github.com/allegro/bigcache v1.2.1 // indirect
github.com/aristanetworks/goarista v0.0.0-20231019142648-8c6f0862ab98 // indirect
github.com/bits-and-blooms/bitset v1.11.0 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/consensys/bavard v0.1.13 // indirect
Expand All @@ -21,19 +21,28 @@ require (
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
github.com/decred/dcrd/crypto/ripemd160 v1.0.2 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
github.com/ethereum-optimism/superchain-registry/superchain v0.0.0-20240131175747-1300b1825140 // indirect
github.com/ethereum/c-kzg-4844 v0.4.0 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/holiman/uint256 v1.2.3 // indirect
github.com/karalabe/hid v1.0.0 // indirect
github.com/karalabe/usb v0.0.3-0.20230918135828-88ad9302fa2c // indirect
github.com/klauspost/compress v1.17.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
github.com/mmcloughlin/addchain v0.4.0 // indirect
github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570 // indirect
github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3 // indirect
github.com/prometheus/client_golang v1.17.0 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/supranational/blst v0.3.11 // indirect
golang.org/x/crypto v0.15.0 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/sync v0.5.0 // indirect
golang.org/x/sys v0.14.0 // indirect
golang.org/x/sys v0.16.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
rsc.io/tmplfunc v0.0.3 // indirect
)

// op-geth has a fix for Mac ledger support: https://github.com/ethereum-optimism/op-geth/pull/223
// remove this once this fix has been upstreamed
replace github.com/ethereum/go-ethereum => github.com/ethereum-optimism/op-geth v1.101305.3

0 comments on commit 6c7985a

Please sign in to comment.