Lisk Elements API Client: DApps Resource
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.
get
Searches for a specified dapp in the system.
Syntax
get([options])
Parameters
options
: See options in the Core API documentation.
Return value
Promise
: Resolves to an API response object.
Examples
client.dapps.get({ name: 'LiskKitties' })
.then(res => {
console.log(res.data);
})