Skip to content
A full stack for bitcoin and blockchain-based applications
Branch: master
Clone or download
matiu Merge pull request #2255 from justinkook/feature/ethValidation
Feature - Crypto-Wallet-Core can validate addresses
Latest commit 2282135 Jul 2, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci Trying classic circle machine with layer cache Dec 19, 2018
packages Merge pull request #2255 from justinkook/feature/ethValidation Jul 2, 2019
.cz-config.js chore(all): adding commitizen Sep 28, 2018
.dockerignore Adding docker and removing bitcore-build for now Apr 6, 2018
.editorconfig Adding editorconfig and eslint files May 18, 2018
.env.example Breaking some logic into functions and making docker peer variables h… Apr 17, 2018
.eslintignore Eslint with typescript support on the global level May 23, 2018
.eslintrc.json Eslint with typescript support on the global level May 23, 2018
.gitignore Rest of the models Mar 18, 2019
CHANGELOG.md Documentation update Mar 27, 2019
Contributing.md Documentation update Mar 27, 2019
Dockerfile Updating docker files Apr 11, 2019
Dockerfile-test Updating docker files Apr 11, 2019
LICENSE Create LICENSE Jan 4, 2019
README.md Relative readme file links Apr 2, 2019
_config.yml Set theme jekyll-theme-minimal Apr 2, 2019
bitcore-test.config.json added services allow creation before complete sync in bitcore-test.co… Jan 28, 2019
ci.sh Enabling More Packages + Bitcore - Build (#1838) Dec 31, 2018
docker-compose.test.yml Fixing docker-compose for bitcoin rpc commands Jan 18, 2019
docker-compose.yml getting travisci working May 23, 2018
lerna.json v8.3.4 Jun 12, 2019
package-lock.json revert package-lock changes to master Jul 1, 2019
package.json Removing types that weren't supposed to be installed May 22, 2019

README.md

Bitcore

Infrastructure to build Bitcoin 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:bitpay/bitcore.git
git checkout master
npm install

Setup Guide

1. Setup Bitcore config

Example bitcore.config.json
{
  "bitcoreNode": {
    "chains": {
      "BTC": {
        "mainnet": {
          "chainSource": "p2p",
          "trustedPeers": [
            {
              "host": "127.0.0.1",
              "port": 20008
            }
          ],
          "rpc": {
            "host": "127.0.0.1",
            "port": 20009,
            "username": "username",
            "password": "password"
          }
        },
        "regtest": {
          "chainSource": "p2p",
          "trustedPeers": [
            {
              "host": "127.0.0.1",
              "port": 20020
            }
          ],
          "rpc": {
            "host": "127.0.0.1",
            "port": 20021,
            "username": "username",
            "password": "password"
          }
        }
      },
      "BCH": {
        "mainnet": {
          "parentChain": "BTC",
          "forkHeight": 478558,
          "trustedPeers": [
            {
              "host": "127.0.0.1",
              "port": 30008
            }
          ],
          "rpc": {
            "host": "127.0.0.1",
            "port": 30009,
            "username": "username",
            "password": "password"
          }
        },
        "regtest": {
          "chainSource": "p2p",
          "trustedPeers": [
            {
              "host": "127.0.0.1",
              "port": 30020
            }
          ],
          "rpc": {
            "host": "127.0.0.1",
            "port": 30021,
            "username": "username",
            "password": "password"
          }
        }
      }
    }
  }
}

2. Setup Bitcoin Node

Example Bitcoin Mainnet Config
whitelist=127.0.0.1
txindex=0
listen=1
server=1
irc=1
upnp=1

# Make sure port & rpcport matches the
# bitcore.config.json ports for BTC mainnet

# if using Bitcoin Core v0.17+ prefix
# [main]

port=20008
rpcport=20009
rpcallowip=127.0.0.1

rpcuser=username
rpcpassword=password

3. Run Bitcoin node

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

4. Start Bitcore

npm run node

Applications

Libraries

  • Bitcore Channel - Micropayment channels for rapidly adjusting bitcoin transactions
  • Bitcore ECIES - Uses ECIES symmetric key negotiation from public keys to encrypt arbitrarily long data streams
  • Bitcore Lib - A pure and powerful JavaScript Bitcoin library
  • Bitcore Lib Cash - A pure and powerful JavaScript Bitcoin Cash library
  • Bitcore Message - Bitcoin message verification and signing
  • Bitcore Mnemonic - Implements mnemonic code for generating deterministic keys
  • Bitcore P2P - The peer-to-peer networking protocol for BTC
  • Bitcore P2P Cash - The peer-to-peer networking protocol for BCH
  • Crypto Wallet Core - A coin-agnostic wallet library for creating transactions, signing, and address derivation

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.

You can’t perform that action at this time.