DApps (Deactivated)

This is a resource for interacting with the dapps endpoint provided by the Lisk public API. Each of the following methods can be accessed via the dapps property of an APIClient instance. However, please note that currently DApps is deactivated and is not in use.

get

This searches for a specified dapp in the system.

Syntax

get([options])

Parameters

options: Please see the options in the following link: Core API documentation.

Return value

Promise: Resolves to an API response object.

Examples

client.dapps.get({ name: 'LiskKitties' })
    .then(res => {
        console.log(res.data);
    })