UNPKG

@fruitsjs/core

Version:

Principal package with functions and models for building Fruits Eco-Blockchain applications.

24 lines (22 loc) 670 B
/** * This submodule describes the Factory Methods * of the API. You almost will like to use [[composeApi]] * rather than using the Factory Methods itself * * The factory methods are higher-order functions which * receives a [[ChainService]] instance in first order, and * the payload in second order. * * The factory methods are used [[ApiComposer]] and [[composeApi]] * * @moduledefinition core.api.factories * * */ export * from './account'; export * from './alias'; export * from './asset'; export * from './block'; export * from './contract'; export * from './network'; export * from './message'; export * from './transaction';