Skip to content

Commit 8b34bef

Browse files
committed
add lend
1 parent cd12360 commit 8b34bef

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

docs/contract-addresses/testnet.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,8 @@ sidebar_position: 2
2323
- chainId: 300
2424
- LnDefaultBridge(v2): [0xBe23e871318E49C747CB909AC65aCCFAEAac3a37](https://sepolia.explorer.zksync.io/address/0xBe23e871318E49C747CB909AC65aCCFAEAac3a37)
2525
- LnBridge(v3): [0xDc55fF59F82AA50D8A4A61dB8CcaDffD26Fb7dD2](https://sepolia.explorer.zksync.io/address/0xDc55fF59F82AA50D8A4A61dB8CcaDffD26Fb7dD2)
26+
27+
## Base Sepolia
28+
29+
- chainId: 84532
30+
- LnBridge(v3): [0x29D148A9e87C763292a33A55B9dBcAf44A194102](https://sepolia.basescan.org/address/0x29D148A9e87C763292a33A55B9dBcAf44A194102)

docs/relayer/register.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,52 @@ You can also use safewallet to run relayer, just configure the following 3 param
137137
- **safeWalletRole:**
138138
the Role of the account, can be `signer` or `executor`, the `executor` will send execution transaction when there are enough signatures.
139139

140+
### Advanced Features
141+
You can leverage the decentralized lending feature to achieve two purposes:
142+
- Earn interest on account assets from the lending market during relayer idle times, reducing the cost of funds as a relayer.
143+
- Provide relay services for an asset bridge without needing to hold that specific asset.
144+
145+
Currently, Helix relayer supports the AAVE lending pool. This feature is only supported for SafeWallet accounts. To use this feature, you need to create a SafeWallet with the same address across different networks and then transfer the tokens to this wallet.
146+
147+
For example, if you want to use the lending feature on Arbitrum, you will need to add configuration information similar to the example below.
148+
```
149+
"rpcnodes": [
150+
{
151+
"name": "arbitrum",
152+
"rpc": "https://arb1.arbitrum.io/rpc",
153+
"lendMarket": [
154+
{
155+
"protocol": "aave",
156+
"healthFactorLimit": 3.0,
157+
"collaterals": [
158+
{
159+
"symbol": "weth",
160+
"autosupplyAmount": 0.2
161+
},
162+
{
163+
"symbol": "usdt",
164+
"autosupplyAmount": 2000
165+
}
166+
],
167+
"tokens": [
168+
{
169+
"symbol": "weth",
170+
"minRepay": 0.0001,
171+
"minReserved": 0
172+
}
173+
]
174+
}
175+
]
176+
},
177+
]
178+
```
179+
- **lenMarket**: Represents the list of lending markets.
180+
- `healthFactorLimit` represents the lending risk factor, with a recommended value of 3. The larger the value, the safer it is, but the corresponding lending amount is lower.
181+
- `collaterals` represents the collateral, and `autosupplyAmount` indicates the automatic collateral limit when the account has a balance and the collateral amount has not reached this value.
182+
- `tokens` represent the lending tokens, and the client will also automatically repay the loan when the account has a balance of these assets.
183+
- `Priority Usage` When a relay order is generated, the usage order of relay account assets is **Account Balance** > **Collateral Redemption** > **Lending Assets**. The redemption of collateral or the use of lending assets will only be enabled if they are in the configuration list.
184+
- `Native Token Handling` The handling of any native token assets, including supply, withdraw, or lending, is represented by its wrapped token in configure file. However, the use of assets in the account remains as native tokens.
185+
140186
### Install & Run
141187

142188
After completing the configuration, you can execute the following commands one by one to compile and start the client:

0 commit comments

Comments
 (0)