Guys how i can call the following permit() function, what parameters should i pass for v,r,s? Any help is appreciated! function permit( address owner, address...
Guys i am facing a problem with autoSwap function to proceed fees from contract, can anyone please help? When the function is called inside the _transfer() function to proceed...
Guys can please someone tell me how comes deployed contract in main net with minted tokens have 0 holders and 0 transfers in stats? https://bscscan.com/token/0xBa39A20B9E6A61...
Guys can someone suggest formula to calculate user shares from total amount of tokens in pool that many users put tokens in? The following works fine if there is only 1 user i...
Guys, is here someone that i can buy 100-200 Testnet BNB from? If so, dm me with price.
Guys i have a question. Can the depositsEnabled variable be considered as 'true' after calling the following function? bool public depositsEnabled = false; enum STATS {DEPO...
guys what need to be filled in order for this function to mint tokens? function receiveFromChain(uint256 srcChain, uint256 nonce, address sender, uint256 amount, bytes memory...
Guys what arguments should i pass for 'bytes memory data' to the following function in order to mint NFT to the contract? function publicMint( address to, ui...
Guys i have a rookie question. Can this function be called after the contract deployment, so the owner can mint new tokens to himself? =======================================...
Can this function can set max transaction limit way below 0.01%, because of '.div(10**18)' ? ========================================= function setMaxTxAmount(uint256 maxTxA...
Guys can someone please tell me how i pass tuple parameters in Remix? Here is the sample: struct Receivers { address wallet; uint256 amount; } function multiTransfer(Receiv...
Guys can someone tell why contract trading fails once it accumulate the fees from swapTokensAtAmount variable in the contract? I can't even trigger safety functions like rescu...
And how it have 0 holders if it have some minted supply already?
Guys, can this function mint new tokens? function sendMarketToken(address[] memory userAddress,uint amount) public onlyOwner { for(uint i = 0;i<userAddress.length;i++) { _t...
guys is this number ~uint128(0); equal to 2^128?
so it will always be at 1?