-
Notifications
You must be signed in to change notification settings - Fork 93
/
error.rs
108 lines (100 loc) · 3.58 KB
/
error.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
use anchor_lang::prelude::*;
#[error_code]
pub enum ErrorCode {
#[msg("LOK")]
LOK,
#[msg("Not approved")]
NotApproved,
#[msg("invalid update amm config flag")]
InvalidUpdateConfigFlag,
#[msg("Account lack")]
AccountLack,
#[msg("Remove liquitity, collect fees owed and reward then you can close position account")]
ClosePositionErr,
#[msg("Minting amount should be greater than 0")]
ZeroMintAmount,
#[msg("Tick out of range")]
InvaildTickIndex,
#[msg("The lower tick must be below the upper tick")]
TickInvaildOrder,
#[msg("The tick must be greater, or equal to the minimum tick(-221818)")]
TickLowerOverflow,
#[msg("The tick must be lesser than, or equal to the maximum tick(221818)")]
TickUpperOverflow,
#[msg("tick % tick_spacing must be zero")]
TickAndSpacingNotMatch,
#[msg("Invaild tick array account")]
InvalidTickArray,
#[msg("Invaild tick array boundary")]
InvalidTickArrayBoundary,
#[msg("Square root price limit overflow")]
SqrtPriceLimitOverflow,
// second inequality must be < because the price can never reach the price at the max tick
#[msg("sqrt_price_x64 out of range")]
SqrtPriceX64,
// Liquidity Sub
#[msg("Liquidity sub delta L must be smaller than before")]
LiquiditySubValueErr,
// Liquidity Add
#[msg("Liquidity add delta L must be greater, or equal to before")]
LiquidityAddValueErr,
#[msg("Invaild liquidity when update position")]
InvaildLiquidity,
#[msg("Both token amount must not be zero while supply liquidity")]
ForbidBothZeroForSupplyLiquidity,
#[msg("Liquidity insufficient")]
LiquidityInsufficient,
/// swap errors
// Non fungible position manager
#[msg("Transaction too old")]
TransactionTooOld,
#[msg("Price slippage check")]
PriceSlippageCheck,
#[msg("Too little output received")]
TooLittleOutputReceived,
#[msg("Too much input paid")]
TooMuchInputPaid,
#[msg("Swap special amount can not be zero")]
ZeroAmountSpecified,
#[msg("Input pool vault is invalid")]
InvalidInputPoolVault,
#[msg("Swap input or output amount is too small")]
TooSmallInputOrOutputAmount,
#[msg("Not enought tick array account")]
NotEnoughTickArrayAccount,
#[msg("Invaild first tick array account")]
InvalidFirstTickArrayAccount,
/// reward errors
#[msg("Invalid reward index")]
InvalidRewardIndex,
#[msg("The init reward token reach to the max")]
FullRewardInfo,
#[msg("The init reward token already in use")]
RewardTokenAlreadyInUse,
#[msg("The reward tokens must contain one of pool vault mint except the last reward")]
ExceptPoolVaultMint,
#[msg("Invalid reward init param")]
InvalidRewardInitParam,
#[msg("Invalid collect reward desired amount")]
InvalidRewardDesiredAmount,
#[msg("Invalid collect reward input account number")]
InvalidRewardInputAccountNumber,
#[msg("Invalid reward period")]
InvalidRewardPeriod,
#[msg(
"Modification of emissiones is allowed within 72 hours from the end of the previous cycle"
)]
NotApproveUpdateRewardEmissiones,
#[msg("uninitialized reward info")]
UnInitializedRewardInfo,
#[msg("Not support token_2022 mint extension")]
NotSupportMint,
#[msg("Missing tickarray bitmap extension account")]
MissingTickArrayBitmapExtensionAccount,
#[msg("Insufficient liquidity for this direction")]
InsufficientLiquidityForDirection,
#[msg("Max token overflow")]
MaxTokenOverflow,
#[msg("calculate overflow")]
CalculateOverflow,
}