Please describe your proposed solution
Options on Cardano
Implementing options on the Cardano blockchain involves a unique approach that leverages the strengths of the blockchain's architecture. The system is designed around two key components: a minting policy and a validator.
With this approach, an option is simply a Cardano native token, and as such, it can be traded freely like any other token. This opens up a whole new level of flexibility and accessibility for options trading on the Cardano network.
The option smart contract protects both the option holders and the option writer. For the holders, it is guaranteed that they will be able to execute the option during the execution interval, taking "deposit" tokens in exchange for the right number of "payment" tokens. For the writer, it is guaranteed that they will get their deposit back - either in the form of deposit tokens that haven't been claimed or in the form of an equivalent amount of payment tokens. This dual protection mechanism ensures fairness and security for all parties involved.
In addition, option smart contracts eliminate the centralized intermediary restrictions and risk. Option buyers and sellers don’t face any limitations in the amount or type of options they can utilize by a clearing house. In addition, market participants do not have to worry about the solvency of the intermediary.
When someone wants to issue (“write”) an option, they specify a token pair: one is the "deposit" token, and the other is the "payment" token. The issuer locks a number of deposit tokens in a smart contract, which is secured by the option validator. They then mint the same number of options as Cardano native tokens, with these options governed by the option minting policy.
The minting policy of the option token ensures that the correct number of deposit tokens has been locked in the option smart contract. This is a crucial feature that guarantees the integrity of the system and ensures that the options can be executed, eliminating the need for a traditional clearing house.
The validator guarantees that during a specified execution interval, any holder of an option token can exchange it for one deposit token, provided they burn the option token. This exchange requires the holder to also deposit a specified number of payment tokens.
For example, consider an option that is parameterized by the two tokens ADA (Cardano's native cryptocurrency) and ACME (the Acme Inc. utility token). In this case, ADA could be the deposit token, the price could be set to 1.5 ACME per ADA, and the execution interval could be set to a specific period in July 2023. This setup realizes a "put" option. During this interval, a holder of 750 option tokens could burn those tokens, take 750 ADA from the deposit, and deposit 1,125 ACME tokens (1.5 * 750).
To realize a "call" option, we can simply swap the roles of the deposit and payment tokens and use the reciprocal of the price. For instance, ACME could be the deposit token, the price could be set to 0.67 ADA per ACME, and the execution interval could be the same. During the execution interval, a holder of 750 option tokens could burn those tokens, take 750 ACME from the deposit, and deposit 502.5 ADA tokens (0.67 * 750).
This system covers both "put" and "call" options, as well as both American and European options, as the execution interval can be set to any arbitrary time interval. Finally, the number of issued options is completely flexible and depends on the number of deposited tokens.
Many option protocols on Ethereum or Ethereum Virtual Machine (EVM) compatible blockchains utilize an account model that pools users’ assets, forcing option liquidity providers to share trade fees and risks such as impermanent loss. Sharing risk and return limits the ability for option liquidity providers to manage the risk of their positions and can lead to catastrophic losses in times of high market volatility or quickly shifting market sentiment.
Options on Cardano correct the weaknesses of option protocols that pool users assets together through Cardano’s novel EUTxO model, which allows every option to be separate, unaffected by the outcome of other options. Instead of sharing potential profits and losses among many unknown market participants, each option liquidity provider is able to create option positions whose profit/loss output is unique to the terms of that specific option. In contrast to sharing unpredictable return and risk, option liquidity providers have full control of the return and risk profile of each option they create, including the amount of liquidity, the assets, the execution price, and the term of each option.
Technical Implementation
Our implementation of options on Cardano consists of two smart contracts working in tandem, the option minting policy and the option validator.
Parameters
Both smart contracts are parameterized by:
- The “deposit” token.
- The “payment” token.
- The execution interval.
- The price.
The Option Minting Policy
The minting policy for the option token guarantees that for each minted option token, a “deposit” token is locked in the option smart contract.
The Option Validator
When minting option tokens, the same number of “deposit” tokens is locked in the option smart contract. This contract guarantees that deposit tokens can only be removed during the execution interval if the correct (determined by the exercise price) number of “payment” tokens is put in and if the same number of option tokens is burnt.
It also allows the option writer to remove all remaining “deposit” and “payment” tokens, once the execution interval has passed.
Future Improvements
Looking ahead, there are several areas where the system could be improved. One possibility is to allow the staking of deposited ADA. For example, a trader selling an option where they deposit ADA that is temporarily locked for the term of the option could accumulate “locked” ADA staking rewards. Depending on whether the option is exercised, the accumulated staking rewards provide an extra source of profit for the option seller or the option buyer. In the Cardano network, addresses are pairs consisting of a payment part and an optional staking part. The payment part of the deposit address is the option validator, but the staking part could be the option writer’s staking key. This means that if the option writer deposits ADA in the smart contract, they could earn staking rewards during the duration of the smart contract. This would provide an additional incentive for investors to participate in the options market.
Another potential improvement is the development of a dashboard that provides a user-friendly interface for managing options. This would make it easier for investors to track their options, execute trades, and monitor the performance of the market. A well-designed dashboard could also provide insights into market trends and help investors make more informed decisions.
Prototype
We have developed a prototype UI, which allows users to mint options for arbitrary token pairs, execution intervals, and prices. If desired, these options can be executed during the execution interval. This prototype represents a significant step towards making options trading more accessible and efficient on the Cardano network.
Conclusion
In conclusion, the introduction of options on the Cardano network represents a significant advancement in the field of decentralized finance. By leveraging the unique capabilities of the Cardano blockchain, we can provide a more flexible, efficient, and transparent options market. The fact that an option is simply a Cardano native token that can be freely traded, combined with the dual protection mechanism of the option smart contract, makes this system uniquely advantageous. This will not only benefit individual investors but also contribute to the overall stability and maturity of the crypto market. As we continue to refine and improve this system, we look forward to seeing the innovative strategies and opportunities that it will enable.