Crypto Treasurers adn the Risks of Overcollateralization
Table of Contents
More and more cryptocurrency treasurers are entrusting their bitcoins to lenders, sometimes in ample quantities. This pursuit of liquidity can compromise the core objective of accumulation and introduces risk to balance sheets, as both debt and assets weaken together should crypto values decline.
Bitcoin treasurer KindlyMD recently secured a $210 million loan from Kraken, pledging $324.4 million worth of bitcoin – equivalent to 3,717 bitcoins – as collateral. This is an overcollateralized loan, meaning the collateral exceeds the loan amount. Though, KindlyMD holds a total of 5,398 bitcoins, meaning 69% are currently held by Kraken as security. Moreover, the treasurer’s market capitalization is approximately $167 million, lower than the value of the loan itself.
Crypto treasuries operate on the principle of financing themselves in fiat currency (dollars or euros) to accumulate bitcoin, believing fiat devalues while bitcoin appreciates. A key goal is to increase the bitcoin allocation per shareholder with each funding round.
The case of KindlyMD demonstrates the complexities of this model. A notable portion of its bitcoin holdings are now locked as collateral with creditors, specifically Kraken. Failure to repay the loan could result in Kraken retaining 69% of KindlyMD’s bitcoin reserves.
This situation raises questions about KindlyMD’s viability as a treasurer, as a large percentage of its assets are inaccessible to shareholders. using digital assets as loan collateral distances them from those to whom they ostensibly belong.
Should KindlyMD default, Kraken would retain the bitcoins. In the event of bankruptcy, remaining lenders would be prioritized in asset liquidation, leaving shareholders with whatever remains.
This precarious situation is reflected in KindlyMD’s stock market performance. Shares have traded below $1 for over 30 days, risking delisting from the Nasdaq. The company’s aggressive leverage – using a high percentage of its crypto holdings as collateral – is a significant concern.
While leveraging bitcoin through collateralized loans can be a strategy to utilize assets, excessive risk-taking is detrimental. Treasuries inherently rely on external liquidity,as bitcoin accumulation itself doesn’t generate income. Overcollateralized loans are common among these large holders, but carry inherent risks due to this reliance.
Metaplanet has also secured a loan of up to $500 million backed by its bitcoins, though the lender remains undisclosed.
The Risky Game of Crypto ‘Whales’: They Leave the bitcoins They Treasure in the Hands of Their Creditors
The cryptocurrency market is witnessing a peculiar phenomenon: large Bitcoin holders,known as “whales,” are increasingly using their assets as collateral for loans. This practise, while offering short-term liquidity, introduces significant risk not only for the whales themselves but also for the broader market.
Several factors are driving this trend. The recent market downturn has eroded the value of Bitcoin holdings, prompting whales to seek option funding sources without selling their assets – hoping for a future price recovery.Furthermore, decentralized finance (DeFi) platforms have made it easier than ever to borrow against crypto, offering attractive loan terms.
Though,this strategy is a double-edged sword. If Bitcoin’s price falls further, whales could face liquidation, forcing them to sell their holdings to cover their debts. This sudden influx of Bitcoin into the market could exacerbate the downward pressure, triggering a cascade of liquidations and possibly leading to a more severe market crash.
The situation is notably concerning given the concentration of Bitcoin ownership. A small number of addresses control a significant portion of the circulating supply. If these whales are forced to liquidate, the impact on the market could be substantial.
Experts warn that this trend highlights the inherent risks of the crypto market and the dangers of excessive leverage. While borrowing against crypto can be a useful tool, it’s crucial for investors to understand the potential consequences of a market downturn and to manage their risk accordingly. The game being played by these crypto ‘whales’ is a risky one, and the consequences could ripple throughout the entire ecosystem.
The Rise of Serverless Computing
Serverless computing isn’t about eliminating servers. It’s about abstracting them away. Developers can focus solely on writing and deploying code without worrying about the underlying infrastructure. This shift is dramatically changing how applications are built and scaled.
What is Serverless?
Traditionally, developers needed to provision and manage servers – choosing operating systems, patching vulnerabilities, and scaling resources.Serverless changes this. with serverless, a cloud provider (like AWS, Azure, or Google Cloud) automatically manages server allocation. You simply upload your code, and the provider executes it in response to events.
These events can be anything: an HTTP request, a database update, a scheduled job, or a message arriving in a queue. You only pay for the compute time you actually consume. No idle server costs. It’s a pay-as-you-go model.
Key Benefits of Going Serverless
- Reduced Operational Costs: No more paying for servers sitting idle. You drastically lower expenses.
- Increased Developer Productivity: Developers spend less time on infrastructure and more time coding. This accelerates growth cycles.
- Automatic Scaling: Serverless platforms automatically scale your application to handle varying levels of traffic. No manual intervention needed.
- Faster Time to market: Simplified deployment processes mean you can get your applications to users quicker.
- Simplified Backend: Serverless architectures ofen integrate well with other cloud services, creating a streamlined backend.
Popular Serverless services
Several major cloud providers offer robust serverless platforms:
- AWS Lambda: Amazon’s flagship serverless compute service. it supports multiple languages, including Python, Node.js, Java, and Go. Learn more about AWS Lambda
- Azure Functions: Microsoft’s serverless offering. It integrates seamlessly with other Azure services. Explore Azure Functions
- Google Cloud Functions: Google’s serverless platform, known for its scalability and integration with Google Cloud services. Discover Google Cloud Functions
- Cloudflare Workers: A serverless platform focused on edge computing, bringing code closer to users for faster performance. Check out Cloudflare Workers
Use Cases for Serverless
Serverless isn’t a one-size-fits-all solution, but it excels in many scenarios:
- Web APIs: Building RESTful APIs is a common serverless use case.
- data Processing: Handling image or video processing, log analysis, and ETL pipelines.
- Chatbots: Creating conversational interfaces.
- IoT Backends: Processing data from iot devices.
- Mobile Backends: Providing backend logic for mobile applications.
Challenges to Consider
While serverless offers many advantages, be aware of potential challenges:
- Cold starts: The first invocation of a serverless function can experience a delay (a “cold start”) as the environment is initialized.
- Debugging: Debugging distributed serverless applications can be more complex than conventional applications.
- Vendor Lock-in: Choosing a specific serverless platform can create vendor lock-in.
- Stateless Nature: Serverless functions are typically stateless, requiring external storage for persistent data.
The Future of Serverless
Serverless computing is rapidly evolving.Expect to see continued innovation in areas like improved cold start times, enhanced debugging tools, and broader language support. It’s becoming a core component of modern cloud architectures, empowering developers to build scalable, cost-effective applications.
Related reading