https://github.com/circlefin/stablecoin-sui
Source repository for smart contracts used by Circle's stablecoins on Sui blockchain
https://github.com/circlefin/stablecoin-sui
Last synced: 5 months ago
JSON representation
Source repository for smart contracts used by Circle's stablecoins on Sui blockchain
- Host: GitHub
- URL: https://github.com/circlefin/stablecoin-sui
- Owner: circlefin
- License: apache-2.0
- Created: 2024-08-12T23:09:54.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-22T17:09:22.000Z (over 1 year ago)
- Last Synced: 2025-10-28T10:02:47.435Z (9 months ago)
- Language: Move
- Homepage:
- Size: 49.8 KB
- Stars: 10
- Watchers: 1
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# stablecoin-sui
Source repository for smart contracts used by Circle's stablecoins on Sui blockchain
## Getting Started
### Prerequisites
Before you can start working with the contracts in this repository, make sure to set up your local environment using the script below.
```bash
bash setup.sh
```
### IDE
- VSCode is recommended for developing Move contracts.
- [Move (Extension)](https://marketplace.visualstudio.com/items?itemName=mysten.move) is a language server extension for Move.
### Build and Test Move contracts
1. Compile Move contracts from project root:
```bash
bash run.sh build
```
2. Run the tests:
```bash
bash run.sh test
```
### Deploying Move packages
#### Deploying with Sui CLI
Packages in this repo can be published [via the Sui CLI](https://docs.sui.io/guides/developer/first-app/publish).