What is PooPad?
🔰PooPad is 1st launchpad platform for meme projects.
🔰 PooPad helps everyone to create their own tokens and token sales in few seconds. PooPad aims to be the most known and most used launchpad in the world.
🔰 $PooPad is a deflationary token designed to become more scarce over time. After the listing on pancakeswap, we will accelerate the internal burning of PooPad tokens, the price may rise to the moon.
🔰 $PooPad is used for gaining eligibility to participate in launchpad.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
PooPad.addLiquidity() (#589-629) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
PooPad.swapBack() (#630-668) sends eth to arbitrary user
Dangerous calls:
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#656-661)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#662-667)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in PooPad._transfer(address,address,uint256) (#524-550):
External calls:
- addLiquidity() (#540)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#608-614)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
- swapBack() (#543)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#644-650)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#656-661)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#662-667)
External calls sending eth:
- addLiquidity() (#540)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
- swapBack() (#543)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#656-661)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#662-667)
State variables written after the call(s):
- spend(sender,amount) (#547)
- _balances[account] = _balances[account].sub(balance,ERC20: Insufficient balance) (#450)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#548)
- amountReceived = takeFee(sender,amount) (#546)
- _balances[blackHole] = _balances[blackHole].add(blackHoleFeeAmount) (#576)
- _balances[address(this)] = _balances[address(this)].add(itFeeAmount) (#580)
- _balances[autoLiquidityReceiver] = _balances[autoLiquidityReceiver].add(liquidityFeeAmount) (#584)
- swapBack() (#543)
- inSwap = true (#332)
- inSwap = false (#334)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
PooPad.swapBack().success (#656) is written in both
(success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#656-661)
(success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#662-667)
Fix or remove the writes.
Additional information: link
PooPad.incRoundBalance(address,uint256) (#432-439) ignores return value by _roundBalances[account].inc(amount) (#437)
PooPad._transfer(address,address,uint256) (#524-550) ignores return value by _roundBalances[recipient].inc(amount) (#535)
PooPad.addLiquidity() (#589-629) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
Ensure that all the return values of the function calls are used.
Additional information: link
PooPad.takeFee(address,uint256) (#569-588) performs a multiplication on the result of a division:
-feeAmount = amount.div(feeDenominator).mul(totalFee) (#573)
PooPad.takeFee(address,uint256) (#569-588) performs a multiplication on the result of a division:
-blackHoleFeeAmount = amount.div(feeDenominator).mul(blackHoleFee) (#575)
PooPad.takeFee(address,uint256) (#569-588) performs a multiplication on the result of a division:
-itFeeAmount = amount.div(feeDenominator).mul(treasuryFee.add(insuranceFundFee)) (#579)
PooPad.takeFee(address,uint256) (#569-588) performs a multiplication on the result of a division:
-liquidityFeeAmount = amount.div(feeDenominator).mul(liquidityFee) (#583)
Consider ordering multiplication before division.
Additional information: link
PooPad.transferOwnership(address) (#405-408) should emit an event for:
- owner = newOwner (#407)
Emit an event for critical parameter changes.
Additional information: link
PooPad.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#707) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#712)
PooPad.setFeeReceivers(address,address,address,address)._treasuryReceiver (#708) lacks a zero-check on :
- treasuryReceiver = _treasuryReceiver (#713)
PooPad.setFeeReceivers(address,address,address,address)._insuranceFundReceiver (#709) lacks a zero-check on :
- insuranceFundReceiver = _insuranceFundReceiver (#714)
PooPad.setFeeReceivers(address,address,address,address)._blackHole (#710) lacks a zero-check on :
- blackHole = _blackHole (#715)
PooPad.setPairAddress(address)._pairAddress (#726) lacks a zero-check on :
- pairAddress = _pairAddress (#727)
Check that the address is not zero.
Additional information: link
Reentrancy in PooPad.addLiquidity() (#589-629):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#608-614)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
External calls sending eth:
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
State variables written after the call(s):
- _lastAddLiquidityTime = block.timestamp (#628)
Reentrancy in PooPad.constructor() (#352-380):
External calls:
- _setRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#362)
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#384-387)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint128).max (#368)
- _autoAddLiquidity = true (#371)
- _mint(owner,totalSupply.div(20)) (#379)
- _balances[account] = _balances[account].add(amount) (#428)
- _isFeeExempt[treasuryReceiver] = true (#372)
- _isFeeExempt[address(this)] = true (#373)
- _isFeeExempt[owner] = true (#374)
- _liquidity = treasuryReceiver (#367)
- autoLiquidityReceiver = 0x092fE0eFeE0C0E20C485852f43dBDB00104Cb66e (#363)
- blackHole = 0x000000000000000000000000000000000000dEaD (#366)
- _mint(owner,totalSupply.div(20)) (#379)
- cap = cap.add(amount) (#424)
- insuranceFundReceiver = 0xBAD0acDa8E63af585b9E19935f588068bAbE224c (#365)
- pairAddress = pair (#369)
- pairContract = IPancakeSwapPair(pair) (#370)
- _mint(owner,totalSupply.div(20)) (#379)
- totalSupply = cap (#426)
- treasuryReceiver = 0xC16e55d06aC7aCe4A2a4BC6087eB4dAb6bfBf86B (#364)
- whitelist[pair] = true (#375)
- whitelist[treasuryReceiver] = true (#376)
- whitelist[address(this)] = true (#377)
- whitelist[owner] = true (#378)
Reentrancy in PooPad.transferFrom(address,address,uint256) (#475-479):
External calls:
- _transfer(sender,recipient,amount) (#476)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#644-650)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#656-661)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#608-614)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#662-667)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
External calls sending eth:
- _transfer(sender,recipient,amount) (#476)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#656-661)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#662-667)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,ERC20: transfer amount exceeds allowance)) (#477)
- _allowances[owner_][spender] = amount (#471)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PooPad._transfer(address,address,uint256) (#524-550):
External calls:
- addLiquidity() (#540)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#608-614)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
- swapBack() (#543)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#644-650)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#656-661)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#662-667)
External calls sending eth:
- addLiquidity() (#540)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
- swapBack() (#543)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#656-661)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#662-667)
Event emitted after the call(s):
- Transfer(sender,blackHole,blackHoleFeeAmount) (#577)
- amountReceived = takeFee(sender,amount) (#546)
- Transfer(sender,address(this),itFeeAmount) (#581)
- amountReceived = takeFee(sender,amount) (#546)
- Transfer(sender,autoLiquidityReceiver,liquidityFeeAmount) (#585)
- amountReceived = takeFee(sender,amount) (#546)
- Transfer(sender,recipient,amountReceived) (#549)
Reentrancy in PooPad.constructor() (#352-380):
External calls:
- _setRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#362)
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#384-387)
Event emitted after the call(s):
- Transfer(address(this),account,amount) (#429)
- _mint(owner,totalSupply.div(20)) (#379)
Reentrancy in PooPad.transferFrom(address,address,uint256) (#475-479):
External calls:
- _transfer(sender,recipient,amount) (#476)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#644-650)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#656-661)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#608-614)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#662-667)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
External calls sending eth:
- _transfer(sender,recipient,amount) (#476)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#656-661)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#662-667)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
Event emitted after the call(s):
- Approval(owner_,spender,amount) (#472)
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,ERC20: transfer amount exceeds allowance)) (#477)
Apply the check-effects-interactions pattern.
Additional information: link
RoundPool.getReflection(RoundPool.RoundBalance,RoundPool.RoundTime) (#54-85) uses timestamp for comparisons
Dangerous comparisons:
- round.status == 1 && block.timestamp > roundTime.timeUnlockStart (#56)
- block.timestamp >= roundTime.timeUnlockEnd (#62)
- sec > 0 && sec < end (#67)
- round.total.mul(i).div(roundTime.timeUnlockVesting) < balance && balance <= round.total.mul(i + 1).div(roundTime.timeUnlockVesting) (#70-71)
- balance > round.claim (#75)
- sec > 0 && sec >= end && round.total > round.claim (#80)
RoundPool.settle(RoundPool.RoundBalance,RoundPool.RoundTime,uint256) (#86-103) uses timestamp for comparisons
Dangerous comparisons:
- amount > 0 && round.status == 1 && block.timestamp >= roundTime.timeEnd (#88)
- amount > balance (#90)
PooPad._mint(address,uint256) (#422-430) uses timestamp for comparisons
Dangerous comparisons:
- cap > totalSupply (#425)
PooPad.incRoundBalance(address,uint256) (#432-439) uses timestamp for comparisons
Dangerous comparisons:
- cap > totalSupply (#434)
PooPad.buyToken(address) (#551-568) uses timestamp for comparisons
Dangerous comparisons:
- _token > 0 (#558)
PooPad.shouldAddLiquidity() (#688-694) uses timestamp for comparisons
Dangerous comparisons:
- _autoAddLiquidity && ! inSwap && msg.sender != pair && block.timestamp >= (_lastAddLiquidityTime + 172800) (#689-693)
Avoid relying on block.timestamp.
Additional information: link
SafeMath.div(uint256,uint256,string) (#27-30) is never used and should be removed
Remove unused functions.
Additional information: link
PooPad.totalFee (#321) is set pre-construction with a non-constant function or state variable:
- liquidityFee.add(treasuryFee).add(insuranceFundFee).add(blackHoleFee)
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Pragma version>=0.7.3 (#2) allows old versions
solc-0.7.3 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in PooPad.swapBack() (#630-668):
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#656-661)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#662-667)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeSwapPair.DOMAIN_SEPARATOR() (#119) is not in mixedCase
Function IPancakeSwapPair.PERMIT_TYPEHASH() (#120) is not in mixedCase
Function IPancakeSwapPair.MINIMUM_LIQUIDITY() (#134) is not in mixedCase
Function IPancakeSwapRouter.WETH() (#151) is not in mixedCase
Parameter PooPad.setRouter(address)._router (#390) is not in mixedCase
Parameter PooPad.buyToken(address)._refer (#551) is not in mixedCase
Parameter PooPad.checkFeeExempt(address)._addr (#700) is not in mixedCase
Parameter PooPad.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#707) is not in mixedCase
Parameter PooPad.setFeeReceivers(address,address,address,address)._treasuryReceiver (#708) is not in mixedCase
Parameter PooPad.setFeeReceivers(address,address,address,address)._insuranceFundReceiver (#709) is not in mixedCase
Parameter PooPad.setFeeReceivers(address,address,address,address)._blackHole (#710) is not in mixedCase
Parameter PooPad.setFeeExempt(address,bool)._addr (#717) is not in mixedCase
Parameter PooPad.setFeeExempt(address,bool)._flag (#717) is not in mixedCase
Parameter PooPad.setWhitelist(address,bool)._addr (#720) is not in mixedCase
Parameter PooPad.setWhitelist(address,bool)._flag (#720) is not in mixedCase
Parameter PooPad.setBlacklist(address,bool)._botAddress (#723) is not in mixedCase
Parameter PooPad.setBlacklist(address,bool)._flag (#723) is not in mixedCase
Parameter PooPad.setPairAddress(address)._pairAddress (#726) is not in mixedCase
Parameter PooPad.setLP(address)._address (#729) is not in mixedCase
Variable PooPad._refRate (#305) is not in mixedCase
Variable PooPad._isFeeExempt (#315) is not in mixedCase
Variable PooPad._autoAddLiquidity (#337) is not in mixedCase
Variable PooPad._lastAddLiquidityTime (#338) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in PooPad.buyToken(address) (#551-568):
External calls:
- address(address(uint160(_liquidity))).transfer(_msgValue) (#557)
State variables written after the call(s):
- incRoundBalance(msg.sender,_token) (#559)
- cap = cap.add(amount) (#433)
- incRoundBalance(_refer,_refToken) (#563)
- cap = cap.add(amount) (#433)
- incRoundBalance(msg.sender,_token) (#559)
- totalSupply = cap (#435)
- incRoundBalance(_refer,_refToken) (#563)
- totalSupply = cap (#435)
Event emitted after the call(s):
- Transfer(address(this),msg.sender,_token) (#560)
- Transfer(address(this),_refer,_refToken) (#564)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#155) is too similar to IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#156)
Prevent variables from having similar names.
Additional information: link
PooPad.constructor() (#352-380) uses literals with too many digits:
- _roundTime = RoundPool.RoundTime(block.timestamp,block.timestamp + _roundCycle,block.timestamp + _roundCycle + _roundUnlockStart,block.timestamp + _roundCycle + _roundUnlockStart + _roundUnlockEnd,12,1000000) (#355-361)
PooPad.constructor() (#352-380) uses literals with too many digits:
- blackHole = 0x000000000000000000000000000000000000dEaD (#366)
PooPad.slitherConstructorVariables() (#290-733) uses literals with too many digits:
- totalSupply = 10000000000000000000000000000 (#293)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
PooPad._roundUnlockEnd (#302) should be constant
PooPad._roundUnlockStart (#301) should be constant
PooPad.blackHoleFee (#320) should be constant
PooPad.decimals (#296) should be constant
PooPad.feeDenominator (#322) should be constant
PooPad.insuranceFundFee (#319) should be constant
PooPad.liquidityFee (#317) should be constant
PooPad.name (#294) should be constant
PooPad.symbol (#295) should be constant
PooPad.treasuryFee (#318) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setRouter(address) should be declared external:
- PooPad.setRouter(address) (#390-392)
balanceOf(address) should be declared external:
- PooPad.balanceOf(address) (#397-399)
allowance(address,address) should be declared external:
- PooPad.allowance(address,address) (#401-403)
transferOwnership(address) should be declared external:
- PooPad.transferOwnership(address) (#405-408)
setLiquidity(address) should be declared external:
- PooPad.setLiquidity(address) (#410-414)
setAirdrop(address) should be declared external:
- PooPad.setAirdrop(address) (#416-420)
transferFrom(address,address,uint256) should be declared external:
- PooPad.transferFrom(address,address,uint256) (#475-479)
approve(address,uint256) should be declared external:
- PooPad.approve(address,uint256) (#481-484)
clear() should be declared external:
- PooPad.clear() (#486-488)
update(uint256,uint256) should be declared external:
- PooPad.update(uint256,uint256) (#490-519)
transfer(address,uint256) should be declared external:
- PooPad.transfer(address,uint256) (#520-523)
buyToken(address) should be declared external:
- PooPad.buyToken(address) (#551-568)
setPairAddress(address) should be declared external:
- PooPad.setPairAddress(address) (#726-728)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Blog account (Reddit or Medium)
Unable to find Discord account
Twitter account has few posts