Skip to content

Commit

Permalink
update audit report, CHANGELOG, internal version
Browse files Browse the repository at this point in the history
  • Loading branch information
mtabasco committed Nov 8, 2023
1 parent 0ab954e commit 696419f
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [v1.0.0.rc5] - 2023-10-02
## [v1.0.1] - 2023-11-08

- Add Quantstamp audit report

## [v1.0.0] - 2023-10-02

### Fixed

Expand All @@ -15,6 +19,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Added
- [bf0c51d](https://github.com/bloxapp/ssv-network/pull/263/commits/bf0c51d4df191018052d11425c9fcc252de61431) A validator can voluntarily exit.
- [ca3ad7f](https://github.com/bloxapp/ssv-network/commit/ca3ad7f3c77d732eb7d15510b0cc3a386eaf8eae) Add add SSVViews.getNetworkValidatorsCount()


## [v1.0.0.rc4] - 2023-08-31
Expand All @@ -25,3 +30,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- The DAO can set a maximum operator fee (SSV)
- Remove the setRegisterAuth function (register operator/validator without restrictions)
- SSVNetworkViews contract does not throw an error as a way of return.

## [Released]

## [v1.0.0.rc3] - 2023-07-17

- Audit fixes/recommendations
- Improve delegate call logic in SSVNetwork contract
Binary file modified contracts/audits/2023-30-10_Quantstamp_v1.0.0.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion contracts/libraries/CoreLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ library CoreLib {
event ModuleUpgraded(SSVModules indexed moduleId, address moduleAddress);

function getVersion() internal pure returns (string memory) {
return "v1.0.0.rc5";
return "v1.0.1";
}

function transferBalance(address to, uint256 amount) internal {
Expand Down
2 changes: 1 addition & 1 deletion contracts/test/libraries/CoreLibT.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "../../libraries/SSVStorage.sol";
library CoreLibT {

function getVersion() internal pure returns (string memory) {
return "v1.0.0.rc5";
return "v1.0.1";
}

function transfer(address to, uint256 amount) internal {
Expand Down
2 changes: 1 addition & 1 deletion test/deployment/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('Version upgrade tests', () => {

await ssvNetworkContract.updateModule(helpers.SSV_MODULES.SSV_VIEWS, viewsContract.address)

expect(await ssvNetworkViews.getVersion()).to.equal("v1.0.0.rc5");
expect(await ssvNetworkViews.getVersion()).to.equal("v1.0.1");
});

});
2 changes: 1 addition & 1 deletion test/helpers/contract-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const DataGenerator = {

export const initializeContract = async () => {
CONFIG = {
initialVersion: "v1.0.0.rc5",
initialVersion: "v1.0.1",
operatorMaxFeeIncrease: 1000,
declareOperatorFeePeriod: 3600, // HOUR
executeOperatorFeePeriod: 86400, // DAY
Expand Down

0 comments on commit 696419f

Please sign in to comment.