Skip to content

Commit 8580819

Browse files
committed
helixbox.ai
1 parent faf00f3 commit 8580819

File tree

6 files changed

+63
-93
lines changed

6 files changed

+63
-93
lines changed

docs/defi-premium/02-morpho-gauntle-usdc-core.mdx

Lines changed: 36 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,17 @@ tags:
2020

2121
## What is Morpho?
2222

23-
**Morpho** is a trustless and efficient lending primitive with permissionless market creation.
23+
**Morpho** is a trustless and efficient lending primitive with permissionless market creation.
2424

2525
It enables the deployment of minimal and isolated lending markets by specifying:
2626

27-
- one collateral asset,
28-
- one loan asset,
29-
- a Liquidation Loan To Value (LLTV),
30-
- an Interest Rate Model (IRM),
27+
- one collateral asset,
28+
- one loan asset,
29+
- a Liquidation Loan To Value (LLTV),
30+
- an Interest Rate Model (IRM),
3131
- and an oracle.
3232

33+
3334
The protocol is trustless and was designed to be more efficient and flexible than any other decentralized lending platform.
3435

3536
## What are the benefits of Morpho?
@@ -38,107 +39,76 @@ Morpho is a trustless lending protocol that offers greater efficiency and flexib
3839

3940
### Trustless
4041

41-
**Immutable:** Morpho is not upgradable. The protocol will run and behave the same way forever.
42+
**Immutable:** Morpho is not upgradable. The protocol will run and behave the same way forever.
4243

43-
**Governance-minimized:** Morpho Governance cannot halt the operation of a market or manage funds on users’ behalf, nor does it impose specific oracle implementations.
44+
**Governance-minimized:** Morpho Governance cannot halt market operations, manage user funds, or impose specific oracle implementations.
4445

45-
**Simple:** The protocol consists of only 650 lines of Solidity code. This simplicity makes it particularly easy to understand and safe.
46+
**Simple:** The protocol consists of only 650 lines of Solidity code. This simplicity makes it particularly easy to understand and safe.
4647

4748
### Efficient
4849

49-
**Higher collateralization factors:** Morpho’s Lending markets are isolated. Unlike multi-asset pools, liquidation parameters for each market can be set without consideration of the most risky asset in the basket. Therefore, suppliers can lend at a much higher LLTV while being exposed to the same market risk as when supplying to a multi-asset pool with a lower LLTV.
50-
51-
**Improved interest rates:** Collateral assets are not lent out to borrowers. This alleviates the liquidity requirements for liquidations to function properly in current lending platforms and allows Morpho to offer higher capital utilization. Moreover, Morpho is fully autonomous, so it does not need to introduce fees to cover costs for platform maintenance.
50+
**Higher collateralization factors:** Morpho’s Lending markets are isolated.
5251

53-
**Low gas consumption:** Morpho is a remarkably simple protocol built in a singleton smart contract that groups every possible primitive market in the same place. This reduces gas consumption by 50% compared to existing lending platforms.
52+
**Improved interest rates:** Collateral assets are not lent out to borrowers.
5453

55-
### Flexible
54+
**Low gas consumption:** Morpho is a remarkably simple protocol built in a singleton smart contract that groups every possible primitive market in the same place.
5655

57-
**Permissionless market creation:** Morpho features permissionless asset listing. Markets with any collateral and loan assets and any risk parametrization can be created. The protocol also supports permissioned markets, enabling a broader range of use cases, including RWAs and institutional markets.
56+
### Flexible​
5857

59-
**Permissionless risk management:** Morpho allows for additional layers of logic to enrich its markets. More specifically, risk management can be built on top of the protocol to simplify the user experience for lenders.
58+
**Permissionless market creation:** Morpho features permissionless asset listing.
6059

61-
For example, risk experts could build noncustodial vaults for lenders to earn yield passively. These vaults can allocate depositors liquidity to multiple markets on their behalf. This allows users to pass off the responsibility of risk management to the vault rather than doing it themselves.
60+
**Permissionless risk management:** Morpho allows for additional layers of logic to enrich its markets.
6261

63-
**Developer-friendly:** Morpho features several modern smart contract patterns. Callbacks enable liquidators and sophisticated users to chain advanced actions without any flash loans. Account management facilitates gasless interactions and account abstractions. Free flash loans on the singleton contract allow anyone to access the assets of all markets simultaneously with a single call, as long as they are repaid in the same transaction.
62+
**Developer-friendly:** Morpho features several modern smart contract patterns. [Learn More](https://docs.morpho.org/morpho/concepts/benefits-of-morpho)
6463

65-
## What is Morpho’s **Interest Rate Models**?
64+
## What are Morpho’s **Interest Rate Models?**
6665

6766
Morpho is an Interest Rate Model (IRM) agnostic protocol, meaning it can support any interest rate model for its markets. In Morpho, the interest borrowers pay in a given market is defined by the IRM chosen at market creation among a governance-approved set.
6867

6968
Initially, this set is composed of one immutable IRM, the AdaptiveCurveIRM.
7069

71-
[AdaptiveCurveIRM](https://docs.morpho.org/morpho/concepts/irm/#the-adaptivecurveirm)
72-
73-
The AdaptiveCurveIRM is engineered to maintain the ratio of borrowed assets over supplied assets, commonly called utilization, close to a target of 90%.
70+
The AdaptiveCurveIRM is engineered to maintain the ratio of borrowed assets over supplied assets, commonly called utilization, close to a target of 90%. [Learn More](https://docs.morpho.org/morpho/concepts/irm/)
7471

75-
In Morpho, the collateral supplied is not rehypothecated. Removing this systemic risk removes the liquidity constraints imposed by liquidation needs. It enables more efficient markets with higher target utilization of capital and lower penalties for illiquidity, resulting in better rates for both lenders and borrowers.
72+
[![image.png](https://docs.morpho.org/img/morpho-blue/curve-mechanism-01.png)](https://docs.morpho.org/img/morpho-blue/adaptive-curve-irm.mp4)
7673

77-
As with every parameter of a Morpho Market, the IRM address is immutable. This means that neither governance nor market creators can change it at any given time. As such, the AdaptiveCurveIRM is designed to adapt autonomously to market conditions, including changes in interest rates on other platforms and, more broadly, any shifts in supply and demand dynamics.
78-
79-
Its adaptability enables it to perform effectively across any asset, market, and condition, making it highly suitable for Morpho's permissionless market creation. [Learn more](https://docs.morpho.org/morpho/concepts/irm)
80-
81-
## What is a performance fee?
74+
## What is the performance fee?
8275

8376
The Morpho Vaults protocol itself is governance-less, meaning Morpho governance is not involved in the operations of the protocol or individual Morpho Vaults.
8477

85-
A Morpho Vault is governed by the owner of the smart contract. As explained in the [Role section](https://docs.morpho.org/morpho-vaults/concepts/roles), the owner can also assign one curator, one guardian, and multiple allocators to help manage the vault.
86-
87-
Morpho DAO can’t take fees on Morpho Vaults, but Vault owners can set a performance fee for their Morpho Vault. The fee works by taking a percentage of the interest generated by the Vault. The maximum performance fee is 50%.
88-
89-
## What are Morpho Vaults?
90-
91-
**Morpho Vaults** is a protocol for permissionless lending vaults built on top of the Morpho protocol.
92-
93-
Morpho Vaults serve two types of users. The MetaMorpho Factory allows risk experts to spin up noncustodial lending vaults, and Morpho Vaults provide users with a simpler way to lend on Morpho.
94-
95-
### Type 1: For Lenders
96-
97-
Morpho Vaults offer users the **same passive experience** as traditional lending pools with the following notable improvements.
78+
A Morpho Vault is governed by the owner of the smart contract. As explained in the [Role section](https://docs.morpho.org/morpho-vaults/concepts/roles), the owner can also assign one curator, one guardian, and multiple allocators to help manage the vault.
9879

99-
### Curated Risk Profiles
80+
Morpho DAO can’t take fees on Morpho Vaults but Vaults owners can set a performance fee to their Morpho Vault. The fee is a percentage of the interest generated by the vault. The maximum performance fee is 50%.
10081

101-
Morpho Vaults offer a range of vaults with various risk levels instead of the traditional one-size-fits-all approach. This allows users to choose vaults that align with their general risk preferences/appetite. In traditional lending, pools are exposed to the riskiest asset in the pool. With Morpho Vaults, a lender can avoid exposure to long-tail assets by depositing in a vault that only lends against blue chip collateral.
82+
## **What are Morpho Vaults?**
10283

103-
### Better Yields
84+
**Morpho Vaults** is a protocol for permissionless lending vaults built on top of the Morpho protocol.
10485

105-
Earn better yields from Morpho’s capital-efficient markets. Interest earned by suppliers is optimized by dynamically rebalancing across multiple markets with the best risk-return ratio.
86+
It serves two types of users. Risk experts using the MetaMorpho Factory to spin up noncustodial lending vaults, and everyday users with a simpler way to lend on Morpho.
10687

107-
### Transparent
108-
109-
Morpho Vaults are noncustodial with immutable logic and verifiable on-chain allocations. Risk curators are encouraged to share their processes with users, giving them more insight into the risk models and computations.
110-
111-
### Type 2: For Risk Experts/Protocols
112-
113-
Morpho Vaults pave the way for a new approach to risk management that is better for both risk experts and users.
114-
115-
### Service users, not a DAO
116-
117-
Morpho Vaults enable risk protocols and experts to serve users directly instead of consulting for DAOs. This approach is a more scalable business model and is better aligned with users.
118-
119-
### Permissionless infrastructure
120-
121-
Requires no code and is audited, lowering barriers to entry. Risk experts can create revenue-generating products with limited costs and effort. Benefit from Morpho SDK, front-end, rewards distribution, and other tooling.
122-
123-
![Morpho Vaults](https://docs.morpho.org/img/metamorpho/morpho-vaults-3.png)
88+
![](https://docs.morpho.org/img/metamorpho/morpho-vaults-3.png)
12489

12590
## How is the net APY calculated?
12691

127-
To get the net APY as displayed in the Morpho Interface, one needs to understand the following:
92+
To get the net APY as displayed in the Morpho Interface, one needs to understand the following.
12893

12994
$$
13095
\text{Native APY} + \text{Rewards APR} + \text{MORPHO Tokens}
13196
$$
13297

133-
### Why Rewards APR?
98+
## Why Rewards APR?
13499

135100
The distinction between APY and APR is that APY takes into account the effect of compounding interest, while APR does not. In the case of rewards, the APR is the most relevant metric to consider, as rewards are not reinvested in users' positions.
136101

137-
## What are rewards?
102+
## What are Rewards?
103+
104+
Rewards are incentives provided by the Morpho DAO, market creators and/or curators to users, encouraging them to interact with Morpho markets.
105+
106+
The claimability of rewards earned through Morpho's rewards programs is based on an epoch system. Currently, epochs are weekly, this period is due to be shortened in the near future. When an epoch ends, the rewards accumulated during the previous epoch become claimable. There is no deadline to claim the rewards earned.
107+
108+
## What is Gauntlet?
138109

139-
Rewards are incentives provided by the Morpho DAO, market creators, and/or curators to users, encouraging them to interact with Morpho markets.
110+
Gauntlet is a crypto-native economic modeling and research firm specializing in treasury and risk management, incentive optimization, and mechanism design. Gauntlet uses battle-tested techniques from algorithmic trading to help protocols manage risk, optimize revenue, and design better incentives. Gauntlet simulation models inform parameter decisions for protocols of all sizes, including the leading DeFi protocols.
140111

141-
The claimability of rewards earned through Morpho's rewards programs is based on an epoch system. Currently, epochs are weekly; this period is due to be shortened in the near future. When an epoch ends, the rewards accumulated during the previous epoch become claimable. There is no deadline to claim the rewards earned.
142112

143113
<details>
144114
<summary>

docs/faqs/01-FAQs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Helixbox does not store or manage private keys. Our wallet system is powered by
173173

174174
:::tip[Stay Updated]
175175
Follow our official channels for the latest updates:
176-
- [Official Website](https://helix.box)
176+
- [Official Website](https://helixbox.ai)
177177
- [Twitter](https://twitter.com/helixbox)
178178
- [Discord Community](https://discord.gg/helixbox)
179179
:::

docs/funding/01-add-funds.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import TabItem from '@theme/TabItem';
2424
<Tabs>
2525
<TabItem value="crypto" label="Receive Crypto" default>
2626
### Receive Crypto
27-
1. **Login**: Visit [https://helix.box/overview](https://helix.box/overview) using a desktop browser.
28-
2. **Navigate to Receive**: Click the **Receive** button on the overview page, or go directly to [https://helix.box/receive](https://helix.box/receive).
27+
1. **Login**: Visit [https://helixbox.ai/overview](https://helixbox.ai/overview) using a desktop browser.
28+
2. **Navigate to Receive**: Click the **Receive** button on the overview page, or go directly to [https://helixbox.ai/receive](https://helixbox.ai/receive).
2929
3. **Select Asset**: Choose a cryptocurrency and confirm network compatibility.
3030
4. **Copy Address**:
3131
- Click the copy icon next to your wallet address.
@@ -57,7 +57,7 @@ import TabItem from '@theme/TabItem';
5757
Before making any asset funding (buying or receiving crypto), please ensure:
5858
- 🔒 You double-check and confirm the receive [wallet address](/docs/introduction/getting-started/#smart-wallet-address).
5959
1. Verify the first and last 5 characters of deposit addresses.
60-
2. Confirm the domain is [https://helix.box](https://helix.box).
60+
2. Confirm the domain is [https://helixbox.ai](https://helixbox.ai).
6161
- 🔍 You select the [supported networks](#supported-networks) for transfers.
6262
- ⏱️ You review the real-time [fees](#fees), which include network, service, handling, and exchange rates.
6363
- 📧 Never share private keys or seed phrases.
@@ -89,7 +89,7 @@ For withdrawals (cashing out or sending crypto), see our [Cash Out Guide](./cash
8989
<div style={{display: 'flex', flexDirection: 'column', gap: '12px', margin: '24px'}}>
9090
<div style={{display: 'flex', alignItems: 'center', gap: '12px'}}>
9191
<img
92-
src="https://helix.box/_next/image?url=https%3A%2F%2Fcoin-images.coingecko.com%2Fasset_platforms%2Fimages%2F131%2Flarge%2Fbase-network.png%3F1720533039&w=64&q=75&dpl=dpl_47wih5NBVEQx3mubAcjTSy18Q1AR"
92+
src="https://helixbox.ai/_next/image?url=https%3A%2F%2Fcoin-images.coingecko.com%2Fasset_platforms%2Fimages%2F131%2Flarge%2Fbase-network.png%3F1720533039&w=64&q=75&dpl=dpl_47wih5NBVEQx3mubAcjTSy18Q1AR"
9393

9494
width="32"
9595
height="32"
@@ -101,7 +101,7 @@ For withdrawals (cashing out or sending crypto), see our [Cash Out Guide](./cash
101101

102102
<div style={{display: 'flex', alignItems: 'center', gap: '12px'}}>
103103
<img
104-
src="https://helix.box/_next/image?url=https%3A%2F%2Fcoin-images.coingecko.com%2Fasset_platforms%2Fimages%2F33%2Flarge%2FAO_logomark.png%3F1706606717&w=32&q=75&dpl=dpl_47wih5NBVEQx3mubAcjTSy18Q1AR"
104+
src="https://helixbox.ai/_next/image?url=https%3A%2F%2Fcoin-images.coingecko.com%2Fasset_platforms%2Fimages%2F33%2Flarge%2FAO_logomark.png%3F1706606717&w=32&q=75&dpl=dpl_47wih5NBVEQx3mubAcjTSy18Q1AR"
105105

106106
width="32"
107107
height="32"
@@ -113,7 +113,7 @@ For withdrawals (cashing out or sending crypto), see our [Cash Out Guide](./cash
113113

114114
<div style={{display: 'flex', alignItems: 'center', gap: '12px'}}>
115115
<img
116-
src="https://helix.box/_next/image?url=https%3A%2F%2Fcoin-images.coingecko.com%2Fasset_platforms%2Fimages%2F15%2Flarge%2Fpolygon_pos.png%3F1706606645&w=64&q=75&dpl=dpl_47wih5NBVEQx3mubAcjTSy18Q1AR"
116+
src="https://helixbox.ai/_next/image?url=https%3A%2F%2Fcoin-images.coingecko.com%2Fasset_platforms%2Fimages%2F15%2Flarge%2Fpolygon_pos.png%3F1706606645&w=64&q=75&dpl=dpl_47wih5NBVEQx3mubAcjTSy18Q1AR"
117117
width="32"
118118
height="32"
119119
alt="Polygon Network Logo"
@@ -124,7 +124,7 @@ src="https://helix.box/_next/image?url=https%3A%2F%2Fcoin-images.coingecko.com%2
124124

125125
<div style={{display: 'flex', alignItems: 'center', gap: '12px'}}>
126126
<img
127-
src="https://helix.box/_next/image?url=https%3A%2F%2Fcoin-images.coingecko.com%2Fasset_platforms%2Fimages%2F41%2Flarge%2Foptimism.png%3F1706606778&w=48&q=75&dpl=dpl_47wih5NBVEQx3mubAcjTSy18Q1AR"
127+
src="https://helixbox.ai/_next/image?url=https%3A%2F%2Fcoin-images.coingecko.com%2Fasset_platforms%2Fimages%2F41%2Flarge%2Foptimism.png%3F1706606778&w=48&q=75&dpl=dpl_47wih5NBVEQx3mubAcjTSy18Q1AR"
128128
width="32"
129129
height="32"
130130
alt="Optimism Network Logo"

0 commit comments

Comments
 (0)