constructor(){ _mint(address(this),ProjectA,1,"0x0"); } buyTKN(){ safeTransferFrom(address(this), msg.sender, ProjectA, 1, ""); } How do I let add users buy these tokens?
constructor(){
_mint(address(this),ProjectA,1,"0x0");
}
buyTKN(){
safeTransferFrom(address(this), msg.sender, ProjectA, 1, "");
}
How do I let add users buy these tokens?