Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andkom/pushtx-js
A JavaScript library for broadcasting Bitcoin raw transactions
https://github.com/andkom/pushtx-js
bitcoin bitcoin-library bitcoin-pushtx bitcoin-transaction javascript node node-js node-module nodejs pushtx rawtransaction transaction
Last synced: about 1 month ago
JSON representation
A JavaScript library for broadcasting Bitcoin raw transactions
- Host: GitHub
- URL: https://github.com/andkom/pushtx-js
- Owner: andkom
- License: mit
- Created: 2018-12-20T21:35:24.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-20T23:06:11.000Z (about 6 years ago)
- Last Synced: 2024-10-29T22:47:31.106Z (about 2 months ago)
- Topics: bitcoin, bitcoin-library, bitcoin-pushtx, bitcoin-transaction, javascript, node, node-js, node-module, nodejs, pushtx, rawtransaction, transaction
- Language: JavaScript
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pushtx-js
JavaScript library for broadcasting Bitcoin raw transactions.
## Installation
```bash
npm install --save pushtx
```## Usage
```javascript
const {pushtx} = require('pushtx')pushtx(rawtx)
.then(res => {
console.log(res)
})
.catch(err => {
console.log(err)
})
```