Skip to content

Commit

Permalink
BitcoinZ rebranding
Browse files Browse the repository at this point in the history
  • Loading branch information
bitcoinz committed Sep 26, 2017
1 parent e05f6ce commit 37484c8
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 33 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
IMPORT_PATH := github.com/FiloSottile/zcash-mini
IMPORT_PATH := github.com/FiloSottile/bitcoinz-mini
V := 1 # When V is 1, print commands and build progress.
IGNORED_PACKAGES := /vendor/

.PHONY: all
all: zcash-mini
all: bitcoinz-mini

.PHONY: zcash-mini
zcash-mini: .GOPATH/.ok
$Q go install $(if $V,-v) $(VERSION_FLAGS) github.com/FiloSottile/zcash-mini
.PHONY: bitcoinz-mini
bitcoinz-mini: .GOPATH/.ok
$Q go install $(if $V,-v) $(VERSION_FLAGS) github.com/FiloSottile/bitcoinz-mini

##### =====> Utility targets <===== #####

Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# bitcoinz-mini

```
$ go get -u github.com/bitcoinz-pod/bitcoinz-mini
$ bitcoinz-mini
```

*bitcoinz is based on zcash-mini*

# zcash-mini

`zcash-mini` is a minimal, portable Zcash wallet generator in Go.
Expand Down
24 changes: 4 additions & 20 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,13 @@ import (
"regexp"
"strings"

"github.com/FiloSottile/zcash-mini/bip39"
"github.com/FiloSottile/zcash-mini/zcash"
"github.com/bitcoinz-pod/bitcoinz-mini/bip39"
"github.com/bitcoinz-pod/bitcoinz-mini/zcash"
)

var logo = `
:88SX@888@@X8:
%%Xt%tt%SSSSS:XXXt@@
@S;;tt%%%t ;;::XXXXSX
.t:::;;%8888 88888tXXXX8;
.%...:::8 8::XXX%;
8888...:t888888X 8t;;::XX8
%888888...:::;:8 :Xttt;;;::X@
888888888...:St 8:%%tttt;;;:X
88888888888S8 :%;ttt%%tttt;;X
%888888888%t 8S:;;;tt%%%ttt;8
8t8888888 S8888888Stt%%%t@
.@tt888@ 8;;ttt@;
.8ttt8@SSSSS SXXXX%:;;;X;
X8ttt8888% %88...::X8
%8@tt88;8888%8888%8X
:@888@XXX@888:
BitcoinZ
_ _
_ __ ___ (_)_ __ (_)
| '_ \ _ \| | '_ \| |
Expand Down Expand Up @@ -67,7 +51,7 @@ var template = `%s
# %s
# %s
#
# Run "zcash-mini -mnemonic" to rebuild your secret key
# Run "bitcoinz-mini -mnemonic" to rebuild your secret key
#
###############################################################
#
Expand Down
14 changes: 7 additions & 7 deletions snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: zcash-mini
name: bitcoinz-mini
version: master
summary: A minimal portable Zcash z-address generator for offline / paper wallets
summary: Portable BitcoinZ anonymous z-address generator for offline / paper wallets
description: |
zcash-mini is a minimal, portable Zcash wallet generator in Go.
bitcoinz-mini is a minimal, portable BitcoinZ wallet generator in Go.
grade: devel
confinement: strict

apps:
zcash-mini:
command: zcash-mini
bitcoinz-mini:
command: bitcoinz-mini

parts:
zcash-mini:
bitcoinz-mini:
source: .
plugin: go
go-importpath: github.com/FiloSottile/zcash-mini
go-importpath: github.com/bitcoinz-pod/bitcoinz-mini
2 changes: 1 addition & 1 deletion zcash/address.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"errors"
"strings"

"github.com/FiloSottile/zcash-mini/sha256"
"github.com/bitcoinz-pod/bitcoinz-mini/sha256"
"github.com/btcsuite/btcutil/base58"
"golang.org/x/crypto/curve25519"
)
Expand Down

0 comments on commit 37484c8

Please sign in to comment.