reward.getUserRewardInfo
Gets reward information for a specific account.
Usage
ts
import { } from 'wagmi/tempo'
import { } from './config'
const { , , } =
await ..(, {
: '0x742d35Cc6634C0532925a3b844Bc9e7595f0bEbb',
: '0x20c0000000000000000000000000000000000000',
})
.('Reward recipient:', )
.('Reward balance:', )Reward recipient: 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEbb.('Reward per token:', )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.