FAQ

.faq-container {
width: 80%;
max-width: 700px;
margin: 20px auto;
}
.faq-question {
background-color: #f1f1f1;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 18px;
transition: 0.4s;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-question:after {
content: '\25BA'; /* Unicode character for arrow */
color: orange;
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\25BC"; /* Unicode character for arrow down */
}
.faq-answer {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}

What is MWIF Token?

MWIF Token is a community-driven digital asset designed for spreading joy through internet humor, not for financial gains.

How do I purchase MWIF Tokens?

You can purchase MWIF Tokens during the pre-sale on DX.app and on SpookySwap with a compatible crypto wallet.

What blockchain does MWIF Token operate on?

MWIF Token operates on the Fantom (FTM) blockchain, offering fast transactions and low fees.

Do I need a special wallet to hold MWIF Tokens?

Any wallet that supports FTM-based tokens will work for MWIF Tokens. Examples include MetaMask, Trust Wallet, and Ledger.

Is there a limit to how many MWIF Tokens I can buy?

During the pre-sale, there may be a maximum purchase limit to allow fair distribution among early supporters. Please refer to the pre-sale details for more information.

What makes MWIF Token different from other cryptocurrencies?

Unlike utility or investment-focused cryptocurrencies, MWIF Token is a meme coin that values community engagement and entertainment above financial utility.

Can I trade MWIF Tokens?

Yes, after the pre-sale, MWIF Tokens will be available for trading. Keep an eye on official announcements for listing details.

Are there any rewards for holding MWIF Tokens?

MWIF Token is designed as a fun and communal asset rather than a rewards-based token. However, engaging with the community might bring about various surprises.

var faqs = document.getElementsByClassName("faq-question");
var i;

for (i = 0; i < faqs.length; i++) {
faqs[i].addEventListener("click", function() {
this.classList.toggle("active");
var answer = this.nextElementSibling;
if (answer.style.maxHeight) {
answer.style.maxHeight = null;
} else {
answer.style.maxHeight = answer.scrollHeight + "px";
}
});
}