@rev-net/core-v6 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.
Files changed (92) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +65 -0
  3. package/REVNET_SECURITY_CHECKLIST.md +164 -0
  4. package/SECURITY.md +68 -0
  5. package/SKILLS.md +166 -0
  6. package/deployments/revnet-core-v5/arbitrum/REVDeployer.json +2821 -0
  7. package/deployments/revnet-core-v5/arbitrum/REVLoans.json +2260 -0
  8. package/deployments/revnet-core-v5/arbitrum_sepolia/REVDeployer.json +2821 -0
  9. package/deployments/revnet-core-v5/arbitrum_sepolia/REVLoans.json +2260 -0
  10. package/deployments/revnet-core-v5/base/REVDeployer.json +2825 -0
  11. package/deployments/revnet-core-v5/base/REVLoans.json +2264 -0
  12. package/deployments/revnet-core-v5/base_sepolia/REVDeployer.json +2825 -0
  13. package/deployments/revnet-core-v5/base_sepolia/REVLoans.json +2264 -0
  14. package/deployments/revnet-core-v5/ethereum/REVDeployer.json +2825 -0
  15. package/deployments/revnet-core-v5/ethereum/REVLoans.json +2264 -0
  16. package/deployments/revnet-core-v5/optimism/REVDeployer.json +2821 -0
  17. package/deployments/revnet-core-v5/optimism/REVLoans.json +2260 -0
  18. package/deployments/revnet-core-v5/optimism_sepolia/REVDeployer.json +2825 -0
  19. package/deployments/revnet-core-v5/optimism_sepolia/REVLoans.json +2264 -0
  20. package/deployments/revnet-core-v5/sepolia/REVDeployer.json +2825 -0
  21. package/deployments/revnet-core-v5/sepolia/REVLoans.json +2264 -0
  22. package/docs/book.css +13 -0
  23. package/docs/book.toml +13 -0
  24. package/docs/solidity.min.js +74 -0
  25. package/docs/src/README.md +88 -0
  26. package/docs/src/SUMMARY.md +20 -0
  27. package/docs/src/src/README.md +7 -0
  28. package/docs/src/src/REVDeployer.sol/contract.REVDeployer.md +968 -0
  29. package/docs/src/src/REVLoans.sol/contract.REVLoans.md +1047 -0
  30. package/docs/src/src/interfaces/IREVDeployer.sol/interface.IREVDeployer.md +243 -0
  31. package/docs/src/src/interfaces/IREVLoans.sol/interface.IREVLoans.md +296 -0
  32. package/docs/src/src/interfaces/README.md +5 -0
  33. package/docs/src/src/structs/README.md +14 -0
  34. package/docs/src/src/structs/REVAutoIssuance.sol/struct.REVAutoIssuance.md +19 -0
  35. package/docs/src/src/structs/REVBuybackHookConfig.sol/struct.REVBuybackHookConfig.md +19 -0
  36. package/docs/src/src/structs/REVBuybackPoolConfig.sol/struct.REVBuybackPoolConfig.md +21 -0
  37. package/docs/src/src/structs/REVConfig.sol/struct.REVConfig.md +35 -0
  38. package/docs/src/src/structs/REVCroptopAllowedPost.sol/struct.REVCroptopAllowedPost.md +28 -0
  39. package/docs/src/src/structs/REVDeploy721TiersHookConfig.sol/struct.REVDeploy721TiersHookConfig.md +34 -0
  40. package/docs/src/src/structs/REVDescription.sol/struct.REVDescription.md +23 -0
  41. package/docs/src/src/structs/REVLoan.sol/struct.REVLoan.md +28 -0
  42. package/docs/src/src/structs/REVLoanSource.sol/struct.REVLoanSource.md +16 -0
  43. package/docs/src/src/structs/REVStageConfig.sol/struct.REVStageConfig.md +44 -0
  44. package/docs/src/src/structs/REVSuckerDeploymentConfig.sol/struct.REVSuckerDeploymentConfig.md +16 -0
  45. package/foundry.lock +11 -0
  46. package/foundry.toml +23 -0
  47. package/package.json +31 -0
  48. package/remappings.txt +1 -0
  49. package/script/Deploy.s.sol +350 -0
  50. package/script/helpers/RevnetCoreDeploymentLib.sol +72 -0
  51. package/slither-ci.config.json +10 -0
  52. package/sphinx.lock +507 -0
  53. package/src/REVDeployer.sol +1257 -0
  54. package/src/REVLoans.sol +1333 -0
  55. package/src/interfaces/IREVDeployer.sol +198 -0
  56. package/src/interfaces/IREVLoans.sol +241 -0
  57. package/src/structs/REVAutoIssuance.sol +11 -0
  58. package/src/structs/REVConfig.sol +17 -0
  59. package/src/structs/REVCroptopAllowedPost.sol +20 -0
  60. package/src/structs/REVDeploy721TiersHookConfig.sol +25 -0
  61. package/src/structs/REVDescription.sol +14 -0
  62. package/src/structs/REVLoan.sol +19 -0
  63. package/src/structs/REVLoanSource.sol +11 -0
  64. package/src/structs/REVStageConfig.sol +34 -0
  65. package/src/structs/REVSuckerDeploymentConfig.sol +11 -0
  66. package/test/REV.integrations.t.sol +420 -0
  67. package/test/REVAutoIssuanceFuzz.t.sol +276 -0
  68. package/test/REVDeployerAuditRegressions.t.sol +328 -0
  69. package/test/REVInvincibility.t.sol +1275 -0
  70. package/test/REVInvincibilityHandler.sol +357 -0
  71. package/test/REVLifecycle.t.sol +364 -0
  72. package/test/REVLoans.invariants.t.sol +642 -0
  73. package/test/REVLoansAttacks.t.sol +739 -0
  74. package/test/REVLoansAuditRegressions.t.sol +314 -0
  75. package/test/REVLoansFeeRecovery.t.sol +704 -0
  76. package/test/REVLoansSourced.t.sol +1732 -0
  77. package/test/REVLoansUnSourced.t.sol +331 -0
  78. package/test/TestPR09_ConversionDocumentation.t.sol +304 -0
  79. package/test/TestPR10_LiquidationBehavior.t.sol +340 -0
  80. package/test/TestPR11_LowFindings.t.sol +571 -0
  81. package/test/TestPR12_FlashLoanSurplus.t.sol +305 -0
  82. package/test/TestPR13_CrossSourceReallocation.t.sol +302 -0
  83. package/test/TestPR15_CashOutCallerValidation.t.sol +320 -0
  84. package/test/TestPR16_ZeroRepayment.t.sol +297 -0
  85. package/test/TestPR21_Uint112Overflow.t.sol +251 -0
  86. package/test/TestPR22_HookArrayOOB.t.sol +221 -0
  87. package/test/TestPR26_BurnHeldTokens.t.sol +331 -0
  88. package/test/TestPR27_CEIPattern.t.sol +448 -0
  89. package/test/TestPR29_SwapTerminalPermission.t.sol +206 -0
  90. package/test/TestPR32_MixedFixes.t.sol +529 -0
  91. package/test/helpers/MaliciousContracts.sol +233 -0
  92. package/test/mock/MockBuybackDataHook.sol +61 -0
package/docs/book.css ADDED
@@ -0,0 +1,13 @@
1
+ table {
2
+ margin: 0 auto;
3
+ border-collapse: collapse;
4
+ width: 100%;
5
+ }
6
+
7
+ table td:first-child {
8
+ width: 15%;
9
+ }
10
+
11
+ table td:nth-child(2) {
12
+ width: 25%;
13
+ }
package/docs/book.toml ADDED
@@ -0,0 +1,13 @@
1
+ [book]
2
+ src = "src"
3
+ title = ""
4
+
5
+ [output.html]
6
+ no-section-label = true
7
+ additional-js = ["solidity.min.js"]
8
+ additional-css = ["book.css"]
9
+ mathjax-support = true
10
+ git-repository-url = "https://github.com/rev-net/revnet-core-v5"
11
+
12
+ [output.html.fold]
13
+ enable = true
@@ -0,0 +1,74 @@
1
+ hljs.registerLanguage("solidity",(()=>{"use strict";function e(){try{return!0
2
+ }catch(e){return!1}}
3
+ var a=/-?(\b0[xX]([a-fA-F0-9]_?)*[a-fA-F0-9]|(\b[1-9](_?\d)*(\.((\d_?)*\d)?)?|\.\d(_?\d)*)([eE][-+]?\d(_?\d)*)?|\b0)(?!\w|\$)/
4
+ ;e()&&(a=a.source.replace(/\\b/g,"(?<!\\$)\\b"));var s={className:"number",
5
+ begin:a,relevance:0},n={
6
+ keyword:"assembly let function if switch case default for leave break continue u256 jump jumpi stop return revert selfdestruct invalid",
7
+ built_in:"add sub mul div sdiv mod smod exp not lt gt slt sgt eq iszero and or xor byte shl shr sar addmod mulmod signextend keccak256 pc pop dup1 dup2 dup3 dup4 dup5 dup6 dup7 dup8 dup9 dup10 dup11 dup12 dup13 dup14 dup15 dup16 swap1 swap2 swap3 swap4 swap5 swap6 swap7 swap8 swap9 swap10 swap11 swap12 swap13 swap14 swap15 swap16 mload mstore mstore8 sload sstore msize gas address balance selfbalance caller callvalue calldataload calldatasize calldatacopy codesize codecopy extcodesize extcodecopy returndatasize returndatacopy extcodehash create create2 call callcode delegatecall staticcall log0 log1 log2 log3 log4 chainid origin gasprice basefee blockhash coinbase timestamp number difficulty gaslimit",
8
+ literal:"true false"},i={className:"string",
9
+ begin:/\bhex'(([0-9a-fA-F]{2}_?)*[0-9a-fA-F]{2})?'/},t={className:"string",
10
+ begin:/\bhex"(([0-9a-fA-F]{2}_?)*[0-9a-fA-F]{2})?"/};function r(e){
11
+ return e.inherit(e.APOS_STRING_MODE,{begin:/(\bunicode)?'/})}function l(e){
12
+ return e.inherit(e.QUOTE_STRING_MODE,{begin:/(\bunicode)?"/})}var o={
13
+ SOL_ASSEMBLY_KEYWORDS:n,baseAssembly:e=>{
14
+ var a=r(e),o=l(e),c=/[A-Za-z_$][A-Za-z_$0-9.]*/,d=e.inherit(e.TITLE_MODE,{
15
+ begin:/[A-Za-z$_][0-9A-Za-z$_]*/,lexemes:c,keywords:n}),u={className:"params",
16
+ begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,lexemes:c,keywords:n,
17
+ contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,o,s]},_={
18
+ className:"operator",begin:/:=|->/};return{keywords:n,lexemes:c,
19
+ contains:[a,o,i,t,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s,_,{
20
+ className:"function",lexemes:c,beginKeywords:"function",end:"{",excludeEnd:!0,
21
+ contains:[d,u,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,_]}]}},
22
+ solAposStringMode:r,solQuoteStringMode:l,HEX_APOS_STRING_MODE:i,
23
+ HEX_QUOTE_STRING_MODE:t,SOL_NUMBER:s,isNegativeLookbehindAvailable:e}
24
+ ;const{baseAssembly:c,solAposStringMode:d,solQuoteStringMode:u,HEX_APOS_STRING_MODE:_,HEX_QUOTE_STRING_MODE:m,SOL_NUMBER:b,isNegativeLookbehindAvailable:E}=o
25
+ ;return e=>{for(var a=d(e),s=u(e),n=[],i=0;i<32;i++)n[i]=i+1
26
+ ;var t=n.map((e=>8*e)),r=[];for(i=0;i<=80;i++)r[i]=i
27
+ ;var l=n.map((e=>"bytes"+e)).join(" ")+" ",o=t.map((e=>"uint"+e)).join(" ")+" ",g=t.map((e=>"int"+e)).join(" ")+" ",M=[].concat.apply([],t.map((e=>r.map((a=>e+"x"+a))))),p={
28
+ keyword:"var bool string int uint "+g+o+"byte bytes "+l+"fixed ufixed "+M.map((e=>"fixed"+e)).join(" ")+" "+M.map((e=>"ufixed"+e)).join(" ")+" enum struct mapping address new delete if else for while continue break return throw emit try catch revert unchecked _ function modifier event constructor fallback receive error virtual override constant immutable anonymous indexed storage memory calldata external public internal payable pure view private returns import from as using pragma contract interface library is abstract type assembly",
29
+ literal:"true false wei gwei szabo finney ether seconds minutes hours days weeks years",
30
+ built_in:"self this super selfdestruct suicide now msg block tx abi blockhash gasleft assert require Error Panic sha3 sha256 keccak256 ripemd160 ecrecover addmod mulmod log0 log1 log2 log3 log4"
31
+ },O={className:"operator",begin:/[+\-!~*\/%<>&^|=]/
32
+ },C=/[A-Za-z_$][A-Za-z_$0-9]*/,N={className:"params",begin:/\(/,end:/\)/,
33
+ excludeBegin:!0,excludeEnd:!0,lexemes:C,keywords:p,
34
+ contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,s,b,"self"]},f={
35
+ begin:/\.\s*/,end:/[^A-Za-z0-9$_\.]/,excludeBegin:!0,excludeEnd:!0,keywords:{
36
+ built_in:"gas value selector address length push pop send transfer call callcode delegatecall staticcall balance code codehash wrap unwrap name creationCode runtimeCode interfaceId min max"
37
+ },relevance:2},y=e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][0-9A-Za-z$_]*/,
38
+ lexemes:C,keywords:p}),w={className:"built_in",
39
+ begin:(E()?"(?<!\\$)\\b":"\\b")+"(gas|value|salt)(?=:)"};function x(e,a){return{
40
+ begin:(E()?"(?<!\\$)\\b":"\\b")+e+"\\.\\s*",end:/[^A-Za-z0-9$_\.]/,
41
+ excludeBegin:!1,excludeEnd:!0,lexemes:C,keywords:{built_in:e+" "+a},
42
+ contains:[f],relevance:10}}var h=c(e),v=e.inherit(h,{
43
+ contains:h.contains.concat([{begin:/\./,end:/[^A-Za-z0-9$.]/,excludeBegin:!0,
44
+ excludeEnd:!0,keywords:{built_in:"slot offset length address selector"},
45
+ relevance:2},{begin:/_/,end:/[^A-Za-z0-9$.]/,excludeBegin:!0,excludeEnd:!0,
46
+ keywords:{built_in:"slot offset"},relevance:2}])});return{aliases:["sol"],
47
+ keywords:p,lexemes:C,
48
+ contains:[a,s,_,m,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,b,w,O,{
49
+ className:"function",lexemes:C,
50
+ beginKeywords:"function modifier event constructor fallback receive error",
51
+ end:/[{;]/,excludeEnd:!0,
52
+ contains:[y,N,w,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:/%/
53
+ },x("msg","gas value data sender sig"),x("block","blockhash coinbase difficulty gaslimit basefee number timestamp chainid"),x("tx","gasprice origin"),x("abi","decode encode encodePacked encodeWithSelector encodeWithSignature encodeCall"),x("bytes","concat"),f,{
54
+ className:"class",lexemes:C,beginKeywords:"contract interface library",end:"{",
55
+ excludeEnd:!0,illegal:/[:"\[\]]/,contains:[{beginKeywords:"is",lexemes:C
56
+ },y,N,w,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{lexemes:C,
57
+ beginKeywords:"struct enum",end:"{",excludeEnd:!0,illegal:/[:"\[\]]/,
58
+ contains:[y,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
59
+ beginKeywords:"import",end:";",lexemes:C,keywords:"import from as",
60
+ contains:[y,a,s,_,m,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,O]},{
61
+ beginKeywords:"using",end:";",lexemes:C,keywords:"using for",
62
+ contains:[y,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,O]},{className:"meta",
63
+ beginKeywords:"pragma",end:";",lexemes:C,keywords:{
64
+ keyword:"pragma solidity experimental abicoder",
65
+ built_in:"ABIEncoderV2 SMTChecker v1 v2"},
66
+ contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.inherit(a,{
67
+ className:"meta-string"}),e.inherit(s,{className:"meta-string"})]},{
68
+ beginKeywords:"assembly",end:/\b\B/,
69
+ contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.inherit(v,{begin:"{",
70
+ end:"}",endsParent:!0,contains:v.contains.concat([e.inherit(v,{begin:"{",
71
+ end:"}",contains:v.contains.concat(["self"])})])})]}],illegal:/#/}}})());
72
+
73
+ // Ugly hack to reload HLJS
74
+ hljs.initHighlightingOnLoad();
@@ -0,0 +1,88 @@
1
+ # Revnet
2
+
3
+ This repo provides tools for deploying Revnets: Retailistic networks, using the Juicebox and Uniswap protocols for its implementation.
4
+
5
+ For a Retailism TLDR, see https://jango.eth.sucks/9E01E72C-6028-48B7-AD04-F25393307132/.
6
+
7
+ For more Retailism information, see:
8
+
9
+ A Retailistic View on CAC and LTV
10
+ https://jango.eth.limo/572BD957-0331-4977-8B2D-35F84D693276/
11
+
12
+ Modeling Retailism
13
+ https://jango.eth.limo/B762F3CC-AEFE-4DE0-B08C-7C16400AF718/
14
+
15
+ Retailism for Devs, Investors, and Customers
16
+ https://jango.eth.limo/3EB05292-0376-4B7D-AFCF-042B70673C3D/
17
+
18
+ Observations: Network dynamics similar between atoms, cells, organisms, groups, dance parties.
19
+ https://jango.eth.limo/CF40F5D2-7BFE-43A3-9C15-1C6547FBD15C/
20
+
21
+ Join the conversation here: https://discord.gg/nT3XqbzNEr
22
+
23
+ In this repo, you'll find:
24
+ - a basic revnet design implemented in `BasicRevnetDeployer`.
25
+ - a design that accepts other pay hooks implemented in `PayHookRevnetDeployer`, which accepts other pay hooks that'll get used throughout the revnet's lifetime as it receives payments.
26
+ - a design that supports tiered 721 pay hooks implemented in `Tiered721RevnetDeployer`, which accepts data to deploy a tiered 721 pay hook that'll get used throughout the network's lifetime as people pay in, alongside other pay hooks that may also be specified.
27
+ - a design supports croptop, implemented in `CroptopRevnetDeployer`, which accepts data to deploy a tiered 721 pay hook that'll get used throughout the project's lifetime as people pay in that can also be posted to by the public through the croptop publisher contract. See https://croptop.eth.limo for more context.
28
+
29
+ You can use these contracts to deploy treasuries from etherscan, or wherever else they've been exposed from.
30
+
31
+ ## Install
32
+
33
+ For `npm` projects (recommended):
34
+
35
+ ```bash
36
+ npm install @bananapus/721-hook
37
+ ```
38
+
39
+ For `forge` projects (not recommended):
40
+
41
+ ```bash
42
+ forge install Bananapus/nana-721-hook
43
+ ```
44
+
45
+ Add `@bananapus/721-hook/=lib/nana-721-hook/` to `remappings.txt`. You'll also need to install `nana-721-hook`'s dependencies and add similar remappings for them.
46
+
47
+ ## Develop
48
+
49
+ `nana-721-hook` uses [npm](https://www.npmjs.com/) for package management and the [Foundry](https://github.com/foundry-rs/foundry) development toolchain for builds, tests, and deployments. To get set up, [install Node.js](https://nodejs.org/en/download) and install [Foundry](https://github.com/foundry-rs/foundry):
50
+
51
+ ```bash
52
+ curl -L https://foundry.paradigm.xyz | sh
53
+ ```
54
+
55
+ You can download and install dependencies with:
56
+
57
+ ```bash
58
+ npm install && forge install
59
+ ```
60
+
61
+ If you run into trouble with `forge install`, try using `git submodule update --init --recursive` to ensure that nested submodules have been properly initialized.
62
+
63
+ Some useful commands:
64
+
65
+ | Command | Description |
66
+ | --------------------- | --------------------------------------------------- |
67
+ | `forge build` | Compile the contracts and write artifacts to `out`. |
68
+ | `forge fmt` | Lint. |
69
+ | `forge test` | Run the tests. |
70
+ | `forge build --sizes` | Get contract sizes. |
71
+ | `forge coverage` | Generate a test coverage report. |
72
+ | `foundryup` | Update foundry. Run this periodically. |
73
+ | `forge clean` | Remove the build artifacts and cache directories. |
74
+
75
+ To learn more, visit the [Foundry Book](https://book.getfoundry.sh/) docs.
76
+
77
+ ## Scripts
78
+
79
+ For convenience, several utility commands are available in `package.json`.
80
+
81
+ | Command | Description |
82
+ | --------------------------------- | -------------------------------------- |
83
+ | `npm test` | Run local tests. |
84
+ | `npm run coverage:lcov` | Generate an LCOV test coverage report. |
85
+ | `npm run deploy:ethereum-mainnet` | Deploy to Ethereum mainnet |
86
+ | `npm run deploy:ethereum-sepolia` | Deploy to Ethereum Sepolia testnet |
87
+ | `npm run deploy:optimism-mainnet` | Deploy to Optimism mainnet |
88
+ | `npm run deploy:optimism-testnet` | Deploy to Optimism testnet |
@@ -0,0 +1,20 @@
1
+ # Summary
2
+ - [Home](README.md)
3
+ # src
4
+ - [❱ interfaces](src/interfaces/README.md)
5
+ - [IREVDeployer](src/interfaces/IREVDeployer.sol/interface.IREVDeployer.md)
6
+ - [IREVLoans](src/interfaces/IREVLoans.sol/interface.IREVLoans.md)
7
+ - [❱ structs](src/structs/README.md)
8
+ - [REVAutoIssuance](src/structs/REVAutoIssuance.sol/struct.REVAutoIssuance.md)
9
+ - [REVBuybackHookConfig](src/structs/REVBuybackHookConfig.sol/struct.REVBuybackHookConfig.md)
10
+ - [REVBuybackPoolConfig](src/structs/REVBuybackPoolConfig.sol/struct.REVBuybackPoolConfig.md)
11
+ - [REVConfig](src/structs/REVConfig.sol/struct.REVConfig.md)
12
+ - [REVCroptopAllowedPost](src/structs/REVCroptopAllowedPost.sol/struct.REVCroptopAllowedPost.md)
13
+ - [REVDeploy721TiersHookConfig](src/structs/REVDeploy721TiersHookConfig.sol/struct.REVDeploy721TiersHookConfig.md)
14
+ - [REVDescription](src/structs/REVDescription.sol/struct.REVDescription.md)
15
+ - [REVLoan](src/structs/REVLoan.sol/struct.REVLoan.md)
16
+ - [REVLoanSource](src/structs/REVLoanSource.sol/struct.REVLoanSource.md)
17
+ - [REVStageConfig](src/structs/REVStageConfig.sol/struct.REVStageConfig.md)
18
+ - [REVSuckerDeploymentConfig](src/structs/REVSuckerDeploymentConfig.sol/struct.REVSuckerDeploymentConfig.md)
19
+ - [REVDeployer](src/REVDeployer.sol/contract.REVDeployer.md)
20
+ - [REVLoans](src/REVLoans.sol/contract.REVLoans.md)
@@ -0,0 +1,7 @@
1
+
2
+
3
+ # Contents
4
+ - [interfaces](/src/interfaces)
5
+ - [structs](/src/structs)
6
+ - [REVDeployer](REVDeployer.sol/contract.REVDeployer.md)
7
+ - [REVLoans](REVLoans.sol/contract.REVLoans.md)