1use core::marker::PhantomData;
2
3use multiversx_chain_core::{
4 EGLD_000000_TOKEN_IDENTIFIER,
5 types::{DurationMillis, TimestampMillis, TimestampSeconds},
6};
7
8use crate::{
9 api::{
10 BigIntApiImpl, BlockchainApi, BlockchainApiImpl, ErrorApi, ErrorApiImpl, HandleConstraints,
11 ManagedBufferApiImpl, ManagedTypeApi, ManagedTypeApiImpl, StaticVarApiImpl, StorageReadApi,
12 StorageReadApiImpl, const_handles, use_raw_handle,
13 },
14 codec::TopDecode,
15 err_msg::{ONLY_OWNER_CALLER, ONLY_USER_ACCOUNT_CALLER},
16 storage,
17 types::{
18 BackTransfers, BackTransfersLegacy, BigUint, CodeMetadata, EgldOrEsdtTokenIdentifier,
19 EgldOrEsdtTokenPayment, EsdtLocalRoleFlags, EsdtTokenData, EsdtTokenIdentifier,
20 EsdtTokenType, ManagedAddress, ManagedBuffer, ManagedByteArray, ManagedRef, ManagedRefMut,
21 ManagedType, ManagedVec, SystemSCAddress, TokenId,
22 },
23};
24
25#[derive(Default)]
32pub struct BlockchainWrapper<A>
33where
34 A: ManagedTypeApi + ErrorApi,
35{
36 _phantom: PhantomData<A>,
37}
38
39impl<A> BlockchainWrapper<A>
40where
41 A: ManagedTypeApi + ErrorApi,
42{
43 pub fn new() -> Self {
44 BlockchainWrapper {
45 _phantom: PhantomData,
46 }
47 }
48}
49
50impl<A> BlockchainWrapper<A>
51where
52 A: BlockchainApi + ManagedTypeApi + ErrorApi,
53{
54 #[deprecated(since = "0.41.0", note = "Please use method `get_caller` instead.")]
55 #[cfg(feature = "alloc")]
56 #[inline]
57 pub fn get_caller_legacy(&self) -> crate::types::Address {
58 A::blockchain_api_impl().get_caller_legacy()
59 }
60
61 #[inline]
62 pub fn get_caller(&self) -> ManagedAddress<A> {
63 unsafe {
64 let result = ManagedAddress::new_uninit();
65 A::blockchain_api_impl().load_caller_managed(result.get_handle());
66 result
67 }
68 }
69
70 #[deprecated(since = "0.41.0", note = "Please use method `get_sc_address` instead.")]
71 #[cfg(feature = "alloc")]
72 #[inline]
73 pub fn get_sc_address_legacy(&self) -> crate::types::Address {
74 A::blockchain_api_impl().get_sc_address_legacy()
75 }
76
77 #[inline]
78 pub fn get_sc_address(&self) -> ManagedAddress<A> {
79 unsafe {
80 let result = ManagedAddress::new_uninit();
81 A::blockchain_api_impl().load_sc_address_managed(result.get_handle());
82 result
83 }
84 }
85
86 #[inline]
87 pub fn get_owner_address(&self) -> ManagedAddress<A> {
88 unsafe {
89 let result = ManagedAddress::new_uninit();
90 A::blockchain_api_impl().load_owner_address_managed(result.get_handle());
91 result
92 }
93 }
94
95 pub fn check_caller_is_owner(&self) {
96 if self.get_owner_address() != self.get_caller() {
97 A::error_api_impl().signal_error(ONLY_OWNER_CALLER.as_bytes());
98 }
99 }
100
101 pub fn check_caller_is_user_account(&self) {
102 let mbuf_temp_1: A::ManagedBufferHandle = use_raw_handle(const_handles::MBUF_TEMPORARY_1);
103 A::blockchain_api_impl().load_caller_managed(mbuf_temp_1.clone());
104 if A::blockchain_api_impl().is_smart_contract(mbuf_temp_1) {
105 A::error_api_impl().signal_error(ONLY_USER_ACCOUNT_CALLER.as_bytes());
106 }
107 }
108
109 #[deprecated(
110 since = "0.41.0",
111 note = "Please use method `get_shard_of_address` instead."
112 )]
113 #[cfg(feature = "alloc")]
114 #[inline]
115 pub fn get_shard_of_address_legacy(&self, address: &crate::types::Address) -> u32 {
116 A::blockchain_api_impl().get_shard_of_address_legacy(address)
117 }
118
119 #[inline]
120 pub fn get_shard_of_address(&self, address: &ManagedAddress<A>) -> u32 {
121 A::blockchain_api_impl().get_shard_of_address(address.get_handle())
122 }
123
124 #[deprecated(
125 since = "0.41.0",
126 note = "Please use method `is_smart_contract` instead."
127 )]
128 #[cfg(feature = "alloc")]
129 #[inline]
130 pub fn is_smart_contract_legacy(&self, address: &crate::types::Address) -> bool {
131 A::blockchain_api_impl().is_smart_contract_legacy(address)
132 }
133
134 #[inline]
135 pub fn is_smart_contract(&self, address: &ManagedAddress<A>) -> bool {
136 A::blockchain_api_impl().is_smart_contract(address.get_handle())
137 }
138
139 #[deprecated(since = "0.41.0", note = "Please use method `get_balance` instead.")]
140 #[cfg(feature = "alloc")]
141 #[inline]
142 pub fn get_balance_legacy(&self, address: &crate::types::Address) -> BigUint<A> {
143 unsafe {
144 let result = BigUint::new_uninit();
145 A::blockchain_api_impl().load_balance_legacy(result.get_handle(), address);
146 result
147 }
148 }
149
150 #[inline]
151 pub fn get_balance(&self, address: &ManagedAddress<A>) -> BigUint<A> {
152 unsafe {
153 let result = BigUint::new_uninit();
154 A::blockchain_api_impl().load_balance(result.get_handle(), address.get_handle());
155 result
156 }
157 }
158
159 pub fn get_code_metadata(&self, address: &ManagedAddress<A>) -> CodeMetadata {
160 let mbuf_temp_1: A::ManagedBufferHandle = use_raw_handle(const_handles::MBUF_TEMPORARY_1);
161 A::blockchain_api_impl()
162 .managed_get_code_metadata(address.get_handle(), mbuf_temp_1.clone());
163 let mut buffer = [0u8; 2];
164 unsafe {
165 ManagedRefMut::<'static, A, ManagedBuffer<A>>::wrap_handle(mbuf_temp_1)
166 .load_to_byte_array(&mut buffer);
167 }
168 CodeMetadata::from(buffer)
169 }
170
171 pub fn get_code_hash(&self, address: &ManagedAddress<A>) -> ManagedBuffer<A> {
172 unsafe {
173 let result = ManagedBuffer::new_uninit();
174 A::blockchain_api_impl()
175 .managed_get_code_hash(address.get_handle(), result.get_handle());
176 result
177 }
178 }
179
180 #[inline]
181 pub fn is_builtin_function(&self, function_name: &ManagedBuffer<A>) -> bool {
182 A::blockchain_api_impl().managed_is_builtin_function(function_name.get_handle())
183 }
184
185 #[inline]
186 pub fn get_sc_balance(&self, token_id: impl AsRef<TokenId<A>>, nonce: u64) -> BigUint<A> {
187 let token_id_ref = token_id.as_ref();
188 if self.is_native_token(token_id_ref) {
189 self.get_balance(&self.get_sc_address())
190 } else {
191 self.get_esdt_balance(
192 &self.get_sc_address(),
193 unsafe { token_id_ref.as_esdt_unchecked() },
194 nonce,
195 )
196 }
197 }
198
199 #[deprecated(
200 since = "0.41.0",
201 note = "Please use method `get_state_root_hash` instead."
202 )]
203 #[cfg(feature = "alloc")]
204 #[inline]
205 pub fn get_state_root_hash_legacy(&self) -> crate::types::H256 {
206 self.get_state_root_hash().to_byte_array().into()
207 }
208
209 #[inline]
210 pub fn get_state_root_hash(&self) -> ManagedByteArray<A, 32> {
211 unsafe {
212 let result = ManagedByteArray::new_uninit();
213 A::blockchain_api_impl().load_state_root_hash_managed(result.get_handle());
214 result
215 }
216 }
217
218 #[deprecated(since = "0.41.0", note = "Please use method `get_tx_hash` instead.")]
219 #[cfg(feature = "alloc")]
220 #[inline]
221 pub fn get_tx_hash_legacy(&self) -> crate::types::H256 {
222 A::blockchain_api_impl().get_tx_hash_legacy()
223 }
224
225 #[inline]
226 pub fn get_tx_hash(&self) -> ManagedByteArray<A, 32> {
227 unsafe {
228 let result = ManagedByteArray::new_uninit();
229 A::blockchain_api_impl().load_tx_hash_managed(result.get_handle());
230 result
231 }
232 }
233
234 #[inline]
235 pub fn get_gas_left(&self) -> u64 {
236 A::blockchain_api_impl().get_gas_left()
237 }
238
239 #[deprecated(
241 since = "0.63.0",
242 note = "Use get_block_timestamp_seconds instead, it returns a properly typed timestamps"
243 )]
244 #[inline]
245 pub fn get_block_timestamp(&self) -> u64 {
246 A::blockchain_api_impl().get_block_timestamp()
247 }
248
249 #[inline]
251 pub fn get_block_timestamp_seconds(&self) -> TimestampSeconds {
252 TimestampSeconds::new(A::blockchain_api_impl().get_block_timestamp())
253 }
254
255 #[deprecated(
257 since = "0.63.0",
258 note = "Use get_block_timestamp_millis instead, it returns a properly typed timestamps"
259 )]
260 pub fn get_block_timestamp_ms(&self) -> u64 {
261 A::blockchain_api_impl().get_block_timestamp_ms()
262 }
263
264 pub fn get_block_timestamp_millis(&self) -> TimestampMillis {
266 TimestampMillis::new(A::blockchain_api_impl().get_block_timestamp_ms())
267 }
268
269 #[inline]
270 pub fn get_block_nonce(&self) -> u64 {
271 A::blockchain_api_impl().get_block_nonce()
272 }
273
274 #[inline]
275 pub fn get_block_round(&self) -> u64 {
276 A::blockchain_api_impl().get_block_round()
277 }
278
279 #[inline]
280 pub fn get_block_epoch(&self) -> u64 {
281 A::blockchain_api_impl().get_block_epoch()
282 }
283
284 #[deprecated(
286 since = "0.63.0",
287 note = "Use get_block_round_time_millis instead, it returns a properly typed duration"
288 )]
289 #[inline]
290 pub fn get_block_round_time_ms(&self) -> u64 {
291 A::blockchain_api_impl().get_block_round_time_ms()
292 }
293
294 #[inline]
296 pub fn get_block_round_time_millis(&self) -> DurationMillis {
297 DurationMillis::new(A::blockchain_api_impl().get_block_round_time_ms())
298 }
299
300 #[deprecated(
302 since = "0.63.0",
303 note = "Use epoch_start_block_timestamp_millis instead, it returns a properly typed timestamps"
304 )]
305 pub fn epoch_start_block_timestamp_ms(&self) -> u64 {
306 self.get_epoch_start_block_timestamp_millis()
307 .as_u64_millis()
308 }
309
310 #[deprecated(
311 since = "0.63.1",
312 note = "Renamed to get_epoch_start_block_timestamp_millis"
313 )]
314 pub fn epoch_start_block_timestamp_millis(&self) -> TimestampMillis {
315 self.get_epoch_start_block_timestamp_millis()
316 }
317
318 pub fn get_epoch_start_block_timestamp_millis(&self) -> TimestampMillis {
320 TimestampMillis::new(A::blockchain_api_impl().epoch_start_block_timestamp_ms())
321 }
322
323 pub fn get_epoch_start_block_nonce(&self) -> u64 {
324 A::blockchain_api_impl().epoch_start_block_nonce()
325 }
326
327 #[deprecated(since = "0.63.1", note = "Renamed to get_epoch_start_block_nonce")]
328 pub fn epoch_start_block_nonce(&self) -> u64 {
329 self.get_epoch_start_block_nonce()
330 }
331
332 pub fn get_epoch_start_block_round(&self) -> u64 {
333 A::blockchain_api_impl().epoch_start_block_round()
334 }
335
336 #[deprecated(since = "0.63.1", note = "Renamed to get_epoch_start_block_round")]
337 pub fn epoch_start_block_round(&self) -> u64 {
338 self.get_epoch_start_block_round()
339 }
340
341 #[deprecated(
342 since = "0.41.0",
343 note = "Please use method `get_block_random_seed` instead."
344 )]
345 #[cfg(feature = "alloc")]
346 #[inline]
347 pub fn get_block_random_seed_legacy(&self) -> crate::types::Box<[u8; 48]> {
348 crate::types::Box::new(self.get_block_random_seed().to_byte_array())
349 }
350
351 #[inline]
352 pub fn get_block_random_seed(&self) -> ManagedByteArray<A, 48> {
353 unsafe {
354 let result = ManagedByteArray::new_uninit();
355 A::blockchain_api_impl().load_block_random_seed_managed(result.get_handle());
356 result
357 }
358 }
359
360 #[deprecated(
362 since = "0.63.0",
363 note = "Use get_prev_block_timestamp_seconds instead, it returns a properly typed timestamps"
364 )]
365 #[inline]
366 pub fn get_prev_block_timestamp(&self) -> u64 {
367 A::blockchain_api_impl().get_prev_block_timestamp()
368 }
369
370 pub fn get_prev_block_timestamp_seconds(&self) -> TimestampSeconds {
372 TimestampSeconds::new(A::blockchain_api_impl().get_prev_block_timestamp())
373 }
374
375 #[deprecated(
377 since = "0.63.0",
378 note = "Use get_prev_block_timestamp_millis instead, it returns a properly typed timestamps"
379 )]
380 #[inline]
381 pub fn get_prev_block_timestamp_ms(&self) -> u64 {
382 A::blockchain_api_impl().get_prev_block_timestamp_ms()
383 }
384
385 #[inline]
387 pub fn get_prev_block_timestamp_millis(&self) -> TimestampMillis {
388 TimestampMillis::new(A::blockchain_api_impl().get_prev_block_timestamp_ms())
389 }
390
391 #[inline]
393 pub fn get_prev_block_nonce(&self) -> u64 {
394 A::blockchain_api_impl().get_prev_block_nonce()
395 }
396
397 #[inline]
399 pub fn get_prev_block_round(&self) -> u64 {
400 A::blockchain_api_impl().get_prev_block_round()
401 }
402
403 #[inline]
404 pub fn get_prev_block_epoch(&self) -> u64 {
405 A::blockchain_api_impl().get_prev_block_epoch()
406 }
407
408 #[deprecated(
409 since = "0.41.0",
410 note = "Please use method `get_prev_block_random_seed` instead."
411 )]
412 #[cfg(feature = "alloc")]
413 #[inline]
414 pub fn get_prev_block_random_seed_legacy(&self) -> crate::types::Box<[u8; 48]> {
415 A::blockchain_api_impl().get_prev_block_random_seed_legacy()
416 }
417
418 #[inline]
419 pub fn get_prev_block_random_seed(&self) -> ManagedByteArray<A, 48> {
420 unsafe {
421 let result = ManagedByteArray::new_uninit();
422 A::blockchain_api_impl().load_prev_block_random_seed_managed(result.get_handle());
423 result
424 }
425 }
426
427 #[inline]
428 pub fn get_current_esdt_nft_nonce(
429 &self,
430 address: &ManagedAddress<A>,
431 token_id: &EsdtTokenIdentifier<A>,
432 ) -> u64 {
433 A::blockchain_api_impl()
434 .get_current_esdt_nft_nonce(address.get_handle(), token_id.get_handle())
435 }
436
437 #[inline]
438 pub fn get_esdt_balance(
439 &self,
440 address: &ManagedAddress<A>,
441 token_id: &EsdtTokenIdentifier<A>,
442 nonce: u64,
443 ) -> BigUint<A> {
444 unsafe {
445 let result = BigUint::new_uninit();
446 A::blockchain_api_impl().load_esdt_balance(
447 address.get_handle(),
448 token_id.get_handle(),
449 nonce,
450 result.get_handle(),
451 );
452 result
453 }
454 }
455}
456
457impl<A> BlockchainWrapper<A>
458where
459 A: ManagedTypeApi + ErrorApi,
460{
461 pub(crate) fn get_native_token_handle(&self) -> A::ManagedBufferHandle {
462 let handle: A::ManagedBufferHandle = use_raw_handle(const_handles::MBUF_EGLD_000000);
463 A::managed_type_impl()
464 .mb_overwrite(handle.clone(), EGLD_000000_TOKEN_IDENTIFIER.as_bytes());
465 handle
466 }
467
468 pub fn get_native_token(&self) -> ManagedRef<'static, A, TokenId<A>> {
470 let handle = self.get_native_token_handle();
471 unsafe { ManagedRef::wrap_handle(handle) }
472 }
473
474 pub fn is_native_token(&self, token_id: &TokenId<A>) -> bool {
476 let handle = self.get_native_token_handle();
477 A::managed_type_impl().mb_eq(handle, token_id.buffer.handle.clone())
478 }
479}
480
481impl<A> BlockchainWrapper<A>
482where
483 A: BlockchainApi + ManagedTypeApi + ErrorApi,
484{
485 fn get_esdt_token_type_raw(
486 &self,
487 address: &ManagedAddress<A>,
488 token_id: &EgldOrEsdtTokenIdentifier<A>,
489 nonce: u64,
490 ) -> u64 {
491 unsafe {
492 let big_int_temp_handle: A::BigIntHandle =
493 use_raw_handle(const_handles::BIG_INT_TEMPORARY_1);
494
495 A::blockchain_api_impl().managed_get_esdt_token_type(
496 address.get_handle(),
497 token_id.get_handle(),
498 nonce,
499 big_int_temp_handle.clone(),
500 );
501
502 let bu = BigUint::<A>::from_handle(big_int_temp_handle);
503 bu.to_u64().unwrap_or(255)
505 }
506 }
507
508 pub fn get_esdt_token_type(
509 &self,
510 address: &ManagedAddress<A>,
511 token_id: &EgldOrEsdtTokenIdentifier<A>,
512 nonce: u64,
513 ) -> EsdtTokenType {
514 EsdtTokenType::from(self.get_esdt_token_type_raw(address, token_id, nonce) as u8)
515 }
516
517 pub fn get_esdt_token_data(
518 &self,
519 address: &ManagedAddress<A>,
520 token_id: &EsdtTokenIdentifier<A>,
521 nonce: u64,
522 ) -> EsdtTokenData<A> {
523 let managed_api_impl = A::managed_type_impl();
527 let value_handle = managed_api_impl.bi_new_zero();
528 let properties_handle = managed_api_impl.mb_new_empty(); let hash_handle = managed_api_impl.mb_new_empty();
530 let name_handle = managed_api_impl.mb_new_empty();
531 let attributes_handle = managed_api_impl.mb_new_empty();
532 let creator_handle = managed_api_impl.mb_new_empty();
533 let royalties_handle = managed_api_impl.bi_new_zero();
534 let uris_handle = managed_api_impl.mb_new_empty();
535
536 A::blockchain_api_impl().managed_get_esdt_token_data(
537 address.get_handle().get_raw_handle(),
538 token_id.get_handle().get_raw_handle(),
539 nonce,
540 value_handle.get_raw_handle(),
541 properties_handle.get_raw_handle(),
542 hash_handle.get_raw_handle(),
543 name_handle.get_raw_handle(),
544 attributes_handle.get_raw_handle(),
545 creator_handle.get_raw_handle(),
546 royalties_handle.get_raw_handle(),
547 uris_handle.get_raw_handle(),
548 );
549
550 let token_type = self.get_esdt_token_type(address, token_id.token_id.as_legacy(), nonce);
551
552 if managed_api_impl.mb_len(creator_handle.clone()) == 0 {
553 managed_api_impl.mb_overwrite(creator_handle.clone(), &[0u8; 32][..]);
554 }
555
556 let properties_bytes = load_properties::<A>(properties_handle);
557 let frozen = esdt_is_frozen(&properties_bytes);
558
559 unsafe {
560 EsdtTokenData {
561 token_type,
562 amount: BigUint::from_raw_handle(value_handle.get_raw_handle()),
563 frozen,
564 hash: ManagedBuffer::from_raw_handle(hash_handle.get_raw_handle()),
565 name: ManagedBuffer::from_raw_handle(name_handle.get_raw_handle()),
566 attributes: ManagedBuffer::from_raw_handle(attributes_handle.get_raw_handle()),
567 creator: ManagedAddress::from_raw_handle(creator_handle.get_raw_handle()),
568 royalties: BigUint::from_raw_handle(royalties_handle.get_raw_handle()),
569 uris: ManagedVec::from_raw_handle(uris_handle.get_raw_handle()),
570 }
571 }
572 }
573
574 #[deprecated(
580 since = "0.59.0",
581 note = "Does not handle multi-transfers properly, use get_back_transfers instead"
582 )]
583 pub fn get_back_transfers_legacy(&self) -> BackTransfersLegacy<A> {
584 let esdt_transfer_value_handle: A::BigIntHandle =
585 use_raw_handle(A::static_var_api_impl().next_handle());
586 let call_value_handle: A::BigIntHandle =
587 use_raw_handle(A::static_var_api_impl().next_handle());
588
589 A::blockchain_api_impl().managed_get_back_transfers(
590 esdt_transfer_value_handle.get_raw_handle(),
591 call_value_handle.get_raw_handle(),
592 );
593
594 unsafe {
595 BackTransfersLegacy {
596 total_egld_amount: BigUint::from_raw_handle(call_value_handle.get_raw_handle()),
597 esdt_payments: ManagedVec::from_raw_handle(
598 esdt_transfer_value_handle.get_raw_handle(),
599 ),
600 }
601 }
602 }
603
604 pub fn get_back_transfers(&self) -> BackTransfers<A> {
608 unsafe {
609 let mut all_bt_vec = ManagedVec::new_uninit();
610 let bt_direct_egld = BigUint::<A>::new_uninit();
611
612 A::blockchain_api_impl().managed_get_back_transfers(
613 all_bt_vec.get_raw_handle_unchecked(),
614 bt_direct_egld.get_raw_handle_unchecked(),
615 );
616
617 if bt_direct_egld > 0u64 {
618 all_bt_vec.push(EgldOrEsdtTokenPayment::egld_payment(bt_direct_egld));
619 }
620
621 BackTransfers::new(all_bt_vec)
622 }
623 }
624
625 pub fn reset_back_transfers(&self) {
627 A::blockchain_api_impl().managed_get_back_transfers(
628 const_handles::MBUF_TEMPORARY_1,
629 const_handles::BIG_INT_TEMPORARY_1,
630 );
631 }
632
633 pub fn get_token_attributes<T: TopDecode>(
635 &self,
636 token_id: &EsdtTokenIdentifier<A>,
637 token_nonce: u64,
638 ) -> T {
639 let own_sc_address = self.get_sc_address();
640 let token_data = self.get_esdt_token_data(&own_sc_address, token_id, token_nonce);
641 token_data.decode_attributes()
642 }
643
644 #[inline]
645 pub fn is_esdt_frozen(
646 &self,
647 address: &ManagedAddress<A>,
648 token_id: &EsdtTokenIdentifier<A>,
649 nonce: u64,
650 ) -> bool {
651 A::blockchain_api_impl().check_esdt_frozen(
652 address.get_handle(),
653 token_id.get_handle(),
654 nonce,
655 )
656 }
657
658 #[inline]
659 pub fn is_esdt_paused(&self, token_id: &EsdtTokenIdentifier<A>) -> bool {
660 A::blockchain_api_impl().check_esdt_paused(token_id.get_handle())
661 }
662
663 #[inline]
664 pub fn is_esdt_limited_transfer(&self, token_id: &EsdtTokenIdentifier<A>) -> bool {
665 A::blockchain_api_impl().check_esdt_limited_transfer(token_id.get_handle())
666 }
667
668 #[inline]
669 pub fn get_esdt_local_roles(&self, token_id: &EsdtTokenIdentifier<A>) -> EsdtLocalRoleFlags {
670 A::blockchain_api_impl().load_esdt_local_roles(token_id.get_handle())
671 }
672}
673
674impl<A> BlockchainWrapper<A>
675where
676 A: BlockchainApi + StorageReadApi + ManagedTypeApi + ErrorApi,
677{
678 #[inline]
680 pub fn get_cumulated_validator_rewards(&self) -> BigUint<A> {
681 let temp_handle_1: A::ManagedBufferHandle = use_raw_handle(const_handles::MBUF_TEMPORARY_1);
682 let temp_handle_2: A::ManagedBufferHandle = use_raw_handle(const_handles::MBUF_TEMPORARY_2);
683
684 A::managed_type_impl().mb_overwrite(
686 temp_handle_1.clone(),
687 storage::protected_keys::ELROND_REWARD_KEY,
688 );
689
690 A::storage_read_api_impl()
692 .storage_load_managed_buffer_raw(temp_handle_1, temp_handle_2.clone());
693
694 let result = unsafe { BigUint::new_uninit() };
696 A::managed_type_impl().mb_to_big_int_unsigned(temp_handle_2, result.get_handle());
697 result
698 }
699
700 pub fn token_has_transfer_role(&self, token_identifier: EsdtTokenIdentifier<A>) -> bool {
701 let key_handle: A::ManagedBufferHandle = use_raw_handle(const_handles::MBUF_TEMPORARY_1);
703 A::managed_type_impl().mb_overwrite(key_handle.clone(), b"ELRONDtransferesdt");
704
705 A::managed_type_impl().mb_append(
707 key_handle.clone(),
708 token_identifier.into_managed_buffer().get_handle(),
709 );
710
711 let result_handle: A::ManagedBufferHandle = use_raw_handle(const_handles::MBUF_TEMPORARY_2);
713
714 A::storage_read_api_impl().storage_load_from_address(
716 SystemSCAddress.to_managed_address::<A>().get_handle(),
717 key_handle,
718 result_handle.clone(),
719 );
720
721 let result = unsafe { ManagedBuffer::<A>::from_handle(result_handle) };
722
723 !result.is_empty()
726 }
727}
728
729fn load_properties<A: ManagedTypeApi>(properties_handle: A::ManagedBufferHandle) -> [u8; 2] {
730 let mut properties_bytes = [0u8; 2];
731 if A::managed_type_impl().mb_len(properties_handle.clone()) == 2 {
732 let _ =
733 A::managed_type_impl().mb_load_slice(properties_handle, 0, &mut properties_bytes[..]);
734 }
735 properties_bytes
736}
737
738fn esdt_is_frozen(properties_bytes: &[u8; 2]) -> bool {
739 properties_bytes[0] > 0 }