npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

javalon2

v1.1.4

Published

javascript api for the avalon blockchain

Downloads

31

Readme

Javalon

Install

Require style

Install with npm install --save javalon inside your project. Then just

const javalon = require('javalon')

CDN style

If you are working in the browser and want to load javalon from a CDN:

<script src="https://unpkg.com/javalon/bin/javalon.min.js"></script>

By default, javalon hits on the main avalon testnet (https://avalon.d.tube). You can eventually make javalon hit on your local node or any avalon node like so:

javalon.init({api: 'http://localhost:3001'})

GET API

GET single account

javalon.getAccount('alice', (err, account) => {
    console.log(err, account)
})

GET many accounts

Just pass an array of usernames instead

javalon.getAccounts(['alice', 'bob'], (err, accounts) => {
    console.log(err, accounts)
})

GET account transaction history

For the history, you also need to specify a block number. The api will return all blocks lower than the specified block where the user was involved in a transaction

javalon.getAccountHistory('alice', 0, (err, blocks) => {
    console.log(err, blocks)
})

GET single content

javalon.getContent('alice', 'pocNl2YhZdM', (err, content) => {
    console.log(err, content)
})

GET followers

javalon.getFollowers('alice', (err, followers) => {
    console.log(err, followers)
})

GET following

javalon.getFollowers('alice', (err, followers) => {
    console.log(err, followers)
})

GET contents by author

You can pass a username and permlink (identifying a content) in the 2nd and 3rd argument to 'get more'.

javalon.getDiscussionsByAuthor('alice', null, null, (err, contents) => {
    console.log(err, contents)
})

GET contents by creation time

You can pass a username and a permlink to 'get more'.

javalon.getNewDiscussions('alice', null, null, (err, contents) => {
    console.log(err, contents)
})

GET contents by popularity (hot)

You can pass a username and a permlink to 'get more'.

javalon.getHotDiscussions(null, null, (err, contents) => {
    console.log(err, contents)
})

GET contents by feed

This lists the contents posted by the following of the passed username.

You can pass a username and a permlink in the 2nd and 3rd argument to 'get more'.

javalon.getFeedDiscussions('alice', null, null, (err, contents) => {
    console.log(err, contents)
})

GET notifications

javalon.getNotifications('alice', (err, contents) => {
    console.log(err, contents)
})

GET all votes by account

javalon.getVotesByAccount('alice', 0, (err, votes) => {
    console.log(err, votes)
})

GET pending votes by account

javalon.getPendingVotesByAccount('alice', 0, (err, votes) => {
    console.log(err, votes)
})

GET claimable votes by account

javalon.getClaimableVotesByAccount('alice', 0, (err, votes) => {
    console.log(err, votes)
})

GET claimed votes by account

javalon.getClaimedVotesByAccount('alice', 0, (err, votes) => {
    console.log(err, votes)
})

GET pending rewards by account

javalon.getPendingRewards('alice', (err, votes) => {
    console.log(err, votes)
})

GET claimed rewards by account

javalon.getClaimedRewards('alice', (err, votes) => {
    console.log(err, votes)
})

GET claimable rewards by account

javalon.getClaimableRewards('alice', (err, votes) => {
    console.log(err, votes)
})

POST API

To send a transaction to the network, you will need multiple steps. First you need to define your transaction and sign it.

var newTx = {
    type: javalon.TransactionType.FOLLOW,
    data: {
        target: 'bob'
    }
}

newTx = javalon.sign(alice_key, 'alice', newTx)

After this step, the transaction is forged with a timestamp, hash, and signature. This transaction needs to be sent in the next 60 secs or will be forever invalid.

You can send it like so

javalon.sendTransaction(newTx, function(err, res) {
    cb(err, res)
})

The callback will return once your transaction has been included in a new block.

Alternatively, you can just want the callback as soon as the receiving node has it, you can do:

javalon.sendRawTransaction(newTx, function(err, res) {
    cb(err, res)
})

Convenience

Generate a keypair

console.log(javalon.keypair())

Growing variables

Voting Power and Bandwidth are growing in time but the API will only return the latest update in the vt and bw fields of the accounts. To get the actual value, use votingPower() and bandwidth()

javalon.getAccount('alice', (err, account) => {
    console.log(javalon.votingPower(account))
    console.log(javalon.bandwidth(account)) 
})