Browse Source
Merge branch 'master' of github.com:janoside/btc-rpc-explorer
fix-133-memory-crash
Dan Janosik
6 years ago
No known key found for this signature in database
GPG Key ID: C6F8CE9FFDB2CED2
3 changed files with
6 additions and
2 deletions
-
Dockerfile
-
README.md
-
app/config.js
|
|
@ -1,6 +1,10 @@ |
|
|
|
FROM node:8 |
|
|
|
FROM node:8 as builder |
|
|
|
WORKDIR /workspace |
|
|
|
COPY . . |
|
|
|
RUN npm install |
|
|
|
|
|
|
|
FROM node:8-alpine |
|
|
|
WORKDIR /workspace |
|
|
|
COPY --from=builder /workspace . |
|
|
|
CMD npm start |
|
|
|
EXPOSE 3002 |
|
|
|
|
|
@ -21,7 +21,6 @@ Live demo available at: [https://btc-explorer.com](https://btc-explorer.com) |
|
|
|
* Optional transaction history for addresses by querying from ElectrumX, blockchain.com, blockchair.com, or blockcypher.com |
|
|
|
* Mempool summary, with fee, size, and age breakdowns |
|
|
|
* RPC command browser and terminal |
|
|
|
* Currently supports BTC, LTC (support for any Bitcoin-RPC-protocol-compliant coin can be added easily) |
|
|
|
|
|
|
|
# Getting started |
|
|
|
|
|
|
|
|
|
@ -66,6 +66,7 @@ module.exports = { |
|
|
|
"bumpfee", |
|
|
|
"clearbanned", |
|
|
|
"createmultisig", |
|
|
|
"createwallet", |
|
|
|
"disconnectnode", |
|
|
|
"dumpprivkey", |
|
|
|
"dumpwallet", |
|
|
|