@ensuro/cash-flow-lender 0.0.1
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 +12 -0
- package/build/build-info.json +1 -0
- package/build/contracts/CashFlowLender.sol/CashFlowLender.json +2109 -0
- package/build/contracts/dependencies/AccessManagedProxy.sol/AccessManagedProxy.json +105 -0
- package/build/contracts/dependencies/IPolicyPool.sol/IPolicyPool.json +24 -0
- package/contracts/CashFlowLender.sol +861 -0
- package/contracts/dependencies/AccessManagedProxy.sol +32 -0
- package/contracts/dependencies/IPolicyPool.sol +15 -0
- package/package.json +30 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Cash Flow Lender
|
|
2
|
+
|
|
3
|
+
This repository contains the smart contracts for the new version of the Cash Flow Lender contract, that tracks the
|
|
4
|
+
money lent to Ensuro partners who pay the premiums on a monthly basis (or other configurable periods).
|
|
5
|
+
|
|
6
|
+
Try running some of the following tasks:
|
|
7
|
+
|
|
8
|
+
```shell
|
|
9
|
+
npx hardhat help
|
|
10
|
+
npx hardhat test
|
|
11
|
+
REPORT_GAS=true npx hardhat test
|
|
12
|
+
```
|