Skip to content

Commit

Permalink
chore: add createERC20Quest to interface
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathandiep committed Jun 18, 2024
1 parent 4f22bea commit ce525ea
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions contracts/interfaces/IQuestFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,18 @@ interface IQuestFactory {
) external pure returns (string memory);

// Create
function createERC20Quest(
uint32 txHashChainId_,
address rewardTokenAddress_,
uint256 endTime_,
uint256 startTime_,
uint256 totalParticipants_,
uint256 rewardAmount_,
string memory questId_,
string memory actionType_,
string memory questName_,
string memory projectName_
) external returns (address);
function create1155QuestAndQueue(
address rewardTokenAddress_,
uint256 endTime_,
Expand Down

0 comments on commit ce525ea

Please sign in to comment.