reward.getUserRewardInfo
Gets reward information for a specific account.
Usage
ts
import { Actions } from 'wagmi/tempo'
import { config } from './config'
const { rewardBalance, rewardPerToken, rewardRecipient } =
await Actions.reward.getUserRewardInfo(config, {
account: '0x742d35Cc6634C0532925a3b844Bc9e7595f0bEbb',
token: '0x20c0000000000000000000000000000000000000',
})
console.log('Reward recipient:', rewardRecipient)
console.log('Reward balance:', rewardBalance)Reward recipient: 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEbbconsole.log('Reward per token:', rewardPerToken)Reward balance: 1000000000000000000nReward per token: 385802469135802469135nts
import { createConfig, http } from 'wagmi'
import { tempoTestnet } from 'wagmi/chains'
import { KeyManager, webAuthn } from 'wagmi/tempo'
export const config = createConfig({
connectors: [
webAuthn({
keyManager: KeyManager.localStorage(),
}),
],
chains: [tempoTestnet],
multiInjectedProviderDiscovery: false,
transports: {
[tempoTestnet.id]: http(),
},
})Return Type
ts
type ReturnType = {
/** Accumulated reward balance claimable by the account */
rewardBalance: bigint
/** Reward per token checkpoint for the account */
rewardPerToken: bigint
/** Current reward recipient address (zero address if opted out) */
rewardRecipient: Address
}Parameters
account
- Type:
Address
Address of the account to get reward info for.
token
- Type:
Address
Address of the TIP-20 token.