@@ -82,7 +82,7 @@ import { CHORUS_ONE_MONAD_VALIDATORS } from '@chorus-one/monad'
8282const validatorId = CHORUS_ONE_MONAD_VALIDATORS .mainnet
8383
8484const { tx } = await staker .buildUnstakeTx ({
85- delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb ' ,
85+ delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb2 ' ,
8686 validatorId,
8787 amount: ' 500' , // 500 MON
8888 withdrawalId: 0 // Use ID 0 to track this withdrawal
@@ -127,7 +127,7 @@ import { CHORUS_ONE_MONAD_VALIDATORS } from '@chorus-one/monad'
127127const validatorId = CHORUS_ONE_MONAD_VALIDATORS .mainnet
128128
129129const { tx } = await staker .buildWithdrawTx ({
130- delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb ' ,
130+ delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb2 ' ,
131131 validatorId,
132132 withdrawalId: 0
133133})
@@ -165,7 +165,7 @@ import { CHORUS_ONE_MONAD_VALIDATORS } from '@chorus-one/monad'
165165const validatorId = CHORUS_ONE_MONAD_VALIDATORS .mainnet
166166
167167const { tx } = await staker .buildCompoundTx ({
168- delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb ' ,
168+ delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb2 ' ,
169169 validatorId
170170})
171171```
@@ -205,7 +205,7 @@ import { CHORUS_ONE_MONAD_VALIDATORS } from '@chorus-one/monad'
205205const validatorId = CHORUS_ONE_MONAD_VALIDATORS .mainnet
206206
207207const { tx } = await staker .buildClaimRewardsTx ({
208- delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb ' ,
208+ delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb2 ' ,
209209 validatorId
210210})
211211```
@@ -260,7 +260,7 @@ const validatorId = CHORUS_ONE_MONAD_VALIDATORS.mainnet
260260
261261const delegatorInfo = await staker .getDelegator ({
262262 validatorId,
263- delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb '
263+ delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb2 '
264264})
265265```
266266
@@ -309,7 +309,7 @@ const validatorId = CHORUS_ONE_MONAD_VALIDATORS.mainnet
309309
310310const withdrawalRequest = await staker .getWithdrawalRequest ({
311311 validatorId,
312- delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb ' ,
312+ delegatorAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb2 ' ,
313313 withdrawalId: 0
314314})
315315```
@@ -383,7 +383,7 @@ To sign a transaction, you need to provide a signer instance, the signer's addre
383383``` javascript
384384const { signedTx } = await staker .sign ({
385385 signer,
386- signerAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb ' ,
386+ signerAddress: ' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb2 ' ,
387387 tx
388388})
389389```
0 commit comments