sui_faucet/
responses.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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use crate::*;
use serde::{Deserialize, Serialize};
use uuid::Uuid;

#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct FaucetResponse {
    pub transferred_gas_objects: Vec<CoinInfo>,
    pub error: Option<String>,
}

impl From<FaucetError> for FaucetResponse {
    fn from(e: FaucetError) -> Self {
        Self {
            error: Some(e.to_string()),
            transferred_gas_objects: vec![],
        }
    }
}

impl From<FaucetReceipt> for FaucetResponse {
    fn from(v: FaucetReceipt) -> Self {
        Self {
            transferred_gas_objects: v.sent,
            error: None,
        }
    }
}

#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct BatchFaucetResponse {
    // This string is the Uuid for the req
    pub task: Option<String>,
    pub error: Option<String>,
}

impl From<FaucetError> for BatchFaucetResponse {
    fn from(e: FaucetError) -> Self {
        Self {
            error: Some(e.to_string()),
            task: None,
        }
    }
}

impl From<BatchFaucetReceipt> for BatchFaucetResponse {
    fn from(v: BatchFaucetReceipt) -> Self {
        Self {
            task: Some(v.task),
            error: None,
        }
    }
}

impl From<Uuid> for BatchFaucetResponse {
    fn from(v: Uuid) -> Self {
        Self {
            task: Some(v.to_string()),
            error: None,
        }
    }
}

#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct BatchStatusFaucetResponse {
    // This string is the Uuid for the req
    pub status: Option<BatchSendStatus>,
    pub error: Option<String>,
}

impl From<FaucetError> for BatchStatusFaucetResponse {
    fn from(e: FaucetError) -> Self {
        Self {
            error: Some(e.to_string()),
            status: None,
        }
    }
}

impl From<BatchSendStatus> for BatchStatusFaucetResponse {
    fn from(v: BatchSendStatus) -> Self {
        Self {
            status: Some(v),
            error: None,
        }
    }
}