mirror of
https://github.com/tornadocash/tornado-anonymity-mining.git
synced 2024-11-22 09:47:15 +01:00
10 lines
218 B
Solidity
10 lines
218 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.6.0;
|
|
|
|
interface IRewardSwap {
|
|
function swap(address recipient, uint256 amount) external returns (uint256);
|
|
|
|
function setPoolWeight(uint256 newWeight) external;
|
|
}
|