Skip to content

Commit

Permalink
fix: add more farm events
Browse files Browse the repository at this point in the history
  • Loading branch information
yasha-black committed May 2, 2023
1 parent 118fd2a commit b48b8b7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/events/farm/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,21 @@ import { FarmProps, StakeProps } from './props';

export type FarmEvents = {
'Farm Click Add Liquidity': FarmProps;
'Farm Click Stake': FarmProps;

'Farm Stake Submit': FarmProps & StakeProps;
'Farm Stake Confirm Modal': FarmProps & StakeProps;
'Farm Stake Confirm Modal Error': FarmProps & StakeProps & ErrorProps;
'Farm Stake Sign Success': FarmProps & StakeProps;
'Farm Stake Sign Error': FarmProps & StakeProps & ErrorProps;
'Farm Stake Cancel Sign': FarmProps & StakeProps;
'Farm Click Manage Add Liquidity': FarmProps;
'Farm Click Manage Unstake': FarmProps;

'Farm Unstake Confirm Modal': FarmProps & StakeProps;
'Farm Unstake Confirm Modal Error': FarmProps & StakeProps & ErrorProps;
'Farm Unstake Sign Success': FarmProps & StakeProps;
'Farm Unstake Sign Error': FarmProps & StakeProps & ErrorProps;

'Farm Click Manage Add Liquidity': FarmProps;
'Farm Click Manage Unstake': FarmProps;
'Farm Click Manage Stake': FarmProps;
};

0 comments on commit b48b8b7

Please sign in to comment.