Attribute Macro unc_sdk_macros::unc_bindgen

source ·
#[unc_bindgen]
Expand description

This attribute macro is used on a struct and its implementations to generate the necessary code to expose pub methods from the contract as well as generating the glue code to be a valid Utility contract.

This macro will generate code to load and deserialize state if the self parameter is included as well as saving it back to state if &mut self is used.

For parameter serialization, this macro will generate a struct with all of the parameters as fields and derive deserialization for it. By default this will be JSON deserialized with serde but can be overwritten by using #[serializer(borsh)].

#[unc_bindgen] will also handle serializing and setting the return value of the function execution based on what type is returned by the function. By default, this will be done through serde serialized as JSON, but this can be overwritten using #[result_serializer(borsh)].

§Examples

use unc_sdk::unc_bindgen;

#[unc_bindgen]
pub struct Contract {
   data: i8,
}

#[unc_bindgen]
impl Contract {
    pub fn some_function(&self) {}
}

Events Standard:

By passing event_json as an argument unc_bindgen will generate the relevant code to format events according to UIP-297

For parameter serialization, this macro will generate a wrapper struct to include the UIP-297 standard fields standard and version as well as include serialization reformatting to include the eventanddatafields automatically. Thestandardandversionvalues must be included in the enum and variant declaration (see example below). By default this will be JSON deserialized withserde`

§Examples

use unc_sdk::unc_bindgen;

#[unc_bindgen(event_json(standard = "uipXXX"))]
pub enum MyEvents {
   #[event_version("1.0.0")]
   Swap { token_in: AccountId, token_out: AccountId, amount_in: u128, amount_out: u128 },

   #[event_version("1.1.0")]
   StringEvent(String),

   #[event_version("1.2.0")]
   EmptyEvent
}

#[unc_bindgen]
impl Contract {
    pub fn some_function(&self) {
        MyEvents::StringEvent(
            String::from("some_string")
        ).emit();
    }

}

Contract Source Metadata Standard:

By using contract_metadata as an argument unc_bindgen will populate the contract metadata according to UIP-330 standard. This still applies even when #[unc_bindgen] is used without any arguments.

All fields(version, link, standard) are optional and will be populated with defaults from the Cargo.toml file if not specified.

The contract_source_metadata() view function will be added and can be used to retrieve the source metadata. Also, the source metadata will be stored as a constant, CONTRACT_SOURCE_METADATA, in the contract code.

§Examples

use unc_sdk::borsh::{self, BorshDeserialize, BorshSerialize};
use unc_sdk::unc_bindgen;

#[derive(Default, BorshSerialize, BorshDeserialize)]
#[unc_bindgen(contract_metadata(
    version = "39f2d2646f2f60e18ab53337501370dc02a5661c",
    link = "https://github.com/utnet-org/examples/nft-tutorial",
    standard(standard = "uip330", version = "2.0.0"),
    standard(standard = "uip171", version = "1.0.0"),
    standard(standard = "uip177", version = "1.2.0"),
))]
struct Contract {}