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

@vechain/connex

Package Overview
Dependencies
Maintainers
2
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vechain/connex

Standard interface to connect DApp with VeChain and user

  • 2.0.13
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
615
decreased by-25.99%
Maintainers
2
Weekly downloads
 
Created
Source

Connex

npm version

The out of the box Connex implementation for browser.

Installation

Include in <script> tag

Just include the CDN link within a script tag. Connex will then be registered as a global variable.

<!-- install the latest v2 -->
<script src="https://unpkg.com/@vechain/connex@2" />

NPM

It's recommended when your project is a bit large.

npm i @vechain/connex
import Connex from '@vechain/connex'

Startup

Create a Connex object connects to VeChain mainnet

const connex = new Connex({
    node: 'https://mainnet.veblocks.net/', // veblocks public node, use your own if needed
    network: 'main' // defaults to mainnet, so it can be omitted here
})

Connect to testnet

const connex = new Connex({
    node: 'https://testnet.veblocks.net/',
    network: 'test'
})

Or connect to private network

const connex = new Connex({
    node: '<the API url of your node>',
    // the genesis block of your private network
    network: {
        id: '0x...',
        ...
    }
})

Create Vendor module only

In some cases, e.g. the classic 'Buy me a coffee' demo, you don't need the ability to access the blockchain. You can opt-out Connex.Thor module, and just create Connex.Vendor module.

const vendor = new Connex.Vendor('main') //'main','test' or genesis ID if it's private network

Using in Node.js environment

This package, @vechain/connex is designed only work in the browser, if you are interested in running it in Node.js, try @vechain/connex-framework.

License

This package is licensed under the GNU Lesser General Public License v3.0, also included in LICENSE file in the repository.

Keywords

FAQs

Package last updated on 19 Dec 2022

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