Skip to content

Instantly share code, notes, and snippets.

@Nick-49
Nick-49 / simple-send.js
Created September 12, 2018 08:07 — forked from caffeinum/simple-send.js
Pure-JS OmniLayer sendtx
const bitcoin = require('bitcoinjs-lib') // version @3.3.2, ver4 won't work
const request = require('request-promise-native')
const net = process.env.NETWORK === 'testnet'
? bitcoin.networks.testnet
: bitcoin.networks.bitcoin
const API = net === bitcoin.networks.testnet
? `https://test-insight.swap.online/insight-api`
: `https://insight.bitpay.com/api`