Trait elrond_wasm_module_dns::DnsModule[][src]

pub trait DnsModule: ContractBase + Sized {
    fn dns_proxy(&self, to: ManagedAddress<Self::Api>) -> Proxy<Self::Api>;

    fn dns_register(
        &self,
        dns_address: ManagedAddress<Self::Api>,
        name: BoxedBytes,
        payment: BigUint<Self::Api>
    ) -> SCResult<AsyncCall<Self::Api>> { ... } }
Expand description

The module deals with registering usernames in a DNS contract.

Required methods

Provided methods

Implementors