8000 GitHub - martexcoin/bitcore: A full stack for bitcoin and blockchain-based applications
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

martexcoin/bitcore

 
 

Repository files navigation

Bitcore

Infrastructure to build Peercoin and blockchain-based applications for the next generation of financial technology.

Getting Started

Requirements

  • Trusted P2P Peer
  • MongoDB Server >= v3.4

Checkout the repo

git clone git@github.com:peercoin/bitcore.git
git checkout peercoin
npm install

Setup Guide

1. Setup Bitcore config

Example bitcore.config.json
{
  "bitcoreNode": {
    "chains": {
      "PPC": {
        "testnet": {
          "chainSource": "p2p",
          "trustedPeers": [
            {
              "host": "127.0.0.1",
              "port": 9903
            }
          ],
          "rpc": {
            "host": "127.0.0.1",
            "port": 9904,
            "username": "username",
            "password": "password"
          }
        }
      }
    }
  }
}

2. Setup Peercoin Node

Example Peercoin testnet Config
whitelist=127.0.0.1
txindex=0
listen=1
server=1
upnp=1
testnet=1
minting=0

# Make sure port & rpcport matches the
# bitcore.config.json ports for PPC testnet

# if using Peercoin v0.8+ prefix
# [main]

port=9903
rpcport=9904
rpcallowip=127.0.0.1

rpcuser=username
rpcpassword=password

3. Run Peercoin node

Example Starting a Peercoin Node
# Path to your bitcoin application and path to the config above
/Applications/Peercoin-Qt.app/Contents/MacOS/Peercoin-Qt -datadir=/Users/username/blockchains/peercoin/networks/testnet/

4. Start Bitcore

npm run node

Applications

Libraries

Extras

Contributing

See CONTRIBUTING.md on the main bitcore repo for information about how to contribute.

License

Code released under the MIT license.

Copyright 2013-2019 BitPay, Inc. Bitcore is a trademark maintained by BitPay, Inc.

About

A full stack for bitcoin and blockchain-based applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 83.3%
  • TypeScript 15.9%
  • HTML 0.6%
  • CSS 0.2%
  • Dockerfile 0.0%
  • Shell 0.0%
0