# Upcoming onicai SNS Decentralization Swap

**URL:** https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361
**Category:** Showcase
**Tags:** sns, DeAI
**Created:** [December 11, 2025, 9:58pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361 "2025-12-11T21:58:03Z")
**Posts on this page:** 20
**Page:** 4

<div class="post-metadata">

### Author: ![peterparker](https://avatars.discourse-cdn.com/v4/letter/p/b9bd4f/32.png) [@peterparker](https://forum.dfinity.org/u/peterparker)
#### Post date: [January 10, 2026, 6:40pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/61 "2026-01-10T18:40:51Z")

</div>

Side note about frontend build reproducibility: according to our experience, though tooling has maybe involved lately it’s not something I check every week, frontend reproducibility across OS can be tricky. You know, NodeJS and related eco-system is what it is. On the same OS though, it should be reproducible - that’s why e.g. in projects like Juno, OISY, and NNS dapp, we’ve set up GitHub Actions that run several builds in a row to assert they always output the same hash for the same context.

PS: If I’m off-topic, just ignore my posts 😅

---

<div class="post-metadata">

### Author: ![Lorimer](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/lorimer/32/17601_2.png) [@Lorimer](https://forum.dfinity.org/u/Lorimer)
#### Post date: [January 10, 2026, 9:42pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/62 "2026-01-10T21:42:49Z")

</div>

> [@peterparker](#):
>
> > [@Lorimer](#):
> >
> > Regarding frontends, I think this is an example where the assets are bundled into the WASM
> 
> Not really

Are you sure?

> The example project presents a very simple single page JavaScript application. **Assets are embedded into the canister when it is compiled**.  
> _[response-verification/examples/http-certification/assets at main · dfinity/response-verification · GitHub](https://github.com/dfinity/response-verification/tree/main/examples/http-certification/assets)_

* * *

> [@peterparker](#):
>
> - If assets are packed within the WASM at build time, verification means rebuilding the entire WASM and confirming the hash matches - i.e. rebuilding the backend and frontend that are packaged together in the WASM code.
> - If assets are uploaded separately (e.g., through a proposal mechanism), verification involves I guess two checks:

Yeah, I think embedding assets in the WASM is a much simpler and familiar verification process. It’s just like verifying any other canister.

Your second point is essentially what the [standard static asset canister](https://docs.internetcomputer.org/building-apps/governing-apps/managing/sns-asset-canister) does. The build hash doesn’t change when assets are modified. They’re uploaded after the canister is built and deployed. Verifying requires the assets to be staged first, but I’ve never seen this done in practice. Embedded assets makes much more sense to me if decentralisation / verifiability is desired. I’m not saying it can’t be done with the standard asset canister. I’ve just never seen it used that way (even though its covered in the docs).

---

<div class="post-metadata">

### Author: ![Lorimer](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/lorimer/32/17601_2.png) [@Lorimer](https://forum.dfinity.org/u/Lorimer)
#### Post date: [January 10, 2026, 9:53pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/63 "2026-01-10T21:53:18Z")

</div>

> [@Nuno](#):
>
> When you say that frontend canisters lack verifiability, are you saying that frontend canisters usually can’t be build-hash verified because assets aren’t part of a build? Or is there another verifiability issue you’re pointing at?

I just mean there are some extra hoops to jump through (described above), and SNSs I’m familiar with, such as WaterNeuron, have been lazy and decided to subvert the verification process entirely for the frontend. Massive security flaw in my opinion. I don’t actively participate in that DAO anymore.

I think we need to be pushing for higher standards for all future SNSs. I think ONICAI’s on track for being one of the most complete and compliant launches I’ve seen on the IC. 👍

---

<div class="post-metadata">

### Author: ![peterparker](https://avatars.discourse-cdn.com/v4/letter/p/b9bd4f/32.png) [@peterparker](https://forum.dfinity.org/u/peterparker)
#### Post date: [January 11, 2026, 7:06am UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/64 "2026-01-11T07:06:19Z")

</div>

> [@Lorimer](#):
>
> Are you sure?

I just meant it’s not the goal of those examples or crates. Yes they hold assets for demo purpose but their main goal is not this topic I think. Anyway, nvm.

> [@Lorimer](#):
>
> embedding assets in the WASM

Worth noting that this is limiting when the WASM must be installed in a single call - i.e. 2MB. With chunked installation this limit has been lifted, but I don’t know if that’s the case everywhere, I didn’t check (NNS, SNS?).

---

<div class="post-metadata">

### Author: ![Lorimer](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/lorimer/32/17601_2.png) [@Lorimer](https://forum.dfinity.org/u/Lorimer)
#### Post date: [January 11, 2026, 5:14pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/65 "2026-01-11T17:14:14Z")

</div>

Created a separate thread about SNS frontend verifiability →

> [@SNS Frontend Verifiability](https://forum.dfinity.org/t/sns-frontend-verifiability/62469):
>
> Can I ask why SNS projects are encouraged to utilise the standard asset canister for hosting the frontend assets? Why are SNSs not encourage to bundle their frontend assets into canister WASM so that the SNS DAO can verify the build before deploying frontend changes? The verification workflow for the standard asset canister (which doesn’t bundle assets in the WASM) is unnecessarily complicated. I don’t think I’ve ever seen an example of this used for SNS communities to verify frontend change…

---

<div class="post-metadata">

### Author: ![Lorimer](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/lorimer/32/17601_2.png) [@Lorimer](https://forum.dfinity.org/u/Lorimer)
#### Post date: [January 11, 2026, 5:27pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/66 "2026-01-11T17:27:07Z")

</div>

> [@icpp](#):
>
> Would be great if you could confirm this assessment based on the IConfucius project.

Hi @icpp I had a go at building the [IConfucius](https://github.com/onicai/IConfucius/tree/main/src/IConfucius) canister ([dpljb-diaaa-aaaaa-qafsq-cai](https://dashboard.internetcomputer.org/canister/dpljb-diaaa-aaaaa-qafsq-cai)). I see the build hash currently deployed to the network is `56f8f3d4310914cfb79f4baabf6e76fdb22c98b7b61631f00d7270c931a6e7c0`.

When I build (simply via `dfx build`) I get a `IConfucius/src/IConfucius/.dfx/local/canisters/iconfucius_ctrlb_canister/iconfucius_ctrlb_canister.wasm` file. When I compute the hash (`shasum -a 256 iconfucius_ctrlb_canister.wasm`) I get `276acbd8c80f6033507d47d503e572ab4edd92b54a5c55fe6b3c8f5fb6ab2425`.

Is it possible that you’ve performed any further processing before deploying? I tried shrinking the WASM (`ic-wasm iconfucius_ctrlb_canister.wasm -o iconfucius_ctrlb_canister.wasm shrink`) and then recomputing the hash. This resulted in the following hash `64053035114b4838fdc7a9b10f0670a85a294c0fde8ac020e8b87ca9b56f78f6`

These don’t match what’s currently deployed to mainnet. Maybe due to build environment differences? I’m on Ubuntu 22.04.5 LTS.

---

<div class="post-metadata">

### Author: ![Lorimer](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/lorimer/32/17601_2.png) [@Lorimer](https://forum.dfinity.org/u/Lorimer)
#### Post date: [January 11, 2026, 5:28pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/67 "2026-01-11T17:28:31Z")

</div>

In fact I just checked again and the build hash on mainnet is `c7fab5fb7ab878ba0e69f5936e1f928cecc1a8ee2d6c1358b5471284a88222d5`. This seems to have changed shortly after I checked, so I guess it’s not stable at the mo due to recent changes not at the head of the master branch (which I pulled).

---

<div class="post-metadata">

### Author: ![icpp](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/icpp/32/9310_2.png) [@icpp](https://forum.dfinity.org/u/icpp)
#### Post date: [January 13, 2026, 5:57pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/68 "2026-01-13T17:57:52Z")

</div>

> [@Lorimer](#):
>
> I’m on Ubuntu 22.04.5 LTS.

I have both a Mac and an Ubuntu machine.  
I will do a test and see if they provide the same wasm hash or not.

---

<div class="post-metadata">

### Author: ![icpp](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/icpp/32/9310_2.png) [@icpp](https://forum.dfinity.org/u/icpp)
#### Post date: [January 13, 2026, 5:59pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/69 "2026-01-13T17:59:44Z")

</div>

FYI - we discovered a mistake in the canister-id of one canister listed in the onicai\_sns\_init.yaml, and have pushed a fix to the github repo.

It was the canister-id of the LLM for the funnAI Challenger.

> **[GitHub - onicai/onicai\_sns: decentralization sale parameters for the onicai...](https://github.com/onicai/onicai_sns)**
>
> decentralization sale parameters for the onicai SNS

---

<div class="post-metadata">

### Author: ![Lorimer](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/lorimer/32/17601_2.png) [@Lorimer](https://forum.dfinity.org/u/Lorimer)
#### Post date: [January 13, 2026, 6:14pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/70 "2026-01-13T18:14:20Z")

</div>

Thanks @icpp. BTW I just got a notification that the ONICAI mAIner marketplace launched earlier today. Nice job!

I’ve already purchased 3 mAIners, and I’ve now topped them up with cycles. Looking forward to watching them progress while earning me FUNNAI (soon to be ONICAI).

I encourage anyone reading this to scoop up some mAIners while they’re cheap. The sub-100 ICP prices won’t last for long I’m sure.

This is also a good opportunity for the network to demonstrate some serious burn for Mission 70! Let’s all do our bit!

[https://funnai.onicai.com/#/marketplace](https://funnai.onicai.com/#/marketplace)

 ![image](https://us1.discourse-cdn.com/flex023/uploads/dfn/original/3X/9/8/98ce070405296256838a0a48954a77d0af936932.jpeg)

I can’t change the burn rate they already have upon receiving them for 24h, but I’ll be setting them all to ‘very high’ burn asap.

Some thing fun and productive to spend my ICP on. I love it!

---

<div class="post-metadata">

### Author: ![Lorimer](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/lorimer/32/17601_2.png) [@Lorimer](https://forum.dfinity.org/u/Lorimer)
#### Post date: [January 13, 2026, 6:15pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/71 "2026-01-13T18:15:42Z")

</div>

3 is an odd number. I’m buying another one!

---

<div class="post-metadata">

### Author: ![icpp](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/icpp/32/9310_2.png) [@icpp](https://forum.dfinity.org/u/icpp)
#### Post date: [January 14, 2026, 8:17pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/72 "2026-01-14T20:17:19Z")

</div>

During today’s upgrade of the funnAI protocol canisters, the Archive canister did not upgrade.

The issue is that it still used the classic persistence model, and one of the data structures has become to large to be serialized during the pre-upgrade step. We researched it, and this canister is truly in a non-upgradeable state.

We decided to deploy a fresh Archive canister, using the Enhanced Orthogonal Persistence (EOP), which will never run into this problem, because it keeps the heap wasm as is during an upgrade and does not require to deserialize the data structure that is causing the issue.

We have configured the protocol to start archiving data to that new canister.

The original Archive canister will be kept up & running as is but will no longer receive new data. We will attempt to extract the data and then add it back to the new Archive canister.

The new Archive canister will be decentralized during the SNS, and the original one will not.

That resulted in one more change to the onicai\_init\_sns.yaml file. Everything else stays the same.

Good news though is that ALL the other canisters upgraded without issues and are now using the EOP persistence model.

---

<div class="post-metadata">

### Author: ![ZackDS](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/zackds/32/40368_2.png) [@ZackDS](https://forum.dfinity.org/u/ZackDS)
#### Post date: [January 14, 2026, 8:31pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/73 "2026-01-14T20:31:06Z")

</div>

No one should launch any SNS right now. Dfinity has no SNS team left.

---

<div class="post-metadata">

### Author: ![Lorimer](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/lorimer/32/17601_2.png) [@Lorimer](https://forum.dfinity.org/u/Lorimer)
#### Post date: [January 14, 2026, 10:02pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/74 "2026-01-14T22:02:17Z")

</div>

Nobody needs DFINITY’s permission to propose an SNS, and the SNS framework is all open source and upgradeable by anyone in the community who wishes to propose a sensible proposal that the community would adopt.

This is a World Computer. Show it some respect please.

I would add that the ONICAI team are one of the most impressive teams I’ve seen on the IC. We could do with a killer SNS like this

---

<div class="post-metadata">

### Author: ![icpp](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/icpp/32/9310_2.png) [@icpp](https://forum.dfinity.org/u/icpp)
#### Post date: [January 15, 2026, 5:13pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/75 "2026-01-15T17:13:06Z")

</div>

Hi everyone, we’re excited to share this milestone with you:

After a thorough security review and an upgrade to the latest dfx version of all code, the complete funnAI codebase along with all other onicai code is now open source!

Please take a look here if you like:

- onicai repositories on GitHub: [https://github.com/orgs/onicai/repositories](https://github.com/orgs/onicai/repositories)
- funnAI application repository: [https://github.com/onicai/funnAI](https://github.com/onicai/funnAI)
- Proof-of-AI-Work Protocol repository: [GitHub - onicai/PoAIW: Proof of Artificial Intelligence Work Protocol](https://github.com/onicai/PoAIW)
- onicai SNS repository: [GitHub - onicai/onicai\_sns: decentralization sale parameters for the onicai SNS](https://github.com/onicai/onicai_sns)

And you can find all onicai SNS canisters (i.e. all assets to be decentralized and handed to the SNS) in this spreadsheet: [onicai SNS - canisters - Google Sheets](https://docs.google.com/spreadsheets/d/1GoP9mm-auqHekaW7cI4xwdfkRDyJkpGYc00wwSyuec4/edit?usp=sharing)

---

<div class="post-metadata">

### Author: ![icpp](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/icpp/32/9310_2.png) [@icpp](https://forum.dfinity.org/u/icpp)
#### Post date: [January 15, 2026, 9:01pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/76 "2026-01-15T21:01:14Z")

</div>

Hi Everyone,

We had to make one last modification to work around a limit of the decentralization sale. It is allowed to include only up to 25 canisters during the initial process, while we have 60 canisters in total.

We out commented a number of canisters in the [onicai\_sns\_init.yaml](https://github.com/onicai/onicai_sns/blob/main/onicai_sns_init.yaml) that will be added later if the SNS decentralization sale is successful.

The initial set of canisters to decentralize include:

- funnAI canisters, with 3 out of 30 LLMs. The remaining 27 LLMs will continue to run as part of the protocol, but just not under SNS governance yet.
- IConfucius canisters
- DeVinci canisters
- ICGPT canisters with 1 out of 4 LLMs. The remaining 3 LLMs will continue to run as part of the ICGPT application, but just not under SNS governance yet.

---

<div class="post-metadata">

### Author: ![icpp](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/icpp/32/9310_2.png) [@icpp](https://forum.dfinity.org/u/icpp)
#### Post date: [January 15, 2026, 9:10pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/77 "2026-01-15T21:10:51Z")

</div>

Hi Everyone,

The NNS Proposal to create the onicai SNS is now live 🚀

> **[Proposal: 139985](https://dashboard.internetcomputer.org/proposal/139985)**
>
> NNS Proposal to create a SNS named 'onicai'

Thank you very much for all your support, feedback and engagement.

---

<div class="post-metadata">

### Author: ![Lorimer](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/lorimer/32/17601_2.png) [@Lorimer](https://forum.dfinity.org/u/Lorimer)
#### Post date: [January 15, 2026, 9:15pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/78 "2026-01-15T21:15:13Z")

</div>

# 🤩

---

<div class="post-metadata">

### Author: ![cryptodicted](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/cryptodicted/32/28210_2.png) [@cryptodicted](https://forum.dfinity.org/u/cryptodicted)
#### Post date: [January 15, 2026, 9:17pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/79 "2026-01-15T21:17:11Z")

</div>

All the very best, team. Let’s go 🚀

---

<div class="post-metadata">

### Author: ![bitel911](https://sea1.discourse-cdn.com/flex023/user_avatar/forum.dfinity.org/bitel911/32/29385_2.png) [@bitel911](https://forum.dfinity.org/u/bitel911)
#### Post date: [January 15, 2026, 10:27pm UTC](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/80 "2026-01-15T22:27:14Z")

</div>

Grand Season 2 Proposal: [139985](https://nns.ic0.app/proposal/?u=qoctq-giaaa-aaaaa-aaaea-cai&proposal=139985) - Creation of the Onicai SNS | Review by [Dexter](https://dashboard.internetcomputer.org/neuron/16781982801159042389) for [TacoDao](https://dashboard.internetcomputer.org/neuron/10389857423811734339)

**Vote: ADOPT**

**YAML Review:**  
The token distribution and voting power allocations demonstrate a strong balance, ensuring fair governance and incentives across stakeholders. For details, see the [Onicai SNS initialization YAML file](https://github.com/onicai/onicai_sns/blob/main/onicai_sns_init.yaml).

 ![ONICAI Token Distribution and SNS Voting Power Distribution](https://us1.discourse-cdn.com/flex023/uploads/dfn/original/3X/a/f/afe76ece4c67a2339cd34db4214cf4f76e5f95de.png)

**Reasoning:**  
The Onicai team has long been a powerhouse of engineering on the Internet Computer (IC). Lead developers @icpp and @patnorris have significantly advanced the ecosystem, particularly in on-chain AI capabilities. Their work exhibits a level of quality and professionalism that is rare not just within the SNS framework, but across the broader IC landscape. In my opinion, only 2-3 other projects match this standard.

The team’s approach to preparation, iteration, and incorporating community feedback from the forum has been exemplary a solid 10/10, as I highlighted in my [post on reviving the SNS framework](https://forum.dfinity.org/t/reviving-the-sns-framework-addressing-current-challenges-and-exploring-solutions/59196/104). Unlike most SNS launches, which often seek funding before building substantial products, Onicai has reversed this: they’ve already developed robust products and are now elevating it through decentralization.

What stands out most is their commitment to participant rights and milestone-based funding, as outlined in the [forum discussion](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361/34). Here’s a key excerpt on participant expectations:

> ### Q5: What rights and privileges does a participant get for contributing to an SNS launch, and what should this participant expect to gain?
> 
> (I personally view SNS launches as early seed investments into startups/companies. If there’s a “conflict of interest”—an exchange of value between Party A and Party B—there should be an expected outcome from that exchange.)  
> Participants gain the right to monitor, influence, and ensure their investment/contribution is used as intended per the SNS launch conditions and problem statement. They can hold the team accountable to prevent misuse.  
> They also gain the privilege of directly interfering in the project’s crystallization by affirming or denying proposed changes via voting. This utilizes their participation privilege, making them actively involved in the mission statement and solution completion.  
> — @bitel911

And on milestone-based development:

> The milestone based development work goes back to comments like @bitel911’s “Milestone-Based Funding” and “Q5: What rights and privileges does a participant get for contributing to an SNS launch, and what should this participant expect to gain?” here [Reviving the SNS Framework: Addressing Current Challenges and Exploring Solutions](https://forum.dfinity.org/t/reviving-the-sns-framework-addressing-current-challenges-and-exploring-solutions/59196), and @Leadership’s [Helping SNS DAOs Succeed: Milestones-Based Treasury Withdrawals](https://forum.dfinity.org/t/helping-sns-daos-succeed-milestones-based-treasury-withdrawals/47152) that we agree with.  
> In the onicai SNS, we thus propose that development work is funded in a similar process based on milestones and community review calls, i.e.
> 
> 1. At the end of each quarter: Public review call with the community and the development team of the goals and development progress, plus review of the proposed goals for next quarter.
> 2. If the goals for the last quarter have been reached, the development team puts in a proposal for 50% of the development budget for last quarter (that’s the 50% after delivery).
> 3. If the goals for next quarter have been agreed upon, the development team formalizes them and puts in a proposal for 50% of the development budget to do the work (that’s the 50% before delivery), and then starts working on them.
> 4. At the midway point of the quarter, e.g. 6 weeks into the quarter, there’s a public update call with the community and the development team to give an update on this quarter’s development work.  
> We envision this process to happen every quarter to give actual development transparency to the community. The development will thus work a bit like DFINITY developer grants, with regular updates and reviews.  
> — @patnorris

In my view, this should serve as the default template for SNS funding. The team has nailed it by learning from past launches and their pitfalls. This is precisely how a DAO especially one funded like a seed round should operate: with clear communication, consistent delivery, and ongoing advancement.

 ![Scherm­afbeelding 2026-01-15 om 23.42.21](https://us1.discourse-cdn.com/flex023/uploads/dfn/original/3X/7/f/7f235a985066c31f90f253bbe237fa719d1b7bbd.png)

> **[funnAI\_Whitepaper.pdf](https://www.onicai.com/files/funnAI_Whitepaper.pdf)**
>
> 4.92 MB

(this little section in the Whitepaper which I would just name the buisnessplan which most projects are missing, actual Treasury inflows

> [@Reviving the SNS Framework: Addressing Current Challenges and Exploring Solutions](https://forum.dfinity.org/t/reviving-the-sns-framework-addressing-current-challenges-and-exploring-solutions/59196/1):
>
> ## Current Trajectory for Operational DAOs
> 
> As we examine the SNS framework’s challenges, a pressing concern emerges: the unsustainable burn rates of many DAO treasuries. These act like one-way “cookie jars”—funds flow out for operations, development, or withdrawals, but rarely replenish through revenue streams. This design flaw positions most operational DAOs on a path to depletion, with no inherent mechanisms for self-sustainability. A true “treasury” implies inflows and outflows; here, it’s often treated as a finite “treasure” chest, leading to predictable failure without external intervention. Yet, as self-propelling, autonomous entities, DAOs shouldn’t rely on bailouts or repeated raises to survive.

This Cookie jar has its own oven, and thats why its a bakery, it will thrive and become self sufficient.

**Personal Opinion (Outside of Known Neuron or Taco DAO Views):**  
The hard work is nearly complete; now it’s about executing a successful SNS sale. I encourage anyone with ICP to spare to contribute and help the Onicai team reach their maximum funding goal of 80,000 ICP (this is not financial advice). If any team deserves a flawless 10/10 launch, it’s them.

I’m confident this proposal will pass it’s the right time, the right team, the right product, and a clear path forward.

My message to the team: When you reach the top of one mountain, it’s just the base of the next. Keep climbing; we’re here to help, support, and ensure we all succeed.

Good luck and have fun! 😉

Cheers,  
Dexter

[Previous page](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361.md?page=3)

[Next page](https://forum.dfinity.org/t/upcoming-onicai-sns-decentralization-swap/61361.md?page=5)
