MintMeme Info

Mintmeme is a fully decentralized memecoin launch platform. Unlike other launchers, it uses the widely recognized and fair BRC20 model, which helps significantly reduce dev frontrunning and manipulation of insider information.

MintMeme Logo

TrustNet Score

The TrustNet Score evaluates crypto projects based on audit results, security, KYC verification, and social media presence. This score offers a quick, transparent view of a project's credibility, helping users make informed decisions in the Web3 space.

34.26
Poor Excellent

Real-Time Threat Detection

Real-time threat detection, powered by Cyvers.io, is currently not activated for this project.

This advanced feature provides continuous monitoring and instant alerts to safeguard your assets from potential security threats. Real-time detection enhances your project's security by proactively identifying and mitigating risks. For more information, click here.

Security Assessments

Select the audit
"Static Analysis Dynamic Analysis Symbolic Execution SWC Check Manual Review"
Contract address
N/A
Network N/A
License N/A
Compiler N/A
Type N/A
Language Solidity
Onboard date 2025/02/19
Revision date 2025/02/20

Summary and Final Words

No crucial issues found

The contract does not contain issues of high or medium criticality. This means that no known vulnerabilities were found in the source code.

Contract owner cannot mint

It is not possible to mint new tokens.

Contract owner cannot blacklist addresses.

It is not possible to lock user funds by blacklisting addresses.

Contract owner cannot set high fees

The fees, if applicable, can be a maximum of 25% or lower. The contract can therefore not be locked. Please take a look in the comment section for more details.

Contract cannot be locked

Owner cannot lock any user funds.

Token cannot be burned

There is no burning within the contract without any allowances

Ownership is not renounced

The owner retains significant control, which could potentially be used to modify key contract parameters.

Contract is not upgradeable

The contract does not use proxy patterns or other mechanisms to allow future upgrades. Its behavior is locked in its current state.

Scope of Work

This audit encompasses the evaluation of the files listed below, each verified with a SHA-1 Hash. The team referenced above has provided the necessary files for assessment.

The auditing process consists of the following systematic steps:

  1. Specification Review: Analyze the provided specifications, source code, and instructions to fully understand the smart contract's size, scope, and functionality.
  2. Manual Code Examination: Conduct a thorough line-by-line review of the source code to identify potential vulnerabilities and areas for improvement.
  3. Specification Alignment: Ensure that the code accurately implements the provided specifications and intended functionalities.
  4. Test Coverage Assessment: Evaluate the extent and effectiveness of test cases in covering the codebase, identifying any gaps in testing.
  5. Symbolic Execution: Analyze the smart contract to determine how various inputs affect execution paths, identifying potential edge cases and vulnerabilities.
  6. Best Practices Evaluation: Assess the smart contracts against established industry and academic best practices to enhance efficiency, maintainability, and security.
  7. Actionable Recommendations: Provide detailed, specific, and actionable steps to secure and optimize the smart contracts.

A file with a different Hash has been intentionally or otherwise modified after the security review. A different Hash may indicate a changed condition or potential vulnerability that was not within the scope of this review.

Final Words

The following provides a concise summary of the audit report, accompanied by insightful comments from the auditor. This overview captures the key findings and observations, offering valuable context and clarity.


Ownership Privileges
  • Any arbitrary address can deploy a new token using the factory contract.
  • The token creators can update the token info.
  • The owner can update the fee address.
  • The owner can update the minimum total ether value.
  • The owner can update the creator fee percentage.
  • The owner can pause/un-pause the create functionality in the contract.

Note - This Audit report consists of a security analysis of the MintMeme smart contract. This analysis did not include functional testing (or unit testing) of the contract’s logic. Moreover, we only audited the mentioned contract for the MintMeme team. Other contracts associated with the project were not audited by our team. We recommend investors do their own research before investing.

Files and details

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Functions
public

/

State variables
public

/

Total lines
of code

/

Capabilities
Hover on items

/

Findings and Audit result

high Issues | 1 findings

Resolved

#1 high Issue
Unsafe use of tx.origin
Factory.sol
L125
Description

Using tx.origin to restrict token creation is unsafe because it assumes that only externally owned accounts (EOAs) will be involved, but attackers can exploit this through intermediary contracts, including those that may pass along the original EOA’s address. Although one might consider using msg.sender.code.length to detect and block contracts (by reverting if the length is nonzero), this approach is also problematic because contracts in the construction phase have a code length of zero and could bypass the check. As a mitigation, it’s advisable to avoid relying solely on such checks—instead, consider implementing a more flexible whitelist mechanism that allows trusted contracts while still blocking malicious ones. This ensures secure token creation without unduly restricting legitimate contract interactions.

medium Issues | 2 findings

Resolved

#1 medium Issue
The owner can set fees more than 25%.
Factory.sol
L181-183
Description

The issue here is that the setCreatorFeePercent function, which is restricted to the owner via the onlyOwner modifier, allows the fee percentage to be set arbitrarily. Without any bounds, the owner could set the fee to more than 25%, which may be considered excessive. Such a high fee could unfairly burden token creators and discourage participation on the platform. To mitigate this risk, you could enforce a maximum fee cap—such as 25%—by adding a require statement to ensure that _creatorFeePercent does not exceed this threshold or by implementing a decentralized governance mechanism that approves any fee changes.

Acknowledged

#2 medium Issue
Lack of Input Validation
Factory.sol
L175-177
Description

The function does not validate the new _minTotalEther value. Without checks, the owner might set it to an unintended value such as zero (which could undermine the economic security intended by the parameter) or to an excessively high value (which might prevent legitimate token creation). The function passes _minTotalEther directly to the internal setter without any restrictions. To mitigate this, Add a require statement to enforce that the new value is within a reasonable range.

low Issues | 1 findings

Acknowledged

#1 low Issue
Floating pragma solidity version
Factory.sol
L2
Description

Adding the constant version of solidity is recommended, as this prevents the unintentional deployment of a contract with an outdated compiler that contains unresolved bugs.