Go to file
Marek 6cf3ec4724
Add local dev setup instructions (#1)
2024-07-17 15:45:24 +02:00
.github Add Semgrep CI 2021-10-23 06:32:56 +00:00
assets Testnet support 2023-06-15 20:04:22 +05:30
config Support for testnet 2023-06-17 13:24:27 +05:30
lib Slightly better search bar experience on mobile 2023-07-08 12:04:00 +05:30
priv first commit 2021-07-07 23:10:43 +05:30
rel first commit 2021-07-07 23:10:43 +05:30
test first commit 2021-07-07 23:10:43 +05:30
.dockerignore first commit 2021-07-07 23:10:43 +05:30
.env.example Support for testnet 2023-06-17 13:24:27 +05:30
.formatter.exs first commit 2021-07-07 23:10:43 +05:30
.gitignore fix - empty space after footer on some pages 2023-02-20 08:40:13 +05:30
Dockerfile Testnet support 2023-06-15 20:04:22 +05:30
LICENSE Add LICENSE 2021-08-26 12:51:38 -04:00
Makefile Added a Makefile for basic Docker image release 2023-06-17 15:47:45 +05:30
README.md Add local dev setup instructions (#1) 2024-07-17 15:45:24 +02:00
mix.exs Make it work on elixir 1.15 2023-12-04 12:10:39 +05:30
mix.lock Make it work on elixir 1.15 2023-12-04 12:10:39 +05:30
yarn.lock Handle TX with 0.0 fee 2021-10-16 13:27:51 +05:30

README.md

ZcashExplorer

This is a fork of https://github.com/nighthawk-apps/zcash-explorer, intended to help develop support for block explorers in Zebra.

Local Dev Setup

Build and run zcashd

sudo pacman --noconfirm -S make git autoconf libtool unzip python automake pkgconf patch wget binutils gcc
cd
git clone https://github.com/zcash/zcash.git
cd zcash
./zcutil/clean.sh
./zcutil/build.sh -j$(nproc)
mkdir -p ~/.zcash
touch ~/.zcash/zcash.conf

Put the following to your ~/.zcash/zcash.conf:

rpcport=8232
rpcbind=127.0.0.1
rpcuser=nighthawkapps
rpcpassword=ffwf
txindex=1
experimentalfeatures=1
insightexplorer=1
testnet=1

Run ./src/zcashd and wait until it syncs.

Build and run the explorer

sudo pacman --noconfirm -S make elixir gcc git npm inotify-tools
cd
git clone https://github.com/ZcashFoundation/zcash-explorer
cd zcash-explorer
mix deps.get
cd assets
npm install
cd ..

Run iex -S mix phx.server.

Visit http://localhost:4000.

Documentation:

https://nighthawkapps.gitbook.io/zcash-explorer/

License

Apache License 2.0