multiversx_sc/
external_view_contract.rsuse alloc::string::ToString;
use crate::{
abi::{EndpointAbi, EndpointMutabilityAbi, EndpointTypeAbi, InputAbi, TypeAbi},
api::{
const_handles, use_raw_handle, CallValueApiImpl, ManagedBufferApiImpl, StorageWriteApiImpl,
VMApi, EXTERNAL_VIEW_TARGET_ADRESS_KEY,
},
io::load_endpoint_args,
types::ManagedType,
};
pub const EXTERNAL_VIEW_CONSTRUCTOR_FLAG: &str = "<external view init>";
pub fn external_view_contract_constructor<A>()
where
A: VMApi,
{
A::call_value_api_impl().check_not_payable();
let (target_contract_address, ()) = load_endpoint_args::<
A,
(crate::types::ManagedAddress<A>, ()),
>(("target_contract_address", ()));
let key_handle: A::ManagedBufferHandle = use_raw_handle(const_handles::MBUF_TEMPORARY_1);
A::managed_type_impl().mb_overwrite(key_handle.clone(), EXTERNAL_VIEW_TARGET_ADRESS_KEY);
A::storage_write_api_impl()
.storage_store_managed_buffer_raw(key_handle, target_contract_address.get_handle());
}
pub fn external_view_contract_constructor_abi() -> EndpointAbi {
let mut endpoint_abi = EndpointAbi::new(
"init",
EXTERNAL_VIEW_CONSTRUCTOR_FLAG,
EndpointMutabilityAbi::Mutable,
EndpointTypeAbi::Init,
)
.with_docs("The external view init prepares a contract that looks in another contract's storage.")
.with_docs("It takes a single argument, the other contract's address")
.with_docs("You won't find this constructors' definition in the contract, it gets injected automatically by the framework. See `multiversx_sc::external_view_contract`.");
endpoint_abi.inputs.push(InputAbi {
arg_name: "target_contract_address".to_string(),
type_names: crate::types::heap::Address::type_names(),
multi_arg: false,
});
endpoint_abi
}