0.5.8 • Published 4 years ago
@meterio/flex-framework v0.5.8
Flex Framework
Flex Framework is a library implements Flex interface. It helps various wallet instances offer consistent Flex interface to Meter Dapps.
Installation
npm i @meterio/flex-framework
Usage
To create framework instance, Flex.Driver needs to be implemented
import { Framework } from '@meterio/flex-framework';
import '@meterio/flex.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