Filter
Exclude
Time range
-
Near
want to know some facts about createdao? below are raw numbers: 1. 1% of tokens is distributed to the creator 2. 99% is distributed to the community by default 3. 1 day: a default voting delay 4. 1 week: a default voting period and remember that the total supply is permanent
1
1
Quick update on the ZEN (DAO token) distribution: We’re finalizing the last details on OpenBook, our DAO management platform. Once it’s ready, we’ll begin the first allocation for our early community members (1,000 ZEN each) and those stepping up as Escrow Agents. If you’d like to be included in this first round, please share your address. Note: We’re offering an additional 1,000 ZEN to those using the @NYKNYC_Wallet to interact with Zenland and @CreateDAO .
2
87
Domino effect building.
2
58
24 Nov 2025
Spot on. Reliance on centralized APIs is becoming a risk. I've been verifying on both, but this update forces my hand. From now on, @CreateDAO contracts on Base, BSC, and Optimism might rely purely on Sourcify. Time to embrace decentralized resilience.
The news that @etherscan removed the free tier APIs was no surprise to us. We have been building for more than a year to mitigate that risk, alongside @verifalliance and @enscribe_. We respect the incredible foundation Etherscan built. But we believe that vital infrastructure, specifically labeling and verification, must be collaborative to be sustainable. Instead of siloed data, we are building a proliferation engine: Standardized labeling schemas using EAS. Open-sourced label pools, stored in IPFS. Transitive trust mechanisms for scoring data quality. Teams like @SourcifyEth and @growthepie_eth have been the biggest contributors to the label pool with around 1.2 million unique submissions. And it is just beginning to proliferate, @blockscout is already integrating OLI, @routescan_io is merging IPs, and many others are starting to contribute and share their thoughts about how to move forward. We have also provided Python and Typescript packages for seamless integration, and recently exposed API's for integrated reads. Think about it: Human-readable names instead of OxContract. Instant risk mitigation for scams. Label source scoring, verified contract owners, projects behind addresses, verified status, and anything you can imagine; All standardized and unified for everyone who has adopted OLI. We are moving from centralized reliance to decentralized resilience. It's getting exciting. Come build with us.
2
2
102
Now tracking @CreateDAO on @base, @worldnetwork Chain, @ethereum, @gnosischain, @0xPolygon, @arbitrum & @unichain CreateDAO is an open-source platform that democratizes DAO creation across multiple blockchains
1
2
13
4,939
11 May 2025
⚡️⚡️We're building the fastest app on Sui. Dive down below for a deep dive behind @accountdottech DAO front-end , to further understand whats going on below the hood. (A bit technical for common folks) 👇👇👇 🧱First of, here’s the file architecture in Next.js 15 (App Router) : src/ ├── app/ │ ├── daos/ │ │ ├── [id]/ │ │ │ ├── components/ │ │ │ ├── settings/ └──page.tsx │ │ │ ├── wallet/ └──page.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components/ │ │ └── page.tsx │ ├── createDao/ │ ├── layout.tsx │ └── page.tsx ├── store/ │ └── useDaoStore.ts ├── hooks/ │ └── useDaoClient.ts Everything DAO-related is scoped under /daos/[id] for clean routing and separation. For example I will have all the wallet related info of a specific dao inside the page.tsx of the /wallet. 🧠 On the state management side, I’m using zustand with useDaoStore to manage a single DaoClient instance. It tracks the current daoId, userAddr, and handles auto-init or reset when anything changes. Then there’s useDaoClient, a hook that wraps all client operations like getDao, createDao, followDao, and more. It always checks if the client is ready. If not, it initializes it using the address and optionally a DAO ID. So when I call something like getParticipant(userAddr, daoId), I know the client is already scoped to the right DAO. Keep in mind that this explanation is only the top of the iceberg, I really simplified it to avoid losing myself in too many details, if you wish to know more do not hesitate to ask me specific questions.
1
2
257