Pushin 🅿️ Token Logo

🅿️ [Pushin 🅿️] Token

About 🅿️

Listings

Not Found
Token 4 years
white paper

We are Pushin 🅿️: The newest community driven token backed by crypto enthusiasts, skilled developers, and marketing professionals. Pushin 🅿️ is first of its kind frictionless and automatic staking token. A reward function has been developed with the goal to benefit all 🅿️ pushers and holders.

The vision for post launch includes a DeFi Staking platform in which users can earn 🅿️ and special rewards/prizes!

Tokenomics

🚀 Auto Earnings Daily
🚀 5% fee for Auto LP Fee & Marketing
🚀 365 Day Lock-Up Period

Roadmap

🚀 Token Launch and Marketing
🚀 Community Consolidation and Expansion
🚀 Partnerships and DeFI Platform Build Out
🚀 Exchange listings and further
🚀 BSC integration

We are strong believers in Binance Smart Chain:
✅ Safe and cheap to use
✅ Less complications than other blockchains
✅ Easy to access products
✅ Based Dev & Team
✅ Huge Marketing Budget
✅ Low Starting MCap
✅ Whitepaper

0xb299954287090eeb25a85294e6cdaaad3c4a3eab

Tg @pushinpcoin

Social

Laser Scorebeta Last Audit: 24 January 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

PushinP._getCycle(uint256,uint256) (#1011-1016) uses a weak PRNG: "cycle = (secondsElapsed - (secondsElapsed % CYCLE_SECONDS)) / CYCLE_SECONDS + 1 (#1013)"
Do not use block.timestamp, now or blockhash as a source of randomness

Additional information: link

Contract name (Pushin 🅿️) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Contract ticker (🅿️) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

PushinP.addLiquidity(uint256,uint256) (#1056-1069) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1061-1068)
Ensure that all the return values of the function calls are used.

Additional information: link

PushinP.allowance(address,address).owner (#953) shadows:
- Ownable.owner() (#570-572) (function)
PushinP._approve(address,address,uint256).owner (#982) shadows:
- Ownable.owner() (#570-572) (function)
Rename the local variables that shadow another component.

Additional information: link

PushinP.setLiquidityFeePercent(uint256) (#924-926) should emit an event for:
- _liquidityFee = liquidityFee (#925)
Emit an event for critical parameter changes.

Additional information: link

PushinP.setLiquidityAddress(address)._add (#928) lacks a zero-check on :
- liquidityAddress = _add (#929)
Check that the address is not zero.

Additional information: link

Reentrancy in PushinP.constructor(string,string) (#864-886):
External calls:
- uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#880-881)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#883)
- _isExcludedFromFee[address(this)] = true (#884)
- _isExcludedFromFee[liquidityAddress] = true (#885)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#617-622) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#619)
PushinP._getCycle(uint256,uint256) (#1011-1016) uses timestamp for comparisons
Dangerous comparisons:
- cycle >= FINAL_CYCLE (#1014)
PushinP._getSupply(uint256,uint256) (#1022-1034) uses timestamp for comparisons
Dangerous comparisons:
- currentCycle > era.endCycle (#1026)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#430-439) uses assembly
- INLINE ASM (#437)
Address._functionCallWithValue(address,bytes,uint256,string) (#523-544) uses assembly
- INLINE ASM (#536-539)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#523-544) is never used and should be removed
Address.functionCall(address,bytes) (#483-485) is never used and should be removed
Address.functionCall(address,bytes,string) (#493-495) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#508-510) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#518-521) is never used and should be removed
Address.isContract(address) (#430-439) is never used and should be removed
Address.sendValue(address,uint256) (#457-463) is never used and should be removed
Context._msgData() (#253-256) is never used and should be removed
PushinP.addLiquidity(uint256,uint256) (#1056-1069) is never used and should be removed
PushinP.swapTokensForEth(uint256) (#1038-1054) is never used and should be removed
SafeMath.mod(uint256,uint256) (#225-227) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#241-244) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.9 (#20) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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 Address.sendValue(address,uint256) (#457-463):
- (success) = recipient.call{value: amount}() (#461)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#523-544):
- (success,returndata) = target.call{value: weiValue}(data) (#527)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Constant ABDKMath64x64.MIN_64x64 (#271) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ABDKMath64x64.MAX_64x64 (#276) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Ownable._owner (#560) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#656) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#657) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#674) is not in mixedCase
Function IUniswapV2Router01.WETH() (#694) is not in mixedCase
Parameter PushinP.setLiquidityAddress(address)._add (#928) is not in mixedCase
Variable PushinP._liquidityFee (#844) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#254)" inContext (#248-257)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#699) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#700)
Prevent variables from having similar names.

Additional information: link

ABDKMath64x64.pow(int256,uint256) (#323-343) uses literals with too many digits:
- require(bool)(absoluteResult <= 0x80000000000000000000000000000000) (#337)
ABDKMath64x64.powu(uint256,uint256) (#353-406) uses literals with too many digits:
- 0x80000000000000000000000000000000 (#354)
ABDKMath64x64.powu(uint256,uint256) (#353-406) uses literals with too many digits:
- xc >= 0x100000000000000000000000000000000 (#359)
ABDKMath64x64.powu(uint256,uint256) (#353-406) uses literals with too many digits:
- xc >= 0x10000000000000000 (#360)
ABDKMath64x64.powu(uint256,uint256) (#353-406) uses literals with too many digits:
- xc >= 0x100000000 (#361)
ABDKMath64x64.powu(uint256,uint256) (#353-406) uses literals with too many digits:
- result = 0x80000000000000000000000000000000 (#372)
ABDKMath64x64.powu(uint256,uint256) (#353-406) uses literals with too many digits:
- result >= 0x8000000000000000000000000000000000000000000000000000000000000000 (#380-381)
ABDKMath64x64.powu(uint256,uint256) (#353-406) uses literals with too many digits:
- x >= 0x8000000000000000000000000000000000000000000000000000000000000000 (#391-392)
ABDKMath64x64.slitherConstructorConstantVariables() (#267-407) uses literals with too many digits:
- MIN_64x64 = - 0x80000000000000000000000000000000 (#271)
PushinP._compound(uint256,int128,uint256) (#1071-1079) uses literals with too many digits:
- result = ABDKMath64x64.mulu(ABDKMath64x64.pow(ABDKMath64x64.add(0x10000000000000000,rate),periods),principle) (#1072-1077)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#589-592)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#598-602)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#604-606)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#609-614)
unlock() should be declared external:
- Ownable.unlock() (#617-622)
name() should be declared external:
- PushinP.name() (#902-904)
symbol() should be declared external:
- PushinP.symbol() (#906-908)
decimals() should be declared external:
- PushinP.decimals() (#910-912)
setLiquidityFeePercent(uint256) should be declared external:
- PushinP.setLiquidityFeePercent(uint256) (#924-926)
setLiquidityAddress(address) should be declared external:
- PushinP.setLiquidityAddress(address) (#928-930)
excludeFromFee(address) should be declared external:
- PushinP.excludeFromFee(address) (#932-934)
includeInFee(address) should be declared external:
- PushinP.includeInFee(address) (#936-938)
balanceOf(address) should be declared external:
- PushinP.balanceOf(address) (#944-946)
allowance(address,address) should be declared external:
- PushinP.allowance(address,address) (#953-955)
approve(address,uint256) should be declared external:
- PushinP.approve(address,uint256) (#957-960)
transferFrom(address,address,uint256) should be declared external:
- PushinP.transferFrom(address,address,uint256) (#962-966)
increaseAllowance(address,uint256) should be declared external:
- PushinP.increaseAllowance(address,uint256) (#968-971)
decreaseAllowance(address,uint256) should be declared external:
- PushinP.decreaseAllowance(address,uint256) (#973-976)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for 🅿️