Stable · Chain ID 988
Read this before you make one.
one makes it.
fixed supply · locked liquidity · priced in USDT
Overview
coins.fun is a place to launch and trade tokens on Stable. You can browse launches, open any token to see its details, and trade straight from your wallet.
coins.fun never holds your funds. Every launch and trade is a transaction your wallet asks you to approve.
Key facts
- Names and symbols can be copied. Always check the token address.
- Prices come from each token's live USDT pool, so every figure is in USDT.
How launches work
Creating a launch deploys the token and its USDT pool in a single transaction, and the pool's liquidity is locked automatically. The creator sets the name, symbol, image, description, links, and fee wallet at creation.
Every token trades against USDT in its own pool. There is no bonding curve and no graduation. Buys and sells happen in that same pool from the moment it launches.
Create
The token is minted with a fixed supply and its USDT pool goes live in the same transaction.
Trade
Buys and sells run against USDT in the locked pool and move the price.
Earn
Fees accrue in the locked position and the creator can claim their share at any time.
Each launch uses a fixed supply of one billion tokens, a 1% pool fee, and a $2 launch fee.
Single-sided liquidity
You post tokens, not USDT. The full supply goes into the pool as single-sided liquidity above the starting price, so no quote asset is required to open a market. Buyers bring USDT when they trade.
Supply is spread across concentrated bands rather than one flat range. The layout is fixed at deployment and identical for every token, so no launch can be shaped to favour whoever set it up.
Trading and pricing
Every token trades against USDT in its own liquidity pool. The price you see is the live pool price, and it moves with each trade. The amount you actually receive can differ slightly from the quote. Slippage sets how much of that movement you accept.
Because the quote asset is USDT, a market cap on coins.fun is a figure in USDT. It does not move when a volatile base asset moves.
The liquidity lock
The position is transferred to the locker contract at deployment. The locker has no withdrawal method and is not upgradeable. The creator cannot pull the liquidity, and neither can the coins.fun team.
Fees accrued by the position are claimable. The principal is not, by anyone.
Anyone can add their own liquidity or open another pool later. Those positions are not locked, and creator rewards accrue only from the initial locked position.
A lock prevents the pool being withdrawn. It does not make a token safe, and price can still fall to near zero through ordinary selling.
Fees and rewards
Trading generates fees in both the token and USDT. The creator keeps 70% and the protocol keeps 30%. The creator can claim their share from the coins.fun interface at any time.
The split is snapshotted for each token when it launches and never changes afterward.
- 70% · CREATOR Paid in USDT, claimable at any time, for as long as the token trades.
- 30% · PROTOCOL Divided between the team, the community pool, and $COINS buybacks.
- Team and infrastructure
- Community pool
- $COINS buybacks
The allocation between those three is not final and will be published here once it is set.
| Pool fee | 1% of every trade |
| Creator share | 70% |
| Protocol share | 30% |
| Launch fee | $2 in USDT |
| Supply | 1,000,000,000 (1e9) |
Protocol revenue
Protocol revenue comes from the 30% fee share and the $2 launch fee. Both accrue in USDT, so revenue is denominated in USDT at the moment it is earned.
It funds the team and infrastructure, the community pool, and an automated buyback of $COINS. Buying $COINS with protocol fees does not guarantee a higher price and is not a claim on protocol revenue.
$COINS
| Token | 0xfa0a8ea31f65eebfe31b83d2b9759a36396a98dd |
| Pool | 0x0EF60Ea3Ec4496ed52d790ce0343Da14e2C991e8 |
| Expected registry | deploymentInfoForToken(COINS).token = COINS |
Risk disclosures
Tokens launched through coins.fun are user-created and experimental. Review the token address, creator, liquidity, holder concentration, and transaction preview before signing.
- Prices can move quickly and liquidity can be thin.
- Similar names and images can represent unrelated tokens.
- Smart contracts, wallets, RPCs, and indexers can fail.
- Displayed values are estimates, not execution guarantees.
- A creator's initial buy can be sold at any time.
- USDT denomination removes base-asset volatility, not the risk that a token goes to zero.
coins.fun is an interface, not investment advice or a representation of token quality.
Integration
A minimal, verifiable integration surface.
Network
| Network | Stable Mainnet |
| Chain ID | 988 |
| Gas asset | Native USDT · 18 decimals |
| Quote and fees | ERC-20 USDT · 6 decimals |
| Public RPC | https://rpc.stable.xyz |
| Explorer | stablescan.xyz |
| Pool fee | 10000 · 1% |
| Launch fee | 2 USDT |
| Supply | 1,000,000,000 · 1e9 |
Contracts
| Use | Contract | Address |
|---|---|---|
| Launch · registry · claims | CoinsFunfrom block 35216402 | 0x3fc7C27eE52c60aF86D76aC131eC18837cCd8938 |
| Token | CoinsFunToken | Per launch · TokenCreated.tokenAddress |
| Vested allocation | CoinsFunVault | 0x62d2172512774DDCD188461Af1821b8B1d0d2934 |
| LP reward settings | LpLockerV2 | 0xD7bc75eF967540fa0d81fe927a1aD8EaE3993b84 |
| Launch fee · initial buy | USDT | 0x779Ded0c9e1022225f8E0630b35a9b54bE713736 |
Onchain events
Index TokenCreated from block 35216402 to discover coins.fun launches.
| Emitter | CoinsFun |
| From block | 35216402 |
| topic0 | 0xb76b0d93bddd588eb0dc08ad47d4109d66c17665c21b090ed945aff29ce24e76 |
import { parseAbiItem } from "viem";
const tokenCreated = parseAbiItem(
`
event TokenCreated(
address indexed tokenAddress,
address indexed creatorAdmin,
address indexed interfaceAdmin,
address creatorRewardRecipient,
address interfaceRewardRecipient,
uint256 positionId,
string name,
string symbol,
string image,
int24 startingTickIfToken0IsNewToken,
string metadata,
uint256 amountTokensBought,
uint256 amountUsdt0Spent,
uint256 vaultDuration,
uint8 vaultPercentage,
address msgSender
)
`
.replace(/\s+/g, " ")
.trim(),
);
const launches = await client.getLogs({
address: "0x3fc7C27eE52c60aF86D76aC131eC18837cCd8938",
event: tokenCreated,
fromBlock: 35216402n,
toBlock: "latest",
});
msgSender, creatorAdmin, and interfaceAdmin are separate roles. Use the event fields rather than inferring ownership from the transaction sender.
Reading token state
| Launch record | CoinsFun.deploymentInfoForToken(token) |
| Token | Identity · metadata · supply · balance |
| Vesting | CoinsFunVault.allocation(token) |
| LP rewards | locker.tokenRewards(positionId) |
import { parseAbi } from "viem";
const tokenRewards = `
function tokenRewards(uint256 tokenId) view returns (
uint256 lpTokenId,
uint256 creatorReward,
(address admin, address recipient) creator,
(address admin, address recipient) interfacer
)
`
.replace(/\s+/g, " ")
.trim();
const coinsFunStateAbi = parseAbi([
"function deploymentInfoForToken(address token) view returns (address token,uint256 positionId,address locker)",
"function getTokensDeployedByUser(address user) view returns ((address token,uint256 positionId,address locker)[])",
]);
const coinStateAbi = parseAbi([
"function name() view returns (string)",
"function symbol() view returns (string)",
"function decimals() view returns (uint8)",
"function totalSupply() view returns (uint256)",
"function balanceOf(address account) view returns (uint256)",
"function admin() view returns (address)",
"function imageUrl() view returns (string)",
"function metadata() view returns (string)",
"function context() view returns (string)",
]);
const vaultStateAbi = parseAbi([
"function allocation(address token) view returns (address token,uint256 amount,uint256 endTime,address admin)",
]);
const lockerStateAbi = parseAbi([tokenRewards]);
A zero token from deploymentInfoForToken means it is not a registered coins.fun launch. Use the returned locker and positionId to read its reward settings.
Pricing
| Verify | deploymentInfoForToken(token).token === token |
| Resolve config | uniswapV3Factory() · usdt0() · POOL_FEE() |
| Resolve pool | factory.getPool(token, usdt0, fee) |
| Read price | pool.slot0().sqrtPriceX96 |
import { parseAbi } from "viem";
const coinsFunPricingAbi = parseAbi([
"function deploymentInfoForToken(address token) view returns (address token,uint256 positionId,address locker)",
"function uniswapV3Factory() view returns (address)",
"function usdt0() view returns (address)",
"function POOL_FEE() view returns (uint24)",
]);
const factoryAbi = parseAbi([
"function getPool(address tokenA,address tokenB,uint24 fee) view returns (address pool)",
]);
const poolAbi = parseAbi([
"function slot0() view returns (uint160 sqrtPriceX96,int24 tick,uint16 observationIndex,uint16 observationCardinality,uint16 observationCardinalityNext,uint8 feeProtocol,bool unlocked)",
]);
const Q192 = 1n << 192n;
const square = sqrtPriceX96 * sqrtPriceX96;
const tokenIsToken0 = BigInt(token) < BigInt(usdt0);
const numerator = tokenIsToken0
? square * 10n ** BigInt(tokenDecimals)
: Q192 * 10n ** BigInt(tokenDecimals);
const denominator = tokenIsToken0
? Q192 * 10n ** BigInt(usdt0Decimals)
: square * 10n ** BigInt(usdt0Decimals);
const priceUsdt0X18 = (numerator * 10n ** 18n) / denominator;
const currentSupplyValueUsdt0X18 =
(priceUsdt0X18 * totalSupplyRaw) / 10n ** BigInt(tokenDecimals);
Both result values use 18 decimals. Use ERC-20 USDT decimals, not native gas-token decimals. This is an immediate spot price, not a trade quote or oracle price; do not display a price for a zero pool or zero sqrtPriceX96.
Support
For support, contact contact@coins.fun.
Terms of Use & Warranty Disclaimer
Last updated: 6 August 2026
TERMS OF USE
General
These terms and conditions ("Terms") govern your use of the Site (defined below) and the Services (defined below). These Terms also incorporate any guidelines, announcements, additional terms, policies, or disclaimers that we may issue or make available from time to time. These Terms constitute a binding and enforceable legal contract between Coins Labs Ltd. and its affiliates ("coins.fun," "we," or "us") and you, the end user ("you" or "User") of the services ("Services") in relation to our platform ("Interface").
Agreement to Terms
You must read these Terms carefully before accessing the Interface or using the Services. By accessing, using, or clicking on the Interface via our website (including all related subdomains) or its applications ("Site"), or by accessing, using, or attempting to use the Services, you acknowledge that you have read, understood, and agree to be bound by these Terms and to comply with all requirements set forth herein. You further irrevocably waive any right to participate in a class action, collective action, or other representative proceeding in any jurisdiction or forum. In addition, you expressly acknowledge and agree that any dispute or claim against us shall be resolved exclusively through mandatory and binding arbitration, in accordance with the Dispute Resolution section below.
If you do not agree to all of these Terms or cannot comply with the requirements herein, you must not access or use the Site or the Services. Certain features of the Services may be subject to specific supplemental terms and conditions, which will apply in conjunction with these Terms. In the event of any conflict between these Terms and any such additional terms, these Terms shall prevail, unless expressly stated otherwise.
Amendments to Terms
We may change, update, add to, or remove provisions of these Terms at our sole discretion from time to time for legal and compliance purposes. Any such modifications will become effective upon their publication on the Interface or upon notification to Users, unless otherwise specified. Continued use of the Interface after any modifications constitutes acceptance of the revised Terms. If you do not agree with the amended Terms, you must immediately discontinue access to and use of the Interface and the Services.
RISK WARNING
The Interface and Services enable interactions with digital assets that are created and controlled by Users. Any decision to view, access, create, acquire, trade, hold, or otherwise engage with such user-generated digital assets through the Interface or the Services is made solely at your own discretion and risk. coins.fun does not endorse, verify, control, or assume responsibility for any user-generated digital assets made available through the Interface.
The overwhelming majority of digital assets created on platforms of this kind lose all economic value. Digital assets are inherently volatile and speculative. Their prices, functionality, demand, and availability may change rapidly and unpredictably, and participation may result in partial or total loss of economic value. You should carefully assess whether use of the Interface or the Services is appropriate for you in light of your personal circumstances, including your financial position, technical knowledge, and risk tolerance. You should not commit any funds you cannot afford to lose entirely.
You expressly acknowledge that coins.fun does not act as your broker, agent, intermediary, fiduciary, or advisor in connection with any activity conducted through the Interface or the Services. No information, content, or communication provided by us or made available through the Interface constitutes investment, financial, legal, tax, or professional advice, nor should it be relied upon as such. We do not recommend or encourage the acquisition, sale, holding, or use of any digital asset.
You are solely responsible for evaluating whether any user-generated digital asset is suitable for your intended use or investment objectives and for all risks, losses, or liabilities arising from your decisions. Prior to acquiring, trading, or holding any digital asset, you should conduct your own independent research, including appropriate due diligence on the digital asset and its creator, and seek professional advice where necessary. We are not liable for any loss or damage arising from your reliance on information provided through the Interface, the Services, or by other Users, or from any decision you make in connection with digital assets.
Eligibility
By accessing the Interface or affirmatively accepting these Terms (e.g., via a click-to-agree mechanism), you represent and warrant that:
- as an individual, legal entity, or organization, you possess the full legal capacity and authority to enter into and be bound by these Terms;
- you are at least 18 years of age, or the applicable legal age to enter into enforceable contracts under the applicable laws, whichever is higher;
- your use of the Interface does not violate, and fully complies with, all applicable laws, including but not limited to those governing anti-money laundering, anti-corruption, and counter-terrorism financing;
- you are not a citizen, resident, or domiciliary of any country or jurisdiction that we have deemed high risk, including but not limited to Cuba, Iran, North Korea, Syria, Russia, Belarus, and the Crimea, Donetsk, and Luhansk regions of Ukraine, or any other country identified as sanctioned by the United States of America, the United Kingdom, the European Union, or the United Nations, including without limitation those listed on the OFAC list available at https://www.treasury.gov/ofac ("Restricted Country"), and that you are not utilizing the Interface for or on behalf of any person or entity from such a country;
- you are not, and have never been, listed on any trade embargo, economic sanctions, or similar restrictions, such as the U.S. Office of Foreign Assets Control's Specially Designated Nationals list, the U.S. Department of Commerce's denied persons or entity list, or any equivalent lists enforced by the United Nations, European Union, or United Kingdom;
- if entering these Terms on behalf of a legal entity as its employee or agent, you hold all requisite rights and authority to legally bind that entity;
- you are exclusively accountable for your Interface usage and, where relevant, for all actions conducted via the Interface; and
- you commit to acting in good faith toward other Users' rights and will take all reasonable steps to uphold the purpose and objectives of these Terms.
We reserve the right to determine the markets and jurisdictions in which we operate and may, at our sole discretion, restrict or refuse your access to the Interface in certain countries or regions from time to time.
The Interface
Interface: coins.fun is a permissionless token launchpad built on the Stable blockchain (chain ID 988), where Users can create and trade fixed-supply tokens without coding or technical expertise. Users must connect their own non-custodial wallet to interact, including creating tokens via one-click deployment to smart contracts and trading against concentrated liquidity pools denominated in USDT. Launch and transaction fees are directed to Stable-based smart contracts to facilitate launches, establish liquidity, distribute creator rewards, and support protocol operations. Based on User activity, smart contracts automatically handle liquidity provision, transactions, and fee distributions directly.
All information made available through the Interface (including blog posts, data, articles, tutorials, or third-party content) is provided for informational purposes only. You should not take, or refrain from taking, any action based solely on such information. Before making any financial, legal, or technical decisions, you should seek independent professional advice from a licensed and qualified advisor. The information presented on the Interface is not intended to be comprehensive or to cover all aspects of the protocol or smart contracts.
Decentralized Protocol: You acknowledge and agree that coins.fun operates solely as an online platform facilitator and is not acting as a broker-dealer, custodian, exchange, money services business, money transmitter, investment advisor, or gambling operator. coins.fun does not oversee, manage, or participate in the transactions of Users. Users interact directly with smart contracts for deposits, withdrawals, purchases, sales, transactions, payouts, and token launches. The Interface is decentralized and non-custodial in nature. All transactions are on-chain. coins.fun does not hold, manage, or control any User funds, and coins.fun does not store, transmit, or receive any funds on Users' behalf. When engaging with the smart contracts, you maintain full control of your cryptoassets through your personal digital wallet at all times. You are solely responsible for securing your private keys, and coins.fun has no access to them.
In line with this decentralized design, there are no intermediaries involved in processing, matching, or managing orders or user accounts. coins.fun serves no role as an intermediary, agent, or fiduciary for any User with respect to any transaction or transfer of a User's cryptoassets. coins.fun does not perform identity verification for Users or validate funds beyond on-chain data that is publicly accessible or verifiable. Smart contracts handle all core functions transparently and immutably on-chain, eliminating the need for off-chain approvals, escrow services, or manual interventions.
You bear all risks arising from your use of the Interface, including those related to cryptoassets, blockchain networks, and decentralized protocols in general. Users bear full accountability for securing their private keys, wallet configurations, and compliance with blockchain network rules (e.g., gas fees, transaction finality), as well as any associated risks, including smart contract vulnerabilities, network congestion, or irreversible transactions. The protocol's underlying software operates on public blockchain networks. As such, you acknowledge and agree that (i) coins.fun bears no responsibility for the functionality, security, or uptime of these networks; (ii) no assurances are provided regarding performance or availability; and (iii) the networks may undergo modifications or disruptions that could impact the protocol.
Users engage directly and autonomously with the coins.fun protocol's smart contracts, enabling peer-to-peer transactions and fee distributions without centralized oversight. coins.fun, the Interface, and the Site function solely as informational and access tools, providing a front end to facilitate these on-chain interactions. They do not retain, access, or exercise control over Users' private keys, funds, or cryptoassets at any point. All transactions and fee distributions on the Interface are executed exclusively through Users' self-managed digital wallets. By participating, you confirm that you understand and accept these non-custodial dynamics.
Jurisdictional Restrictions: Access to or use of the Interface may be restricted or illegal in certain jurisdictions. You are solely responsible for ensuring that your use of the Interface complies with all applicable laws in your jurisdiction.
Transactions and Wallets
Transaction Method: All transactions and activities on the Interface must be conducted exclusively through blockchain-based wallets compatible with the Interface. The Interface does not support fiat payment.
Supported Networks and Assets: coins.fun currently supports transactions conducted on the Stable blockchain and accepts only the digital assets or tokens explicitly listed within the Interface. You must ensure that you are using a compatible wallet and transferring supported assets. Sending unsupported tokens or using non-compatible networks may result in permanent loss of funds, for which coins.fun assumes no responsibility.
Quote Asset: Markets on the Interface are denominated in USDT. coins.fun does not issue, control, guarantee, or administer USDT, and makes no representation that it will maintain any particular value, remain redeemable, or continue to be available. You accept all risks associated with the issuer of the quote asset.
Gas Fees: Each blockchain transaction may incur network ("gas") fees determined by the relevant blockchain network, which are not controlled by coins.fun.
Taxes: coins.fun makes no representation or warranty regarding the tax implications of receiving fees or profits generated from the Interface, and Users are solely responsible for any taxes, duties, or levies applicable under their jurisdiction.
Transaction Responsibility: Users are solely responsible for reviewing, confirming, and executing all transactions, including token launches, trades, and fee claims on the Interface. coins.fun is not responsible for incorrect, accidental, or unauthorized transactions initiated by Users. Once a transaction is executed on the blockchain, it is irreversible and cannot be cancelled, recalled, or reversed by us or by anyone.
Transaction Limits: Any applicable limits, processing times, and minimum requirements will be displayed within the Interface prior to confirming your transaction. Your activity on the Interface and use of the Services may be subject to limits that we shall determine from time to time in our sole discretion.
Token Launch and Trades
Token Launch: Users may create blockchain-based tokens ("Tokens") via the Interface. You acknowledge and agree that:
- You are solely responsible for the Token's name, symbol, image, description, links, and all other creation parameters;
- Tokens on coins.fun are experimental, speculative assets and may lose all value due to market volatility, low liquidity, or shifts in social attention. coins.fun does not guarantee the value, liquidity, success, or viral potential of any Token;
- Token names and symbols are not unique. Multiple unrelated Tokens may share the same symbol. The contract address is the only reliable identifier;
- You must comply with all applicable laws, securities regulations, and intellectual property rules;
- You must not create Tokens that are fraudulent, infringe third-party rights (including trademarks or copyrights in images or memes), impersonate any person or entity, promote illegal content or activities, or violate any applicable law or these Terms;
- coins.fun does not provide financial, investment, legal, or tax advice for the launch or trading of any Token on the Interface. We do not recommend that any user-generated Token be bought, earned, sold, or held by you under any circumstances;
- You are responsible for determining whether any Token is appropriate for you to acquire, transact in, or otherwise use on the Interface based on your personal investment objectives, financial circumstances, and risk tolerance, and you are responsible for any associated loss or liability;
- Before making the decision to buy, sell, or hold any Token on the Interface, you must conduct required due diligence and consult with relevant professionals. We are not responsible for the decisions you make based on information or services provided by us or by other Users on the Interface, including any losses you may incur;
- coins.fun is not liable for losses resulting from smart contract vulnerabilities, exploits, Stable network congestion, failed launches, or external factors such as regulatory changes;
- Tokens may be removed from display on the Interface if they violate laws, are deemed fraudulent, infringe rights, contain illegal or harmful content, or fail to meet our standards. Removal from the Interface does not remove a Token from the blockchain, which we are unable to do.
Fixed Supply and Liquidity Mechanics: Tokens launched through the Interface are deployed with a fixed supply. There is no bonding curve, no graduation threshold, and no migration event. Users understand and accept that:
- The full supply is deployed into a concentrated liquidity position paired against USDT at the moment of launch. This is single-sided liquidity: the creator supplies Tokens, not quote assets, and no quote-asset capital is required from the creator to open a market;
- A Token that has not been traded will contain no quote asset in its pool. This is the expected behavior of the mechanism and is not an error, a malfunction, or an indication that funds have been committed by anyone;
- Prices are determined algorithmically by the liquidity pool based on real-time supply and demand, and may be highly volatile;
- The liquidity position created at launch is locked at deployment by the terms of the smart contract. Neither the creator nor coins.fun is able to withdraw it. A liquidity lock is not a guarantee of value, safety, legitimacy, or outcome. It does not prevent a Token's price from falling to near zero through ordinary selling, does not prevent a creator from selling holdings acquired at or after launch, and confers no assurance of any kind regarding the Token;
- Users assume all risk related to the creation, holding, or trading of Tokens, including total loss.
Fees: Certain features on the Interface require fees, including a fixed launch fee for smart contract deployment and a fee applied to trades against liquidity pools (collectively, "Fees").
- Launch Fee: Creating a Token requires a fee of 2 USDT. This fee is non-refundable in all circumstances, including where a deployment fails, where a Token never trades, or where you change your mind.
- Pool Fee: Trades against a Token's liquidity pool incur a fee of 1% of the trade value. Of this, 70% accrues to the Token's creator and 30% accrues to the protocol.
- Creator Rewards: The 70% creator share accrues to the wallet designated by the creator at deployment and may be claimed at any time. The fee split applicable to a Token is fixed at the moment of its launch and does not change thereafter, regardless of any subsequent change to protocol defaults.
coins.fun makes no representations or warranties regarding creator rewards to any User or Token creator. Creator rewards depend on network conditions, smart contracts, and third-party infrastructure. We do not guarantee that creator rewards will be successfully accrued, calculated, or distributed for any particular transaction, and we are not liable for on-chain failures, network congestion, or other technical issues that may prevent accrual or payout. Where possible, the Interface will display an estimated breakdown of fees prior to transaction confirmation; however, the actual fee applied is determined by the underlying smart contracts and may differ from the displayed estimate due to slippage, network conditions, or rounding.
coins.fun does not control how creator rewards are ultimately used, distributed, or shared between creators, team members, promoters, referrers, or other third parties. Any such arrangements are strictly between you and those third parties. You are solely responsible for determining and fulfilling any tax obligations related to creator rewards.
You agree that you will use creator rewards in compliance with all applicable laws and regulations, will not use them to launder money, finance terrorism, or engage in fraud or other illegal activities, and will not misrepresent fee settings, Token economics, or related rights to others. If you make any public statements or marketing materials about a Token, you must ensure those statements are accurate and not misleading.
We may adjust Fees from time to time. Any calculations of Fees by coins.fun in connection with your use of the Services are final and binding in the absence of manifest error. Except as required by law, all Fees are non-refundable.
$COINS
Where the Interface refers to $COINS, the following applies.
$COINS is a protocol token associated with coins.fun. $COINS is not a security, a share, an equity interest, a debt instrument, a fund interest, a deposit, or a claim on any revenue, asset, or entity. Holding $COINS entitles you to nothing: no dividend, no distribution, no profit share, no revenue participation, no redemption right, no liquidation preference, and no governance right except where separately and expressly granted in writing.
A portion of protocol revenue may be applied to the purchase of $COINS on the open market. Any such purchase is a discretionary use of funds by us. It is not a return of capital, not a redemption, not a distribution, not a promise, and creates no obligation, express or implied, to you or to any holder of $COINS. Buybacks do not guarantee, support, stabilise, or establish a floor for the price of $COINS. The present conduct of any buyback does not guarantee its future conduct, rate, or continuation, and we may modify, suspend, or discontinue any such program at any time without notice.
Protocol revenue is dependent on trading volume on the Interface, which is unpredictable and may be zero. No forecast, projection, or expectation regarding protocol revenue should be inferred from any statement by us.
$COINS is the only official token associated with coins.fun. Tokens deployed by Users through the Interface are user-generated, are not affiliated with $COINS, are not endorsed by us, and confer no rights in relation to us or to $COINS. Any token purporting to be an official coins.fun token other than $COINS is not one. Always verify contract addresses against our official published channels, and never accept a contract address supplied through a direct message.
Prohibited Activities and User Conduct
General Conduct Requirements: You agree to use the Interface and Services solely for lawful purposes and in accordance with these Terms. You must at all times act in good faith and in a manner that upholds the integrity of the Interface.
Prohibited Activities: You agree that you will not, whether directly or indirectly:
- Violate Laws or Regulations — use the Interface in any way that breaches any applicable laws, regulations, or orders of any governmental or regulatory authority, including those relating to anti-money laundering, counter-terrorist financing, anti-corruption, sanctions, and securities trading;
- Misrepresentation and Fraud — create, use, or attempt to use multiple or false identities, impersonate another person, project, company, or public figure, or engage in deceptive or fraudulent behavior;
- Exploitation or Collusion — collude with, or otherwise assist, any other User or third party to gain an unfair advantage in the trading or launching of Tokens;
- Use of Automated Tools — deploy bots, scripts, crawlers, scrapers, or any automated device or algorithm to interact with or extract data from the Interface in a manner that degrades service for other Users or confers an unfair advantage;
- Manipulation or Abuse — interfere with, disrupt, or compromise the normal functioning, security, or integrity of the Interface, including exploiting bugs, vulnerabilities, or system errors;
- Market Manipulation — use the Interface or Services to manipulate the value, market perception, or performance of any digital asset, including pump-and-dump schemes, wash trading, spoofing, and coordinated trading intended to create artificial price or volume;
- Off-Platform Manipulation — engage in any off-platform conduct, including through social media, messaging applications, livestreams, or synthetic media, that is reasonably intended to manipulate, misrepresent, or artificially affect the market for any Token created, traded, or promoted through the Interface;
- Capital Raising — use the Interface, the Services, or any Token in connection with any capital raise, pooled investment scheme, profit-sharing arrangement, revenue participation right, tokenized equity or debt representation, or any other activity intended to represent an ownership, creditor, or investment interest in an ongoing business or enterprise;
- Unauthorized Access — attempt to gain unauthorized access to the Interface, other Users' wallets, data, or systems, or perform any activity that could harm the security or performance of the Interface;
- Intellectual Property Infringement — use or distribute any content from the Interface without authorization, or in a way that infringes any intellectual property or proprietary rights of coins.fun or others, including creating a Token whose name, symbol, or imagery infringes a third party's trademark, copyright, or publicity rights;
- Data Harvesting — collect or attempt to collect information about other Users, including wallet addresses or personal data, without consent;
- Malicious Content — upload, transmit, or distribute any content or material containing viruses, trojan horses, worms, logic bombs, or any other harmful code;
- Harmful or Illegal Content — create or promote any Token containing content that is illegal, that depicts or sexualises minors, that incites violence or terrorism, or that constitutes harassment, hate speech, or defamation;
- Deceptive Synthetic Media — create, distribute, or use AI-generated voice, video, images, avatars, or likenesses to falsely imply endorsement, affiliation, authorship, or market intent;
- Circumvention of Restrictions — attempt to circumvent or bypass geographical, technical, or access restrictions, including through the use of VPNs, proxy services, geolocation spoofing, or burner identities;
- Offensive or Harmful Behavior — engage in harassment, abusive conduct, hate speech, or any activity that causes harm or distress to other Users or to coins.fun; and
- Other Improper Use — use the Interface for any purpose inconsistent with its intended design, functionality, or purpose, or in any way that could bring coins.fun or other Users into disrepute.
Cooperation with Authorities: coins.fun may cooperate with law enforcement, regulatory, or other governmental bodies in the investigation of any suspected illegal or unauthorized use of the Interface.
Content Moderation: We shall have the right at our sole and absolute discretion to remove, modify, or reject any content that you submit to, post, use, or display on the Interface, for any reason, without notice. We reserve the right to take any actions we deem appropriate, including issuing a written warning, removing content, restricting your access, and banning you from any and all future use of the Interface and Services. Removal of content from the Interface does not affect the underlying Token on the blockchain, which we cannot remove or alter.
Intellectual Property Rights
All current and future intellectual property rights, including copyrights, trademarks (registered or unregistered), design rights, database rights, and other proprietary rights related to the Interface, are either owned by coins.fun or licensed to it. Provided you follow these Terms, coins.fun grants you a limited, non-exclusive, non-transferable licence to access and use the Interface solely for the purposes outlined herein, for non-commercial personal use.
Unless explicitly stated, these Terms do not grant you any ownership or licence to coins.fun's intellectual property or that of any third party. You must not copy, reproduce, modify, distribute, or create derivative works from any content on the Interface without coins.fun's prior written approval. Certain third-party contributors, such as data providers or service partners, may allow coins.fun to use their intellectual property. coins.fun does not guarantee that content on the Interface is free from third-party rights or claims.
The intellectual property rights in any Token launched by you on the Interface, including the Token's name, symbol, description, metadata, or associated creative elements, shall automatically vest in you as the creator. However, you grant coins.fun a perpetual, worldwide, royalty-free, non-exclusive, sublicensable licence to use, display, reproduce, modify, and distribute such intellectual property for the purposes of operating and promoting the Interface and Services. You represent and warrant that you own or have obtained all necessary rights to such intellectual property and that it does not infringe third-party rights. You agree to procure that any agents, representatives, or contractors involved in Token creation comply with these representations, and, if requested by coins.fun, to sign and execute at no charge all documents reasonably required to perfect or enforce this licence, including cooperation in defending against infringement claims.
You acknowledge that content submitted at the point of deployment is written to a public blockchain, is permanent, and cannot be deleted by us or by you.
When referring to coins.fun, write the name in lowercase and link to the official Site. Do not present any third-party service as operated by, affiliated with, or endorsed by coins.fun without written agreement.
Interface Updates and Changes
coins.fun may, at its discretion, update, modify, or change any aspect of the Interface, including its content, features, or design. The Interface and any associated materials or Services may not always be complete, up-to-date, or available, and coins.fun has no obligation to maintain or update them.
coins.fun will not be liable for any interruptions, modifications, or removal of the Interface, or for any impact these may have on your use of the Services or trades on the Interface. Tokens already deployed continue to exist on the blockchain independently of the Interface and of us.
No Fiduciary Duties
The Interface does not establish, and is not intended to establish, any fiduciary relationship or obligations between coins.fun (or its service providers) and you or any third party. To the maximum extent permitted by law, you acknowledge that coins.fun and its service providers owe no fiduciary duties or responsibilities to you. Your rights and obligations are strictly those described in these Terms. coins.fun is not liable for claims arising from any perceived fiduciary relationship.
Material Interests and Conflicts
You understand and agree that neither your relationship with us nor any services we provide to you will give rise to any duties on our part, whether legal, equitable, or fiduciary in nature, save as expressly set out in these Terms. We may from time to time act in more than one capacity, and in those capacities may receive fees from more than one User, including you. You understand that from time to time we, our affiliates, or our personnel may transact on the Interface. We are under no obligation to disclose any of our transactions on the Interface, or to have regard to, disclose, or use for your benefit any information known to us that may constitute a material interest.
Indemnification
You agree to defend, indemnify, and hold harmless coins.fun, its licensors, service providers, and each of their respective officers, directors, employees, contractors, agents, suppliers, successors, and assigns (collectively, the "Indemnified Parties") from and against any and all claims, disputes, demands, liabilities, damages, judgments, awards, losses, costs, expenses, or fees (including reasonable legal and accounting fees) arising out of or relating to:
- your access to or use of the Interface, including interaction with digital assets, or reliance on content, data, or features provided through the Interface;
- your violation of these Terms or any applicable law or regulation;
- any content, data, or information you submit, post, or otherwise make available through the Interface, including any Token you create;
- any other party's access to or use of the Interface or digital assets through your wallet, credentials, or devices; or
- any acts, errors, or omissions arising from your use of the Interface in a manner not attributable to coins.fun.
You acknowledge that this indemnification obligation applies even if the claim arises from the actions of another User interacting with your wallet, and you remain responsible for ensuring that your use of the Interface complies with these Terms.
You irrevocably and unconditionally agree to release us from any and all claims and demands, and waive any rights you may have now or in the future, arising directly or indirectly out of or in connection with any dispute you have with another User or third party connected in any way with the Interface, the Services, or these Terms.
Third-Party Content and External Resources
The Interface may include links, content, or data from third parties, including other Users, contributors, data providers, wallet providers, block explorers, or service providers. These materials are provided by the third parties alone and do not necessarily reflect coins.fun's views or endorsements.
All such content is for informational purposes only. coins.fun makes no warranties regarding its accuracy, reliability, completeness, or timeliness. Third-party data may be incomplete, inaccurate, delayed, or unreliable, may change without notice, and may be subject to additional terms imposed by the relevant provider. You assume all risk in relying on such information, and coins.fun is not responsible for any resulting losses or damages.
Termination
To the extent not restricted by the nature of blockchain smart contracts or on-chain protocols, coins.fun reserves the right to suspend, terminate, or modify your access to the Interface, in whole or in part, at any time and in its sole discretion, including but not limited to: (i) refusing to complete or blocking, cancelling, or, where permitted by applicable law, reversing (to the extent possible) any action you have undertaken; (ii) terminating, suspending, or restricting your access to any or all of the Interface and Services; (iii) refusing to transmit information to third parties, including third-party wallet operators; and (iv) taking whatever action we consider necessary, in each case with immediate effect and for any reason, including where:
- you are not, or are no longer, eligible to use the Interface and Services;
- we reasonably suspect that you have been or will be using the Interface for any illegal, fraudulent, or unauthorised purpose;
- we reasonably consider that we are required to do so by applicable law, or by any court or authority;
- your usage is subject to any pending, ongoing, or threatened litigation or regulatory proceedings;
- you have taken any action that may circumvent our controls without our consent; or
- there is any other valid reason which means we need to do so.
Our decision to terminate, suspend, or restrict access may be based on confidential criteria essential to our risk management and security protocols, and we are under no obligation to disclose these to you.
If we are informed and reasonably believe that any assets in your wallet are stolen or not lawfully possessed by you, whether by error or otherwise, we may, but are not obligated to, terminate your usage of the Interface and Services. Except where required by law, we will not become involved in any dispute relating to such assets or their origin.
coins.fun shall not be liable for any direct, indirect, incidental, consequential, or punitive damages, losses, or disruptions arising from such actions. Upon termination of your access, these Terms shall immediately cease, except for provisions that by their nature are intended to survive, including those governing User responsibilities, risk acknowledgments, intellectual property, indemnification, dispute resolution, and limitations of liability.
Limitation of Liability
TO THE FULLEST EXTENT PERMITTED BY LAW, NEITHER COINS.FUN, ITS LICENSORS, SERVICE PROVIDERS, EMPLOYEES, OFFICERS, NOR DIRECTORS SHALL BE LIABLE FOR ANY DAMAGES OF ANY KIND, UNDER ANY LEGAL THEORY, ARISING OUT OF OR IN CONNECTION WITH YOUR USE OF, OR INABILITY TO USE, THE INTERFACE, ANY DIGITAL ASSETS, CONTENT, FEATURES, OR SERVICES PROVIDED THROUGH THE INTERFACE, OR ANY WEBSITES OR THIRD-PARTY RESOURCES LINKED THERETO.
THIS INCLUDES, WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, INCLUDING BUT NOT LIMITED TO PERSONAL INJURY, EMOTIONAL DISTRESS, LOSS OF PROFITS, LOSS OF REVENUE, LOSS OF BUSINESS OR ANTICIPATED SAVINGS, LOSS OF DATA, LOSS OF DIGITAL ASSETS OR TOKENS, LOSS OF GOODWILL, OR LOSS OF USE, EVEN IF FORESEEABLE AND EVEN IF COINS.FUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
Without limiting the foregoing, in no event will coins.fun or any affiliate be responsible or liable to you or any other person for:
- the operation of the protocols underlying any digital asset, or their functionality, security, or availability;
- any inaccuracy, defect, or omission in price data, any error or delay in the transmission of such data, or any interruption in such data;
- regular or unscheduled maintenance, including any service interruption resulting from it;
- other Users' actions, omissions, or breaches of these Terms, and any damage caused by the actions of any other Users or third parties;
- any damage or interruption caused by computer viruses, spyware, malware, phishing, spoofing, or other attacks, or the failure, damage, destruction, or corruption of your hardware or data;
- the theft or compromise of a device or wallet enabled to access the Interface;
- any termination, suspension, hold, or restriction of access to the Interface or Services;
- the failure of a transaction, or the length of time needed to complete any transaction;
- any breach of security affecting your wallet, email, social media, or personal hardware;
- losses suffered as a result of third-party fraud or scams that involve the Interface;
- the correctness, quality, accuracy, security, completeness, reliability, performance, timeliness, pricing, or continued availability of the Interface or Services; or
- any losses arising in connection with newly available user-generated digital assets.
Cap on liability: Our total aggregate liability to you under any circumstance shall not exceed the total amount of Fees you paid to us in connection with the specific transaction giving rise to the claim. This amount shall represent full and final settlement of any claim.
Time limit: We shall not be liable for any losses forming part of a claim that has not been commenced by way of formal legal action within one calendar year of the commencement of the matter giving rise to the claim. To the extent this is prohibited by law, the minimum period applicable under the relevant law shall apply instead.
You agree that we are unaware of your specific circumstances and that monetary damages are an adequate remedy. You are not entitled to remedies such as injunction or specific performance.
NOTHING IN THESE TERMS SHALL EXCLUDE OR LIMIT LIABILITY THAT CANNOT BE EXCLUDED OR LIMITED UNDER APPLICABLE LAW, INCLUDING LIABILITY FOR FRAUD, FRAUDULENT MISREPRESENTATION, DEATH, OR PERSONAL INJURY CAUSED BY NEGLIGENCE.
Jurisdiction and Governing Law
Any and all disputes, claims, or controversies arising out of or relating to these Terms, their breach, termination, enforcement, interpretation, validity, or your use of the Interface (collectively, "Disputes") shall be governed by and construed in accordance with the laws of the British Virgin Islands, without regard to its conflict of laws principles.
Dispute Resolution
PLEASE READ THIS SECTION CAREFULLY. IT MAY SIGNIFICANTLY AFFECT YOUR LEGAL RIGHTS, INCLUDING YOUR RIGHT TO FILE A LAWSUIT IN COURT AND TO HAVE A JURY HEAR YOUR CLAIMS. IT CONTAINS PROCEDURES FOR MANDATORY BINDING ARBITRATION AND A CLASS ACTION WAIVER.
Mandatory Arbitration. Except for disputes where we seek injunctive or equitable relief related to intellectual property, you waive your right to have Disputes adjudicated in court or before a jury. All Disputes shall be resolved exclusively and finally by binding, individual arbitration. Arbitration shall be conducted in Tortola, British Virgin Islands, under the BVI Arbitration Act 2013. The language of arbitration shall be English. Arbitration is private and confidential unless disclosure is legally required.
Notice and Informal Resolution. Before initiating arbitration or filing any legal action, the parties agree to first make a good-faith effort to resolve the Dispute informally. The party raising the issue must provide written notice outlining the nature of the Dispute and the relief being requested (the "Notice"). Notices to coins.fun shall be sent to contact@coins.fun. Notices to you may be sent to any email address or wallet address associated with your use of the Interface. If the Dispute remains unresolved sixty (60) days after the Notice is received, either party may initiate arbitration. Any applicable limitation period shall be suspended during this sixty-day period.
Arbitration Procedure. Unless otherwise agreed, arbitration shall be conducted by a single arbitrator with relevant experience. The arbitrator shall have exclusive authority to decide all issues, including jurisdictional and arbitrability issues, and may grant the same relief a court of competent jurisdiction could grant under applicable law. Hearings may be conducted remotely where permitted by the applicable rules. The arbitrator's written award shall be final, binding, and enforceable in any court of competent jurisdiction, and shall have no precedential effect.
No Class Actions. YOU AND COINS.FUN AGREE THAT ALL DISPUTES SHALL BE RESOLVED ONLY ON AN INDIVIDUAL BASIS, AND NEITHER PARTY MAY BRING A CLAIM AS A PLAINTIFF OR PARTICIPANT IN ANY PURPORTED CLASS, CONSOLIDATED, COLLECTIVE, OR REPRESENTATIVE ACTION. The arbitrator may not consolidate claims or preside over any form of class or collective proceeding.
Mass Arbitrations. If twenty-five (25) or more similar claims are filed, a batching procedure will apply. Selected test cases will proceed to arbitration first, followed by mediation. Claims not resolved may return to arbitration in batches or may be opted out for court filing.
Costs. Arbitration costs, including arbitrator and administrative fees, shall be allocated in accordance with the applicable arbitration rules.
Severability. If any part of this arbitration agreement is found unenforceable, the remainder shall still apply, and any unenforceable portion shall be severed.
Survival. These arbitration provisions survive the termination of these Terms and your use of the Interface.
Exceptions. Either party may pursue small claims or seek injunctive relief in a court of competent jurisdiction to protect intellectual property rights. These arbitration and class waiver provisions do not apply where prohibited by the mandatory law of your jurisdiction; consumers in such jurisdictions retain any non-waivable right to bring proceedings in their local courts.
Waiver, Severability, and Enforcement
No delay or omission by coins.fun in enforcing any right or provision under these Terms shall be interpreted as a waiver of such right or provision. Any waiver will be valid only if in writing and signed by an authorized representative of coins.fun. A waiver of any specific right or provision shall not be construed as a continuing waiver or as a waiver of any other right or provision. The use of any remedy under these Terms shall not preclude coins.fun from pursuing any other available remedies.
If any provision of these Terms is found by a court, arbitral tribunal, or other competent authority to be invalid, unlawful, or unenforceable, that provision shall be modified or restricted to the minimum extent necessary to ensure validity, and the remaining provisions shall continue in full force and effect.
Entire Agreement and Assignment
These Terms, including referenced documents, constitute the complete agreement between you and coins.fun regarding the Interface, replacing all prior agreements. You may not assign these Terms without coins.fun's written consent. coins.fun may freely assign them. These Terms bind and benefit the parties and their permitted successors and assigns. These Terms do not create third-party beneficiary rights, and do not establish a partnership, joint venture, employment, or agency relationship.
In case of conflict between language versions, the English version of these Terms prevails.
Notice
Notices from coins.fun will be delivered by email, posted on the Interface, or announced through our official account on X. Notices sent by email are deemed received upon transmission. Official announcements will be made only from our official published channels; you should treat any communication received elsewhere, including direct messages, as unverified.
You may contact us at contact@coins.fun.
WARRANTY DISCLAIMER
By accessing or using the Services or Interface, you acknowledge and agree to this Warranty Disclaimer. This Warranty Disclaimer is incorporated by reference into our Terms of Use. Through your continued use of the Services, you agree to the terms and conditions of this Warranty Disclaimer. In this Warranty Disclaimer, unless specifically defined herein, any capitalized terms shall have the meanings ascribed to them in our Terms of Use.
The Services, Interface, digital assets on the Interface, and all related features of the Interface are provided on an "as is" and "as available" basis, without any warranties of any kind, whether express, implied, or statutory. To the fullest extent permitted by applicable law, coins.fun, its affiliates, and their service providers expressly disclaim all warranties, including but not limited to warranties of merchantability, fitness for a particular purpose, non-infringement, accuracy, completeness, reliability, security, or uninterrupted availability.
coins.fun does not warrant that access to the Interface or Services will be continuous, uninterrupted, timely, or error-free. Delays, service interruptions, and time-sensitive transaction failures may occur.
coins.fun does not guarantee that Services, digital assets, files, data, or materials obtained through the Interface or linked third-party websites will be free from viruses, malware, or other harmful components. Users are solely responsible for implementing appropriate security measures, including anti-virus protection, data backups, and the safeguarding of wallet credentials and private keys.
Access to and use of the Interface and Services involve inherent risks, including risks related to blockchain networks, cryptographic systems, digital assets, and highly volatile markets. Users acknowledge that market conditions, transaction speeds, network fees, and digital asset values may fluctuate significantly. By using the Interface and Services, you assume full responsibility for all such risks and understand that coins.fun cannot and does not guarantee any outcomes, including security, uninterrupted availability, error-free operation, or protection from any possible losses.
coins.fun is not responsible or liable for any losses, damages, or claims arising from:
- user errors, including forgotten credentials, mistyped wallet addresses, or incorrect transaction details;
- server or network failures, data loss, corrupted files, or technical malfunctions;
- unauthorized access to your wallet or digital assets;
- actions of third parties, including viruses, phishing attacks, brute-force attacks, or other malicious activity affecting the Interface or the underlying blockchain networks; and
- the decisions of any Token creator or other User, including the sale of holdings, the abandonment of a project, or the misrepresentation of a Token.
No statement, information, or communication from coins.fun, whether through documentation, the Site, community channels, or otherwise, constitutes a warranty or representation regarding the Interface, Services, digital assets, or related features. Any reliance on such information is at your own risk.
This disclaimer does not limit any warranties that cannot legally be excluded under applicable law. By accessing or using the Interface and Services, you acknowledge that you understand the risks associated with cryptographic and blockchain-based systems and accept full responsibility for any resulting losses.
DEFINITIONS AND INTERPRETATION
Clause headings and numbering are for convenience only and do not affect meaning or interpretation. "Include" and "including" mean without limitation. Any obligation not to do something includes an obligation not to permit it to be done. Words in the singular include the plural and vice versa. References to documents include any variations or amendments not in breach of these Terms. In case of inconsistency, the Privacy Notice prevails over these Terms, and these Terms prevail over any other referenced document unless otherwise stated.
Applicable Law: All relevant laws, regulations, rules, and legal requirements in any jurisdiction applicable to the provision or use of the Interface or Services.
Token: A fixed-supply digital asset created by a User via the Interface.
$COINS: The protocol token associated with coins.fun, as described in these Terms.
coins.fun / we / us: Coins Labs Ltd. and its affiliates.
Creator Rewards: The share of pool fees accruing to the creator of a Token, as described in these Terms.
Digital Assets: Digitally represented value stored and transferred via distributed ledger technologies.
Dispute: Any dispute, claim, or controversy between you and coins.fun relating to these Terms, your use of the Interface, or related non-contractual obligations.
Fees: The launch fee and pool fee described in these Terms, together with any other fees applied through the Interface.
Force Majeure Event: Unforeseeable circumstances preventing us from fulfilling our obligations, including natural disasters, war, terrorism, pandemics, governmental action, labour disputes, or major technical or network failures.
Interface: The coins.fun front end and all associated tools through which Users access the Services.
Manifest Error: An obvious and indisputable mistake in data, calculation, or display.
Restricted Country: Any country or jurisdiction identified in the Eligibility section, or otherwise designated by us from time to time.
Services: The tools and services provided through the Interface enabling Users to create and trade Tokens.
Site: The coins.fun website at https://coins.fun and all related subdomains and applications.
Stable: The Stable blockchain network, chain ID 988.
Terms: This Terms of Use agreement, including the Warranty Disclaimer, referenced documents, and future amendments.
USDT: The stablecoin used as the quote and gas asset on Stable.
User: Any person accessing or using the Interface or Services.
Wallet: The non-custodial digital wallet you connect to the Interface.
Privacy Policy & Risk Disclosure
Last updated: 6 August 2026
PRIVACY POLICY
We value your privacy
coins.fun is committed to protecting and respecting the privacy of its Users. This Privacy Policy ("Policy") explains how we collect, use, store, disclose, and otherwise process certain information and data obtained from Users when they access or interact with our Services. This Policy forms an integral part of, and is incorporated by reference into, our Terms of Use.
By accessing or using the Services, you affirm that you have read, understood, and agreed to be bound by the terms and conditions set out in this Policy. If you do not agree with our policies and practices, do not use the Interface.
Unless otherwise expressly defined within this Policy, all capitalized terms shall have the meanings assigned to them in our Terms of Use.
For the purposes of relevant data protection legislation, Coins Labs Ltd. is the Personal Data controller in respect of the processing described in this Policy.
What type of data we collect
We do not create, maintain, or manage user accounts. There is no registration, no username, and no password. We do not collect government identification, and we do not ask for your name in order for you to use the Interface. When you interact with the Interface, only the following limited categories of data ("Data") are collected:
Public Blockchain Data. When you connect your non-custodial wallet to the Interface, we record your publicly visible blockchain address. This enables us to assess usage patterns and to conduct wallet-screening checks for potential prior illicit activity using insights from reputable blockchain analytics providers. Blockchain addresses are inherently public, self-generated, and not issued or assigned by us or by any central authority, and they do not inherently identify any natural person.
Transaction Data. Information relating to activity conducted through the Interface, including the wallet addresses of senders and recipients, Tokens created, trades executed, fees accrued and claimed, and the timing and value of those events. This information is publicly recorded on the Stable blockchain independently of us.
Usage Data. When you visit the Site, we may automatically collect information about your device and session, including your IP address, approximate country of origin, browser type and version, operating system, device identifiers, language and timezone settings, referring URLs, the pages and features you view, and how you interact with the Interface.
Data From Third-Party Sources. To comply with legal obligations and to protect the Services from fraud or illicit activity, we may work with external service providers who obtain information related to your wallet address or transactions conducted through the Services, including sanctions screening and blockchain analytics providers.
Communications Data. We may store communications you send to us by email, through social media, or through other channels, including submissions made through forms, surveys, or support requests.
Survey and Usability Data. If you participate in a survey or usability study, we may record any biographical information you voluntarily provide, such as your name, email address, or role, together with your responses.
Voluntarily Provided Information. If you choose to provide optional information, such as an email address, we will use it solely for the purpose disclosed at the time of submission. We will not attempt to link such information to your wallet address, IP address, or other identifiers. Providing such information is entirely optional and is not required to use the Services.
Cookies and Similar Technologies. We may collect information through automated technologies such as cookies, web beacons, pixel tags, and server logs. See the Cookies section below.
How we use the data we collect
Providing, maintaining, and improving the Services. We use Data to operate the Interface effectively, ensure its stability and functionality, tailor features to improve your experience, and develop new capabilities.
Understanding and analysing usage trends. Data helps us evaluate how Users interact with the Services, identify areas for improvement, optimise performance, and make informed decisions about the Interface.
Protecting against fraudulent, unauthorized, or illegal activity. We may use Data to detect, investigate, prevent, and respond to suspicious behaviour, misuse of the Services, market manipulation, or activities that may pose legal or operational risks.
Sanctions and compliance screening. We may screen wallet addresses against sanctions lists and blockchain analytics datasets in order to comply with applicable laws and to restrict access where required.
Addressing and mitigating security risks. We process Data to identify vulnerabilities, troubleshoot errors, maintain the integrity of the Services, and safeguard Users and the protocol.
Complying with legal and regulatory obligations. Certain Data may be used to satisfy applicable laws, regulations, enforcement requests, or obligations relating to compliance, risk management, and recordkeeping.
Enforcing the Terms of Use and protecting legal rights. Data may be used to monitor compliance with our Terms of Use, assert or defend legal claims, resolve disputes, and uphold the rights and interests of coins.fun, its Users, and third parties.
Responding to you. Where you contact us, we use your communications to respond and to maintain a record of the exchange.
Cookies and similar technologies
We use cookies (small text files stored on your device) and similar technologies to provide functionality on the Site and to help collect Data. We use both session cookies, which expire when you close your browser, and persistent cookies, which remain until deleted.
Strictly necessary. Required for the Site to function, including session and security cookies.
Functionality. Enable technical performance and allow us to remember choices you make while browsing, including any preferences you set.
Performance and analytical. Allow us to understand how you navigate the Site, which areas are used, and what can be improved.
We do not use cookies to build advertising profiles, and we do not combine or link data gathered from cookies with third-party data for targeted advertising or advertising measurement purposes, nor do we share data collected about a particular end user or device with a data broker.
Cookies can be controlled, blocked, or restricted through your browser settings. All cookies are browser-specific, so if you use multiple browsers or devices you will need to manage preferences in each. If you restrict or block cookies, parts of the Site may not operate properly, and we are not responsible for any resulting degradation in function.
We may use third-party analytics providers to help us understand how the Services are used. Although we do not provide these vendors with your Data for their own independent purposes, they may set and access their own cookies or similar technologies and may collect data about online activity over time and across different websites.
When and with whom we share the data we collect
We do not rent or sell your Data. We may share your Data in the following circumstances:
Service Providers. With third-party providers that assist us with hosting, infrastructure, data analytics, blockchain indexing, sanctions and wallet screening, email delivery, and support services. These parties may use your Data only as directed by us and consistent with this Policy.
Business Transactions. With a potential or actual acquirer, successor, assignee, or other entity in connection with any corporate transaction, including a reorganisation, merger, sale, joint venture, assignment, transfer, or other disposition of assets, including in bankruptcy or similar proceedings.
Legal and Regulatory Requirements. Where required by law, or where we believe in good faith that disclosure is reasonably necessary: (a) under applicable laws and regulations, including those outside your country of residence; (b) to comply with legal process; (c) in response to requests from public or governmental authorities, including those operating outside your jurisdiction; (d) to enforce the Terms of Use; (e) to protect our operations or those of our affiliates; (f) to safeguard our rights, privacy, safety, or property, or that of our affiliates, Users, or others; and (g) to pursue available remedies or mitigate potential damages.
Protection of Interests. Where necessary to prevent harm to coins.fun, its Users, or third parties, or to enforce our agreements and policies.
Security and Fraud Prevention. To detect, investigate, prevent, or stop fraudulent, unauthorized, or illegal activity, to address security vulnerabilities or technical issues, and to protect the Interface and its Users.
With Your Consent. In any situation where you have expressly authorized us to do so.
We may also use or share aggregated or de-identified Data that does not identify any individual for any lawful purpose, unless restricted by applicable law.
Blockchain transactions
Your use of the Interface is recorded on a public blockchain, including the creation of Tokens, the trades you execute, and the fees you claim. Public blockchains are distributed ledgers intended to immutably record transactions across wide networks of computer systems. Many blockchains are open to forensic analysis, which can lead to the re-identification of transacting individuals and the revelation of personal data, particularly when blockchain data is combined with other data.
Because blockchains are decentralized networks that we neither control nor operate, we are not able to erase, modify, or alter any data recorded on them. This includes your wallet address, your transaction history, and any name, symbol, image, description, or link you submit at the point of deploying a Token. Content written to the blockchain at deployment is permanent, and no request to us can remove it.
You should assume that anything you do through the Interface is public, permanent, and analysable by anyone.
Third-party services and sites
The Services may feature content, links, or integrations provided by third parties, including wallet providers, block explorers, data providers, and external websites. Such third-party content may employ cookies, web beacons, or other technologies to collect data when you view or interact with it.
We do not control, and are not responsible for, the collection, use, storage, or security of data by third parties, any breach of their systems, or any act or omission relating to their compliance with applicable privacy laws. Links to third-party services are not an endorsement of, or a representation that we are affiliated with, those parties. We strongly recommend that you review the privacy policies of any third-party service you use.
Transmitting data over the internet always carries some level of risk. While we take reasonable measures to protect your Data, we cannot guarantee the absolute security or privacy of any Data you transmit, and any such transmission is done at your own risk.
How we protect your data
We employ and maintain reasonable administrative, physical, and technical safeguards designed to protect Data from loss, theft, misuse, unauthorized access, disclosure, alteration, and destruction. However, no method of transmission over the internet or method of electronic storage is completely secure, and we cannot guarantee the absolute security of any Data.
You are responsible for all activity associated with your use of the Interface, including the security of your blockchain addresses, wallets, and associated cryptographic keys. We never ask for your private key, seed phrase, or recovery phrase, and any communication that does so is fraudulent regardless of how it appears to be sourced.
How long we keep your data
We retain Data for as long as reasonably necessary to provide and maintain the Services and to fulfil any legal, regulatory, or contractual obligations. Data may also be retained to resolve disputes, enforce our policies, or protect our rights and the rights of others.
The retention period for each category of Data is determined by reference to the type of Data, the purposes for which it is processed, and applicable legal or regulatory requirements. Outdated or unnecessary Data is securely deleted at the earliest reasonable opportunity. Once a retention period expires, Data will be deleted or, where permitted by applicable law, de-identified instead.
Data recorded on a public blockchain cannot be deleted or de-identified by us. See the Blockchain Transactions section above.
Legal bases and disclosures for European Union and United Kingdom data subjects
We process your Data for the purposes outlined in the section titled "How we use the data we collect" above. The legal bases for processing include: (i) your consent, given directly to us or through our service providers, for one or more specific purposes; (ii) processing necessary for the performance of a contract with you or for pre-contractual steps; (iii) processing required to comply with a legal obligation to which we are subject; and (iv) processing necessary for the purposes of our legitimate interests or those of a third party, provided your interests and fundamental rights and freedoms do not override those interests.
Under the General Data Protection Regulation and the UK GDPR, you have certain rights, including the right to:
- obtain confirmation of, and access to, the personal data we process about you;
- request correction of inaccurate personal data;
- request erasure of your personal data, subject to exceptions provided under the law;
- object to or restrict certain processing of your personal data;
- request the portability of your personal data in a structured, commonly used, machine-readable format; and
- withdraw your consent at any time where processing is based on consent.
To exercise any of these rights, contact us at contact@coins.fun. We may request additional information to verify your identity and process your request, and any information collected for that purpose will be used solely for verification.
We may retain certain Data as necessary to fulfil the purposes for which it was collected, including compliance with legal obligations, dispute resolution, fraud prevention, and enforcement of our agreements, and may continue to do so after a data subject request in accordance with our legitimate interests.
We cannot modify or delete data stored on a blockchain. Your transaction history, wallet addresses, deployed Token metadata, and assets associated with your address are beyond our control, and a request to us cannot change them.
If you believe we have not complied with your rights or with applicable privacy law, you may contact us at contact@coins.fun, or lodge a complaint with your local data protection authority.
No use of services by minors
The Services are intended for a general adult audience and are not directed at children. We do not knowingly collect Data from anyone under the age of 18, including within the meaning of the U.S. Children's Online Privacy Protection Act ("COPPA"). If a parent or guardian becomes aware that a child has provided us with information, they should contact us at contact@coins.fun and we will delete such information as soon as reasonably practicable.
Cross-border data transfer
Your Data may be transferred outside your region for storage or processing in various locations worldwide, including in jurisdictions whose data protection laws differ from those of your country of residence. Where required, such transfers take place under appropriate safeguards recognised by relevant data protection authorities. By using the Services, you consent to the transfer of Data to countries other than your country of residence.
Updates to this privacy policy
We may update this Policy from time to time to reflect evolving laws, regulations, industry standards, or changes to the Services. If we make changes that materially alter your privacy rights, we will take appropriate measures to inform you, consistent with the significance of the changes. We encourage you to review this Policy periodically. Your continued access to or use of the Services after any revision takes effect signifies your acceptance of the updated Policy.
Contact
For any question relating to this Policy or to your Data, contact us at contact@coins.fun.
RISK DISCLOSURE
By accessing or using the Services or Interface, you acknowledge and agree that participation involves significant risks. This Risk Disclosure is incorporated by reference into our Terms of Use. Through your continued use of the Services, you agree to the terms and conditions of this Risk Disclosure. Unless specifically defined herein, capitalized terms have the meanings ascribed to them in our Terms of Use.
1. Market and financial risks
- Digital assets, including the Tokens created through the Interface, are highly speculative and volatile. Prices can fluctuate dramatically over short periods, and markets may be illiquid or unpredictable.
- The overwhelming majority of Tokens created on platforms of this kind lose all economic value. You should expect this to be the ordinary outcome rather than the exception.
- You may lose all or part of the digital assets you trade, hold, or create through the Interface. You should not commit funds you cannot afford to lose entirely.
- Past performance is not indicative of future results, and coins.fun does not provide investment, financial, legal, or tax advice.
- You are responsible for evaluating the financial, market, and other risks associated with your use of the Services and Interface.
- coins.fun does not guarantee the liquidity or market price of any Token. A market for any Token may appear and disappear abruptly. We make no representation or warranty about the future market price of any digital asset.
- There may be no buyer for a Token you hold at any price. Displayed prices are pool prices and are not execution guarantees.
2. Token creation and liquidity risks
- Tokens are created by Users, not by us. We do not review, verify, endorse, or vouch for any Token, its creator, or any claim made about it.
- Token names and symbols are not unique. Multiple unrelated Tokens may share a symbol, and a Token may use a name or image associated with a person, brand, or project without any affiliation. The contract address is the only reliable identifier.
- The liquidity position created at launch is locked at deployment and cannot be withdrawn by the creator or by us. A lock is not a guarantee of value, safety, legitimacy, or outcome. It does not prevent a Token's price falling to near zero through ordinary selling, and it does not prevent a creator from selling holdings acquired at or after launch.
- A Token that has not been traded holds no quote asset in its pool. This is the expected behaviour of single-sided liquidity and does not indicate that any capital has been committed by anyone.
- Holdings may be concentrated. A creator or a small group may hold a large share of supply and may sell at any time without notice.
- Removal of a Token from display on the Interface does not remove it from the blockchain, where it continues to exist and may continue to trade.
3. Quote asset risk
- Markets on the Interface are denominated in USDT. We do not issue, control, administer, or guarantee USDT.
- The issuer of the quote asset may become insolvent, may be subject to regulatory action, or may cease to maintain redeemability. The quote asset may lose its peg.
- Denomination in a stablecoin removes exposure to the volatility of a floating base asset. It does not remove the risk that a Token goes to zero, and it introduces dependence on the issuer of the quote asset.
4. Blockchain and smart contract risks
- Transactions on the Interface rely on blockchain networks, which may experience failures, congestion, delays, reorganisations, forks, or security vulnerabilities.
- Smart contracts are subject to coding errors, exploits, bugs, and other unforeseen issues that may result in the loss, theft, or permanent locking of digital assets. Audits, where conducted, reduce but do not eliminate this risk.
- Blockchain transactions are irreversible. A transaction sent in error, to the wrong address, or with incorrect parameters cannot be recalled or reversed by us or by anyone.
- coins.fun is not responsible for losses arising from blockchain network failures, technical issues, or smart contract malfunctions.
- Blockchain technology is experimental and may be subject to sudden change or failure.
5. Technical and security risks
- Unauthorized access, hacking, phishing, malware, social engineering, or other malicious activity may compromise your wallet or private keys.
- You are solely responsible for securing your wallet, credentials, and private keys. coins.fun does not store private keys and cannot recover lost or stolen digital assets. If you lose your keys, your assets are gone permanently.
- Network outages, software bugs, RPC failures, indexer errors, or other technical failures may temporarily prevent access to the Interface, affect transactions, cause displayed data to be inaccurate or stale, or result in loss of functionality.
- System failures, unplanned interruptions, hardware or software defects, and security breaches may occur that we are unable to anticipate or detect, including hacks, cyber-attacks, consensus-level attacks, distributed denial of service attacks, and vulnerabilities or defects in the Interface. We may not be able to detect such issues in a timely manner, and may not have sufficient resources to respond to multiple incidents occurring simultaneously or in rapid succession.
- There can be no assurance that cyber-attacks will not be attempted, or that any security measure will be effective. We provide no assurance and make no representation as to the usability, stability, or security of the Interface or of your assets.
6. Regulatory and legal risks
- Digital assets and blockchain-based services are subject to laws and regulations that vary across jurisdictions and are evolving. Access to or use of the Interface may be restricted or prohibited in certain countries.
- You are responsible for complying with all applicable laws and regulatory obligations, including tax obligations, in your jurisdiction.
- Changes in laws, regulations, or governmental policy may adversely affect the value, usability, or legality of digital assets, or the availability of the Interface.
- A Token you create or acquire may be treated as a regulated instrument in one or more jurisdictions. You are solely responsible for determining whether this is the case and for complying with any resulting obligation.
7. Third-party risks
- The Interface and Services may link to or integrate third-party services, exchanges, wallets, bridges, or content. We do not control these third parties and are not responsible for any loss arising from their services, errors, or malfunctions.
- Interactions with third-party platforms may result in loss of digital assets, data, or access, and coins.fun is not liable for such outcomes.
- Data displayed on the Interface may originate from third-party providers and may be incomplete, inaccurate, delayed, or unavailable.
8. Platform risks
- The Interface may update, modify, restrict, or suspend features, services, or the display of any Token without prior notice.
- System failures, transaction delays, or software updates may temporarily affect the ability to access or use the Interface.
- coins.fun is not responsible for losses caused by temporary or permanent disruption to the Interface. Tokens already deployed continue to exist on the blockchain independently of the Interface and of us.
- The Interface or Services may be interrupted, suspended, or delayed due to acts of God, natural disasters, war, terrorist attacks, riots, civil commotion, widespread communicable disease, and other events beyond our control. Such events may also affect the market price of, and demand for, any digital asset.
9. $COINS risks
- $COINS confers no dividend, distribution, profit share, revenue participation, redemption right, or claim on any revenue, asset, or entity.
- Protocol revenue depends on trading volume on the Interface, which is unpredictable and may be zero.
- Any buyback of $COINS funded from protocol revenue is a discretionary use of funds. Buybacks do not guarantee, support, stabilise, or establish a floor for the price of $COINS, and any such programme may be modified, suspended, or discontinued at any time without notice.
- $COINS is the only official token associated with coins.fun. Tokens created by Users through the Interface are unaffiliated with $COINS and confer no rights in relation to it or to us. Always verify contract addresses against our official published channels, and never accept a contract address supplied through a direct message.
10. No guarantee of profit or success
- coins.fun makes no representation or warranty regarding the profitability, reliability, or performance of the Interface, any Token, $COINS, or any related service.
- There is no assurance that any transaction or activity conducted on the Interface will result in profit or success.
- All activity on the Interface is undertaken at your own risk, and coins.fun provides no financial or investment guarantee of any kind.
11. Acceptance of risk
By using the Interface or Services, you expressly acknowledge and assume all risks described in this Risk Disclosure, including but not limited to:
- the risk of total loss of your digital assets, funds, or Tokens;
- the risks associated with blockchain networks, smart contracts, and decentralized infrastructure;
- technical, operational, regulatory, and third-party risks;
- risks associated with the issuer of the quote asset; and
- market volatility and financial risks.
You confirm that you understand these risks and voluntarily choose to use the Interface and Services. By proceeding, you acknowledge that your use of the Interface is entirely at your own risk.
Questions about this document may be directed to contact@coins.fun.