1.0.0 • Published 6 years ago

tondt v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

tondt

Telegram Open Network SmartContract Development Tools for NodeJS

Example Usage:

import tondt from 'tondt'

const log = console.log.bind(console)
const PATH_DATA = 'tmp'
const OPT_CREATE = false

tondt.createAdmin(PATH_DATA, OPT_CREATE).then(run).catch(log)

async function run(admin) {

  log(admin)

  // do stuff with admin

}