This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.4; | |
import "./IERC20.sol"; | |
contract Claimable { | |
uint256 internal claimableAmount = 10 * 10e18; | |
function claim(IERC20 _tokenAddress/*,address stakingSMAddress*/) external { | |
require(msg.sender != address(0), "Invalid address"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.4; | |
import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; | |
import "./IERC20.sol"; | |
contract StakingToken is ReentrancyGuard { | |
mapping(address => uint256) internal stakeholders; | |
uint256 private _totalSupply; | |
// IERC20 public stakingToken; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.7; | |
import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; | |
import "@openzeppelin/contracts/access/Ownable.sol"; | |
import "./IERC20.sol"; | |
import "./IERC1155.sol"; | |
contract MultipleEditionClaimable is ReentrancyGuard, Ownable { | |
//token buy with any erc20 token | |
// function mintUser( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@relation 'x' | |
@attribute 'instance_id' string | |
@attribute 'repetition' numeric | |
@attribute 'stacks' numeric | |
@attribute 'tiers' numeric | |
@attribute 'stack.tier.ratio' numeric | |
@attribute 'container.density' numeric | |
@attribute 'empty.stack.pct' numeric | |
@attribute 'overstowing.stack.pct' numeric | |
@attribute 'overstowing.2cont.stack.pct' numeric |
OlderNewer