@abtnode/constant 1.16.0-beta-8ee536d7 → 1.16.0-beta-62b42401

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.
Files changed (2) hide show
  1. package/index.js +6 -0
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -281,6 +281,11 @@ const BLOCKLET_STORE_URL = 'https://store.blocklet.dev';
281
281
  const BLOCKLET_STORE_URL_DEV = 'https://dev.store.blocklet.dev';
282
282
  const MAIN_CHAIN_ENDPOINT = 'https://main.abtnetwork.io/api/';
283
283
 
284
+ const USER_TYPE = Object.freeze({
285
+ DERIVED: 'derived',
286
+ WALLET: 'wallet',
287
+ });
288
+
284
289
  module.exports = Object.freeze({
285
290
  // Blocklet Server
286
291
  NODE_MODES: Object.freeze({
@@ -488,4 +493,5 @@ module.exports = Object.freeze({
488
493
  },
489
494
 
490
495
  MAIN_CHAIN_ENDPOINT,
496
+ USER_TYPE,
491
497
  });
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.0-beta-8ee536d7",
6
+ "version": "1.16.0-beta-62b42401",
7
7
  "description": "ABT Node constants",
8
8
  "main": "index.js",
9
9
  "files": [
@@ -20,5 +20,5 @@
20
20
  "devDependencies": {
21
21
  "jest": "^27.5.1"
22
22
  },
23
- "gitHead": "57d0c45be311a5fbc1c0fffa2814b62c1a3ee34c"
23
+ "gitHead": "6ef1c3601d0cfdcf5da0b55b4c54ef1fa9fce7d2"
24
24
  }