use multiversx_chain_core::types::ReturnCode;
use num_bigint::BigUint;
use crate::{
blockchain::state::{EsdtInstance, EsdtInstanceMetadata},
chain_core::builtin_func_names::ESDT_NFT_CREATE_FUNC_NAME,
host::context::{BlockchainUpdate, TxCache, TxInput, TxLog, TxResult},
host::runtime::{RuntimeInstanceCallLambda, RuntimeRef},
types::{top_decode_u64, top_encode_u64},
};
use super::super::builtin_func_trait::BuiltinFunction;
pub struct ESDTNftCreate;
impl BuiltinFunction for ESDTNftCreate {
fn name(&self) -> &str {
ESDT_NFT_CREATE_FUNC_NAME
}
fn execute<F>(
&self,
tx_input: TxInput,
tx_cache: TxCache,
_runtime: &RuntimeRef,
_f: F,
) -> (TxResult, BlockchainUpdate)
where
F: RuntimeInstanceCallLambda,
{
if tx_input.args.len() < 7 {
let err_result = TxResult::from_vm_error("ESDTNFTCreate too few arguments");
return (err_result, BlockchainUpdate::empty());
}
assert!(
tx_input.to == tx_input.from,
"ESDTNFTCreate expects that to == from"
);
let token_identifier = tx_input.args[0].as_slice();
let amount = BigUint::from_bytes_be(tx_input.args[1].as_slice());
let name = tx_input.args[2].clone();
let royalties = top_decode_u64(tx_input.args[3].as_slice());
let hash = tx_input.args[4].clone();
let attributes = tx_input.args[5].clone();
let uris = tx_input.args[6..].to_vec();
let new_nonce = tx_cache.with_account_mut(&tx_input.to, |account| {
let esdt_data = account
.esdt
.get_mut_by_identifier(token_identifier)
.unwrap_or_else(|| panic!("ESDTNFTCreate unexpected token identifier"));
esdt_data.last_nonce += 1;
esdt_data.instances.push_instance(EsdtInstance {
nonce: esdt_data.last_nonce,
balance: amount.clone(),
metadata: EsdtInstanceMetadata {
name,
creator: Some(tx_input.from.clone()),
royalties,
hash: Some(hash),
uri: uris,
attributes,
},
});
esdt_data.last_nonce
});
let esdt_nft_create_log = TxLog {
address: tx_input.from.clone(),
endpoint: ESDT_NFT_CREATE_FUNC_NAME.into(),
topics: vec![
token_identifier.to_vec(),
top_encode_u64(new_nonce),
amount.to_bytes_be(),
Vec::new(), ],
data: vec![],
};
let tx_result = TxResult {
result_status: ReturnCode::Success,
result_values: vec![top_encode_u64(new_nonce)],
result_logs: vec![esdt_nft_create_log],
..Default::default()
};
(tx_result, tx_cache.into_blockchain_updates())
}
}