Skip to content

AndrewKishino/TezBakerJS

Repository files navigation

Tez Baker JS - A JS Tezos Baker

Do not use on Mainnet. This project is meant as a learning tool for the Tezos baking process.

Getting Started

Edit bake.js and add the necessary key and provider information:

const Baker = require('./index');

const SECRET_KEY = 'edsk...';

const main = async () => {
  const baker = new Baker('http:https://127.0.0.1:8732', 'main', 'carthage');
  await baker.importKey(SECRET_KEY);
  baker.start();
};

main();
npm install
node bake.js

Development

npm install
npm run build

License

MIT

Credits

Credits to Stephen Andrews

About

Tezos Baker in JavaScript

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published