Technical breakdown

DAO DAO's smart contractsarrow-up-right are built with CosmWasm and thus run on blockchains that support CosmWasm:

What is CosmWasm?

CosmWasm is a WebAssemblyarrow-up-right virtual machine that runs in a Cosmos SDKarrow-up-right module.

In practice, CosmWasm smart contracts (like DAO DAO's) are written in Rust.

What is Rust?

Rustarrow-up-right is a performant, memory-safe, and thread-safe programming language with a rich type system.

Writing smart contracts in Rust allows us to perform better security analysis on our contracts, which in turn protects your DAOs from common attacks.

What about the UI?

DAO DAO's UIarrow-up-right is built with Next.jsarrow-up-right in TypeScriptarrow-up-right.

As the UI is the primary entrypoint for users interacting with DAO DAO DAOs, its security is as important as the smart contracts themselves. TypeScript increases the likelihood that bugs are detected earlier, during development.

Last updated