Skip to content

Commit

Permalink
ci: upgrade minimum go version to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
Planxnx committed May 14, 2024
1 parent f897751 commit c4561af
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go-version: ["1.19.x", "1.x"]
go-version: ["1.21.x", "1.x"]
name: Lint, Test and Build (${{ matrix.os }}/${{ matrix.go-version }})
runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
# - "linux/arm64"
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true # caching and restoring go modules and build outputs.
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
- ∞ Infinite wallet generating! (set number to 0 to active infinite loop) ∞
- Generate word seed phrase with BIP-39 mnemonic (support 12, 24 Word Seed Phrase) (Default is 128 bits for 12 words).
- Embedded Database Supported! (with SQLite3). It's easiest to generate, manage, search a billion wallets without any pain.
- Tiny Sizes and Superior Speed with Golang 🚀 (required go 1.19 or higher)
- No Go? No Problem! [Docker images 🐳](https://hub.docker.com/r/planxthanee/ethereum-wallet-generator) or [exec files](https://github.com/Planxnx/ethereum-wallet-generator/releases/latest) are provided for you
- Tiny Sizes and Superior Speed with Golang 🚀 (required go 1.21 or higher)
- No Go? No Problem! [Docker images 🐳](https://hub.docker.com/r/planxthanee/ethereum-wallet-generator) or [exec files](https://github.com/Planxnx/ethereum-wallet-generator/releases/latest) are provided for you
- You can benchmark generating speed by setting the `isDryrun` flag 📈
- Default (HD Wallet)Hierarchical Deterministic Path - m/44'/60'/0'/0 .
- We recommend every user of this application audit and verify every source code in this repository and every imported dependecies for its validity and clearness. 👮🏻‍♂️
Expand All @@ -60,19 +60,22 @@ Examples: `0x1111111254fb6c44bAC0beD2854e76F90643097d`, or `0x999999999aa3d5F44D

> **Homebrew is coming soon**
<be>
<be>

### Install from Source

```console
$ go install github.com/planxnx/ethereum-wallet-generator@latest
```

### Docker

```console
$ docker pull planxthanee/ethereum-wallet-generator:latest
```

### Download from latest release

> supports only Windows x86-64 and macOs
[Download](https://github.com/Planxnx/ethereum-wallet-generator/releases/latest)
Expand Down

0 comments on commit c4561af

Please sign in to comment.