File tree Expand file tree Collapse file tree
deploy/tools/envs-validator Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import * as uiSchemas from './schemas/ui';
1212import * as featuresSchemas from './schemas/features' ;
1313import servicesSchemas from './schemas/services' ;
1414import { replaceQuotes } from 'configs/app/utils' ;
15+ import { IDENTICON_TYPES } from 'types/views/address' ;
1516
1617const schema = yup
1718 . object ( )
@@ -38,6 +39,10 @@ const schema = yup
3839 NEXT_PUBLIC_NETWORK_SHORT_NAME : yup . string ( ) ,
3940 NEXT_PUBLIC_IS_TESTNET : yup . boolean ( ) ,
4041
42+ // 3. UI views configuration
43+ // Some settings that we actually support in multichain mode
44+ NEXT_PUBLIC_VIEWS_ADDRESS_IDENTICON_TYPE : yup . string ( ) . oneOf ( IDENTICON_TYPES ) ,
45+
4146 // 5. Features configuration
4247 // NOTE!: Not all features are supported in multichain mode, and some of them not relevant or enabled per chain basis
4348 // Below listed supported features and the features that are enabled by default, so we have to turn them off
You can’t perform that action at this time.
0 commit comments