Skip to content

A full stack for MonetaryUnit (MUE) and blockchain-based applications

License

Notifications You must be signed in to change notification settings

sotblad/bitcore-mue

Repository files navigation

Bitcore-MUE

Circle CI

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

Getting Started

Requirements

  • Trusted P2P Peer
  • MongoDB Server >= v3.4
  • make g++ gcc

Checkout the repo

git clone [email protected]:muecoin/bitcore-mue.git
git checkout master
npm install

Setup Guide

1. Setup MonetaryUnit config

Example bitcore.config.json
{
  "bitcoreNode": {
    "modules": ["./bitcore"],
    "services": {
      "api": {
        "wallets": {
          "allowCreationBeforeCompleteSync": true
        }
      }
    },
    "chains": {
      "MUE": {
        "mainnet": {
          "chainSource": "p2p",
          "trustedPeers": [
            {
              "host": "127.0.0.1",
              "port": 40008
            }
          ],
          "rpc": {
            "host": "127.0.0.1",
            "port": 40009,
            "username": "mue",
            "password": "mue"
          }
        }
      }
    }
  }
}

2. Setup the MonetaryUnit Node

Example MonetaryUnit 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 MUE mainnet

port=40008
rpcport=40009
rpcallowip=127.0.0.1

rpcuser=mue
rpcpassword=mue

3. Run the MonetaryUnit node

Example Starting a MonetaryUnit Node
monetaryunitd -daemon

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.

About

A full stack for MonetaryUnit (MUE) and blockchain-based applications

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published