@dydxprotocol/v4-client-js 1.21.2 → 1.21.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dydxprotocol/v4-client-js",
3
- "version": "1.21.2",
3
+ "version": "1.21.3",
4
4
  "description": "General client library for the new dYdX system (v4 decentralized)",
5
5
  "main": "build/src/index.js",
6
6
  "scripts": {
@@ -128,7 +128,7 @@ export class Post {
128
128
  ): Promise<StdFee> {
129
129
  let msgs: EncodeObject[];
130
130
  // protocol expects timestamp nonce in UTC milliseconds, which is the unit returned by Date.now()
131
- let sequence = Date.now();
131
+ let sequence = Date.now() + this.timestampNonceOffsetMs;
132
132
 
133
133
  if (this.useTimestampNonce) {
134
134
  msgs = await messaging();