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);
}
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);
}