I am trying to make payable function that allows to send amount less than 1 ether. And it works in Remix where I can choose Wei/Gwei/Ether but when I verify my contract on Etherscan it allows me to enter a value only in ether (picture). Is it possible to change the minimum unit to wei?
` function Stake() public payable {
_mint(msg.sender, msg.value);
}`
Tried to use new uint variable but I need only one