Skip to content

Delinquent Duo

Compare
Choose a tag to compare
@snowypowers snowypowers released this 14 Aug 07:55
· 508 commits to master since this release
  • API

    • getTokenBalances to retrieve multiple token balances for a single address within a single HTTP call.
    • setupVote is a new method that allows you to setup your voting status for your neo.
    const config = {
      net: 'TestNet',
      account: new wallet.Account(privateKey),
      candidateKeys: [key1, key2] // Keys retrieved from a getValidators call.
    }
    Neon.api.setupVote(config)
  • RPC

    • getvalidators call added. This call returns the list of possible candidates as well as their current vote tally.
  • Wallet

    • verifySignature as the counterpart to generateSignature. This makes it possible to verify signatures of pure hexstrings.
    • State Transaction support is added.
  • Website

    • Redirect static package to use unpkg. This will serve the latest browser.js that is published.