Skip to content

Instantly share code, notes, and snippets.

@dskvr
Last active December 23, 2018 23:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dskvr/7877658399ded632fd7960cf10ae6fe2 to your computer and use it in GitHub Desktop.
Save dskvr/7877658399ded632fd7960cf10ae6fe2 to your computer and use it in GitHub Desktop.
Using v20.0.0-beta3 with nodejs
{
"presets": ["@babel/preset-env"]
}
import { Api, JsonRpc } from 'eosjs';
import JsSignatureProvider from 'eosjs/dist/eosjs-jssig'; // development only
import fetch from 'node-fetch'; // node only; not needed in browsers
const privateKeys = ["privateKeyHere"];
const signatureProvider = new JsSignatureProvider(privateKeys);
console.log(signatureProvider)
{
"name": "eosjs-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node index.js",
},
"author": "szendvics",
"license": "ISC",
"dependencies": {
"eosjs": "20.0.0-beta3"
},
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/node": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"nodemon": "^1.18.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment