This project is initiated and facilitated by the Acala Foundation. Acala Foundation nurtures and stewards applications in the fields of decentralized finance protocols particularly those that can serve as open finance infrastructures such as stable currency and staking liquidity. The Acala Foundation is founded by Laminar and Polkawallet both of whom are participants and contributors to the Polkadot ecosystem. The Acala Foundation aims to broaden its membership and industry participants as we progress.
The significance of cross-chain communication to the blockchain is like that of the internet to the intranet. Polkadot empowers a network of public, consortium and private blockchains, and enables true interoperability, economic and transactional scalability. A cross-chain stablecoin system will:
- create a sound, stable currency for low cost, borderless value transfer for all chains in the network
- enable business lending with predictable risk
- serve as a building block for more open finance services
The Acala Dollar stablecoin (ticker: aUSD) is a multi-collateral-backed cryptocurrency, whose value is stable against US Dollar (aka. 1:1 aUSD to USD soft peg). It is completely decentralized, can use assets from blockchains connected to the Polkadot network including Ethereum and Bitcoin as collaterals, and can be used by any chains (or digital jurisdictions) within the Polkadot network and applications on those chains.
By this nature, it is essential that the Acala Network eventually become community-owned with an economic model that can sustain its development and participation in the Polkadot network, as well as ensure its stability and security. The following section will provide a high-level overview of the following topics:
- aUSD and the Honzon stablecoin protocol
- the economic model and initial parachain offering
Every aUSD is backed in excess by a crypto asset, the mechanism of which is known as an over-collateralized debt position (or CDP). This together with a set of incentives, supply & demand balancing, and risk management mechanisms, as the core components of the Honzon stablecoin protocol on the Acala Network, ensures the stability of the aUSD. The CDP mechanism design is inspired by the first decentralized stablecoin project MakerDAO, which has become the DeFi building block in the Ethereum ecosystem. Besides, the Honzon protocol enables many unique features - native multi-asset support, cross-chain stablecoin capability, automatic liquidation to increase responsiveness to risk, and pluggable oracle and auction house to improve modularity, just to name a few.
The Honzon protocol contains the following components
- Multi-Currency
- Collateral Adapter
- Oracle and Prices
- Auction and Auction Manager
- CDP and CDP Engine
- Emergency shutdown
- Governance
- Honzon as an interface to other components
Note: This section is still work in progress, we will update more information as we progress.
The Acala Network Token (ACA) has the following utilities, and the value of ACA will accrue with the increased usage of the network and revenue from stability fees and liquidation penalties
- As Network Utility Token: to pay for network fees and stability fees
- As Governance Token: to vote for/against risk parameters and network change proposals
- As Economic Capital: in case of liquidation without sufficient collaterals
To enable cross-chain functionality, the Acala Network will connect to the Polkadot in one of the three ways:
- as parathread - pay-as-you-go connection to Polkadot
- as parachain - permanent connection for a given period
- as an independent chain with a bridge back to Polkadot
Becoming a parachain would be an ideal option to bootstrap the Acala Network, and maximize its benefits and reach to other chains and applications on the Polkadot network. To secure a parachain slot, the Acala Network will require supportive DOT holders to lock their DOTs to bid for a slot - a process known as the Initial Parachain Offering (IPO). ACAs will be offered as a reward for those who participated in the IPO, also as compensation for the potential lost yield of DOT (for staking).
Note: This section is still work in progress, we will update more information as we progress. Refer to the token economy working paper for more details.
Install Rust:
curl https://sh.rustup.rs -sSf | sh
Make sure you have submodule.recurse
set to true to make life with submodule easier.
git config --global submodule.recurse true
Install required tools and install git hooks:
make init
Build all native code:
make build
You can start a development chain with:
make run
To type check:
make check
To purge old chain data:
make purge
To purge old chain data and run
make restart
Update ORML
make update
Note: All build command from Makefile are designed for local development purposes and hence have SKIP_WASM_BUILD
enabled to speed up build time and use --execution native
to only run use native execution mode.