https://github.com/rebase-network/ckb-wallet-golang
ckb wallet with golang
https://github.com/rebase-network/ckb-wallet-golang
Last synced: 5 months ago
JSON representation
ckb wallet with golang
- Host: GitHub
- URL: https://github.com/rebase-network/ckb-wallet-golang
- Owner: rebase-network
- License: bsd-3-clause
- Archived: true
- Created: 2019-06-23T05:06:34.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-29T16:48:57.000Z (almost 7 years ago)
- Last Synced: 2024-06-20T06:35:42.782Z (almost 2 years ago)
- Language: Go
- Homepage:
- Size: 1.7 MB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ckb Wallet
gen ckb address
## Wallet
```
./ckb-wallet-mac -v
./ckb-wallet-mac -format txt
./ckb-wallet-mac -privkey 1234
./ckb-wallet-mac -codehash 0x5678
./ckb-wallet-mac -privkey 1234 -codehash 0x5678 -format csv
./ckb-wallet-mac -config ckb.toml -privkey 1234 -codehash 0x5678 -format json
```
`./ckb-wallet-mac -format txt | grep Blake160 | grep -oE "[^:]+$"`
## Go Build
```
flags="-X main.buildDate=`date -u '+%Y-%m-%d'` -X main.gitHash=`git rev-parse --short HEAD`"
GOARCH=amd64 GOOS=darwin go build -ldflags "$flags -w -s" -o ckb-wallet-mac wallet.go
GOARCH=amd64 GOOS=linux go build -ldflags "$flags -w -s" -o ckb-wallet-linux wallet.go
GOARCH=amd64 GOOS=windows go build -ldflags "$flags -w -s" -o ckb-wallet-win.exe wallet.go
```
## Verifying the Release
```
shasum -a 256 ckb-wallet-linux ckb-wallet-mac ckb-wallet-win.exe
```
## ChangeLog
### v0.5.0
- colorful output
- update codehash
- support new ckb.toml struct
### v0.4.1
- update version display
### v0.4
- generate newckb.toml
### v0.3.3
- update codehash
### v0.3.2
### v0.3.1
- output `format` support csv
### v0.3
- use golang pkg `flag` refactoring project
- add subcommand `-v` `-format` `-privkey` `-config`
- Generate the miner config file ckb.toml
### v0.2.1
- Support windows10 system
- Add Mainnet address
- output the project version number