diff --git a/helpers/contracts-deployments.ts b/helpers/contracts-deployments.ts index 2406c065..c514ee27 100644 --- a/helpers/contracts-deployments.ts +++ b/helpers/contracts-deployments.ts @@ -321,7 +321,6 @@ export const deployStableDebtToken = async ( return instance; } - export const deployVariableDebtToken = async ( args: [tEthereumAddress, tEthereumAddress, tEthereumAddress, string, string], @@ -346,6 +345,19 @@ export const deployVariableDebtToken = async ( return instance; } +export const deployGenericStableDebtToken = async () => withSaveAndVerify( + await new StableDebtTokenFactory(await getFirstSigner()).deploy(), + eContractid.StableDebtToken, + [], + false +); + +export const deployGenericVariableDebtToken = async () => withSaveAndVerify( + await new VariableDebtTokenFactory(await getFirstSigner()).deploy(), + eContractid.VariableDebtToken, + [], + false +); export const deployGenericAToken = async ( [poolAddress, underlyingAssetAddress, treasuryAddress, incentivesController, name, symbol]: [