@triadxyz/triad-protocol 3.2.5-beta → 3.2.6-beta

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.
@@ -200,6 +200,7 @@ export type ClaimVault = {
200
200
  name: string;
201
201
  isFirstComeFirstServed: boolean;
202
202
  merkleRoot: number[];
203
+ ts: number;
203
204
  };
204
205
  export type ClaimedUser = {
205
206
  user: string;
@@ -175,7 +175,8 @@ const formatClaimVault = (account, address) => {
175
175
  isActive: account.isActive,
176
176
  name: account.name,
177
177
  isFirstComeFirstServed: account.isFirstComeFirstServed,
178
- merkleRoot: account.merkleRoot
178
+ merkleRoot: account.merkleRoot,
179
+ ts: account.ts.toNumber()
179
180
  };
180
181
  };
181
182
  exports.formatClaimVault = formatClaimVault;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@triadxyz/triad-protocol",
3
- "version": "3.2.5-beta",
3
+ "version": "3.2.6-beta",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",