Skip to content

Commit

Permalink
feat: Event details ready for mainnet test
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgenavben committed Sep 17, 2024
1 parent 9ea7cd3 commit fe77a3c
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@RequiredArgsConstructor
public class CardanoSummit2024ProdCommands {

private final static String EVENT_NAME = "CARDANO_SUMMIT_AWARDS_2024";
private final static String EVENT_NAME = "TEST_2024";

private final L1SubmissionService l1SubmissionService;

Expand All @@ -40,16 +40,16 @@ public String createCFSummit2024Event() {

log.info("Creating CF-Summit 2024 on a MAIN network...");

long startSlot = 70531200; // 13/09/2024 08:00:00
long endSlot = 71136000; // 20/09/2024 08:00:00
long proposalsRevealSlot = 71143200; // 20/09/2024 10:00:00
long startSlot = 135076509; // 18/09/2024 07:00:00 UTC
long endSlot = 135166509; // 19/09/2024 08:00:00 UTC
long proposalsRevealSlot = 135170109; // 19/09/2024 09:00:00 UTC

var createEventCommand = CreateEventCommand.builder()
.id(EVENT_NAME)
.startSlot(Optional.of(startSlot))
.endSlot(Optional.of(endSlot))
.votingPowerAsset(Optional.empty())
.organisers("Cardano Foundation")
.organisers("Testing")
.votingEventType(USER_BASED)
.schemaVersion(V11)
.allowVoteChanging(false)
Expand Down

0 comments on commit fe77a3c

Please sign in to comment.