https://github.com/burnt-labs/contracts
https://github.com/burnt-labs/contracts
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/burnt-labs/contracts
- Owner: burnt-labs
- Created: 2022-04-29T21:42:07.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2026-01-14T09:16:31.000Z (7 months ago)
- Last Synced: 2026-01-14T13:34:21.662Z (7 months ago)
- Language: Rust
- Size: 1.66 MB
- Stars: 19
- Watchers: 8
- Forks: 18
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-ccamel - burnt-labs/contracts - (Rust)
README
# XION Contracts
Smart contract implementations for XION blockchain.
## Contract Registry Notice
**The XION deployed contracts registry has been moved to a dedicated repository:**
🔗 **[burnt-labs/deployed-contract-listings](https://github.com/burnt-labs/deployed-contract-listings)**
The new repository provides:
- Complete registry of all deployed XION contracts (mainnet and testnet)
- Interactive web interface at [https://burnt-labs.github.io/deployed-contract-listings/](https://burnt-labs.github.io/deployed-contract-listings/)
- Contract verification utilities
- Automated GitHub Pages deployment
Please update your bookmarks and references to use the new location.
## About This Repository
This repository contains the source code for smart contracts that can be deployed on XION, including:
### Contracts
- **Account**: MetaAccount implementation
- **Treasury**: Treasury management contract
- **User Map**: User mapping functionality
### Compiling
To compile the contracts, use the CosmWasm optimizer:
```bash
docker run --rm -v "$(pwd)":/code \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/optimizer:0.16.1
```
## Development
For contract development and deployment information, please refer to the individual contract directories.