You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/relayer/register.md
+46Lines changed: 46 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -137,6 +137,52 @@ You can also use safewallet to run relayer, just configure the following 3 param
137
137
-**safeWalletRole:**
138
138
the Role of the account, can be `signer` or `executor`, the `executor` will send execution transaction when there are enough signatures.
139
139
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
+
140
186
### Install & Run
141
187
142
188
After completing the configuration, you can execute the following commands one by one to compile and start the client:
0 commit comments