Skip to content

Commit

Permalink
Merge pull request #120 from secretkeylabs/eng-4574/feature-flag-paypal
Browse files Browse the repository at this point in the history
ENG-4564: Add PayPal to FeatureId type
  • Loading branch information
jordankzf authored Jul 1, 2024
2 parents b54dadc + 9d8d274 commit 387b335
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions types/api/xverse/appFeatures.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { NetworkType } from '../../network';

export type FeatureId = 'RUNES_SUPPORT' | 'SWAPS' | 'RUNES_LISTING';

export enum FeatureId {
RUNES_SUPPORT = 'RUNES_SUPPORT',
RUNES_LISTING = 'RUNES_LISTING',
SWAPS = 'SWAPS',
PAYPAL = 'PAYPAL',
}
export type AppFeaturesContext = {
network: NetworkType;
paymentAddress: string;
Expand Down

0 comments on commit 387b335

Please sign in to comment.