bom-contracts/contracts/interfaces/INFT.sol

20 lines
391 B
Solidity
Raw Permalink Normal View History

2022-07-25 15:40:16 +00:00
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.14;
interface INFT {
2022-10-19 10:05:23 +00:00
struct TokenInfo {
string image;
address[] tokens;
uint256 rate;
uint256 attack;
uint256 defense;
uint256 health;
uint256 critChance;
uint256 critDmg;
uint256 recover;
}
2022-07-25 15:40:16 +00:00
function raiseRewardPool(uint256 amount) external;
2022-10-19 10:05:23 +00:00
}