getRedelegationFee

getRedelegationFee is a method on the ARIO class that retrieves the redelegation fee rate as a percentage for a specific address. The fee rate ranges from 0% to 60% based on the number of redelegations since the last fee reset.

getRedelegationFee does not require authentication.

Examples

getRedelegationFee

const fee = await ario.getRedelegationFee({
    address: 't4Xr0_J4Iurt7caNST02cMotaz2FIbWQ4Kbj616RHl3'
});

Parameters

ParameterTypeDescriptionRequired
addressstringThe wallet address to check for redelegation feesYes

Output

{
  "redelegationFeeRate": 10,
  "feeResetTimestamp": 1730996691117
}

Was this page helpful?