Skip to content

Releases: bitclouthunt/deso.js

Release 0.5.4

Choose a tag to compare

@mattetre mattetre released this 10 Mar 20:19

0.5.4 (2022-03-10)

⚠️ Breaking Changes:

  • Identity needs to be initialized (Identity.init()) before being used. init returns a singleton instance of Identity service

Old:

import { identity } from "deso.js";   
const response = await identity.login({ accessLevel: 2 });

New:

import { Identity } from "deso.js";   
const identity = Identity.init();
const response = await identity.login({ accessLevel: 2 });

Features:

  • Makes Identity configurable with the following options:
{
    serviceUrl?: string,
    isTestnet?: boolean,
    isWebView?: boolean
}

Release 0.5.3

Choose a tag to compare

@mattetre mattetre released this 22 Dec 20:25

0.5.3 (2021-12-22)

  • Rename package from bitclout-sdk to deso.js

Release 0.5.2

Choose a tag to compare

@mattetre mattetre released this 19 Dec 12:44

0.5.2 (2021-12-19)

  • use DeSo identity
  • start rebranding from BitClout to DeSo

Release 0.5.1

Choose a tag to compare

@mattetre mattetre released this 04 Nov 20:20

0.5.1 (2021-11-04)

Features

Release 0.5.0

Choose a tag to compare

@mattetre mattetre released this 04 Nov 20:10

0.5.0 (2021-11-04)

Features

Release 0.4.0

Choose a tag to compare

@mattetre mattetre released this 15 Sep 12:10

0.4.0 (2021-09-15)

Features

  • add more endpoints, fix existing, adjust client headers, some jsdoc (#8) (d68ae6d)
    • getExchangeRate
    • getAppState
    • getIsHodlingPublicKey
    • getNotifications
    • getTransaction

Release 0.3.0

Choose a tag to compare

@mattetre mattetre released this 13 Sep 18:08

0.3.0 (2021-09-13)

Features

  • support for username in getSingleProfile (#7) (6ca4c0a)

Release 0.2.3

Choose a tag to compare

@mattetre mattetre released this 04 Sep 14:47

0.2.3 (2021-09-04)

Bug Fixes

  • update release to use npx (ac0815f)

Release 0.2.2

Choose a tag to compare

@mattetre mattetre released this 01 Sep 19:43

0.2.2 (2021-09-01)