Ambisafe / etoken-lib

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EToken lib

NodeJS

npm install -s etoken-lib

const EToken = require('etoken-lib');
const eToken = new EToken('http://localhost:8545'); // Ethereum node RPC url.
eToken.setPrivateKey(privateKeyToSignransactions);
// eToken.web3 is now ready to send transactions.

Browser

<script src='../build/bundle.min.js'></script>
<script>
    const EToken = require('etoken-lib');
    const eToken = new EToken('http://localhost:8545'); // Ethereum node RPC url.
    eToken.setPrivateKey(privateKeyToSignransactions);
    // eToken.web3 is now ready to send transactions.
</script>

About

License:Other


Languages

Language:JavaScript 98.9%Language:HTML 1.1%