transferNFT
Transfer NFT from holder's wallet to another address.
Activity activity = this;String collection = "collection address";String tokenID = "token ID";String toWalletAddress = "to wallet address";MirrorWorld.transferNFT(activity, collection, tokenID, toWalletAddress, new MirrorCallback() {    @Override    public void callback(String result) {        //todo    }});
Edit this page on GitHub