@drift-labs/sdk 2.109.0-beta.11 → 2.109.0-beta.12

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/VERSION CHANGED
@@ -1 +1 @@
1
- 2.109.0-beta.11
1
+ 2.109.0-beta.12
@@ -229,6 +229,7 @@ function decodeUser(buffer) {
229
229
  const auctionDuration = buffer.readUInt8(offset);
230
230
  offset += 1;
231
231
  const postedSlotTail = buffer.readUint8(offset);
232
+ offset += 1;
232
233
  offset += 2; // padding
233
234
  orders.push({
234
235
  slot,
@@ -229,6 +229,7 @@ function decodeUser(buffer) {
229
229
  const auctionDuration = buffer.readUInt8(offset);
230
230
  offset += 1;
231
231
  const postedSlotTail = buffer.readUint8(offset);
232
+ offset += 1;
232
233
  offset += 2; // padding
233
234
  orders.push({
234
235
  slot,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/sdk",
3
- "version": "2.109.0-beta.11",
3
+ "version": "2.109.0-beta.12",
4
4
  "main": "lib/node/index.js",
5
5
  "types": "lib/node/index.d.ts",
6
6
  "browser": "./lib/browser/index.js",
@@ -238,6 +238,7 @@ export function decodeUser(buffer: Buffer): UserAccount {
238
238
  const auctionDuration = buffer.readUInt8(offset);
239
239
  offset += 1;
240
240
  const postedSlotTail = buffer.readUint8(offset);
241
+ offset += 1;
241
242
  offset += 2; // padding
242
243
  orders.push({
243
244
  slot,