diff --git a/docs/changelog-latest.md b/docs/changelog-latest.md index 62b8025e8..112534159 100644 --- a/docs/changelog-latest.md +++ b/docs/changelog-latest.md @@ -3,6 +3,36 @@ id: changelog-latest title: Changelog (v3) --- +3.10.0 +====== + +- 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. + + ```js + 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. + 3.9.2 =====