near-sdk 5.26.0

Rust library for writing NEAR smart contracts.
Documentation
//! Even though it might feel unintuitive, a method can be both private and init.
//! See: https://github.com/near/near-sdk-rs/issues/1040#issuecomment-1687126452

use near_sdk::near;

#[near(contract_state)]
struct Incrementer {
    value: u32,
}

#[near]
impl Incrementer {
    #[private]
    #[init]
    pub fn new(starting_value: u32) -> Self {
        Self { value: starting_value }
    }
}

fn main() {}