Skip to content

Commit ad18c03

Browse files
committed
Update docs
1 parent 5455864 commit ad18c03

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

book/build-your-staking-dapp/ethereum/methods.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,7 @@ The `getMintHealth` method retrieves the health status of a mint position based
318318
The position health parameter is used to monitor the value of minted osETH relative to the staked ETH value:
319319

320320
- **`healthy`**: Minted osETH ≤ 90% of staked ETH
321-
- **`moderate`**: Minted osETH > 90% but ≤ 91% of staked ETH
322321
- **`risky`**: Minted osETH > 91% but ≤ 92% of staked ETH
323-
- **`unhealthy`**: Minted osETH > 92% of staked ETH
324322

325323
Changes in position health can result from discrepancies between Vault APY and osETH APY, higher fees, or inconsistent performance.
326324

@@ -338,6 +336,7 @@ To get mint health, you need to provide the stake amount and the mint amount.
338336
const { health } = await staker.getMintHealth({
339337
stakeAmount: '10', // 10 ETH
340338
mintAmount: '5' // 5 osETH
339+
validatorAddress: '0x...' // Vault address
341340
})
342341
console.log(`Mint health: ${health}`)
343342
```

book/docs/classes/ethereum_src.EthereumStaker.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ ___
367367

368368
## getMintHealth
369369

370-
**getMintHealth**(`params`): `Promise`\<\{ `health`: ``"healthy"`` \| ``"moderate"`` \| ``"risky"`` \| ``"unhealthy"`` }\>
370+
**getMintHealth**(`params`): `Promise`\<\{ `health`: ``"healthy"`` \| ``"risky"`` }\>
371371

372372
Retrieves the mint health for a specified stake and mint amount.
373373

@@ -392,10 +392,11 @@ Risky positions may enter redemption processes, while positions deemed unhealthy
392392
| `params` | `Object` | Parameters for the request |
393393
| `params.stakeAmount` | `string` | The amount of ETH staked |
394394
| `params.mintAmount` | `string` | The amount of osETH minted |
395+
| `params.vault` | `Hex` | The vault address |
395396

396397
### Returns
397398

398-
`Promise`\<\{ `health`: ``"healthy"`` \| ``"moderate"`` \| ``"risky"`` \| ``"unhealthy"`` }\>
399+
`Promise`\<\{ `health`: ``"healthy"`` \| ``"risky"`` \` }\>
399400

400401
Returns a promise that resolves to the mint health status('healthy' | 'moderate' | 'risky' | 'unhealthy')
401402

packages/ethereum/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Here is a basic example of how to use the Chorus One SDK to build, sign, and bro
2222
// Configuration
2323
// -------------
2424

25-
import { EthereumStaker, CHORUS_ONE_ETHEREUM_VALIDATORS } from '@chorus-one/solana'
25+
import { EthereumStaker, CHORUS_ONE_ETHEREUM_VALIDATORS } from '@chorus-one/ethereum'
2626

2727
const staker = new EthereumStaker({
2828
network: 'ethereum'})
@@ -32,7 +32,7 @@ await staker.init()
3232
// Building the transaction
3333
// ------------------------
3434

35-
const delegatorAddress = '0xe6d8d8ac54461b1c5ed15740eee322043f696c08'
35+
const delegatorAddress = '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045'
3636

3737
// You can use the Chorus One validator address or specify your own
3838
const validatorAddress = CHORUS_ONE_ETHEREUM_VALIDATORS.ethereum.mevMaxVault

0 commit comments

Comments
 (0)