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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Leo library.

// The Leo library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// The Leo library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>.

use crate::create_messages;
use std::{
    error::Error as ErrorArg,
    fmt::{Debug, Display},
};

create_messages!(
    /// CliError enum that represents all the errors for the `leo-lang` crate.
    CliError,
    code_mask: 7000i32,
    code_prefix: "CLI",

    /// For when the CLI experiences an IO error.
    @backtraced
    cli_io_error {
        args: (error: impl ErrorArg),
        msg: format!("cli io error {error}"),
        help: None,
    }

    /// For when the CLI is given invalid user input.
    @backtraced
    cli_invalid_input {
        args: (error: impl Display),
        msg: format!("cli input error: {error}"),
        help: None,
    }

    /// For when the CLI fails to run something
    @backtraced
    cli_runtime_error {
        args: (error: impl Display),
        msg: format!("cli error: {error}"),
        help: None,
    }

    /// For when the CLI could not fetch the versions.
    @backtraced
    could_not_fetch_versions {
        args: (error: impl ErrorArg),
        msg: format!("Could not fetch versions: {error}"),
        help: None,
    }

    /// For when the CLI fails to enable ansi support.
    @backtraced
    failed_to_enable_ansi_support {
        args: (),
        msg: "failed to enable ansi_support",
        help: None,
    }

    /// For when the CLI fails to self update.
    @backtraced
    self_update_error {
        args: (error: impl ErrorArg),
        msg: format!("self update crate Error: {error}"),
        help: None,
    }

    /// For when the CLI fails to self update.
    @backtraced
    self_update_build_error {
        args: (error: impl ErrorArg),
        msg: format!("self update crate failed to build Error: {error}"),
        help: None,
    }

    /// For when the CLI has an old release version.
    @backtraced
    old_release_version {
        args: (current: impl Display, latest: impl Display),
        msg: format!("Old release version {current} {latest}"),
        help: None,
    }

    @backtraced
    failed_to_load_instructions {
        args: (error: impl Display),
        msg: format!("Failed to load compiled Aleo instructions into an Aleo file.\nError: {error}"),
        help: Some("Generated Aleo instructions have been left in `main.aleo`".to_string()),
    }

    @backtraced
    needs_leo_build {
        args: (),
        msg: "You must run leo build before deploying a program.".to_string(),
        help: None,
    }

    @backtraced
    failed_to_execute_build {
        args: (error: impl Display),
        msg: format!("Failed to execute the `build` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_execute_new {
        args: (error: impl Display),
        msg: format!("Failed to execute the `new` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_execute_run {
        args: (error: impl Display),
        msg: format!("Failed to execute the `run` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_execute_node {
        args: (error: impl Display),
        msg: format!("Failed to execute the `node` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_execute_deploy {
        args: (error: impl Display),
        msg: format!("Failed to execute the `deploy` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_parse_new {
        args: (error: impl Display),
        msg: format!("Failed to parse the `new` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_parse_run {
        args: (error: impl Display),
        msg: format!("Failed to parse the `run` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_parse_node {
        args: (error: impl Display),
        msg: format!("Failed to parse the `node` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_parse_deploy {
        args: (error: impl Display),
        msg: format!("Failed to parse the `deploy` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_parse_execute {
        args: (error: impl Display),
        msg: format!("Failed to parse the `execute` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_execute_execute {
        args: (error: impl Display),
        msg: format!("Failed to execute the `execute` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_parse_seed {
        args: (error: impl Display),
        msg: format!("Failed to parse the seed string for account.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_write_file {
        args: (error: impl Display),
        msg: format!("Failed to write file.\nIO Error: {error}"),
        help: None,
    }

    @backtraced
    failed_to_parse_private_key {
        args: (error: impl Display),
        msg: format!("Failed to parse private key.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_execute_account {
        args: (error: impl Display),
        msg: format!("Failed to execute the `account` command.\nError: {error}"),
        help: None,
    }

    @backtraced
    failed_to_read_environment_private_key {
        args: (error: impl Display),
        msg: format!("Failed to read private key from environment.\nIO Error: {error}"),
        help: Some("Pass in private key using `--private-key <PRIVATE-KEY>` or create a .env file with your private key information. See examples for formatting information.".to_string()),
    }

    @backtraced
    recursive_deploy_with_record {
        args: (),
        msg: "Cannot combine recursive deploy with private fee.".to_string(),
        help: None,
    }

    @backtraced
    invalid_network_name {
        args: (network: impl Display),
        msg: format!("Invalid network name: {network}"),
        help: Some("Valid network names are `testnet` and `mainnet`.".to_string()),
    }

    @backtraced
    invalid_example {
        args: (example: impl Display),
        msg: format!("Invalid Leo example: {example}"),
        help: Some("Valid Leo examples are `lottery`, `tictactoe`, and `token`.".to_string()),
    }

    @backtraced
    build_error {
        args: (error: impl Display),
        msg: format!("Failed to build program: {error}"),
        help: None,
    }

    @backtraced
    failed_to_parse_record {
        args: (error: impl Display),
        msg: format!("Failed to parse the record string.\nSnarkVM Error: {error}"),
        help: None,
    }

    @backtraced
    string_parse_error {
        args: (error: impl Display),
        msg: format!("{error}"),
        help: None,
    }

    @backtraced
    broadcast_error {
        args: (error: impl Display),
        msg: format!("{error}"),
        help: None,
    }

    @backtraced
    failed_to_get_endpoint_from_env {
        args: (),
        msg: "Failed to get an endpoint.".to_string(),
        help: Some("Either make sure you have a `.env` file in current project directory with an `ENDPOINT` variable set, or set the `--endpoint` flag when invoking the CLI command.\n Example: `ENDPOINT=https://api.explorer.provable.com/v1` or `leo build --endpoint \"https://api.explorer.provable.com/v1\"`.".to_string()),
    }

    @backtraced
    failed_to_get_private_key_from_env {
        args: (),
        msg: "Failed to get a private key.".to_string(),
        help: Some("Either make sure you have a `.env` file in current project directory with a `PRIVATE_KEY` variable set, or set the `--private-key` flag when invoking the CLI command.\n Example: `PRIVATE_KEY=0x1234...` or `leo deploy --private-key \"APrivateKey1zkp8CZNn3yeCseEtxuVPbDCwSyhGW6yZKUYKfgXmcpoGPWH\"`.".to_string()),
    }

    @backtraced
    failed_to_get_network_from_env {
        args: (),
        msg: "Failed to get a network.".to_string(),
        help: Some("Either make sure you have a `.env` file in current project directory with a `NETWORK` variable set, or set the `--network` flag when invoking the CLI command.\n Example: `NETWORK=testnet` or `leo build --network testnet`.".to_string()),
    }

    @backtraced
    constraint_limit_exceeded {
        args: (program: impl Display, limit: u64, network: impl Display),
        msg: format!("Program `{program}` exceeds the constraint limit {limit} for deployment on network {network}."),
        help: Some("Reduce the number of constraints in the program by reducing the number of instructions in transition functions.".to_string()),
    }

    @backtraced
    variable_limit_exceeded {
        args: (program: impl Display, limit: u64, network: impl Display),
        msg: format!("Program `{program}` exceeds the variable limit {limit} for deployment on network {network}."),
        help: Some("Reduce the number of variables in the program by reducing the number of instructions in transition functions.".to_string()),
    }

    @backtraced
    confirmation_failed {
        args: (),
        msg: "Failed to confirm transaction".to_string(),
        help: None,
    }

    @backtraced
    invalid_balance {
        args: (account: impl Display),
        msg: format!("Invalid public balance for account: {account}"),
        help: Some("Make sure the account has enough balance to pay for the deployment.".to_string()),
    }

    @backtraced
    table_render_failed {
        args: (error: impl Display),
        msg: format!("Failed to render table.\nError: {error}"),
        help: None,
    }
);