0.4.5 • Published 4 years ago

simonflex-framework v0.4.5

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

Flex Framework

npm version

Flex Framework is a library implements Flex interface. It helps various wallet instances offer consistent Flex interface to Meter Dapps.

Installation

npm i simonflex-framework

Usage

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

import { Framework } from 'simonflex-framework';
import 'simonflex.driver';

class MyDriver implements Flex.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 Flex instance object

See also

Flex playground