1.1.0 • Published 6 years ago

ddpayv1 v1.1.0

Weekly downloads
3
License
BSD-3-Clause
Repository
github
Last release
6 years ago

ddpayv1

Robust dPay blockchain client library that runs in both node.js and the browser.


note As of version 0.7.0 WebSocket support has been removed. The only transport provided now is HTTP(2). For most users the only change required is to swap wss:// to https:// in the address. If you run your own full node make sure to set the proper CORS headers if you plan to access it from a browser.


Installation

Via npm

For node.js or the browser with browserify or webpack.

npm install ddpayv1

From cdn or self-hosted script

Grab dist/ddpay.js from a release and include in your html:

<script src="ddpay.js"></script>

Or from the unpkg cdn:

<script src="https://unpkg.com/ddpayv1@^1.0.0/dist/ddpay.js"></script>

Make sure to set the version you want when including from the cdn, you can also use ddpayv1@latest but that is not always desirable. See unpkg.com for more information.

Usage

In the browser

<script src="https://unpkg.com/ddpayv1@latest/dist/ddpay.js"></script>
<script>
    var client = new ddpay.Client('https://api.dpays.io')
    client.database.getDiscussions('trending', {tag: 'writing', limit: 1}).then(function(discussions){
        document.body.innerHTML += '<h1>' + discussions[0].title + '</h1>'
        document.body.innerHTML += '<h2>by ' + discussions[0].author + '</h2>'
        document.body.innerHTML += '<pre style="white-space: pre-wrap">' + discussions[0].body + '</pre>'
    })
</script>

See the demo source for an example on how to setup a livereloading TypeScript pipeline with wintersmith and browserify.

In node.js

With TypeScript:

import {Client} from 'ddpayv1'

const client = new Client('https://api.dpays.io')

for await (const block of client.blockchain.getBlocks()) {
    console.log(`New block, id: ${ block.block_id }`)
}

With JavaScript:

var ddpay = require('ddpayv1')

var client = new Client('https://api.dpays.io')
var key = ddpay.PrivateKey.fromLogin('username', 'password', 'posting')

client.broadcast.comment({
    voter: 'username',
    author: 'almost-digital',
    permlink: 'ddpay-is-the-best',
    weight: 10000
}, key).then(function(result){
   console.log('Included in block: ' + result.block_num)
}, function(error) {
   console.error(error)
})

With ES2016 (node.js 7+):

const {Client} = require('ddpayv1')

const client = new Client('https://api.dpays.io')

async function main() {
    const props = await client.database.getChainProperties()
    console.log(`Maximum blocksize consensus: ${ props.maximum_block_size } bytes`)
    client.disconnect()
}

main().catch(console.error)

With node.js streams:

var ddpay = require('ddpayv1')
var es = require('event-stream') // npm install event-stream
var util = require('util')

var client = new ddpay.Client('https://api.dpays.io')

var stream = client.blockchain.getBlockStream()

stream.pipe(es.map(function(block, callback) {
    callback(null, util.inspect(block, {colors: true, depth: null}) + '\n')
})).pipe(process.stdout)

Bundling

The easiest way to bundle ddpayv1 (with browserify, webpack etc.) is to just npm install ddpayv1 and require('ddpayv1') which will give you well-tested (see browser compatibility matrix above) pre-bundled code guaranteed to JustWork™. However, that is not always desirable since it will not allow your bundler to de-duplicate any shared dependencies ddpayv1 and your app might have.

To allow for deduplication you can require('ddpayv1/lib/index-browser'), or if you plan to provide your own polyfills: require('ddpayv1/lib/index'). See src/index-browser.ts for a list of polyfills expected.


Share and Enjoy!