Skip to content

Instantly share code, notes, and snippets.

// 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){}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;
contract BlockPost {
struct Post {
uint256 id;
address author;
string title;
string content;