Skip to content

Commit

Permalink
fix: env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanya-atatakai committed Dec 13, 2024
1 parent f9d3f4c commit b28c680
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions frontend/constants/serviceTemplates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,12 @@ export const SERVICE_TEMPLATES: ServiceTemplate[] = [
},
},
env_variables: {
MODE_LEDGER_RPC: {
name: 'Mode ledger RPC',
description: '',
value: '',
provision_type: EnvProvisionType.COMPUTED,
},
SAFE_CONTRACT_ADDRESSES: {
name: 'Safe contract address',
description: '',
Expand All @@ -292,19 +298,19 @@ export const SERVICE_TEMPLATES: ServiceTemplate[] = [
name: 'Tenderly access key',
description: '',
value: '',
provision_type: EnvProvisionType.COMPUTED,
provision_type: EnvProvisionType.USER,
},
TENDERLY_ACCOUNT_SLUG: {
name: 'Tenderly account slug',
description: '',
value: '',
provision_type: EnvProvisionType.COMPUTED,
provision_type: EnvProvisionType.USER,
},
TENDERLY_PROJECT_SLUG: {
name: 'Tenderly project slug',
description: '',
value: '',
provision_type: EnvProvisionType.COMPUTED,
provision_type: EnvProvisionType.USER,
},
STAKING_TOKEN_CONTRACT_ADDRESS: {
name: 'Staking token contract address',
Expand All @@ -316,7 +322,7 @@ export const SERVICE_TEMPLATES: ServiceTemplate[] = [
name: 'Coingecko API key',
description: '',
value: '',
provision_type: EnvProvisionType.COMPUTED,
provision_type: EnvProvisionType.USER,
},
STAKING_CHAIN: {
name: 'Staking chain',
Expand Down Expand Up @@ -357,8 +363,9 @@ export const SERVICE_TEMPLATES: ServiceTemplate[] = [
SELECTED_STRATEGIES: {
name: 'Selected strategies',
description: '',
value: '',
provision_type: EnvProvisionType.COMPUTED,
value:
'["merkl_pools_search", "balancer_pools_search", "asset_lending"]',
provision_type: EnvProvisionType.FIXED,
},
},
},
Expand Down

0 comments on commit b28c680

Please sign in to comment.