Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export const DEFAULT_DISABLED_SMART_TRANSACTIONS_FEATURE_FLAGS = {
extensionReturnTxHashAsapBatch: false,
mobileReturnTxHashAsap: false,
extensionSkipSmartTransactionStatusPage: false,
gaslessBridgeWith7702Enabled: false,
batchStatusPollingInterval: 1000,
},
} as const;
2 changes: 2 additions & 0 deletions src/featureFlags/validators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ export const SmartTransactionsNetworkConfigSchema = type({
extensionSkipSmartTransactionStatusPage: optional(boolean()),
/** Polling interval in milliseconds for batch status updates */
batchStatusPollingInterval: optional(number()),
/** Whether gasless bridge with 7702 is enabled for the network */
gaslessBridgeWith7702Enabled: optional(boolean()),
/** Custom sentinel URL for the network */
sentinelUrl: optional(string()),
});
Expand Down
Loading