Skip to content

v0.10.0

Pre-release
Pre-release

Choose a tag to compare

@yoxira yoxira released this 04 Jun 08:00
· 172 commits to dev since this release
9cc6514

Added

  • The includeDirectTransfers parameter for the /api/chats/get and /api/chatrooms endpoints in #91

  • New properties to the /api/node/status endpoint in #90:

    interface Response {
      loader: {
        loaded: boolean;
        now: number;
        syncing: boolean;
        consensus: number;
        blocks: number;
        blocksCount: number;
      }
      // ...
    }
  • timestampMs field for the transactions in #93

  • ?returnUnconfirmed=1 flag for transactions in #96

  • Explicit fields for the unconfirmed transactions:

    interface UnconfirmedTransaction {
      // ...
      blockId: null;
      height: null;
      confirmations: 0;
    }
  • Socket connection between nodes in #99. Learn more at https://docs.adamant.im

Changed

  • count now is returned as a number in every response in #110
  • The default sorting for all endpoints is now timestamp:desc. All timestamp-based sorting now prioritizes timestampMs.

Fixed

  • The bug when transaction pool doesn't properly remove transactions in #108
  • False warnings "discarded the received block" and "skipping delegate slots" in #120

Deprecated

  • GitHub Wiki. Use https://docs.adamant.im for documentation
  • The withoutDirectTransfers filter for all endpoints, use includeDirectTransfers instead