Skip to main content

index

AKASHA SDK is a modular set of utilities and apis that can be used to build your own app.

Namespaces

NamespaceDescription
typings-

Interfaces

SDK_API

Properties

PropertyType
authAWF_Auth
globalChannelEventBus
profileAWF_Profile

SDK_Services

Properties

PropertyType
appSettingsAppSettings
ceramicdefault
commonobject
common.ipfsAWF_IpfsConnector
common.miscAWF_Misc
common.web3Web3Connector
dbDB
gqlGql
logLogging
settingsSettings
stashStash

Type Aliases

AWF_SDK

AWF_SDK: object

Type declaration

MemberType
apiSDK_API
servicesSDK_Services

Source

sdk/src/index.ts:48

Functions

getSDK()

getSDK(): AWF_SDK

Creates a new SDK instance or returns a previusly created one.

Returns

AWF_SDK

Example

import getSDK from '@akashaorg/awf-sdk';
const sdk = getSDK();

Source

sdk/src/index.ts:65


init()

init(): AWF_SDK

Creates a new SDK instance.

Returns

AWF_SDK

Example

import {init} from '@akashaorg/awf-sdk';
const sdk = init();

Source

sdk/src/index.ts:82