abax_contracts 1.0.0

Contracts for the Abax Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: BUSL-1.1
use ink::{contract_ref, env::DefaultEnvironment};

pub type DummyRef = contract_ref!(Dummy, DefaultEnvironment);

#[ink::trait_definition]
pub trait Dummy {
    #[ink(message)]
    fn dummy(&self);
}