-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge development branch to master branch (#537)
## Key updates list * SOV-2704-three-years-team-vestings (#508) * SOV-2552 staking foundry fuzzy testing (#513) * SOV-585 transfer the contract guardianship (#514) * feature: add script to transfer amm ownership to governance (#450) * SOV-3436-Proton-release Move sovrynSwapsImpl to internal protocol module and public functions to a protocol module SwapsImplSovrynSwapModule. Includes SOV-3497 Refactor SovrynSwapsImpl. Deployment via bitocracy - SIP-0073. * SOV-3613 Electron release * SOV-3613: adding LoanOpenings and SwapsImplSovrynSwapLib deployment objects for integrated QA tests * SOV-3613: adding VestingFactory and VestingLogic deployment objects for integretaed QA tests * SOV-3161 Increase borrowing debt fix * SOV-625 remove governance withdraw tokens remove governanceWithdrawTokens from vestingLogic using vesting start date to start withdrawal introduce partial withdraw tokens in vesting contract --------- Co-authored-by: ororopickpocket <[email protected]> Co-authored-by: Santo Sinar Pandean <[email protected]> Co-authored-by: Ubuntu <[email protected]> Co-authored-by: Ororo Pickpocket <[email protected]> Co-authored-by: cwsnt <[email protected]>
- Loading branch information
1 parent
38bee07
commit c8e36ed
Showing
868 changed files
with
339,303 additions
and
24,214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ coverage | |
types | ||
reports | ||
tmp | ||
temp | ||
deployment/deployments |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,7 @@ module.exports = { | |
parserOptions: { | ||
ecmaVersion: 2020, | ||
}, | ||
rules: {}, | ||
rules: { | ||
"compiler-version": ["off"], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "lib/forge-std"] | ||
path = foundry/lib/forge-std | ||
url = https://github.com/foundry-rs/forge-std |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,8 @@ types/ | |
venv/ | ||
deployment/deployments | ||
tmp/ | ||
temp/ | ||
out/ | ||
foundry/ | ||
cache_forge/ | ||
safe/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,7 @@ module.exports = { | |
"node_modules", | ||
"interfaces", | ||
"events", | ||
"tmp", | ||
"temp", | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
{ | ||
"extends": "solhint:recommended", | ||
"plugins": ["prettier"], | ||
"extends": "solhint:recommended", | ||
"rules": { | ||
"prettier/prettier": "error", | ||
"max-line-length": ["warn", 140], | ||
"compiler-version": ["warn"] | ||
"compiler-version": "warn", | ||
"no-global-import": "warn", | ||
"no-console": "warn", | ||
"private-vars-leading-underscore": "warn" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.