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.27; | |
| import "./DltToken.sol"; | |
| contract ClaimFaucet is DltToken{ | |
| uint256 public constant CLAIMABLE_AMOUNT = 10; | |
| constructor(string memory _name, string memory _symbol) DltToken(_name, _symbol){} |
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.27; | |
| contract BlockPost { | |
| struct Post { | |
| uint256 id; | |
| address author; | |
| string title; | |
| string content; |