obyte.js
GitHubDiscord
0.1.14
0.1.14
  • Obyte.js
  • Getting started
    • Quick start
    • Testnet
  • API
    • Get witnesses
    • Get peers
    • Get joint
    • Get last MCI
    • Get history
    • Get attestation
    • Get attestations
    • Get bots
    • Get asset metadata
    • Get definition
    • Get balances
    • Get profile units
    • Get data feed
    • Autonomous Agents
      • Dry run AA
      • Get AA state vars
      • Get AAs by base AAs
      • Get AA responses
      • Get AA response chain
    • Core
      • Catchup
      • Get hash tree
      • Get light props
      • Post joint
      • Pick divisible coins for amount
      • Heartbeat
  • Post
    • Address definition change
    • Attestation
    • Asset
    • Asset attestors
    • Data
    • Data feed
    • Definition
    • Definition template
    • Payment
    • Poll
    • Vote
    • Profile
    • Text
    • Multi
  • Client
    • Subscribe
    • Just saying
    • Requests
  • Utils
    • Sign a message
    • Validate signed message
    • Generate a random address
    • Get definition address
    • Is valid address
    • Keep connection alive
  • About
    • About
    • Links
    • Tutorials
Powered by GitBook
On this page
  • Example
  • Returns
  1. API
  2. Core

Get light props

Get light client properties.

Example

const params = {
  witnesses: await client.getCachedWitnesses()
};
client.api.getParentsAndLastBallAndWitnessListUnit(params, function(err, result) {
  if (err) return console.error(err);
  console.log(result);
});

Returns

{
    timestamp: 1618626721,
    parent_units: [
        "dtH1LbuYJuScVEa8m1c7Hc4Ua4DrPrFJK1zmB8sKD8A="
    ],
    last_stable_mc_ball: "/A35gMoMgKv5awkWH4iMr61Pk+/N47ffOFIKAlkRomU=",
    last_stable_mc_ball_unit: "zgClV7gSONFqFk9sRyCNpIXGIlmRj9tLSgqjjAHCHxM=",
    last_stable_mc_ball_mci: 7268841,
    witness_list_unit: "p1sRwcMeO9js90ztqin+cK21AL7L7SLYKXtehrGkwwQ="
}

PreviousGet hash treeNextPost joint

Last updated 4 years ago