Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/improvein/bitcoin-forge
Tools for tinkering with Bitcoin.
https://github.com/improvein/bitcoin-forge
bitcoin bitcoin-address bitcoin-script bitcoin-transaction cryptography toolkit transaction
Last synced: about 2 months ago
JSON representation
Tools for tinkering with Bitcoin.
- Host: GitHub
- URL: https://github.com/improvein/bitcoin-forge
- Owner: improvein
- License: mit
- Created: 2019-01-10T00:15:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-14T21:52:38.000Z (almost 2 years ago)
- Last Synced: 2023-05-22T23:41:06.640Z (over 1 year ago)
- Topics: bitcoin, bitcoin-address, bitcoin-script, bitcoin-transaction, cryptography, toolkit, transaction
- Language: JavaScript
- Homepage: https://improvein.github.io/bitcoin-forge/
- Size: 4.51 MB
- Stars: 11
- Watchers: 2
- Forks: 5
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bitcoin Forge
This project intends to be an **offline** suite of tools for low-level operations with Bitcoin, like forging transactions or tinker with scripts.
The core features are developed using [BitcoinJS (bitcoinjs-lib)](https://github.com/bitcoinjs/bitcoinjs-lib).
The Miniscript features are developed using code taken from http://bitcoin.sipa.be/miniscript/ (designed and implemented by Pieter Wuille, Andrew Poelstra, and Sanket Kanjalkar).
The front-end is developed mainly using [React](https://reactjs.org), [Bootstrap](https://getbootstrap.com) and [other libraries](https://github.com/improvein/bitcoin-forge/blob/master/package.json). It is built for web browsers using [webpack](https://webpack.js.org/).
## Features
Some things that can be done with this toolkit:
* Transactions
* Create a transaction by defining the inputs and outputs specifically
* Deconde a transaction from it's raw hexa
* Address
* Create an address in different formats given the public key(s) or redeem script
* Scripts
* Decompile the script ASM given the raw hexa notation
* Create a script manually by adding values or OPCODES to the stack
* Create a script using the [Miniscript](http://bitcoin.sipa.be/miniscript/) notation
* Cryptography
* Hash a message or a binary content (in hex) with different algorithms
* Generate private and public keys using ECDSA. Sign content.## Web (online) version
You can use the already compiled version at https://improvein.github.io/bitcoin-forge/Even if that version is published online, it should work offline without issues.
The online version does not have any analytics tool that tracks trafic, except of what GitHub might do on the server side.
## Local version
The project should run locally without internet connection. That is why you can run the local version with the files under the [dist](https://github.com/improvein/bitcoin-forge/tree/master/dist) folder## Build and Run
You can build your own version and run it.First, download the project
```
git clone https://github.com/improvein/bitcoin-forge.git
```Then, install dependencies
```
npm install
```Finally, you can either build the project into the `dist` folder (using [webpack](https://webpack.js.org/))
```
npm run build
```
or start a local server (using [webpack dev server](https://github.com/webpack/webpack-dev-server))
```
npm run dev
```## Contribute
Contributions and always welcome and much appreciated!You can report bugs or post suggestions:
https://github.com/improvein/bitcoin-forge/issuesOr, if you know your way around code, you can propose changes and push a Pull Request:
https://github.com/improvein/bitcoin-forge/pulls