peks

Send and receive steem engine token

Usage no npm install needed!

<script type="module">
  import peks from 'https://cdn.skypack.dev/peks';
</script>

README

PEKS

const Peks = require("peks");

const NINJA = new Peks();

//Get account balances. Leave 2nd argument null if you want to receive all tokens
Ninja.getBalance("wehmoen","NINJA").then(balance => {
    console.log(balance);
});

NINJA.transfer("ssc-mainnet1", from, wif, to, quantity, symbol, memo).then(tx => {
    console.log(tx)
}).catch((e) => {
    console.log(e);
});