Skip to content

Example Zoe Contracts

Zoe v0.24.0. Last updated August 25, 2022.

While Zoe provides the means to build custom smart contracts, there is a good chance you will want to use one that follows a commonly-used structure. Therefore, we currently provide several pre-built example contracts that can be imported and run on Zoe. Note that none of the contracts described below are automatically deployed on-chain.

Oracle Contracts

ContractDescription
Oracle QueryA low-level oracle contract for querying Chainlink or other oracles.
PriceAuthorityTo use an price oracle in your own contract, we recommend using the priceAuthority higher-level abstraction.

DeFi Contracts

These contracts create various sorts of financial instruments.

ContractDescription
VaultThe Vault is the primary mechanism for making IST (the Agoric stable-value currency) available to participants in the economy. It does this by issuing loans against supported types of collateral. The creator of the contract can add new types of collateral. (This is expected to be under the control of on-chain governance after the initial currencies are defined when the contract starts up.)
LoanA basic collateralized loan contract.
Funded Call SpreadCreates a pair of fully collateralized call spread options. They are ERTP assets and can be used as such in other contracts. This contract has two variants, which affect how invitations are created. This version is fully funded by the creator, who receives a matching pair of call spread options. They can be traded or sold separately.
Priced Call SpreadCreates a pair of fully collateralized call spread options. They are ERTP assets and can be used as such in other contracts. This contract has two variants, which affect how invitations are created. In this version, the creator requests a pair of invitations. Each one lets the holder obtain one of the positions by providing a started portion of the collateral. This version is useful for a market maker who finds pairs of participants with matching interests.
Covered CallCreates a call option, which is the right to buy an underlying asset.
OTC DeskA contract for giving quotes that can be exercised. The quotes are guaranteed to be exercisable because they are actually options with escrowed underlying assets.

AMM (Automatic Market Maker) Contract

ContractDescription
ConstantProduct AMMAn automated market maker with multiple liquidity pools that can trade between any pair of funded currencies. It charges a poolFee (added to the liquidity pools) and a protocolFee (set aside for the benefit of the Agoric economy). These fees are subject to change by votes controlled by and made visible by the governance system.

Generic Sales/Trading Contracts

These contracts involve trading or selling ERTP digital assets.

ContractDescription
Sell ItemsA generic sales contract, mostly used for selling NFTs for money.
Atomic SwapA basic trade of digital assets between two parties.
Barter ExchangeAn exchange with an order book letting all kinds of goods to be offered for explicit barter swaps.
Second-Price AuctionAn auction in which the highest bidder wins and pays the second-highest bid. This version doesn't conceal the bids (an essential aspect of second price auctions). Therefore, it should not be used in production.
Simple ExchangeA basic exchange with an order book for one asset, priced in a second asset.

Governance Contract

ContractDescription
Escrow To VoteA coin voting contract in which votes are weighted by the escrowed governance tokens.

Minting Contracts

ContractDescription
Mint PaymentsAn example of minting fungible tokens.
Mint and Sell NFTsA contract that mints NFTs and sells them through a separate sales contract.

Miscellaneous Contracts

ContractDescription
Use ObjectAn example of how you might associate the ability to take an action with ownership of a particular digital asset. In this case, you can color a pixel if you own the NFT for the pixel.
Automatic RefundA trivial contract that gives the user back what they put in.