@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 +2 -2
- package/dist/src/constants.js +2 -2
- package/package.json +4 -10
- package/src/constants.ts +2 -2
package/README.md
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
[](/LICENSE)
|
4
4
|
[](https://github.com/DistributedCollective/zero/stargazers)
|
5
|
-
[](/README.md)
|
6
6
|
|
7
|
-
Shared interfaces and classes of
|
7
|
+
Shared interfaces and classes of ZERO SDK.
|
8
8
|
|
9
9
|
## Quickstart
|
10
10
|
|
package/dist/src/constants.js
CHANGED
@@ -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.
|
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.
|
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.
|
4
|
-
"description": "Sovryn
|
3
|
+
"version": "1.0.0-early.access.0",
|
4
|
+
"description": "Sovryn ZERO SDK shared interfaces",
|
5
5
|
"keywords": [
|
6
|
-
"Sovryn",
|
7
6
|
"Zero",
|
8
|
-
"
|
7
|
+
"protocol",
|
9
8
|
"DeFi",
|
10
|
-
"
|
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.
|
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.
|
68
|
+
export const MINIMUM_REDEMPTION_RATE = Decimal.from(0.005);
|