diff --git a/contracts/proxy-deployer/wasm/src/lib.rs b/contracts/proxy-deployer/wasm/src/lib.rs index 8d9c9a22..3c6138ec 100644 --- a/contracts/proxy-deployer/wasm/src/lib.rs +++ b/contracts/proxy-deployer/wasm/src/lib.rs @@ -5,14 +5,12 @@ //////////////////////////////////////////////////// // Init: 1 -// Endpoints: 18 +// Endpoints: 20 // Async Callback (empty): 1 -// Total number of exported functions: 20 +// Total number of exported functions: 22 #![no_std] - -// Configuration that works with rustc < 1.73.0. -// TODO: Recommended rustc version: 1.73.0 or newer. +#![allow(internal_features)] #![feature(lang_items)] multiversx_sc_wasm_adapter::allocator!(); @@ -30,11 +28,13 @@ multiversx_sc_wasm_adapter::endpoints! { addDeployerToBlacklist => add_deployer_to_blacklist removeDeployerFromBlacklist => remove_deployer_from_blacklist setDefaultGasForSaveOperation => set_default_gas_for_save_operation + setMetadataForDeployingContracts => set_metadata_for_deploying_contracts getDeployerContractsByTemplate => get_deployer_contracts_by_template getAllDeployerContracts => get_all_deployer_contracts getAllDeployedContractsByTemplate => deployed_contracts_list_by_template getOngoingUpgradeOperations => ongoing_upgrade_operation getDefaultGasForSaveOperation => default_gas_for_save_operation + getMetadataForDeployingContracts => metadata_for_deploying_contracts getAllDeployers => deployers_list getAllBlacklistedDeployers => blacklisted_deployers_list pause => pause_endpoint