comments
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 41s Details

This commit is contained in:
Ladd Hoffman 2024-04-09 05:50:46 -05:00
parent 54d4fbc6cc
commit ea6d068555
3 changed files with 4 additions and 3 deletions

View File

@ -9,9 +9,6 @@ import "./interfaces/IAcceptAvailability.sol";
import "hardhat/console.sol";
/// This contract must manage validation pools and reputation,
/// because otherwise there's no way to enforce appropriate permissions on
/// transfer of value between reputation NFTs.
contract DAO is Reputation, Forum, ValidationPools {
/// Transfer REP to a contract, and call that contract's receiveTransfer method
function stakeAvailability(

View File

@ -6,6 +6,7 @@ struct Post {
address sender;
address author;
string contentId;
// TODO: citations
}
contract Forum {

View File

@ -8,3 +8,6 @@ contract Reputation is ERC20("Reputation", "REP") {
return 9;
}
}
// TODO: try implementing as ERC721
// If that doesn't work, try writing from scratch