Hello,

Sign up to join our community!

Welcome Back,

Please login to your account!

Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Sky8921089645 activity

Sky8921089645 commented on I understand that getting listed on any exchange is a very sensitive topic. This is specially true now when the market acts so irrational. Is there a person of contact that I need to connect with in order to have a clear road-map for listing 1 project on Maiar-Exchange?

since Maiar Exchange is a DEX, anyone can list a token, you don’t *almost* need the permission of anyone (not true at 100% because maiar DEX isn’t yet fully decentralized) Here’s the process to list a token : https://docs.maiar.exchange/token-listing/

Sky8921089645 commented on Hello, Is there a way to change the ownership of a token/nft by using the self.send() API in a smartcontract ? Something like self.send().change_token_owner() ?

yes! Here’s my function if you want ? #[only_owner] #[endpoint(changeCollectionOwner)] fn change_collection_owner(&self, new_owner: Address) { let token = self.sft_token_id().get(); self.send() .esdt_system_sc_proxy() .transfer_ownership(&token, &new_owner) .async_call() .call_and_exit() }