go-ethereum-hdwallet
Ethereum HD Wallet derivations in Go (golang)
File Explorer
Download Latest Version (.zip)- FUNDING.yml
- main.go
- derive.go
- keys.go
- seed.go
- sign.go
- error.go
- signature.go
- btcec.go
- ciphering.go
- curve.go
- doc.go
- error.go
- field.go
- LICENSE
- modnscalar.go
- privkey.go
- pubkey.go
- README.md
- alphabet.go
- base58.go
- base58check.go
- cov_report.sh
- doc.go
- README.md
- bech32.go
- doc.go
- error.go
- README.md
- version.go
- cov_report.sh
- doc.go
- extendedkey.go
- README.md
- test_coverage.txt
- address.go
- amount.go
- appdata.go
- block.go
- certgen.go
- const.go
- cov_report.sh
- doc.go
- hash160.go
- LICENSE
- net.go
- net_noop.go
- README.md
- tx.go
- wif.go
- doc.go
- hash.go
- hashfuncs.go
- LICENSE
- README.md
- deployment_time_frame.go
- doc.go
- genesis.go
- params.go
- README.md
- blockheader.go
- common.go
- doc.go
- error.go
- invvect.go
- message.go
- msgaddr.go
- msgaddrv2.go
- msgalert.go
- msgblock.go
- msgcfcheckpt.go
- msgcfheaders.go
- msgcfilter.go
- msgfeefilter.go
- msgfilteradd.go
- msgfilterclear.go
- msgfilterload.go
- msggetaddr.go
- msggetblocks.go
- msggetcfcheckpt.go
- msggetcfheaders.go
- msggetcfilters.go
- msggetdata.go
- msggetheaders.go
- msgheaders.go
- msginv.go
- msgmempool.go
- msgmerkleblock.go
- msgnotfound.go
- msgping.go
- msgpong.go
- msgreject.go
- msgsendaddrv2.go
- msgsendheaders.go
- msgtx.go
- msgverack.go
- msgversion.go
- netaddress.go
- netaddressv2.go
- protocol.go
- README.md
- LICENSE
- bypass.go
- bypasssafe.go
- common.go
- config.go
- doc.go
- dump.go
- format.go
- spew.go
- LICENSE
- doc.go
- error.go
- README.md
- signature.go
- compressedbytepoints.go
- curve.go
- doc.go
- ecdh.go
- ellipticadaptor.go
- error.go
- field.go
- genstatics.go
- LICENSE
- loadprecomputed.go
- modnscalar.go
- nonce.go
- privkey.go
- pubkey.go
- README.md
- chinese_simplified.go
- chinese_traditional.go
- czech.go
- english.go
- french.go
- italian.go
- japanese.go
- korean.go
- spanish.go
- .gitignore
- .travis.yml
- bip39.go
- LICENSE
- Makefile
- README.md
- pbkdf2.go
- ripemd160.go
- ripemd160block.go
- doc.go
- hashes.go
- hashes_generic.go
- keccakf.go
- keccakf_amd64.go
- keccakf_amd64.s
- register.go
- sha3.go
- sha3_s390x.go
- sha3_s390x.s
- shake.go
- shake_generic.go
- xor.go
- xor_generic.go
- xor_unaligned.go
- AUTHORS
- CONTRIBUTORS
- LICENSE
- PATENTS
- asm_aix_ppc64.s
- byteorder.go
- cpu.go
- cpu_aix.go
- cpu_arm.go
- cpu_arm64.go
- cpu_arm64.s
- cpu_gc_arm64.go
- cpu_gc_s390x.go
- cpu_gc_x86.go
- cpu_gccgo_arm64.go
- cpu_gccgo_s390x.go
- cpu_gccgo_x86.c
- cpu_gccgo_x86.go
- cpu_linux.go
- cpu_linux_arm.go
- cpu_linux_arm64.go
- cpu_linux_mips64x.go
- cpu_linux_noinit.go
- cpu_linux_ppc64x.go
- cpu_linux_s390x.go
- cpu_loong64.go
- cpu_mips64x.go
- cpu_mipsx.go
- cpu_netbsd_arm64.go
- cpu_other_arm.go
- cpu_other_arm64.go
- cpu_other_mips64x.go
- cpu_ppc64x.go
- cpu_riscv64.go
- cpu_s390x.go
- cpu_s390x.s
- cpu_wasm.go
- cpu_x86.go
- cpu_x86.s
- cpu_zos.go
- cpu_zos_s390x.go
- hwcap_linux.go
- syscall_aix_gccgo.go
- syscall_aix_ppc64_gc.go
- AUTHORS
- CONTRIBUTORS
- LICENSE
- PATENTS
- modules.txt
- .gitignore
- .goreleaser.yml
- .travis.yml
- CONTRIBUTING.md
- funding.json
- go.mod
- go.sum
- Gopkg.lock
- Gopkg.toml
- hdwallet.go
- hdwallet_test.go
- LICENSE
- Makefile
- README.md
# Installation Guide
git clone https://github.com/miguelmota/go-ethereum-hdwallet
Downloads the entire project code from GitHub to your computer.
cd go-ethereum-hdwallet
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Go Go is required to use go install.
go install github.com/miguelmota/go-ethereum-hdwallet/cmd/geth-hdwallet@latest
Downloads and installs the specified version directly β no need to clone the repo yourself.
Pulled directly from this repo's README.
3. Go
Mediumgo install github.com/miguelmota/go-ethereum-hdwallet/cmd/geth-hdwallet@latest
Downloads and installs the specified version directly β no need to clone the repo yourself.
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make build
Compiles the code based on the generated build configuration to produce an executable.
make format
Compiles the code based on the generated build configuration to produce an executable.
make test
Compiles the code based on the generated build configuration to produce an executable.
make release
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
