```
cd /bitcoin-abc/
mkdir build && cd build/
cmake .. -GNinja -DBUILD_BITCOIN_CHRONIK=on
ninja
```
Modify `bitcoin.conf` to include
```
chronik=1
regtest=1
```
Run regtest instance with
`./src/bitcoind`
Note your chronik URL in the logs, default should be `http://127.0.0.1:18442`
```
cd /bitcoin-abc/apps/examples
npm run getChronikServerInfo
```
output should be
```
chronikServerInfo { version: '0.1.0' }
Connected to chronik instance running version 0.1.0
```
In `apps/examples`, run `npm test`