mirror of
https://github.com/logos-messaging/waku-rlnv1-contract.git
synced 2026-01-24 09:03:07 +00:00
9 lines
307 B
Solidity
9 lines
307 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.15;
|
|
|
|
interface IPriceCalculator {
|
|
/// Returns the token and price to pay in `token` for some `_rateLimit`
|
|
/// @param _rateLimit the rate limit the user wants to acquire
|
|
function calculate(uint _rateLimit) external view returns (address, uint);
|
|
}
|