1.0.0 • Published 4 years ago

simonzgconnexframework v1.0.0

Weekly downloads
5
License
LGPL-3.0
Repository
github
Last release
4 years ago

Connex Framework

npm version

Connex Framework is a library implements Connex interface. It helps various wallet instances offer consistent Connex interface to VeChain DApps.

Installation

npm i @vechain/connex-framework

Usage

To create framework instance, Connex.Driver needs to be implemented

import { Framework } from '@vechain/connex-framework'
import '@vechain/connex.driver'

class MyDriver implements Connex.Driver {
    // implementations
}

const driver = new MyDriver()

// it's suggested in development mode, which is helpful to diagnose driver implementation.
// const framework = new Framework(Framework.guardDriver(driver))

const framework = new Framework(driver)

// here `framework` is the ready-to-use Connex instance object

See also

Driver implementations:

Connex playground