AstarNetwork / astar-apps

The official Astar Network portal for accessing your tokens and other native features!
https://portal.astar.network/
GNU General Public License v3.0
67 stars 85 forks source link

Question for getting "estimated reward". #1197

Closed johnnyji-dev closed 4 months ago

johnnyji-dev commented 4 months ago

Hi~ I'm updating V2 staking to V3.

I used below API-call to get estimated-reward on V2.

            const estimatedReward = await estimatePendingRewards({
                api: this.client,
                walletAddress: staker
            })

But, I think that it does not work now. (generalEraInfo maybe is deprecated, so undefined).

Can I get some advises for how to get estimated-reward by call api(api.query.dappStaking.???)? Or Is there the other method?

johnnyji-dev commented 4 months ago

Hi~ I'm updating V2 staking to V3.

I used below API-call to get estimated-reward on V2.

            const estimatedReward = await estimatePendingRewards({
                api: this.client,
                walletAddress: staker
            })

But, I think that it does not work now. (generalEraInfo maybe is deprecated, so undefined).

Can I get some advises for how to get estimated-reward by call api(api.query.dappStaking.???)? Or Is there the other method?

I found out "getStakerRewards" & "getBonusRewards" at "astar-app" repository.