Best pratices when minting max supply based on tokenomics

I have mint account without freeze authority and would like to mint max token supply in different wallets based on tokenomics distribution.
Q1: Can I add token vesting latter to different wallets?
Q2: How to prevent an unauthorized transfer using multi-signer from metamask or others wallet?

2 Likes

Q1: Yes, you can add token vesting later to different wallets, but it will depend on the smart contract you used for the token. If the contract allows for vesting to be set up after minting, you can implement that for each wallet according to your tokenomics distribution.

Q2: To prevent unauthorized transfers using a multi-signer setup, you can implement a multi-signature wallet where multiple parties must approve a transaction before it can be executed. This way, even if one wallet is compromised, the unauthorized transfer cannot occur without the signatures of the other wallet holders. Make sure to choose a reliable multi-sig solution that integrates well with MetaMask and other wallets you plan to use.

1 Like