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
use crate::{num_bigint, tx_mock::TxPanic, DebugApi};
use multiversx_sc::{
api::{CallValueApi, CallValueApiImpl},
err_msg,
types::EsdtTokenType,
};
use num_traits::Zero;
impl DebugApi {
fn fail_if_more_than_one_esdt_transfer(&self) {
if self.esdt_num_transfers() > 1 {
std::panic::panic_any(TxPanic {
status: 10,
message: err_msg::TOO_MANY_ESDT_TRANSFERS.to_string(),
});
}
}
}
impl CallValueApi for DebugApi {
type CallValueApiImpl = DebugApi;
fn call_value_api_impl() -> Self::CallValueApiImpl {
DebugApi::new_from_static()
}
}
impl CallValueApiImpl for DebugApi {
fn check_not_payable(&self) {
if self.input_ref().egld_value > num_bigint::BigUint::zero() {
std::panic::panic_any(TxPanic {
status: 10,
message: err_msg::NON_PAYABLE_FUNC_EGLD.to_string(),
});
}
if self.esdt_num_transfers() > 0 {
std::panic::panic_any(TxPanic {
status: 10,
message: err_msg::NON_PAYABLE_FUNC_ESDT.to_string(),
});
}
}
#[inline]
fn load_egld_value(&self, dest: Self::BigIntHandle) {
self.set_big_uint(dest, self.input_ref().received_egld().clone())
}
#[inline]
fn load_single_esdt_value(&self, dest: Self::BigIntHandle) {
self.fail_if_more_than_one_esdt_transfer();
if let Some(esdt_value) = self.input_ref().received_esdt().get(0) {
self.set_big_uint(dest, esdt_value.value.clone());
} else {
std::panic::panic_any(TxPanic {
status: 10,
message: err_msg::ESDT_INVALID_TOKEN_INDEX.to_string(),
});
}
}
#[inline]
fn token(&self) -> Option<Self::ManagedBufferHandle> {
self.fail_if_more_than_one_esdt_transfer();
if self.esdt_num_transfers() > 0 {
Some(self.token_by_index(0))
} else {
None
}
}
#[inline]
fn esdt_token_nonce(&self) -> u64 {
self.fail_if_more_than_one_esdt_transfer();
self.esdt_token_nonce_by_index(0)
}
#[inline]
fn esdt_token_type(&self) -> EsdtTokenType {
self.fail_if_more_than_one_esdt_transfer();
self.esdt_token_type_by_index(0)
}
#[inline]
fn esdt_num_transfers(&self) -> usize {
self.input_ref().received_esdt().len()
}
#[inline]
fn esdt_value_by_index(&self, index: usize) -> Self::BigIntHandle {
if let Some(esdt_value) = self.input_ref().received_esdt().get(index) {
self.insert_new_big_uint(esdt_value.value.clone())
} else {
std::panic::panic_any(TxPanic {
status: 10,
message: err_msg::ESDT_INVALID_TOKEN_INDEX.to_string(),
});
}
}
#[inline]
fn token_by_index(&self, index: usize) -> Self::ManagedBufferHandle {
if let Some(esdt_value) = self.input_ref().received_esdt().get(index) {
self.insert_new_managed_buffer(esdt_value.token_identifier.clone())
} else {
std::panic::panic_any(TxPanic {
status: 10,
message: err_msg::ESDT_INVALID_TOKEN_INDEX.to_string(),
});
}
}
#[inline]
fn esdt_token_nonce_by_index(&self, index: usize) -> u64 {
if let Some(esdt_value) = self.input_ref().received_esdt().get(index) {
esdt_value.nonce
} else {
std::panic::panic_any(TxPanic {
status: 10,
message: err_msg::ESDT_INVALID_TOKEN_INDEX.to_string(),
});
}
}
#[inline]
fn esdt_token_type_by_index(&self, index: usize) -> EsdtTokenType {
if self.esdt_token_nonce_by_index(index) == 0 {
EsdtTokenType::Fungible
} else {
EsdtTokenType::NonFungible
}
}
}