-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherror.rs
166 lines (161 loc) · 5.21 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
use anchor_lang::prelude::*;
#[error_code]
#[derive(PartialEq, Eq)]
pub enum ErrorCode {
#[msg("Number of checkpoint limit reached")]
TooManyCheckpoints,
#[msg("An arithmetic operation unexpectedly overflowed")]
GenericOverflow,
#[msg("An arithmetic operation unexpectedly underflowed")]
GenericUnderflow,
#[msg("Error deserializing checkpoint")]
CheckpointSerDe,
#[msg("Checkpoint out of bounds")]
CheckpointOutOfBounds,
#[msg("Can't recover account with a non-zero staking balance. Unstake your tokens first.")]
RecoverWithStake,
#[msg("Checkpoint not found")]
CheckpointNotFound,
#[msg("Invalid timestamp")]
InvalidTimestamp,
#[msg("No Weight")]
NoWeight,
#[msg("All weight cast")]
AllWeightCast,
#[msg("Vote would exceed weight")]
VoteWouldExceedWeight,
#[msg("Owner needs to own destination account")]
WithdrawToUnauthorizedAccount,
#[msg("Insufficient balance to cover the withdrawal")]
InsufficientWithdrawableBalance,
#[msg("Proposal already exists")]
ProposalAlreadyExists,
#[msg("Invalid message executor")]
InvalidMessageExecutor,
#[msg("Invalid spoke airlock")]
InvalidSpokeAirlock,
#[msg("Invalid current delegate")]
InvalidCurrentDelegate,
#[msg("Invalid stake account metadata")]
InvalidStakeAccountMetadata,
#[msg("Invalid stake account checkpoints provided")]
InvalidStakeAccountCheckpoints,
#[msg("Window length not found")]
WindowLengthNotFound,
#[msg("Next checkpoint data account is required")]
MissingNextCheckpointDataAccount,
#[msg("Exceeds the maximum allowable vote weight window length")]
ExceedsMaxAllowableVoteWeightWindowLength,
#[msg("Invalid next voter checkpoints")]
InvalidNextVoterCheckpoints,
#[msg("Proposal inactive")]
ProposalInactive,
#[msg("Other")]
Other,
}
#[error_code]
pub enum VestingError {
#[msg("Not fully vested yet")]
NotFullyVested,
#[msg("Vault is not in surplus")]
NotInSurplus,
#[msg("Vesting finalized")]
VestingFinalized,
#[msg("Vesting unfinalized")]
VestingUnfinalized,
#[msg("Integer overflow")]
Overflow,
#[msg("Integer underflow")]
Underflow,
#[msg("Invalid stake account delegate")]
InvalidStakeAccountCheckpoints,
#[msg("Error parsing stake_account_metadata and stake_account_checkpoints")]
ErrorOfStakeAccountParsing,
#[msg("Invalid stake account owner")]
InvalidStakeAccountOwner,
#[msg("Invalid vesting admin")]
InvalidVestingAdmin,
#[msg("Vested token balance does not match the balance in the vault")]
VestedBalanceMismatch,
#[msg("Invalid stake account metadata PDA")]
InvalidStakeAccountMetadataPDA,
#[msg("Invalid stake account checkpoints PDA")]
InvalidStakeAccountCheckpointsPDA,
#[msg("Invalid vesting balance PDA")]
InvalidVestingBalancePDA,
#[msg("Transfer vest to myself")]
TransferVestToMyself,
}
#[error_code]
pub enum QueriesSolanaVerifyError {
#[msg("Failed to parse response")]
FailedToParseResponse,
#[msg("Write authority mismatch")]
WriteAuthorityMismatch,
#[msg("Guardian set expired")]
GuardianSetExpired,
#[msg("Invalid message hash")]
InvalidMessageHash,
#[msg("No quorum")]
NoQuorum,
#[msg("Invalid guardian index non increasing")]
InvalidGuardianIndexNonIncreasing,
#[msg("Invalid guardian index out of range")]
InvalidGuardianIndexOutOfRange,
#[msg("Invalid signature")]
InvalidSignature,
#[msg("Invalid guardian key recovery")]
InvalidGuardianKeyRecovery,
}
#[error_code]
pub enum ProposalWormholeMessageError {
#[msg("Too many query responses")]
TooManyQueryResponses,
#[msg("Sender chain mismatch")]
SenderChainMismatch,
#[msg("Too many eth call results")]
TooManyEthCallResults,
#[msg("Invalid data length")]
InvalidDataLength,
#[msg("Error of contract_address parsing")]
ErrorOfContractAddressParsing,
#[msg("Error of signature parsing")]
ErrorOfSignatureParsing,
#[msg("Error of proposal_id parsing")]
ErrorOfProposalIdParsing,
#[msg("Error of vote_start parsing")]
ErrorOfVoteStartParsing,
#[msg("Invalid hub proposal metadata contract")]
InvalidHubProposalMetadataContract,
#[msg("Invalid proposal_id")]
InvalidProposalId,
#[msg("Non-finalized block")]
NonFinalizedBlock,
#[msg("Invalid ChainSpecificQuery")]
InvalidChainSpecificQuery,
#[msg("Invalid ChainSpecificResponse")]
InvalidChainSpecificResponse,
#[msg("Invalid function signature")]
InvalidFunctionSignature,
#[msg("Proposal not initialized since start is zero")]
ProposalNotInitialized,
}
#[error_code]
pub enum MessageExecutorError {
#[msg("Message already executed")]
MessageAlreadyExecuted,
#[msg("Failed parse VAA")]
FailedParseVaa,
#[msg("Invalid Emitter Chain")]
InvalidEmitterChain,
#[msg("Invalid hub dispatcher")]
InvalidHubDispatcher,
#[msg("Invalid wormhole core program")]
InvalidWormholeCoreProgram,
#[msg("Vaa not finalized")]
VaaNotFinalized,
#[msg("Missing Remaining account")]
MissedRemainingAccount,
#[msg("Message is not meant for this chain")]
InvalidWormholeChainId,
}