@xandeum/web3.js 1.3.3 → 1.3.4

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/dist/helpers.d.ts CHANGED
@@ -10,7 +10,7 @@ export declare const PULSE_DURATION_SECONDS = 15;
10
10
  /**
11
11
  * Number of pulses in one yuga
12
12
  */
13
- export declare const PULSES_PER_YUGA = 16384;
13
+ export declare const PULSES_PER_YUGA = 100;
14
14
  /**
15
15
  * Duration of one yuga in seconds (16384 * 15 = 245,760 seconds ≈ 2.84 days)
16
16
  */
package/dist/helpers.js CHANGED
@@ -21,7 +21,7 @@ exports.PULSE_DURATION_SECONDS = 15;
21
21
  /**
22
22
  * Number of pulses in one yuga
23
23
  */
24
- exports.PULSES_PER_YUGA = 16384;
24
+ exports.PULSES_PER_YUGA = 100;
25
25
  /**
26
26
  * Duration of one yuga in seconds (16384 * 15 = 245,760 seconds ≈ 2.84 days)
27
27
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xandeum/web3.js",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "Xandeum javascript api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/helpers.ts CHANGED
@@ -15,7 +15,7 @@ export const PULSE_DURATION_SECONDS = 15
15
15
  /**
16
16
  * Number of pulses in one yuga
17
17
  */
18
- export const PULSES_PER_YUGA = 16384
18
+ export const PULSES_PER_YUGA = 100
19
19
 
20
20
  /**
21
21
  * Duration of one yuga in seconds (16384 * 15 = 245,760 seconds ≈ 2.84 days)