unc-sdk 2.3.2

Rust library for writing Utility smart contracts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use unc_sdk::unc;

#[unc(contract_state, contract_metadata(
    version = "39f2d2646f2f60e18ab53337501370dc02a5661c",
    link = "https://github.com/unc-examples/nft-tutorial",
    standard(standard = "uip330", version = "1.1.0"),
    standard(standard = "uip171", version = "1.0.0"),
    standard(standard = "uip177", version = "2.0.0"),
))]
struct Contract {}

#[unc]
impl Contract {}

fn main() {}