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

eos-jssdk

v0.1.1

Published

EOS Javascript Libraries By More.Top

Downloads

7

Readme

eos-jssdk

JS SDK for EOS

Usage

import EOS from 'eos-jssdk';

const config = {
  httpEndpoint: 'http://127.0.0.1:8888'
};
const eos =  EOS.create(config);
eos.getAccount({ account_name: 'eosio' }).then(account => console.log(account));

API

getAccount(account_name)

Retrieve an account from the blockchain

// use expanded params
eos.getAccount('eosio');
// use object param
eos.getAccount({ account_name: 'eosio' });

getBlock(block_num_or_id)

Retrieve a full block from the blockchain

// get block by block id
eos.getBlock('000000028c06df8874cd2b481fa3fd8bd56d83122f9bdd48b836b9731227d53a');
// get block by block num
eos.getBlock(2);
// use object param
eos.getBlock({ block_num_or_id: 2 });

getCode(account_name)

Retrieve the code and ABI for an account

// use expanded params
eos.getCode('eosio');
// use object param
eos.getCode({ account_name: 'eosio' });

getCurrencyStats(code, symbol)

Retrieve the stats of for a given currency

eos.getCurrencyStats('eosio.token', 'EOS');

getCurrencyBalance(code, account, [symbol])

Retrieve the balance of an account for a given currency

Get All Symbols

eos.getCurrencyBalance('eosio.token', 'eosio');

return

[
    "1000000000.0000 EOS",
    "1000000000.0000 MORE"
]

Specify symbol

eos.getCurrencyBalance('eosio.token', 'eosio', 'EOS');
//or
eos.getCurrencyBalance({ code: 'eosio.token', account: 'eosio', symbol: 'EOS' });

return

[
    "1000000000.0000 EOS"
]

getInfo()

Get current blockchain information

eos.getInfo();

getTableRows(code, scope, table, [limit = 10], [json = true])

Retrieve the contents of a database table

eos.getTableRows('eosio.token', 'eosio', 'accounts')

getControlledAccounts(controlling_account)

Retrieve accounts which are servants of a given account

eos.getControlledAccounts('eosio');

getKeyAccounts(public_key)

Retrieve accounts associated with a public key

eos.getKeyAccounts("EOS6MRyAjQq8ud7hVNYcfnVPJqcVpscN5So8BhtHuGYqET5GDW5CV");

getTransactions(account_name, [skip_seq], [num_seq])

Retrieve all transactions with specific account name referenced in their scope

eos.getTransactions('more');

getTransaction(transaction_id)

Retrieve a transaction from the blockchain

eos.getTransaction('a2a068628cb3ccdbad992ea6410404232330d57bb3bf50201934d51218136c3d');