rewardsPPM()

FeeBurner.sol
    function rewardsPPM() external view returns (Rewards memory) {
        return _rewards;
    }

This read function returns the rewards incentive in PPM the caller will receive from calling the execute() function.

Example

// Returns:
[
20000,                   //portion in PPM
]

For the ETH token, use the contract address: 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE

Last updated