Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(earn): Add feature gate for covering gas fees #5437

Merged
merged 2 commits into from
May 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/statsig/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export const FeatureGates = {
[StatsigFeatureGates.SHOW_JUMPSTART_SEND]: false,
[StatsigFeatureGates.SHOW_POINTS]: false,
[StatsigFeatureGates.SHOW_STABLECOIN_EARN]: false,
[StatsigFeatureGates.COVER_STABLECOIN_EARN_GAS_FEES]: false,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: SUBSIDIZE instead of COVER? (it seems like that's the term we've been using 🤷 )

} satisfies { [key in StatsigFeatureGates]: boolean }

export const ExperimentConfigs = {
Expand Down
1 change: 1 addition & 0 deletions src/statsig/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export enum StatsigFeatureGates {
SHOW_JUMPSTART_SEND = 'show_jumpstart_send',
SHOW_POINTS = 'show_points',
SHOW_STABLECOIN_EARN = 'show_stablecoin_earn',
COVER_STABLECOIN_EARN_GAS_FEES = 'cover_stablecoin_earn_gas_fees',
}

export enum StatsigExperiments {
Expand Down
Loading