One_Million_DAO Token Logo

OMD [One_Million_DAO] Token

About OMD

Listings

Token 2 years
white paper

✅ KYC - Solidproof. ✅ Audit - InterFi
AMA -phoenixholdingschannel, rugfreehouse, pinkecosystem,
travladdsafucalls, gollumsgems, PythagorasDev, venomcalls, BSCTALKs
💰 1 Million DAO Fund - get passive rewards!
🔝 Highest & Fastest Auto-stake/compound protocol in Defi. Rewards users with a sustainable Fixed APY of 1,041,035%, compounding EVERY 3 SECONDS. An investment of 1$OMD gives 10,410$OMD 🎮 Metaverse P2E & M2E (beta is live)! 🌠 NFT Founder Collection! NFT Marketplace! 📲 APP! Community competition!

Social

Laser Scorebeta Last Audit: 14 October 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

Modifier TransparentUpgradeableProxy.ifAdmin() (#605-611) does not always execute _; or revert
All the paths in a modifier must execute _ or revert.

Additional information: link

TransparentUpgradeableProxy (#593-690) should inherit from IBeacon (#88-95)
Inherit from the missing interface or contract.

Additional information: link

Variable TransparentUpgradeableProxy.fake_logic (#594) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Contract name (One_Million_DAO) 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.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Pragma version^0.8.0 (#2) allows old versions
solc-0.8.13 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

StorageSlot.getBooleanSlot(bytes32) (#338-342) uses assembly
- INLINE ASM (#339-341)
Address._verifyCallResult(bool,bytes,string) (#263-280) uses assembly
- INLINE ASM (#272-275)
Address.isContract(address) (#118-127) uses assembly
- INLINE ASM (#125)
StorageSlot.getUint256Slot(bytes32) (#356-360) uses assembly
- INLINE ASM (#357-359)
StorageSlot.getAddressSlot(bytes32) (#329-333) uses assembly
- INLINE ASM (#330-332)
Proxy._delegate(address) (#20-40) uses assembly
- INLINE ASM (#22-39)
StorageSlot.getBytes32Slot(bytes32) (#347-351) uses assembly
- INLINE ASM (#348-350)
Do not use evm assembly.

Additional information: link

Reentrancy in ERC1967Upgrade._upgradeToAndCallSecure(address,bytes,bool) (#430-458):
External calls:
- Address.functionDelegateCall(newImplementation,data) (#436)
- Address.functionDelegateCall(newImplementation,abi.encodeWithSignature(upgradeTo(address),oldImplementation)) (#444-450)
Event emitted after the call(s):
- Upgraded(newImplementation) (#456)
Apply the check-effects-interactions pattern.

Additional information: link

Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#206-213):
- (success,returndata) = target.call{value: value}(data) (#211)
Low level call in Address.sendValue(address,uint256) (#145-151):
- (success) = recipient.call{value: amount}() (#149)
Low level call in Address.functionDelegateCall(address,bytes,string) (#255-261):
- (success,returndata) = target.delegatecall(data) (#259)
Low level call in Address.functionStaticCall(address,bytes,string) (#231-237):
- (success,returndata) = target.staticcall(data) (#235)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

ERC1967Upgrade._upgradeToAndCall(address,bytes,bool) (#417-423) ignores return value by Address.functionDelegateCall(newImplementation,data) (#421)
ERC1967Upgrade._upgradeToAndCallSecure(address,bytes,bool) (#430-458) ignores return value by Address.functionDelegateCall(newImplementation,abi.encodeWithSignature(upgradeTo(address),oldImplementation)) (#444-450)
ERC1967Upgrade._upgradeToAndCallSecure(address,bytes,bool) (#430-458) ignores return value by Address.functionDelegateCall(newImplementation,data) (#436)
ERC1967Upgrade._upgradeBeaconToAndCall(address,bytes,bool) (#466-472) ignores return value by Address.functionDelegateCall(IBeacon(newBeacon).implementation(),data) (#470)
Ensure that all the return values of the function calls are used.

Additional information: link

Address.sendValue(address,uint256) (#145-151) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#196-198) is never used and should be removed
StorageSlot.getUint256Slot(bytes32) (#356-360) is never used and should be removed
ERC1967Upgrade._upgradeToAndCallSecure(address,bytes,bool) (#430-458) is never used and should be removed
ERC1967Upgrade._upgradeBeaconToAndCall(address,bytes,bool) (#466-472) is never used and should be removed
TransparentUpgradeableProxy._admin() (#678-680) is never used and should be removed
ERC1967Upgrade._upgradeTo(address) (#407-410) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#206-213) is never used and should be removed
Address.functionStaticCall(address,bytes) (#221-223) is never used and should be removed
ERC1967Upgrade._setBeacon(address) (#532-542) is never used and should be removed
StorageSlot.getBooleanSlot(bytes32) (#338-342) is never used and should be removed
StorageSlot.getBytes32Slot(bytes32) (#347-351) is never used and should be removed
Address.functionCall(address,bytes,string) (#181-183) is never used and should be removed
ERC1967Upgrade._getBeacon() (#525-527) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#231-237) is never used and should be removed
Address.functionCall(address,bytes) (#171-173) is never used and should be removed
Remove unused functions.

Additional information: link

TransparentUpgradeableProxy.fake_logic (#594) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

upgradeToAndCallInit(address) should be declared external:
- TransparentUpgradeableProxy.upgradeToAndCallInit(address) (#670-673)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.

Contract has 14% buy tax and 18% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Average 30d PancakeSwap liquidity is low.


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


Token is deployed only at one blockchain


Token has only one trading pair


Average 30d number of PancakeSwap swaps is low.


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


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for OMD

News for OMD