Skip to content

Commit

Permalink
fix: update fee currency
Browse files Browse the repository at this point in the history
  • Loading branch information
yasha-black committed Mar 22, 2023
1 parent be53139 commit 3a5ee86
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/events/generalProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export type LiquidityOperationBasedProps = {
export type OperationSettingsProps = {
settings_slippage: number;
settings_nitro: number;
settings_fee_currency: 'erg' | 'spf' | 'ada';
settings_fee_currency: FeeCurrency;
};

export type ErrorProps = {
Expand All @@ -51,6 +51,12 @@ export type ElementLocationProps = {
| 'chaining-modal';
};

export type FeeCurrency =
| 'ergo-erg'
| 'ergo-spf'
| 'cardano-ada'
| 'cardano-spf';

export type LocaleProps = {
locale: string;
};
Expand Down

0 comments on commit 3a5ee86

Please sign in to comment.