Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions internal/super/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ func startInteractiveInit(
projectTypes := []ProjectType{
ProjectTypeDefault,
ProjectTypeScheduledTransactions,
ProjectTypeStablecoin,
// ProjectTypeStablecoin, // Temporarily disabled
ProjectTypeDeFiActions,
ProjectTypeCustom,
}
Expand Down Expand Up @@ -296,7 +296,7 @@ func startInteractiveInit(
return "", err
}
projectType = ProjectTypeDefault
case ProjectTypeScheduledTransactions, ProjectTypeStablecoin, ProjectTypeDeFiActions:
case ProjectTypeScheduledTransactions, ProjectTypeDeFiActions: // ProjectTypeStablecoin temporarily disabled
err := installProjectDependencies(logger, state, tempDir, projectType)
if err != nil {
return "", err
Expand All @@ -312,7 +312,7 @@ func startInteractiveInit(
}

// Add project-specific contract deployments
if projectType == ProjectTypeScheduledTransactions || projectType == ProjectTypeStablecoin || projectType == ProjectTypeDeFiActions {
if projectType == ProjectTypeScheduledTransactions || projectType == ProjectTypeDeFiActions { // ProjectTypeStablecoin temporarily disabled
err = addContractDeployments(state, projectType)
if err != nil {
return "", err
Expand Down
Loading