Coder Social home page Coder Social logo

brollet's Introduction

Brollet

Try it out here https://brollet.org and join the discussion.

A secure, deterministic, online and offline browser wallet.

  • Brollet can be run on your local PC or Mac, but does not require downloading the blockchain to send or receive bitcoins.

  • Brollet can be hosted on a VPS so you can access it from anywhere with any browser or mobile device.

  • Brollet is a deterministic brain wallet. Your passphrase is used to generate all your bitcoin addresses. To backup your wallet, just backup your passphrase. No wallet file is used so there is no change of the wallet file being lost or stolen.

  • Brollet support the Electurm and Armory wallets formats as well as importing keys from a wallet file.

  • Brollet supports sending bitcoins to anyone with an email address. They will receive an email with instructions on how to redeem the bitcoins that have been sent. No centeral server or 3rd party is used in the process. If the recipient does not redeem the bitcoins the sender can recover them again.

  • Brollet source code is freely available and completely under your control. No dependancy on a 3rd party to host your online wallet.

#Installation

###On Unix or Mac

Make sure your system has Python installed.

./brollet start

Open a web browser to http://localhost:9696 or http://yourDomain:9696

to stop it run:

./brollet stop

###On Windows

Make sure your system has Python installed.

Open a command prompt window

cd brollet

Edit the httpd.bat file to set the path to your python.exe httpd.bat

Open a web browser to http://localhost:9696

#Settings To change the settings from the Settings page you need to first edit the file web/cgi-bin/config.json and set the "password" field.

Tutorials

Checkout the docs the directory!


Donations are welcome: 3Q1kpuG9ewSa1Sj7gK9NSJGdrsf2LEL7Sx (multisignature address!)

brollet's People

Contributors

micheal-swiggs avatar osyed avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

brollet's Issues

Implement multisig transactions.

Implement multisig transactions and then integrate into email transactions.

Keys into ECKey

Currently the Keys variable holds private keys in hex format. The following is how to convert hex keys into ECKey.

var hexKey = Keys[..btcaddy..];
var bigIntKey = new BigInteger(hexKey, 16);
bigIntKey = bigIntKey.mod(getSECCurveByName("secp256k1").getN())
var eckey = new ECKey(bigIntKey)

Here is an example of converting a hex private key into a base58 bitcoin address

var eckey = ..follow.. steps above
var pub = eckey.getPub()
var pubkeyHash = Bitcoin.Util.sha256ripe160(pub)
var btcAddress = new Bitcoin.Address(pubkeyHash)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.