Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@simbachain/libsimba-js

Package Overview
Dependencies
Maintainers
3
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@simbachain/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.

  • 0.5.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

Welcome to libsimba-js

npm Documentation License: MIT azure

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.

🏠 Homepage

📝 Documentation

Install

npm install @simbachain/libsimba-js

Usage

  • ES2105 module import
import * as libsimba from '@simbachain/libsimba-js';
libsimba.getSimbaInstance(...);
  • CommonJS module require
const libsimba  = require('@simbachain/libsimba-js');
libsimba.getSimbaInstance(...);
  • AMD module require
require(['@simbachain/libsimba-js'], function (libsimba) {
    libsimba.getSimbaInstance(...);
});
  • <script> tag import
<!doctype html>
<html>
  ...
  <script src="./dist/libsimba.js"></script>
  <script>
    // ...
    // Global variable
    libsimba.getSimbaInstance(...);
    // Property in the window object
    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.

Keywords

FAQs

Package last updated on 26 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc