DAO
DAO

DAO Maker price

$0.13000
+$0.0017000
(+1.32%)
Price change for the last 24 hours
USDUSD
How are you feeling about DAO today?
Share your sentiments here by giving a thumbs up if you’re feeling bullish about the coin or a thumbs down if you’re feeling bearish.
Vote to view results

DAO Maker market info

Market cap
Market cap is calculated by multiplying the circulating supply of a coin with its latest price.
Market cap = Circulating supply × Last price
Circulating supply
Total amount of a coin that is publicly available on the market.
Market cap ranking
A coin's ranking in terms of market cap value.
All-time high
Highest price a coin has reached in its trading history.
All-time low
Lowest price a coin has reached in its trading history.
Market cap
$32.60M
Circulating supply
250,926,000 DAO
90.41% of
277,524,000 DAO
Market cap ranking
243
Audits
CertiK
Last audit: Feb 18, 2022, (UTC+8)
24h high
$0.13040
24h low
$0.12690
All-time high
$9.0000
-98.56% (-$8.8700)
Last updated: Apr 22, 2021, (UTC+8)
All-time low
$0.10380
+25.24% (+$0.026200)
Last updated: Apr 9, 2025, (UTC+8)

DAO Maker Feed

The following content is sourced from .
ChainCatcher 链捕手
ChainCatcher 链捕手
Author: Fourteen Jun   This event is a victory for capital, not users, and it is a regression for the development of the industry. Bitcoin to the left, Sui to the right, and every industry move that shakes up decentralization brings a stronger belief in Bitcoin. The world needs not just a better global financial infrastructure, but a group of people who will always need freedom. Once upon a time, the alliance chain was more prosperous than the public chain, because it met the regulatory needs of that era, and now the decline of the alliance actually means that it simply complies with this demand, not the needs of real users. 1. Background of the event On May 22, 2025, Cetus, the largest decentralized exchange (DEX) in the Sui public chain ecosystem, was attacked by hackers, causing a sharp drop in liquidity and the collapse of multiple trading pairs, resulting in a loss of more than $220 million. As of press time, the timeline is as follows: On the morning of May 22, hackers attacked Cetus to extract $230 million, and Cetus urgently suspended the contract and issued an announcement On the afternoon of May 22, the hacker transferred about $60 million across the chain, and the remaining $162 million was still in the Sui on-chain address, and the Sui validator node quickly took action to add the hacker's address to the "Deny List" and freeze the funds On the evening of May 22, Sui CPO @emanabio tweeted that the funds have been frozen, and the return will start soon On May 23, Cetus began fixing vulnerabilities and updating contracts On May 24th, Sui open-sourced the PR, explaining that it was about to recycle funds through aliasing and whitelist On May 26, Sui initiated an on-chain governance vote proposing whether to perform a protocol upgrade and transfer the hacked assets to an escrow address On May 29, the voting results were announced, and more than 2/3 of the validator nodes were weighted to support; The protocol upgrade is ready to be executed From May 30th to early June, the protocol upgrade took effect, the specified transaction hash was executed, and the hacked assets were "legally transferred" 2. Attack principle The principle of events is related, and there have been many statements in the industry, so here is only an overview of the core principles: From the perspective of attack flow: The attacker first used a flash loan to lend about 10,024,321.28 haSUI, which instantly lowered the price of the trading pool 99.90%。 This huge sell order brought the target pool price down from about 1.8956×10^19 to 1.8425×10^19, almost bottoming out. Subsequently, the attacker creates a liquidity position on Cetus with an extremely narrow range (Tick lower limit of 300000, upper limit of 300200, and interval width of only 1.00496621%). Such a narrow interval amplifies the impact of subsequent calculation errors on the number of tokens required. The core principle of the attack: There is an integer overflow vulnerability in the get_delta_a function that Cetus uses to calculate the required number of tokens. The attacker deliberately stated that he wanted to add a huge amount of liquidity (about 10^37 units), but in fact only put 1 token into the contract. Due to the wrong overflow detection condition of checked_shlw, the contract was truncated at a high level during the left-shift calculation, causing the system to seriously underestimate the amount of haSUI required, thus exchanging a huge amount of liquidity at a very small cost. Technically, the above vulnerability stems from Cetus using incorrect masks and judgment conditions in the Move smart contract, resulting in any value less than 0xffffffffffffffff << 192 being able to bypass detection; After moving 64 bits to the left, the high-level data is truncated, and the system only charges a very small number of tokens to consider that it has gained a lot of liquidity. After the incident, 2 official operations were derived: "Freezing" vs "Recovery", which is two phases: The freezing phase is completed by Deny List + node consensus; In the clawback stage, on-chain protocol upgrade + community voting + designated transaction execution is required to bypass the blacklist. 3. Sui's freezing mechanism There is a special Deny List mechanism in the Sui chain itself, which realizes the freezing of hacking funds. Not only that, but Sui's token standard also has a "regulated token" model with a built-in freezing function. This emergency freeze takes advantage of this feature: validator nodes quickly add addresses related to stolen funds in their local configuration files. Theoretically, each node operator can modify the TransactionDenyConfig to update the blacklist on their own, but in order to ensure network consistency, the Sui Foundation has centralized coordination as the original configuration publisher. The Foundation first officially released a configuration update containing the hacker's address, and the validator took effect synchronously according to the default configuration, so that the hacker's funds were temporarily "sealed" on the chain, which actually has a high degree of centralization behind it In order to rescue the victims from the frozen funds, the Sui team immediately launched a patch for the Whitelist mechanism. This is for subsequent transfers back of funds. Legitimate transactions can be constructed in advance and registered on the whitelist, even if the fund address is still on the blacklist, it can be enforced. This new feature transaction_allow_list_skip_all_checks allows specific transactions to be pre-added to the "checklist", allowing them to skip all security checks, including signatures, permissions, blacklists, etc. It is important to note that whitelisting patches do not directly steal hacker assets; It only gives certain transactions the ability to bypass the freeze, and the real asset transfer still needs to be done with a legal signature or additional system permission module. In fact, the mainstream freezing scheme in the industry often occurs at the token contract level, and is controlled by the issuer for multi-signature. Taking the USDT issued by Tether as an example, its contract has a built-in blacklist function, and the issuing company can freeze the offending address so that it cannot transfer USDT. This scheme requires multisig to initiate a freezing request on the chain, and the multisig is agreed before it is actually executed, so there is an execution delay. Although the Tether freezing mechanism is effective, statistics show that there is often a "window period" in the multi-signature process, leaving opportunities for criminals to take advantage of. In contrast, Sui's freeze occurs at the underlying protocol level, is collectively operated by validator nodes, and is executed much faster than normal contract calls. In this model, to be fast enough, it means that the management of these validator nodes themselves is highly uniform. 3. Sui's "transfer recycling" implementation principle What's even more amazing is that Sui not only froze the hacker's assets, but also planned to "transfer and recover" the stolen funds through on-chain upgrades. On May 27, Cetus proposed a community vote to upgrade the protocol to send frozen funds to a multisig custodial wallet. The Sui Foundation then initiated an on-chain governance vote. On May 29, the results of the vote were announced, and about 90.9% of the validators supported the scheme. Sui officially announced that once the proposal is approved, "all funds frozen in the two hacker accounts will be recovered to a multisig wallet without the hacker's signature". There is no need for a hacker to sign, which is such a difference that there has never been such a fix in the blockchain industry. As can be seen from Sui's official GitHub PR, the protocol introduces an address aliasing mechanism. The upgrade includes pre-specifying alias rules in ProtocolConfig so that certain permitted transactions can be treated as if the legitimate signature was sent from a hacked account. Specifically, a hashlist of rescue transactions to be executed is tied to a destination address (i.e., a hacker address), and any executor who signs and publishes a summary of these fixed transactions is considered to have initiated the transaction as a valid hacker address owner. For these specific transactions, the validator node system bypasses the Deny List check. At the code level, Sui adds the following judgment to the transaction validation logic: when a transaction is blocked by the blacklist, the system iterates through its signer to check whether protocol_config.is_tx_allowed_via_aliasing(sender, signer, tx_digest) is true. As long as a signer satisfies the alias rule, that is, the transaction is allowed to pass, the previous interception error is ignored and the normal package execution continues. 4. Point of view 160 million, tearing apart is the deepest underlying belief in the industry From the author's personal point of view, this may be a storm that will pass soon, but this model will not be forgotten, because it subverts the foundation of the industry and breaks the traditional consensus that blockchain cannot be tampered with under the same set of ledgers. In blockchain design, the contract is the law, and the code is the referee. But in this case, the code failed, governance interfered, and power overrode the pattern, forming a pattern of voting behavior adjudicating code results. This is because Sui's direct appropriation of transactions is very different from the handling of hackers on mainstream blockchains. This is not the first time that consensus has been tampered with, but it has been the most silent Historically: Ethereum's 2016 The DAO incident used a hard fork to roll back transfers to cover losses, but this decision led to the split between Ethereum and Ethereum Classic, which was controversial, but ultimately different groups formed different consensus beliefs. The Bitcoin community has experienced similar technical challenges: the 2010 value spillover vulnerability was urgently fixed by developers and the consensus rules were upgraded, completely erasing some 18.4 billion illegally generated bitcoins. It's the same hard fork model, rolling back the ledger to the point where it was before the problem, and then the user can still decide which ledger system to continue using under the issue. Compared with the DAO hard fork, Sui did not choose to split the chain, but targeted this event accurately by upgrading the protocol and configuring aliases. In doing so, Sui maintains the continuity of the chain and most of the consensus rules, but also shows that the underlying protocol can be used to implement targeted "rescue operations". The problem is that historically, the "forked rollback" is a user's choice of faith; Sui's "protocol correction" is that the chain makes the decision for you. Not Your Key, Not Your Coin? I'm afraid not anymore. In the long run, this means that the idea of "not your keys, not your coins" is dismantled on the Sui chain: even if the user's private key is intact, the network can still block the flow of assets and redirect them through collective agreement changes. If this becomes a precedent for blockchain to respond to large-scale security incidents in the future, it is even considered to be a practice that can be followed again. "When a chain can break rules for the sake of justice, it has a precedent for breaking any rules." Once there is a success of "public welfare money grabbing", the next time it may be an operation in the "moral ambiguity". So what happens? The hacker did steal the user's money, so can the crowd vote rob him of his money? Vote based on whose money is more (pos) or more people? If the one with more money wins, then Liu Cixin's final producer will come soon, and if the one with more people wins, then the group rabble will also be loud. Under the traditional system, it is very normal for illegal gains to be unprotected, and freezing and transferring are the routine operations of traditional banks. But the fact that this cannot be done technically is not the root of the development of the blockchain industry. Now the stick of industry compliance is continuing to ferment, today you can freeze for hackers and modify the account balance, then tomorrow you can do arbitrary modifications for geographical factors and contradictory factors. If the chain becomes part of the regional tool. The value of that industry has been greatly reduced, and at best it is a more difficult financial system. This is also the reason why the author is firmly committed to the industry: "Blockchain is not valuable because it cannot be frozen, but because even if you hate it, it will not change for you." Regulatory trends, can the chain keep its soul? Once upon a time, the alliance chain was more prosperous than the public chain, because it met the regulatory needs of that era, and now the decline of the alliance actually means that it simply complies with this demand, not the needs of real users. From the perspective of industry development Efficient centralization, is it a necessary stage in the development of blockchain? If the ultimate goal of decentralization is to protect the interests of users, can we tolerate centralization as a means of transition? The word "democracy", in the context of on-chain governance, is actually token weighted. So if a hacker holds a large amount of SUI (or one day the DAO is hacked, and the hacker controls the votes), can they also "legally vote to launder themselves"? In the end, the value of blockchain is not whether it can be frozen, but whether the group chooses not to do so even if it has the ability to freeze. The future of a chain is not determined by the technical architecture, but by the set of beliefs it chooses to protect.
Show original
49.75K
0
DAO Maker
DAO Maker
🚨 NEW SHO - 0xFútbol is LIVE! ⚽️ Join here: To celebrate, we’re giving away FREE DAO TOKENS on 🎁 ✅ Join the 0xFútbol sale ✅ Instantly get +100% bonus on Shakebox ✅ Rewards are yours to keep — even if you refund! 🔹 Public Round: Deposit a minimum of 75 USDC, get 500 DAO bonus 🔹 Private Round: Deposit a minimum of 500 DAO, get +500 DAO bonus 🛡️ 3-day refund window — no risk, just rewards! 🔗 Details:
58.06K
267
Alea Research
Alea Research
🚨 New Proof of Vision episode for you folks today: In our 14th PoV episode, our Director of Protocol Services, @0xKmack, had on @nomos_paradox, Founder of Chroincle Protocol, & one of the designers of Maker's first Ethereum oracle... Chronicle Protocol is a blockchain-agnostic oracle infrastructure originally developed out of the MakerDAO ecosystem. Chronicle aims to deliver transparent, verifiable on-chain data at high scale. In this episode, we get into Chronicle's origins, Niklas's tokenomics thought processes, and more... Have a listen 👇 ⏲ Timestamps: 0:00 - Background on Niklas 08:09 - Origins of Chronicle 18:09 - What Makes Chronicle Stand Out? 29:07 - Chronicle's Business Model 43:38 - RWAs & Oracle Implementation 45:37 - Chronicle's Role in Evolving DeFi Landscape 53:08 - Chronicle Token Utility
12.96K
10
Gink5814.eth🐣
Gink5814.eth🐣
BTCcore should quickly hard fork with BTCetf
Anthurine
Anthurine
Yesterday marked a historic moment. The Senate passed the "Stablecoin Payment Act" with a vote of 63:37—the world's first national-level stablecoin regulatory framework was born. The short-term impact is limited, but the long-term narrative could become the biggest driver for BTC price growth by 5-10 times, giving the crypto world its own Fed central bank attributes. Immediate benefits: 1. Compliance of fiat channels (banks can directly issue stablecoins) 2. Clear custody rules for RWA asset issuance 3. U.S. Treasury bonds will become core reserve assets (the act requires 100% reserves) Short-term impact: 1. Increased cost of stablecoin issuance (compliance costs within the banking system eat into profits) 2. USDC may surpass USDT (amplified compliance advantage) 3. On-chain TVL growth may slow down (short-term liquidity siphoning effect) Huge long-term narrative transmission: Stablecoin issuing institutions may become the largest buyers of national debt in the future. When the stablecoin scale breaks through $3 trillion (currently $160 billion), it will trigger a triple reconstruction: 1. U.S. Treasury liquidity reconstruction: If stablecoins hold 5% of U.S. Treasury bonds (currently 0.6%), it is equivalent to Japan's holding level. 2. Monetary policy transmission reconstruction: The crypto market may become a "parallel interest rate system." 3. Economic governance weight reconstruction: The game between DAO Treasury vs Sovereign Debt. Let's make a crazy but quantifiable assumption: When BTC market cap reaches $10 trillion (currently $1.2 trillion, meaning BTC grows 5-10 times): 1. Institutions mortgage BTC to borrow stablecoins → Minting volume +$300 billion (at 30% collateral rate) 2. Stablecoin issuers purchase U.S. Treasury bonds → Lower 10-year yield by 15-25bps (according to IMF bond liquidity model) 3. Low interest rate environment stimulates BTC as a deflationary asset premium → Enter the next cycle The model requires simultaneous satisfaction of: 1. No black swan-level de-pegging event occurs (referencing the 2023 Silicon Valley Bank USDC crisis) 2. BTC volatility drops to gold levels (currently 80% vs gold 15%) When BTC price increases by 5-10 times, volatility will naturally decrease significantly. Ultimate form: When the "DeFi central bank" controls $10 trillion in liquidity, their U.S. Treasury trading instructions may influence FOMC decisions—this might be the true realization path of Satoshi's "censorship-resistant financial system." We are witnessing Currency Wars 2.0.
Show original
17.61K
2
ClaraCheng.eth | 𝟎𝐱𝐔❇️🦢
ClaraCheng.eth | 𝟎𝐱𝐔❇️🦢
#BDNerd 🧐 Always feels too classic, too classic
Jaclyn 🟠 🏃🏻‍♀️
Jaclyn 🟠 🏃🏻‍♀️
I just caught up with a friend who is job hunting but has never done BD before. He’s considering whether to go into BD and reached out to me for DD. After our conversation, he said he was shocked: "I thought BD was a super simple job that anyone could do—just pulling people into groups, discussing collaborations, and attending a few meetings. But after talking to you, I realized there’s so much more to it, and it’s definitely not something anyone can do." Actually, I was the one more shocked. It turns out there’s a huge misunderstanding about what BD entails, especially when it comes to the specifics. So, I decided to continue writing this BD series for those who might have misconceptions about this role or for those currently in this position wondering, "Is it just me who feels this exhausted?" ------------------------- TLDR; BD is a spectrum. Some people’s work resembles operations, others lean towards strategy, and some are almost entirely Tech Sales, with little connection to crypto. The real challenge of this job has never been "closing a deal." It’s about making decisions amidst uncertainty and driving consensus in chaos. It’s a profession that requires breaking down your ego, utilizing 100% emotional intelligence, and treating yourself as both a search engine and a product manager. ------------------------- For example: - You’ve spent one or two months communicating back and forth with a project, held four or five meetings, talked to all stakeholders, and finally moved to the formal commitment stage. Then the other party’s boss suddenly tells you, "We currently think AI agents have the most potential, so other plans are on hold." - You spent four or five hours completing DD and painstakingly found the founder’s Telegram, crafted a highly customized cold pitch, only to receive no response 99% of the time—not even a "not interested." - So, every now and then, you send messages like "Hey xxx, kindly bump up this message. Have you had a chance to review it?" to grab attention, but still get no reply 99% of the time. You understand this is normal; without a warm intro, it’s almost impossible to start a conversation. So, you repeat the same steps, but this time with your network contacts. - You identify a major project with great collaboration potential and are very bullish on the value it could bring to your project. But painfully, you find out your boss thinks it’s too complicated and not scalable, forcing you to abandon it. And so on. These are all real experiences I’ve had. Doing BD in crypto is a continuous game of wrestling with uncertainty. -------------------------- What’s even more interesting is that, although everyone calls it "BD," the actual work varies greatly. At Gelato, doing BD is essentially Tech Sales, which is on the far right of the BD spectrum. Our daily work feels like fast-track technical DD for projects (thankfully, I still have the foundational skills from my VC days): Understanding the other party’s chain, architecture, DAO, token, or protocol operations. Analyzing whether they use OP Stack, Orbit, or Celestia. Where does the gas fee come from? Should it be cross-chain? Which bridge to use? Is there a native token? Do they need account abstraction? Automation? What DA layer do they use? And so on... Sometimes, you need to capture 90% of this information during the first cold pitch to provide truly suitable solutions. It’s really not as simple as "let’s see if there’s a collaboration opportunity." I could even write a separate piece on "the daily struggles of doing tech sales in the crypto industry." If I were doing BD for a project or chain, the work would be entirely different: Finding early-stage potential projects in the community and helping them incubate. Negotiating with top projects to join your ecosystem, aiming for exclusivity, incentives, or strong binding collaborations. Building high-quality relationships with VCs, Infra, and DAOs to continuously supply resources to the ecosystem. Brainstorming new collaboration methods with other projects to maintain mutual benefits. So, it’s a spectrum. ----------------------------- From a positioning perspective, BD is the bridge between the company and the outside world. We are the first to interact with users, partners, and market feedback, seeing the most firsthand information. A good BD doesn’t just deliver collaborations but also brings critical feedback back to the team, influencing product design, strategy, and even market pacing. Often, BD serves as the "external brain" for founders and PMs. At the same time, at least 40% of BD work involves upward management (this is something many people don’t talk about, but it’s very real). You might spend weeks refining a collaboration, only to find yourself repeatedly convincing your boss why it matters. Internal pushing can be as challenging as external cold starts. A boss unwilling to give the green light is more painful than a client saying no (speaking from experience). ---------------------- There’s so much more to elaborate on, and much that’s not suitable for public discussion. But if you’re also in BD, I hope you see this and know you’re not alone. This job, while high-pressure, is also a key role in connecting products and markets, turning chaos into collaboration. That’s why I love it despite the pain. What’s the most important thing in this industry? Execution, execution, and damn it, execution. If you’re not in BD but curious about this role, feel free to reach out to me. My DMs are always open.
Show original
15.61K
1

DAO calculator

USDUSD
DAODAO

DAO Maker price performance in USD

The current price of DAO Maker is $0.13000. Over the last 24 hours, DAO Maker has increased by +1.33%. It currently has a circulating supply of 250,926,000 DAO and a maximum supply of 277,524,000 DAO, giving it a fully diluted market cap of $32.60M. At present, DAO Maker holds the 243 position in market cap rankings. The DAO Maker/USD price is updated in real-time.
Today
+$0.0017000
+1.32%
7 days
-$0.00190
-1.45%
30 days
-$0.02260
-14.81%
3 months
-$0.00010
-0.08%

About DAO Maker (DAO)

3.3/5
CyberScope
4.1
04/16/2025
TokenInsight
2.6
11/15/2022
The rating provided is an aggregated rating collected by OKX from the sources provided and is for informational purpose only. OKX does not guarantee the quality or accuracy of the ratings. It is not intended to provide (i) investment advice or recommendation; (ii) an offer or solicitation to buy, sell or hold digital assets; or (iii) financial, accounting, legal or tax advice. Digital assets, including stablecoins and NFTs, involve a high degree of risk, can fluctuate greatly, and can even become worthless. The price and performance of the digital assets are not guaranteed and may change without notice. Your digital assets are not covered by insurance against potential losses. Historical returns are not indicative of future returns. OKX does not guarantee any return, repayment of principal or interest. OKX does not provide investment or asset recommendations. You should carefully consider whether trading or holding digital assets is suitable for you in light of your financial condition. Please consult your legal/ tax/ investment professional for questions about your specific circumstances.
Show more
  • Official website
  • White Paper
  • Block explorer
  • About third-party websites
    About third-party websites
    By using the third-party website ("TPW"), you accept that any use of the TPW will be subject to and governed by the terms of the TPW. Unless expressly stated in writing, OKX and its affiliates ("OKX") are not in any way associated with the owner or operator of the TPW. You agree that OKX is not responsible or liable for any loss, damage and any other consequences arising from your use of the TPW. Please be aware that using a TPW may result in a loss or diminution of your assets.

DAO Maker is an Ethereum-native end-to-end solution for Web3 startups, from fundraising to growth solutions. The project focuses on amplifying retail participation in venture funding, giving them a transparent blockchain-powered ecosystem to interact with.

The platform offers various services and tools to facilitate startup growth, including a startup launchpad, SaaS solutions, incubation services, and social mining resources. By leveraging these resources, startups can kick-start their growth and gain access to a community of supporters.

DAO Maker empowers early-stage blockchain projects by providing them with the tools to organize and manage their fundraising activities. By leveraging the platform's decentralized and transparent infrastructure, retail participants can now engage in opportunities traditionally limited to institutional investors.

DAO Maker’s transparent ecosystem enables retail participants to discover and participate in prospective Initial DEX Offerings (IDOs). This democratized approach levels the playing field and allows individuals to participate actively in the evolving blockchain landscape.

Through its ecosystem, DAO Maker has successfully launched notable projects such as the DAFI Protocol (DAFI), My Neighbor Alice (ALICE), LaunchX, and the Orion Protocol (ORN).

How does DAO Maker work

DAO Maker operates within a comprehensive venture framework, offering various solutions to support startups throughout their journey. The DAO Pad, also known as the DAO Launchpad, is a prominent feature that allows startups to access dynamic fund procurement models. Acting as a project locator and tracker, the DAO Pad enables interested users to monitor the progress of incubated ventures and identify opportunities for participation.

The fundraising model employed by DAO Maker is called Strong Holder Offering (SHO), which prioritizes long-term community members who demonstrate commitment by holding tokens even after the project is listed.

In addition to the DAO Pad and SHO, DAO Maker provides other valuable offerings. YieldShield is an insurance product for investors, while Venture Bonds serve as a passive yield-generating tool. Furthermore, DAO Maker's Social Mining program helps startups build communities from the ground up by incentivizing participants to complete specific tasks such as bug reporting and content creation.

DAO Maker’s native token: DAO

DAO is the native token of the DAO Maker ecosystem and operates on the Ethereum blockchain, adhering to ERC-20 standards. DAO tokens have a maximum supply cap of 312 million and hold multiple utilities within the ecosystem.

Firstly, DAO tokens provide access to Strong Holder Offerings (SHOs), enabling token stakers to participate in token sales. Additionally, DAO tokens serve as the governance token, granting holders the right to vote on proposals and decisions that shape the ecosystem.

DAO tokens are also utilized in the DAO Pad, the launchpad for projects, in the form of initial coin offerings (ICOs) and IDOs. Lastly, holders can stake their DAO tokens in "Vaults" to earn passive rewards.

DAO distribution

The distribution of DAO tokens is as follows:

  • 25 percent: Public and private sales
  • 20 percent: Current team
  • 5 percent: Future team members and advisors
  • 14 percent: Merger and acquisition purposes, allowing DAO Maker to explore strategic partnerships and expansion opportunities
  • 10 percent: Incentives, encouraging participation and engagement within the ecosystem
  • 9 percent: Ecosystem development initiatives
  • 7 percent: Foundation
  • 10 percent: DAO-managed Foundation

About the founders

DAO Maker was founded by Christoph Zaknun, the acting CEO; Hassan Sheikh, the CMO; and Giorgio Marciano, the former CTO. Marciano left the project in 2021. In addition to the founding team, DAO Maker has Jonas Hayajneh as the Head of Business Development and Pedro Da Silva Rosa as the Head of Social Media. DAO Maker has raised capital from notable angel investors such as Fantom, Pello Capital, and Woodstock.

DAO Maker: The road ahead

DAO Maker is a one-stop solution for startups, giving them transparent access to venture capital and community-building resources. Looking ahead, DAO Maker is focused on enhancing its risk management services to provide even stronger protection for projects and their supporters. By implementing robust insurance products and strategies, DAO Maker aims to mitigate post-listing dips and safeguard supporters from price crashes. This commitment to risk management will contribute to a more stable and secure environment for startups and their supporters within the DAO Maker ecosystem.

Show more
Show less
Trade popular crypto and derivatives with low fees
Trade popular crypto and derivatives with low fees
Get started

DAO Maker FAQ

What is DAO Maker?

DAO Maker is an end-to-end incubator and launchpad for blockchain startups. It provides a decentralized ecosystem that aims to revolutionize the concept of venture capital by democratizing access to funding and empowering retail investors. Through transparent fundraising solutions, community-building initiatives, and social mining tools, DAO Maker also supports the growth and development of innovative startups in the blockchain space.

What are the advantages of DAO Maker?

The advantages of DAO Maker include its role in helping retail participants locate the right projects to support. By providing a platform for retail investors to discover innovative projects, DAO Maker promotes accessibility and inclusivity in the blockchain startup ecosystem.

Additionally, DAO Maker offers a built-in insurance product called YieldShield, which protects the interests of investors. Lastly, the project also fosters an inclusive and stable funding and support ecosystem that benefits startups, providing them with the necessary resources to succeed.

What is the DAO price prediction?
While it’s challenging to predict the exact future price of DAO, you can combine various methods like technical analysis, market trends, and historical data to make informed decisions.
How much is 1 DAO Maker worth today?
Currently, one DAO Maker is worth $0.13000. For answers and insight into DAO Maker's price action, you're in the right place. Explore the latest DAO Maker charts and trade responsibly with OKX.
What is cryptocurrency?
Cryptocurrencies, such as DAO Maker, are digital assets that operate on a public ledger called blockchains. Learn more about coins and tokens offered on OKX and their different attributes, which includes live prices and real-time charts.
When was cryptocurrency invented?
Thanks to the 2008 financial crisis, interest in decentralized finance boomed. Bitcoin offered a novel solution by being a secure digital asset on a decentralized network. Since then, many other tokens such as DAO Maker have been created as well.
Will the price of DAO Maker go up today?
Check out our DAO Maker price prediction page to forecast future prices and determine your price targets.

Monitor crypto prices on an exchange

Watch this video to learn about what happens when you move your money to a crypto exchange.

Disclaimer

The social content on this page ("Content"), including but not limited to tweets and statistics provided by LunarCrush, is sourced from third parties and provided "as is" for informational purposes only. OKX does not guarantee the quality or accuracy of the Content, and the Content does not represent the views of OKX. It is not intended to provide (i) investment advice or recommendation; (ii) an offer or solicitation to buy, sell or hold digital assets; or (iii) financial, accounting, legal or tax advice. Digital assets, including stablecoins and NFTs, involve a high degree of risk, can fluctuate greatly. The price and performance of the digital assets are not guaranteed and may change without notice.

OKX does not provide investment or asset recommendations. You should carefully consider whether trading or holding digital assets is suitable for you in light of your financial condition. Please consult your legal/tax/investment professional for questions about your specific circumstances. For further details, please refer to our Terms of Use and Risk Warning. By using the third-party website ("TPW"), you accept that any use of the TPW will be subject to and governed by the terms of the TPW. Unless expressly stated in writing, OKX and its affiliates (“OKX”) are not in any way associated with the owner or operator of the TPW. You agree that OKX is not responsible or liable for any loss, damage and any other consequences arising from your use of the TPW. Please be aware that using a TPW may result in a loss or diminution of your assets. Product may not be available in all jurisdictions.

DAO calculator

USDUSD
DAODAO