1.11.0 • Published 4 years ago

gaba v1.11.0

Weekly downloads
530
License
MIT
Repository
github
Last release
4 years ago

gaba logo

The GABA engine is a collection of platform-agnostic modules for creating secure data models for cryptocurrency wallets.

Build Status codecov

Table of Contents

Usage

  1. Install the package.

    npm i gaba
  2. Compose stores to create a data model.

    import {
    	ComposableController,
    	NetworkStatusController,
    	TokenRatesController
    } from 'gaba';
    
    const datamodel = new ComposableController([
    	new NetworkStatusController(),
    	new TokenRatesController()
    ]);
    
    datamodel.subscribe((state) => {/* data model has changed */});

Modules

The GABA engine consists of a collection of modules that each expose uniform APIs for common operations like configuration, state management, and subscription.

AccountTrackerController

import AccountTrackerController from 'gaba';

The AccountTrackerController tracks information associated with specific Ethereum accounts.

AddressBookController

import AddressBookController from 'gaba';

The AddressBookController exposes functions for managing a list of recipient addresses and associated nicknames.

ComposableController

import ComposableController from 'gaba';

The ComposableController can be used to compose multiple controllers together into a single controller.

CurrencyRateController

import CurrencyRateController from 'gaba';

The CurrencyRateController passively polls for an ETH-to-fiat exchange rate based on a chosen currency.

KeyringController

import KeyringController from 'gaba';

The KeyringController is responsible for establishing and managing Ethereum address-based identities.

NetworkController

import NetworkController from 'gaba';

The NetworkController is responsible for creating an underlying provider and for refreshing its configuration.

NetworkStatusController

import NetworkStatusController from 'gaba';

The NetworkStatusController passively polls for the status of available provider networks. The Infura network is supported by default.

PhishingController

import PhishingController from 'gaba';

The PhishingController passively polls for community-maintained lists of approved and unapproved website origins.

PreferencesController

import PreferencesController from 'gaba';

The PreferencesController manages agnostic global settings and exposes convenience methods for updating them.

ShapeShiftController

import ShapeShiftController from 'gaba';

The ShapeShiftController exposes functions for creating ShapeShift purchases and tracks past transactions.

TokenRatesController

import TokenRatesController from 'gaba';

The TokenRatesController passively polls on a set interval for token-to-fiat exchange rates.

TransactionController

import TransactionController from 'gaba';

The TransactionController is responsible for submitting and managing transactions.

util

import util from 'gaba';

The util module exposes a set of utility functions for common operations like gas estimation and generating crypto-buying URLs.

Concepts

Using GABA modules should be straightforward since each module exposes the same minimal API. The concepts detailed in this section form the entirety of the core API: knowing these concepts will allow you to fully use the GABA engine to build wallet data models.

Initialization

Each GABA module can be initialized with an optional initial configuration argument and an optional initial state argument:

const controller = new Controller(<initial_config>, <initial_state>)

Data passed into a module as initial state will be merged with that module's default state; likewise, options passed into a module as initial configuration will be merged with that module's default configuration.

Configuration

As mentioned in the initialization section, a GABA module can be configured during initialization by passing in a configuration object as its first argument:

const controller = new Controller(<initial_config>, <initial_state>)

A GABA module can also be configured (or reconfigured) after initialization by passing a configuration object to its configure method:

const controller = new Controller()
controller.configure({ foo: 'bar', baz: 'qux' });

Regardless of how a module is configured, whether it's during or after initialization, configuration options can always be accessed on a module as instance variables for convenience:

const controller = new Controller()
controller.configure({ foo: 'bar', baz: 'qux' });
console.log(controller.foo, controller.baz); // "bar qux"

State management

The core purpose of every GABA module is to maintain an internal data object called "state". Modules are like data stores: their internal state data can be updated directly by modifying the data itself or indirectly by calling API methods that in turn modify the data.

A GABA module's state can be directly modified by calling its update method and passing in a new data object. By default, this data object will be merged with the module's existing internal state; however, if the data object should overwrite the module's internal state, a second argument of true can be passed to the update method:

const controller = new Controller();
controller.update({ foo: 'bar' }); // merge with existing state
controller.update({ foo: 'bar' }, true); // overwrite existing state

A GABA module's state can be indirectly modified by calling any state-modifying API methods it may expose. For example, the AddressBookController exposes a set method that accepts a new address to save and an associated nickname; calling this method will internally update its state.addressBook array.

A GABA module's state can always be accessed by referencing the state instance variable for convenience:

const controller = new Controller();
console.log(controller.state); // { ... }

Subscription

Since each GABA module maintains an internal state object, there should be a way to add listeners to be notified when state data changes. GABA modules expose two methods for subscription management, subscribe and unsubscribe.

Change handlers can be registered with a GABA module by passing a function to its subscribe method. This function will be called anytime the module's underlying state changes and will be passed the current state as its only function argument:

function onChange(state) { /* state data changed */ }
const controller = new Controller();
controller.subscribe(onChange);

Change handlers can be removed from a GABA module by passing a function to its unsubscribe method. Any function passed to unsubscribe will be removed from the internal list of handlers and will no longer be called when state data changes:

function onChange(state) { /* state data changed */ }
const controller = new Controller();
controller.subscribe(onChange);
// ...
controller.unsubscribe(onChange);

Composition

Because each GABA module maintains its own state and subscriptions, it would be tedious to initialize and subscribe to every available module independently. To solve this issue, the ComposableController can be used to compose multiple GABA modules into a single controller.

The ComposableController is initialized by passing an array of GABA module instances:

import {
	ComposableController,
	NetworkStatusController,
	TokenRatesController
} from 'gaba';

const datamodel = new ComposableController([
	new NetworkStatusController(),
	new TokenRatesController()
]);

The resulting composed module exposes the same APIs as every other GABA module for configuration, state management, and subscription:

datamodel.subscribe((state) => { /* some child state has changed */ });

The internal state maintained by a ComposableController will be keyed by child controller class name. It's also possible to access the flatState instance variable that is a convenience accessor for merged child state:

console.log(datamodel.state); // {NetworkController: {...}, TokenRatesController: {...}}
console.log(datamodel.flatState); // {infura: {...}, contractExchangeRates: [...]}

Advanced Note: The ComposableController builds a map of all child controllers keyed by controller name. This object is cached as a context instance variable on both the ComposableController itself as well as all child GABA modules. This means that child modules can call methods on other sibling modules through the context variable, e.g. this.context.SomeController.someMethod().

Why TypeScript?

The GABA engine is written using TypeScript. Despite its arguably steeper learning curve compared to JavaScript, TypeScript offers an objectively safer development experience that directly improves the reliability and maintainability of a large codebase.

Eliminate unintentionally broken APIs

TypeScript eliminates the ability to introduce changes to a codebase that break the APIs between or within components. If the signature changes for a specific function in a given class, every use of that function will immediately fail to compile until updated to match the new signature. This same idea applies to every other construct of the language: if the type of a property on an object is changed from string to boolean, every invalid use of that property will immediately fail to compile, etc. This is one of the most powerful features of a statically typed language for a mission-critical, modular package like GABA: it's extremely difficult to unknowingly introduce side effects.

Share custom types and interfaces

The ability to describe the shape that code must adhere to allows for the safe consumption and sharing of code without the need for duck typing. An underwhelming but point-driving comparison could be that TypeScript provides an enforced and very advanced form of JSDoc. Common or complex object formats with type-checked members can be shared and guaranteed across a codebase. This eliminates logic paths that only serve to check for the existence or the type of certain properties on an object, which usually account for a large portion of the code paths in a JavaScript application. Codebases become pragmatic and composable.

Eliminate errors caused by misnamed code

TypeScript exposes a powerful language services API used by most major editors for code introspection features such as member autocompletion. This drastically reduces the chance of misnaming a function or property from an imported module, and in the off chance that a typo or misnaming does occur, the codebase would again immediately fail to compile instead of causing a user-facing bug at runtime.

Use transpiled language-forward features

TypeScript automatically transpiles the latest ECMAScript language features to any desired target gracefully down to ES3. Microsoft directly monitors, supports, and heavily steers the implementation progress of the latest ES2018 specification through its development of TypeScript and adds opt-in support for features as their API churn settles down even before official TC39 finalization. This means that even implementation-heavy features like async / await are down-emitted without the hassle of manually managing polyfills or build tools like babel.

Other general OOP features

All of these features of a statically-typed language like TypeScript combine to form codebases consisting of strict contractural relationships between every module in an application. Changes are less intimidating since unnoticed side effects are difficult to introduce, documentation can be generated with less verbose syntax (TSDoc is JSDoc without the types since it can infer them), editors provide autocompletion of both public module members and of local and NPM dependencies, and an upgrade to TypeScript can be incremental as demonstrated in this PR.

Linking during development

Linking GABA into other projects involves a special NPM command to ensure that dependencies are not duplicated. This is because GABA ships modules that are transpiled but not bundled, and NPM does not deduplicate linked dependency trees.

  1. Link GABA.

    $ npm run build:link
  2. Link into other projects.

    $ npm link gaba

Release Steps

  • Create branch from develop named v${version}
  • push remote branch
  • Run npx release <major|minor|patch>. major for breaking changes, patch for bugfixes, minor for backwards compatible features.
  • Then select which PRs will be added to generate the changelog
  • Github page will be opened in your browser with the new generated tag and changelog, press the green button to release.
  • Then merge v${version} branch to develop, then make master up to date with develop
  • enable "create merge commit" option
  • do a normal merge to maintain history
  • disable "create merge commit" option
  • On a clean master run npm run build, then run npm publish in the project root and GABA will be on npm

API documentation

API documentation is auto-generated for the GABA package on every commit to the master branch.

View API documentation

License

MIT

1.11.0

4 years ago

1.10.0

4 years ago

1.9.3

4 years ago

1.9.2

4 years ago

1.9.1

4 years ago

1.9.0

4 years ago

1.8.2

4 years ago

1.8.1

4 years ago

1.8.0

4 years ago

1.7.5

4 years ago

1.7.4

4 years ago

1.7.3

4 years ago

1.7.2

5 years ago

1.7.1

5 years ago

1.7.0

5 years ago

1.6.0

5 years ago

1.5.1

5 years ago

1.5.0

5 years ago

1.4.2

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

1.0.0-beta.75

5 years ago

1.0.0-beta.74

5 years ago

1.0.0-beta.73

5 years ago

1.0.0-beta.72

5 years ago

1.0.0-beta.71

5 years ago

1.0.0-beta.70

5 years ago

1.0.0-beta.69

5 years ago

1.0.0-beta.68

5 years ago

1.0.0-beta.67

5 years ago

1.0.0-beta.66

5 years ago

1.0.0-beta.65

5 years ago

1.0.0-beta.64

5 years ago

1.0.0-beta.63

5 years ago

1.0.0-beta.62

5 years ago

1.0.0-beta.61

5 years ago

1.0.0-beta.60

5 years ago

1.0.0-beta.59

5 years ago

1.0.0-beta.58

5 years ago

1.0.0-beta.57

5 years ago

1.0.0-beta.55

5 years ago

1.0.0-beta.54

5 years ago

1.0.0-beta.53

5 years ago

1.0.0-beta.52

5 years ago

1.0.0-beta.51

5 years ago

1.0.0-beta.50

5 years ago

1.0.0-beta.49

5 years ago

1.0.0-beta.48

5 years ago

1.0.0-beta.47

5 years ago

1.0.0-beta.46

5 years ago

1.0.0-beta.45

5 years ago

1.0.0-beta.44

5 years ago

1.0.0-beta.43

5 years ago

1.0.0-beta.41

6 years ago

1.0.0-beta.40

6 years ago

1.0.0-beta.38

6 years ago

1.0.0-beta.37

6 years ago

1.0.0-beta.36

6 years ago

1.0.0-beta.35

6 years ago

1.0.0-beta.34

6 years ago

1.0.0-beta.33

6 years ago

1.0.0-beta.32

6 years ago

1.0.0-beta.31

6 years ago

1.0.0-beta.30

6 years ago

1.0.0-beta.29

6 years ago

1.0.0-beta.28

6 years ago

1.0.0-beta.27

6 years ago

1.0.0-beta.24

6 years ago

1.0.0-beta.23

6 years ago

1.0.0-beta.21

6 years ago

1.0.0-beta.20

6 years ago

1.0.0-beta.19

6 years ago

1.0.0-beta.18

6 years ago

1.0.0-beta.17

6 years ago

1.0.0-beta.16

6 years ago

1.0.0-beta.15

6 years ago

1.0.0-beta.13

6 years ago

1.0.0-beta.12

6 years ago

1.0.0-beta.11

6 years ago

1.0.0-beta.10

6 years ago

1.0.0-beta.9

6 years ago

1.0.0-beta.8

6 years ago

1.0.0-beta.7

6 years ago

1.0.0-beta.6

6 years ago

1.0.0-beta.5

6 years ago

1.0.0-beta.4

6 years ago

1.0.0-beta.3

6 years ago

1.0.0-beta.2

6 years ago

1.0.0-beta.1

6 years ago