1
2
3
4
5
6
7
elrond_wasm::imports!();

#[elrond_wasm_derive::proxy]
pub trait UserBuiltin {
	#[endpoint(SetUserName)]
    fn set_user_name(&self, name: &BoxedBytes) -> Self::BigUint;
}