Skip to content

Commit

Permalink
Test passinfg for Opti & Gnosis
Browse files Browse the repository at this point in the history
still failing for Ethv3 & Base
  • Loading branch information
Rozengarden committed Jun 13, 2024
1 parent 0f5228f commit 375b251
Show file tree
Hide file tree
Showing 8 changed files with 92 additions and 4 deletions.
1 change: 1 addition & 0 deletions .assets/982b4fb6e2527921645edf26069ca5a944a85de5.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions .assets/df5063c94fec0289ac8349d5c84e5a33a4a6ccf6.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
## Reserve changes

### Reserves altered

#### WETH ([0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1](https://gnosisscan.io/address/0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1))

| description | value before | value after |
| --- | --- | --- |
| interestRateStrategy | [0xD84d86083010FB683f1e8fA3809ee8DC90A4C4DB](https://gnosisscan.io/address/0xD84d86083010FB683f1e8fA3809ee8DC90A4C4DB) | [0xD3120200c339f608C394CCF9cBAD4bABab63B5dD](https://gnosisscan.io/address/0xD3120200c339f608C394CCF9cBAD4bABab63B5dD) |
| variableRateSlope1 | 3.3 % | 2.7 % |
| baseStableBorrowRate | 5.3 % | 4.7 % |
| interestRate | ![before](/.assets/1a2d00464fd0707711f315bbce0579c505aef532.svg) | ![after](/.assets/df5063c94fec0289ac8349d5c84e5a33a4a6ccf6.svg) |

## Raw diff

```json
{
"reserves": {
"0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1": {
"interestRateStrategy": {
"from": "0xD84d86083010FB683f1e8fA3809ee8DC90A4C4DB",
"to": "0xD3120200c339f608C394CCF9cBAD4bABab63B5dD"
}
}
},
"strategies": {
"0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1": {
"address": {
"from": "0xD84d86083010FB683f1e8fA3809ee8DC90A4C4DB",
"to": "0xD3120200c339f608C394CCF9cBAD4bABab63B5dD"
},
"baseStableBorrowRate": {
"from": "53000000000000000000000000",
"to": "47000000000000000000000000"
},
"variableRateSlope1": {
"from": "33000000000000000000000000",
"to": "27000000000000000000000000"
}
}
}
}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
## Reserve changes

### Reserves altered

#### WETH ([0x4200000000000000000000000000000000000006](https://optimistic.etherscan.io/address/0x4200000000000000000000000000000000000006))

| description | value before | value after |
| --- | --- | --- |
| interestRateStrategy | [0x16F9bBeE415e519F184Fe1c09d653C6567e4eb2f](https://optimistic.etherscan.io/address/0x16F9bBeE415e519F184Fe1c09d653C6567e4eb2f) | [0x129F838C3339f64a026aeb334Ffd5d55C2E94935](https://optimistic.etherscan.io/address/0x129F838C3339f64a026aeb334Ffd5d55C2E94935) |
| variableRateSlope1 | 3 % | 2.7 % |
| baseStableBorrowRate | 6 % | 5.7 % |
| interestRate | ![before](/.assets/5a987481fcd21ac926a7663682a9aa4ac8703d67.svg) | ![after](/.assets/982b4fb6e2527921645edf26069ca5a944a85de5.svg) |

## Raw diff

```json
{
"reserves": {
"0x4200000000000000000000000000000000000006": {
"interestRateStrategy": {
"from": "0x16F9bBeE415e519F184Fe1c09d653C6567e4eb2f",
"to": "0x129F838C3339f64a026aeb334Ffd5d55C2E94935"
}
}
},
"strategies": {
"0x4200000000000000000000000000000000000006": {
"address": {
"from": "0x16F9bBeE415e519F184Fe1c09d653C6567e4eb2f",
"to": "0x129F838C3339f64a026aeb334Ffd5d55C2E94935"
},
"baseStableBorrowRate": {
"from": "60000000000000000000000000",
"to": "57000000000000000000000000"
},
"variableRateSlope1": {
"from": "30000000000000000000000000",
"to": "27000000000000000000000000"
}
}
}
}
```
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ contract AaveV3Base_OptimizeETHCorrelatedAssetParameters_20240612_Test is Protoc
AaveV3Base_OptimizeETHCorrelatedAssetParameters_20240612 internal proposal;

function setUp() public {
vm.createSelectFork(vm.rpcUrl('base'), 15720041);
vm.createSelectFork(vm.rpcUrl('base'), 15759404);
proposal = new AaveV3Base_OptimizeETHCorrelatedAssetParameters_20240612();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ contract AaveV3Ethereum_OptimizeETHCorrelatedAssetParameters_20240612_Test is Pr
AaveV3Ethereum_OptimizeETHCorrelatedAssetParameters_20240612 internal proposal;

function setUp() public {
vm.createSelectFork(vm.rpcUrl('mainnet'), 20078561);
vm.createSelectFork(vm.rpcUrl('mainnet'), 20084932);
proposal = new AaveV3Ethereum_OptimizeETHCorrelatedAssetParameters_20240612();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ contract AaveV3Gnosis_OptimizeETHCorrelatedAssetParameters_20240612_Test is Prot
AaveV3Gnosis_OptimizeETHCorrelatedAssetParameters_20240612 internal proposal;

function setUp() public {
vm.createSelectFork(vm.rpcUrl('gnosis'), 34432968);
vm.createSelectFork(vm.rpcUrl('gnosis'), 34448387);
proposal = new AaveV3Gnosis_OptimizeETHCorrelatedAssetParameters_20240612();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ contract AaveV3Optimism_OptimizeETHCorrelatedAssetParameters_20240612_Test is Pr
AaveV3Optimism_OptimizeETHCorrelatedAssetParameters_20240612 internal proposal;

function setUp() public {
vm.createSelectFork(vm.rpcUrl('optimism'), 121315273);
vm.createSelectFork(vm.rpcUrl('optimism'), 121354851);
proposal = new AaveV3Optimism_OptimizeETHCorrelatedAssetParameters_20240612();
}

Expand Down

0 comments on commit 375b251

Please sign in to comment.