@@ -140,7 +140,7 @@ library DeployPayloads {
140140 IPoolConfigurator poolConfigurator ,
141141 address collector ,
142142 address incentivesController
143- ) public returns (V301UpgradePayload) {
143+ ) internal returns (V301UpgradePayload) {
144144 address poolImpl = _deployPoolImpl (poolAddressesProvider);
145145 return
146146 _deployProposal ({
@@ -159,7 +159,7 @@ library DeployPayloads {
159159 IPoolConfigurator poolConfigurator ,
160160 address collector ,
161161 address incentivesController
162- ) public returns (V301UpgradePayload) {
162+ ) internal returns (V301UpgradePayload) {
163163 address poolImpl = _deployL2PoolImpl (poolAddressesProvider);
164164 return
165165 _deployProposal ({
@@ -172,7 +172,7 @@ library DeployPayloads {
172172 });
173173 }
174174
175- function deployPolygon () public returns (V301UpgradePayload) {
175+ function deployPolygon () internal returns (V301UpgradePayload) {
176176 return
177177 _deploy ({
178178 poolAddressesProvider: AaveV3Polygon.POOL_ADDRESSES_PROVIDER,
@@ -183,7 +183,7 @@ library DeployPayloads {
183183 });
184184 }
185185
186- function deployAvalanche () public returns (V301UpgradePayload) {
186+ function deployAvalanche () internal returns (V301UpgradePayload) {
187187 return
188188 _deploy ({
189189 poolAddressesProvider: AaveV3Avalanche.POOL_ADDRESSES_PROVIDER,
@@ -194,7 +194,7 @@ library DeployPayloads {
194194 });
195195 }
196196
197- function deployFantom () public returns (V301UpgradePayload) {
197+ function deployFantom () internal returns (V301UpgradePayload) {
198198 return
199199 _deploy ({
200200 poolAddressesProvider: AaveV3Fantom.POOL_ADDRESSES_PROVIDER,
@@ -205,7 +205,7 @@ library DeployPayloads {
205205 });
206206 }
207207
208- function deployHarmony () public returns (V301UpgradePayload) {
208+ function deployHarmony () internal returns (V301UpgradePayload) {
209209 return
210210 _deploy ({
211211 poolAddressesProvider: AaveV3Harmony.POOL_ADDRESSES_PROVIDER,
@@ -216,7 +216,7 @@ library DeployPayloads {
216216 });
217217 }
218218
219- function deployOptimism () public returns (V301UpgradePayload) {
219+ function deployOptimism () internal returns (V301UpgradePayload) {
220220 return
221221 _deployL2 ({
222222 poolAddressesProvider: AaveV3Optimism.POOL_ADDRESSES_PROVIDER,
@@ -227,7 +227,7 @@ library DeployPayloads {
227227 });
228228 }
229229
230- function deployArbitrum () public returns (V301UpgradePayload) {
230+ function deployArbitrum () internal returns (V301UpgradePayload) {
231231 return
232232 _deployL2 ({
233233 poolAddressesProvider: AaveV3Arbitrum.POOL_ADDRESSES_PROVIDER,
0 commit comments