File tree 1 file changed +5
-2
lines changed 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ type EngineFeature =
10
10
| "KEYPAIR_AUTH"
11
11
| "CONTRACT_SUBSCRIPTIONS"
12
12
| "IP_ALLOWLIST"
13
- | "HETEROGENEOUS_WALLET_TYPES" ;
13
+ | "HETEROGENEOUS_WALLET_TYPES"
14
+ | "SMART_BACKEND_WALLETS" ;
14
15
15
16
const ReplySchemaOk = Type . Object ( {
16
17
status : Type . String ( ) ,
@@ -22,6 +23,7 @@ const ReplySchemaOk = Type.Object({
22
23
Type . Literal ( "CONTRACT_SUBSCRIPTIONS" ) ,
23
24
Type . Literal ( "IP_ALLOWLIST" ) ,
24
25
Type . Literal ( "HETEROGENEOUS_WALLET_TYPES" ) ,
26
+ Type . Literal ( "SMART_BACKEND_WALLETS" ) ,
25
27
] ) ,
26
28
) ,
27
29
} ) ;
@@ -82,7 +84,8 @@ const getFeatures = (): EngineFeature[] => {
82
84
const features : EngineFeature [ ] = [
83
85
"IP_ALLOWLIST" ,
84
86
"HETEROGENEOUS_WALLET_TYPES" ,
85
- "CONTRACT_SUBSCRIPTIONS"
87
+ "CONTRACT_SUBSCRIPTIONS" ,
88
+ "SMART_BACKEND_WALLETS" ,
86
89
] ;
87
90
88
91
if ( env . ENABLE_KEYPAIR_AUTH ) features . push ( "KEYPAIR_AUTH" ) ;
You can’t perform that action at this time.
0 commit comments