solang 0.3.4

Solang Solidity Compiler
Documentation
// SPDX-License-Identifier: Apache-2.0

use crate::sema::ast::Namespace;
use crate::Target;

pub mod anchor;
pub mod ethereum;
pub mod polkadot;
mod tests;

pub fn generate_abi(
    contract_no: usize,
    ns: &Namespace,
    code: &[u8],
    verbose: bool,
    default_authors: &[String],
    version: &str,
) -> (String, &'static str) {
    match ns.target {
        Target::Polkadot { .. } => {
            if verbose {
                eprintln!(
                    "info: Generating ink! metadata for contract {}",
                    ns.contracts[contract_no].id
                );
            }

            let metadata = polkadot::metadata(contract_no, code, ns, default_authors, version);

            (serde_json::to_string_pretty(&metadata).unwrap(), "contract")
        }
        Target::Solana => {
            if verbose {
                eprintln!(
                    "info: Generating Anchor metadata for contract {}",
                    ns.contracts[contract_no].id
                );
            }

            let idl = anchor::generate_anchor_idl(contract_no, ns, version);

            (serde_json::to_string_pretty(&idl).unwrap(), "json")
        }
        _ => {
            if verbose {
                eprintln!(
                    "info: Generating Ethereum ABI for contract {}",
                    ns.contracts[contract_no].id
                );
            }

            let abi = ethereum::gen_abi(contract_no, ns);

            (serde_json::to_string(&abi).unwrap(), "abi")
        }
    }
}