@@ -15,20 +15,24 @@ const func: DeployFunction = async ({ deployments, ethers, network }) => {
15
15
// Otherwise, we're using the proxy admin address from the desired network
16
16
proxyAdmin = CONTRACTS_ADDRESSES [ network . config . chainId as ChainId ] . ProxyAdmin ! ;
17
17
}
18
+ // Using the proxyAdminGuardian for Avalanche
19
+ proxyAdmin = '0xe14bFA5575d9906BA35beb15C9DBe5C77bFdd5b5' ;
18
20
console . log ( 'deployer ' , deployer . address ) ;
19
21
20
22
console . log ( 'Now deploying the AngleHelpers contract' ) ;
21
23
console . log ( 'Starting with the implementation' ) ;
22
- const angleHelpersImplementation = await deploy ( 'AngleHelpers_Arbitrum_Implementation ' , {
24
+ const angleHelpersImplementation = await deploy ( 'AngleHelpers_Avalanche_Implementation ' , {
23
25
contract : 'AngleBorrowHelpers' ,
24
26
from : deployer . address ,
25
27
} ) ;
26
28
27
- console . log ( `Successfully deployed the Arbitrum implementation for AngleBorrowHelpers at ${ angleHelpersImplementation . address } \n` ) ;
29
+ console . log (
30
+ `Successfully deployed the Avalanche implementation for AngleBorrowHelpers at ${ angleHelpersImplementation . address } \n` ,
31
+ ) ;
28
32
29
33
console . log ( 'Now deploying the Proxy' ) ;
30
34
console . log ( `Proxy admin: ${ proxyAdmin } ` ) ;
31
- const angleHelpers = await deploy ( 'AngleBorrowHelpersArbitrum ' , {
35
+ const angleHelpers = await deploy ( 'AngleBorrowHelpersAvalanche ' , {
32
36
contract : 'TransparentUpgradeableProxy' ,
33
37
from : deployer . address ,
34
38
args : [ angleHelpersImplementation . address , proxyAdmin , '0x' ] ,
0 commit comments