near-cli-rs 0.25.1

human-friendly console utility that helps to interact with NEAR Protocol from command line.
Documentation
use inquire::Text;
use near_abi::AbiFunctionKind;
use strum::{EnumDiscriminants, EnumIter, EnumMessage};

mod as_read_only;
mod as_transaction;
pub mod call_function_args_type;

#[derive(Debug, Clone, interactive_clap::InteractiveClap)]
#[interactive_clap(context = crate::GlobalContext)]
pub struct CallFunctionCommands {
    #[interactive_clap(subcommand)]
    function_call_actions: CallFunctionActions,
}

#[derive(Debug, EnumDiscriminants, Clone, interactive_clap::InteractiveClap)]
#[interactive_clap(context = crate::GlobalContext)]
#[strum_discriminants(derive(EnumMessage, EnumIter))]
/// Сhoose action for account:
pub enum CallFunctionActions {
    #[strum_discriminants(strum(message = "as-read-only    - Calling a view method"))]
    /// Calling a view method
    AsReadOnly(self::as_read_only::CallFunctionView),
    #[strum_discriminants(strum(message = "as-transaction  - Calling a change method"))]
    /// Calling a change method
    AsTransaction(self::as_transaction::CallFunction),
}

pub fn input_call_function_name(
    global_context: &crate::GlobalContext,
    contract_account_id: &near_primitives::types::AccountId,
) -> color_eyre::eyre::Result<Option<String>> {
    input_function_name(
        global_context,
        contract_account_id,
        near_abi::AbiFunctionKind::Call,
        "What is the name of the transaction function?",
    )
}

pub fn input_view_function_name(
    global_context: &crate::GlobalContext,
    contract_account_id: &near_primitives::types::AccountId,
) -> color_eyre::eyre::Result<Option<String>> {
    input_function_name(
        global_context,
        contract_account_id,
        near_abi::AbiFunctionKind::View,
        "What is the name of the view function?",
    )
}

fn input_function_name(
    global_context: &crate::GlobalContext,
    contract_account_id: &near_primitives::types::AccountId,
    function_kind: near_abi::AbiFunctionKind,
    message: &str,
) -> color_eyre::eyre::Result<Option<String>> {
    let mut function_names: Vec<String> = Vec::new();

    let network_config = crate::common::find_network_where_account_exist(
        global_context,
        contract_account_id.clone(),
    );

    if let Ok(network) = network_config
        && let Some(network_config) = network
        && let Ok(contract_abi) =
            tokio::runtime::Runtime::new()
                .unwrap()
                .block_on(super::get_contract_abi(
                    &network_config.json_rpc_client(),
                    &near_primitives::types::Finality::Final.into(),
                    contract_account_id,
                ))
    {
        function_names = contract_abi
            .body
            .functions
            .into_iter()
            .filter(|function| {
                function.kind == AbiFunctionKind::View || function.kind == function_kind
            })
            .map(|function| function.name)
            .collect();
    }

    Ok(Some(
        Text::new(message)
            .with_autocomplete(move |val: &str| {
                Ok(function_names
                    .iter()
                    .filter(|s| s.contains(val))
                    .cloned()
                    .collect())
            })
            .prompt()?,
    ))
}