Welcome to libsimba-js
libsimba-js is a library simplifying the use of SIMBAChain APIs. We aim to abstract away the various blockchain concepts, reducing the necessary time needed to get to working code.
Install
npm install @simbachain/libsimba-js
Usage
import * as libsimba from '@simbachain/libsimba-js';
libsimba.getSimbaInstance(...);
const libsimba = require('@simbachain/libsimba-js');
libsimba.getSimbaInstance(...);
require(['@simbachain/libsimba-js'], function (libsimba) {
libsimba.getSimbaInstance(...);
});
<!doctype html>
<html>
...
<script src="./dist/libsimba.js"></script>
<script>
libsimba.getSimbaInstance(...);
window.libsimba.getSimbaInstance(...);
</script>
</html>
Examples
See here
Contributing
Contributions, issues and feature requests are welcome!
Feel free to check issues page.
License
Copyright © 2019 SIMBAChain Inc.
This project is MIT licensed.