Skip to content

Commit

Permalink
Fixed stream duration
Browse files Browse the repository at this point in the history
  • Loading branch information
eboadom committed Mar 26, 2024
1 parent 09d4043 commit 7b07432
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ contract AaveV3Ethereum_AaveBGDPhase3_20240325 is IProposalGenericExecutor {
uint256 public constant SCOPE_2_AUSDC_UPFRONT = 760_000e6;
uint256 public constant SCOPE_2_AAVE_STREAM = 4_500 ether;
uint256 public constant SCOPE_2_AUSDC_STREAM = 1_140_000e6;
uint256 public constant SCOPE_2_STREAM_DURATION = 1; // 1 block
uint256 public constant SCOPE_2_STREAM_DURATION = 1; // 1 second

function execute() external {
// UPFRONT
Expand Down Expand Up @@ -84,7 +84,7 @@ contract AaveV3Ethereum_AaveBGDPhase3_20240325 is IProposalGenericExecutor {
SCOPE_2_AUSDC_STREAM,
AaveV3EthereumAssets.USDC_A_TOKEN,
block.timestamp + 120 days, // start of the stream will be after 4 months
block.timestamp + 120 days + 1 // end of the stream will be one second after the start
block.timestamp + 120 days + SCOPE_2_STREAM_DURATION // end of the stream will be one second after the start
);
}
}

0 comments on commit 7b07432

Please sign in to comment.