Skip to content

Commit 5068dad

Browse files
authored
Merge pull request #720 from fei-protocol/release/2.5.2
Release/2.5.2
2 parents e0c2b53 + ebd3372 commit 5068dad

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

hardhat.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export default {
5252
chainId: 5777, // Any network (default: none)
5353
forking: enableMainnetForking
5454
? {
55-
url: `https://eth-mainnet.alchemyapi.io/v2/${mainnetAlchemyApiKey}`
56-
// blockNumber: 13968350
55+
url: `https://eth-mainnet.alchemyapi.io/v2/${mainnetAlchemyApiKey}`,
56+
blockNumber: 14551200
5757
}
5858
: undefined
5959
},

protocol-configuration/collateralizationOracle.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ const collateralizationAddresses = {
1515
'rariPool72FeiPCVDepositWrapper',
1616
'rariPool128FeiPCVDepositWrapper',
1717
'rariPool22FeiPCVDepositWrapper',
18-
'feiBuybackLensNoFee'
18+
'feiBuybackLensNoFee',
19+
'convexPoolPCVDepositWrapper',
20+
'compoundPCVDepositWrapper'
1921
],
2022
lusd: [
2123
'liquityFusePoolLusdPCVDeposit',

protocol-configuration/mainnetAddresses.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1855,6 +1855,16 @@ const MainnetAddresses: MainnetAddresses = {
18551855
artifactName: 'RariGovernanceTokenUniswapDistributor',
18561856
address: '0x1fa69a416bcf8572577d3949b742fbb0a9cd98c7',
18571857
category: AddressCategory.Governance
1858+
},
1859+
convexPoolPCVDepositWrapper: {
1860+
artifactName: 'PCVDepositWrapper',
1861+
address: '0x1370CA8655C255948d6c6110066d78680601B7c2',
1862+
category: AddressCategory.PCV
1863+
},
1864+
compoundPCVDepositWrapper: {
1865+
artifactName: 'PCVDepositWrapper',
1866+
address: '0xB80B3dc4F8B30589477b2bA0e4EF2b8224bDf0a5',
1867+
category: AddressCategory.PCV
18581868
}
18591869
};
18601870

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
import { ProposalCategory, ProposalsConfigMap } from '@custom-types/types';
22

3-
import fip_94 from '@proposals/description/fip_94';
4-
5-
const proposals: ProposalsConfigMap = {
6-
fip_94: {
7-
deploy: false,
8-
proposalId: null,
9-
affectedContractSignoff: ['rariTimelock'],
10-
deprecatedContractSignoff: [],
11-
category: ProposalCategory.DAO,
12-
totalValue: 0,
13-
proposal: fip_94
14-
}
15-
};
3+
const proposals: ProposalsConfigMap = {};
164

175
export default proposals;

test/integration/tests/fip-38-tokemak.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const TOKEMAK_MANAGER_ROLLOVER_ADDRESS = '0x90b6C61B102eA260131aB48377E143D6EB3A
1414
const TOKEMAK_MANAGER_ADDRESS = '0xa86e412109f77c45a3bc1c5870b880492fb86a14'; // tokemak manager
1515
const IPFS_JSON_FILE_HASH = 'QmP4Vzg45jExr3mcNsx9xxV1fNft95uVzgZGeLtkBXgpkx';
1616

17-
describe.only('e2e-fip-38-tokemak', function () {
17+
describe('e2e-fip-38-tokemak', function () {
1818
let contracts: NamedContracts;
1919
let deployAddress: string;
2020
let e2eCoord: TestEndtoEndCoordinator;

0 commit comments

Comments
 (0)