Just had a chat with bwarelabs team, everything should be fixed now
guest8135814364 activity
guest8135814364 commented on I’m using the bwarelabs gateway. Might be the issue?
Yeah same issue with my dApps (using bwareLabs), switched to the the new blastApi url but same probblem
guest8135814364 commented on Hey again ! :) is there a way to test correctly our smart contract, better than doigt manual transactions ?
Hey, yes you can use mando test check https://docs.elrond.com/developers/mandos-reference/overview/
guest8135814364 commented on Hello guys, is there a way to transfer EGLD on a smart contract to owner of the smart contract ?
Yes fn send_sc_balance_to_owner(&self) { let available_amount = self .blockchain() .get_sc_balance(&TokenIdentifier::egld(), 0); let owner = self.blockchain().get_owner_address(); self.send() .direct(&owner, &TokenIdentifier::egld(), 0, &available_amount, &[]); }