@sovryn-zero/lib-base 0.1.0 → 1.0.0-early.access.0

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/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  [![GitHub license](https://img.shields.io/github/license/DistributedCollective/zero)](/LICENSE)
4
4
  [![GitHub stars](https://img.shields.io/github/stars/DistributedCollective/zero)](https://github.com/DistributedCollective/zero/stargazers)
5
- [![Zero README](https://img.shields.io/badge/readme-gray?style=flat&logo=ZeroMQ&logoColor=green&link=/README.md)](/README.md)
5
+ [![ZERO README](https://img.shields.io/badge/readme-gray?style=flat&logo=ZeroMQ&logoColor=green&link=/README.md)](/README.md)
6
6
 
7
- Shared interfaces and classes of Zero SDK.
7
+ Shared interfaces and classes of ZERO SDK.
8
8
 
9
9
  ## Quickstart
10
10
 
@@ -48,7 +48,7 @@ exports.ZUSD_MINIMUM_DEBT = exports.ZUSD_LIQUIDATION_RESERVE.add(exports.ZUSD_MI
48
48
  *
49
49
  * @public
50
50
  */
51
- exports.MINIMUM_BORROWING_RATE = Decimal_1.Decimal.from(0.025);
51
+ exports.MINIMUM_BORROWING_RATE = Decimal_1.Decimal.from(0.005);
52
52
  /**
53
53
  * Value that the {@link Fees.borrowingRate | borrowing rate} will never exceed.
54
54
  *
@@ -60,5 +60,5 @@ exports.MAXIMUM_BORROWING_RATE = Decimal_1.Decimal.from(0.05);
60
60
  *
61
61
  * @public
62
62
  */
63
- exports.MINIMUM_REDEMPTION_RATE = Decimal_1.Decimal.from(0.025);
63
+ exports.MINIMUM_REDEMPTION_RATE = Decimal_1.Decimal.from(0.005);
64
64
  //# sourceMappingURL=constants.js.map
package/package.json CHANGED
@@ -1,18 +1,12 @@
1
1
  {
2
2
  "name": "@sovryn-zero/lib-base",
3
- "version": "0.1.0",
4
- "description": "Sovryn Zero SDK shared interfaces",
3
+ "version": "1.0.0-early.access.0",
4
+ "description": "Sovryn ZERO SDK shared interfaces",
5
5
  "keywords": [
6
- "Sovryn",
7
6
  "Zero",
8
- "SDK",
7
+ "protocol",
9
8
  "DeFi",
10
- "blockchain",
11
- "finance",
12
- "BTC",
13
- "bitcoin",
14
- "RSK",
15
- "rootstock"
9
+ "RSK"
16
10
  ],
17
11
  "homepage": "https://github.com/DistributedCollective/zero#readme",
18
12
  "license": "MIT",
package/src/constants.ts CHANGED
@@ -51,7 +51,7 @@ export const ZUSD_MINIMUM_DEBT = ZUSD_LIQUIDATION_RESERVE.add(ZUSD_MINIMUM_NET_D
51
51
  *
52
52
  * @public
53
53
  */
54
- export const MINIMUM_BORROWING_RATE = Decimal.from(0.025);
54
+ export const MINIMUM_BORROWING_RATE = Decimal.from(0.005);
55
55
 
56
56
  /**
57
57
  * Value that the {@link Fees.borrowingRate | borrowing rate} will never exceed.
@@ -65,4 +65,4 @@ export const MAXIMUM_BORROWING_RATE = Decimal.from(0.05);
65
65
  *
66
66
  * @public
67
67
  */
68
- export const MINIMUM_REDEMPTION_RATE = Decimal.from(0.025);
68
+ export const MINIMUM_REDEMPTION_RATE = Decimal.from(0.005);