How to allow all to use mint function of aptos coin

How to allow anyone use mint function of my coin in aptos?

Now i have this code

    public entry fun mint(account: &signer, dst_addr: address, amount: u64) {
        aptos_framework::managed_coin::mint<Coin>(account, dst_addr, amount);
    }

Leave a Comment