Skip to content

Commit 353994f

Browse files
authored
Merge pull request #90 from nash-io/ts/fix-nonce-issue
Ts/fix nonce issue
2 parents bb17667 + 65a0da3 commit 353994f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
<a name="6.3.7"></a>
6+
## [6.3.7](https://github.com/nash-io/api-client-typescript/compare/v6.3.5...v6.3.7) (2021-10-11)
7+
8+
9+
510
<a name="6.3.5"></a>
611
## [6.3.5](https://github.com/nash-io/api-client-typescript/compare/v6.3.3...v6.3.5) (2021-10-07)
712

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@neon-exchange/api-client-typescript",
3-
"version": "6.3.5",
3+
"version": "6.3.7",
44
"description": "Official TypeScript client for interacting with the Nash exchange",
55
"main": "build/main/index.js",
66
"typings": "build/main/index.d.ts",

src/client/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ export class Client {
861861
this.nashProtocolMarketData = mapMarketsForNashProtocol(this.marketData)
862862
this.assetData = await this.fetchAssetData()
863863
this.pallierPkStr = JSON.stringify(this.apiKey.paillier_pk)
864-
this.currentOrderNonce = createTimestamp32()
864+
this.currentOrderNonce = 0
865865
await this.updateTradedAssetNonces()
866866
}
867867

0 commit comments

Comments
 (0)