{"id":13567181,"url":"https://github.com/CosmWasm/awesome-cosmwasm","last_synced_at":"2025-04-04T01:31:09.733Z","repository":{"id":41456325,"uuid":"230324183","full_name":"CosmWasm/awesome-cosmwasm","owner":"CosmWasm","description":":sunglasses: Curated list of tools, contracts, and projects working with CosmWasm","archived":false,"fork":false,"pushed_at":"2025-03-03T10:04:25.000Z","size":80,"stargazers_count":259,"open_issues_count":6,"forks_count":36,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-03-13T02:03:50.206Z","etag":null,"topics":["awesome","awesome-list"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CosmWasm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-26T20:27:24.000Z","updated_at":"2025-03-03T10:04:30.000Z","dependencies_parsed_at":"2024-04-15T07:12:47.851Z","dependency_job_id":"00ee40a9-4efc-4663-bd5b-39594a9cda0e","html_url":"https://github.com/CosmWasm/awesome-cosmwasm","commit_stats":null,"previous_names":["cosmwasm/cawesome-wasm"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CosmWasm%2Fawesome-cosmwasm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CosmWasm%2Fawesome-cosmwasm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CosmWasm%2Fawesome-cosmwasm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CosmWasm%2Fawesome-cosmwasm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CosmWasm","download_url":"https://codeload.github.com/CosmWasm/awesome-cosmwasm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247107816,"owners_count":20884793,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["awesome","awesome-list"],"created_at":"2024-08-01T13:02:25.445Z","updated_at":"2025-04-04T01:31:09.708Z","avatar_url":"https://github.com/CosmWasm.png","language":null,"funding_links":[],"categories":["Misc","Others","Other Lists"],"sub_categories":["TeX Lists"],"readme":"# Awesome CosmWasm [![Awesome](https://awesome.re/badge.svg)](https://awesome.re)\n\nCollection of awesome things related to\n[CosmWasm smart contracts](https://www.cosmwasm.com).\n\nPlease read the [contribution guidelines](CONTRIBUTING.md) if you want to\ncontribute.\n\n## Contents\n\n- [General Resources](#general-resources)\n- [CosmWasm Framework](#cosmwasm-framework)\n- [Smart Contract Libraries](#smart-contract-libraries)\n- [Smart Contracts](#smart-contracts)\n  - [`cw-plus` Specifications and Examples](#cw-plus-specifications-and-examples)\n  - [Other Contracts](#other-contracts)\n- [External Projects](#external-projects)\n- [Tooling](#tooling)\n- [dApps](#dapps)\n\n## General Resources\n\n- [The CosmWasm book](https://book.cosmwasm.com/) - a step-by-step guide to\n  writing CosmWasm smart contracts.\n- [CosmWasm framework](https://github.com/CosmWasm/cosmwasm) - a \"core\" CosmWasm\n  repo. This includes the core Rust framework for writing a smart contract, a\n  virtual machine that runs smart contracts and is embedded in any chain running\n  them, the IDL format for describing the interface of a smart contract, and\n  more! A few of these are commonly dependencies of smart contracts.\n- [CosmWasm template](https://github.com/CosmWasm/cw-template) - a template for\n  getting an empty smart contract up and running quickly. Instructions included!\n- [AREA-52](https://area-52.io/) - an interactive tutorial to learn CosmWasm smart contracts.\n\n## CosmWasm Framework\n\n- [cosmwasm-std](https://crates.io/crates/cosmwasm-std)\n  ([repo](https://github.com/CosmWasm/cosmwasm/tree/master/packages/std)): The\n  standard library for building CosmWasm smart contracts. Code in this package\n  is compiled into the smart contract.\n- [cw-storage-plus](https://crates.io/crates/cw-storage-plus)\n  ([repo](https://github.com/CosmWasm/cw-storage-plus)): Helper methods to\n  reduce boilerplate for storing data types. Easier and more secure persistence\n  layer.\n- [cosmwasm-schema](https://crates.io/crates/cosmwasm-schema)\n  ([repo](https://github.com/CosmWasm/cosmwasm/tree/master/packages/schema)): A\n  dependency for CosmWasm contracts to generate the IDL (interface description)\n  files. These are consumed e.g. by\n  [`ts-codegen`](https://github.com/CosmWasm/ts-codegen) to automagically get a\n  _TypeScript_ client for your contract.\n- [cw-multi-test](https://crates.io/crates/cw-multi-test)\n  ([repo](https://github.com/CosmWasm/cw-multi-test)):\n\n## Smart Contract Libraries\n\n- [cw-utils](https://crates.io/crates/cw-utils)\n  ([repo](https://github.com/CosmWasm/cw-utils)): A collection of (somewhat\n  random) helpers we found useful when developing `cw-plus` contracts and specs.\n  Available as a library at crates.io!\n- [cw-coins](https://crates.io/crates/cw-coins)\n  ([repo](https://github.com/steak-enjoyers/cw-plus-plus)): A helper for\n  managing multiple coins in a smart contract.\n- [cw-item-set](https://crates.io/crates/cw-item-set)\n  ([repo](https://github.com/steak-enjoyers/cw-plus-plus)): A `HashSet`\n  equivalent (set of unique items) that can be stored in smart contract storage.\n\n## Smart Contracts\n\nBefore you create a PR to add your contract here, read the\n[publishing guidelines](https://github.com/confio/cosmwasm-template/blob/master/Publishing.md)\nand make sure you complete them all, specifically adding an OSI-approved license\nand checking in valid artifacts for the build (`contract.wasm`,\n`schema/*.json`).\n\nWe do validate the artifacts and perform a basic code review of contracts\nincluded in this list. However, nothing terribly comprehensive and inclusion\nhere should not be taken in lieu of a proper audit. We do provide some\nguidelines on\n[sharing code reviews in a decentralized manner](https://github.com/confio/cosmwasm-template/blob/master/Importing.md)\nwhich can be used as the basis for a peer-reviewed audit.\n\n### `cw-plus` Specifications and Examples\n\n[The `cw-plus` repo](https://github.com/CosmWasm/cosmwasm-plus) houses both\nprotocol specifications and their reference implementations. These\nimplementations are meant both as examples of production-ready contracts and\npieces you might like to use in your project as they are.\n\n#### Specifications\n\n- [cw1](https://github.com/CosmWasm/cosmwasm-plus/tree/master/packages/cw1) -\n  proxy contracts that are meant to forward a message (probably after checking\n  the sender against some form of access control), this time with the contract\n  as the sender.\n- [cw2](https://github.com/CosmWasm/cw-plus/tree/main/packages/cw2) - contract\n  metadata (name and version) that can be inspected directly, without querying\n  the contract.\n- [cw3](https://github.com/CosmWasm/cosmwasm-plus/blob/master/packages/cw4/README.md) -\n  multisig and voting.\n- [cw4](https://github.com/CosmWasm/cosmwasm-plus/blob/master/packages/cw4/README.md) -\n  group membership management with weights.\n- [cw20](https://github.com/CosmWasm/cosmwasm-plus/tree/master/packages/cw20) -\n  fungible token.\n\n#### Reference implementations\n\n- [cw1-whitelist](https://github.com/CosmWasm/cosmwasm-plus/tree/master/contracts/cw1-whitelist)\n  by [ethanfrey](https://github.com/ethanfrey): This may be the simplest\n  implementation of\n  [cw1](https://github.com/CosmWasm/cosmwasm-plus/tree/master/packages/cw1), a\n  whitelist of addresses. It contains a set of admins that are defined upon\n  creation. Any of those admins may Execute any message via the contract, per\n  the [CW1](https://github.com/CosmWasm/cosmwasm-plus/tree/master/packages/cw1)\n  spec.\n- [cw1-subkeys](https://github.com/CosmWasm/cosmwasm-plus/tree/master/contracts/cw1-subkeys)\n  by [ethanfrey](https://github.com/ethanfrey): This builds on cw1-whitelist to\n  provide the first non-trivial solution. It still works like cw1-whitelist with\n  a set of admins (typically 1) which have full control of the account. However,\n  you can then grant a number of accounts allowances to send native tokens from\n  this account.\n- [cw3-fixed-multisig](https://github.com/CosmWasm/cosmwasm-plus/tree/master/contracts/cw3-fixed-multisig):\n  This is a simple implementation of the\n  [cw3 spec](https://github.com/CosmWasm/cosmwasm-plus/blob/master/packages/cw4/README.md).\n  It is a multisig with a fixed set of addresses created upon initialization.\n  Each address may have the same weight (K of N) or some may have extra voting\n  power.\n- [cw3-flex-multisig](https://github.com/CosmWasm/cosmwasm-plus/tree/master/contracts/cw3-flex-multisig):\n  This builds on cw3-fixed-multisig with a more powerful implementation of the\n  cw3 spec. It is a multisig contract that is backed by a\n  [cw4](https://github.com/CosmWasm/cosmwasm-plus/tree/master/packages/cw4)\n  (group) contract, which independently maintains the voter set.\n- [cw4-group](https://github.com/CosmWasm/cosmwasm-plus/tree/master/contracts/cw4-group):\n  This is a basic implementation of the\n  [cw4 spec](https://github.com/CosmWasm/cosmwasm-plus/blob/master/packages/cw4/README.md).\n  It fulfills all elements of the spec, including the raw query lookups, and it\n  designed to be used as a backing storage for cw3 compliant contracts.\n- [cw4-stake](https://github.com/CosmWasm/cosmwasm-plus/tree/master/contracts/cw4-stake):\n  This is a second implementation of the\n  [cw4 spec](https://github.com/CosmWasm/cosmwasm-plus/blob/master/packages/cw4/README.md).\n  It fulfills all elements of the spec, including the raw query lookups, and it\n  is designed to be used as a backing storage for cw3 compliant contracts.\n- [cw20-base](https://github.com/CosmWasm/cosmwasm-plus/tree/master/contracts/cw20-base)\n  by [ethanfrey](https://github.com/ethanfrey): Basic implementation of a\n  [cw20](https://github.com/CosmWasm/cosmwasm-plus/tree/master/packages/cw20)\n  contract. It implements the\n  [cw20](https://github.com/CosmWasm/cosmwasm-plus/blob/master/packages/cw20/README.md)\n  spec and is designed to be deloyed as is, or imported into other contracts to\n  easily build cw20-compatible tokens with custom logic.\n\n### Other Contracts\n\nThese contracts demonstrate best practices and learning references. Please do\nnot use them in production as is. You are welcome to fork them, and\nindependently review, refine and audit them, using them as a basis for your\nprotocol. Or just as inspiration\n\n- [cw-tokens](https://github.com/CosmWasm/cw-tokens) - a few other\n  [cw20](https://github.com/CosmWasm/cosmwasm-plus/tree/master/packages/cw20)\n  (fungible token) contracts.\n- [cw-nfts](https://github.com/CosmWasm/cw-nfts) - non-fungible tokens. Official\n  repository for all work on NFT standards and reference contracts. This is\n  where the\n  [`cw721 spec`](https://github.com/CosmWasm/cw-nfts/tree/main/packages/cw721)\n  lives.\n\n## External Projects\n\nThese projects/contracts are developed and maintained by CosmWasm community.\n\n- [DA0-DA0/dao-contracts](https://github.com/DA0-DA0/dao-contracts) - DAO DAO is\n  the leading software to build your own DAO on CosmWasm chains, quickly\n  surpassing Aragon in functionality\n- [mars-protocol/v1-core](https://github.com/mars-protocol/v1-core) - Delphi's\n  \"Mars Protocol\" is the leading lending protocol on Terra, Osmosis, and soon launching on Neutron.\n- [public-awesome/launchpad](https://github.com/public-awesome/launchpad) -\n  Stargaze provides contracts to easily create and manage new NFT collections.\n- [CronCats/cw-croncat](https://github.com/CronCats/cw-croncat) - Croncat provides a general purpose, \n  fully autonomous network that enables scheduled function calls for blockchain contract execution. \n  It allows any application to schedule logic to get executed in the future, once or many times, \n  triggered by an approved “agent,” in an economically stable format.\n- [astroport-fi/astroport-core](https://github.com/astroport-fi/astroport-core) - Astroport is\n  a multi pool type automated market-maker (AMM) protocol, it is one of the leading DEX on Terra.\n- [srdtrk/cw-ica-controller](https://github.com/srdtrk/cw-ica-controller) -\n  A controller contract for the Interchain Accounts\n  ([ICS-27](https://github.com/cosmos/ibc/blob/main/spec/app/ics-027-interchain-accounts/README.md))\n  spec. It allows users to create and manage interchain accounts on host chains that support the golang\n  implementation of ICS-27.\n- [AbstractSDK/abstract](https://github.com/AbstractSDK/abstract) - Abstract is\n  a development platform with a focus on code reusability and application sovereignty. \n\n## Tooling\n\n- [cosmwasm/rust-optimizer](https://github.com/CosmWasm/rust-optimizer) - This is\n  a Docker build with a locked set of dependencies to produce reproducible\n  builds of cosmwasm smart contracts. It also does heavy optimization on the\n  build size, using binary stripping and `wasm-opt`.\n- [cosmology-tech/create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) -\n  set up a modern Cosmos app with one command, ready to be iterated on.\n- [mandrean/cw-optimizoor](https://github.com/mandrean/cw-optimizoor) - A very\n  fast alternative to `rust-optimizer` for local development and testing.\n  Written in Rust, no dependency on Docker.\n- [cosmwasm devtools](https://cosmwasm.tools/)\n  ([repo](https://github.com/aswever/cosmwasm-devtools)) -  A web-based console\n  for interacting with CosmWasm smart contracts deployed locally or remotely.\n  Can use Keplr account or generate new addresses as needed.\n- [cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) - Convert your CosmWasm smart contracts into dev-friendly TypeScript classes so you can focus on shipping code.\n- [Terran-One/cosmwasm-vm-js](https://github.com/terran-one/cosmwasm-vm-js) - A JavaScript runtime for running CosmWasm contracts in Node.js or the browser.\n- [CWSimulate](https://cwsimulate.terran.one) - An online playground / simulation environment for interacting with CosmWasm contract binaries without a blockchain. Can be used for execution visualization / interactive debugging with time-traveling navigation.\n- [cosmy-wasmy](https://marketplace.visualstudio.com/items?itemName=spoorthi.cosmy-wasmy) - A vscode extension to interact with CosmWasm smart contracts on devnet or testnet chains. Allows to query, execute, upload contracts as well as provide code completion snippets. \n- [cosmwander](https://cosmwander.xyz) - Explore on-chain cosmwasm contracts and discover their message scheme. \n- [WELLDONE Code](https://docs.welldonestudio.io/code/getting-started) - Remix IDE plugin that supports CosmWasm. It is a web-based IDE that allows developers to deploy smart contracts and execute functions through a browser wallet. It supports its own compiler server, so developers do not need to set up a development environment.\n- [Cosmwasm Studio](https://github.com/oraichain/smart-studio) - Monaco IDE that supports CosmWasm. It allows developers to code, build smart contracts and execute functions through a simulation. It supports its own rust-analyzer in Web Assembly so developers can code it the same as local VS Code.\n- [cosmwasm-tools](https://github.com/oraichain/cosmwasm-tools) - A super\n  fast and cross-platform alternative to `rust-optimizer` that produces optimized wasm files.\n  Written in Typescript, supporting watch mode, parallel builds, and ts-codegen sharing common dependencies.\n- [beaker](https://github.com/osmosis-labs/beaker) - A toolkit that simplifies interactions with CosmWasm smart contracts which offers scaffolding, deployment, upgrades, execution, querying, an interactive console, and task scripting capabilities.\n- [cw-orchestrator](https://github.com/AbstractSDK/cw-orchestrator) - A Rust-oriented CosmWasm scripting library that features a clean and unified syntax for interacting\n  with contracts in any environment.\n- [srdtrk/go-codegen](https://github.com/srdtrk/go-codegen) - A Go code generator for CosmWasm contracts. The quickest way to generate Go code for your CosmWasm smart contracts.\n \n## dApps\n\nLooking for dApps to feature. See\n[#19](https://github.com/CosmWasm/cw-awesome/issues/19).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCosmWasm%2Fawesome-cosmwasm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FCosmWasm%2Fawesome-cosmwasm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCosmWasm%2Fawesome-cosmwasm/lists"}