Skip to content

Commit 1131284

Browse files
authored
Merge pull request holographxyz#345 from holographxyz/fix/testERC721
Fix fail test Custom/Countdown ERC721
2 parents 7ea6ce4 + c4f86da commit 1131284

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/foundry/CountdownERC721/utils/Constants.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ string constant DEFAULT_PLACEHOLDER_URI_2 = "https://url.com/not-revealed-2/";
2323
bytes constant DEFAULT_ENCRYPT_DECRYPT_KEY = abi.encode("random-encrypt-decrypt-key");
2424
bytes constant DEFAULT_ENCRYPT_DECRYPT_KEY_2 = abi.encode("random-encrypt-decrypt-key-2");
2525

26-
uint40 constant DEFAULT_START_DATE = 1718822400; // Epoch time for June 3, 2024
26+
uint40 constant DEFAULT_START_DATE = 1751038537; // Epoch time for June 27, 2027
2727
uint32 constant DEFAULT_MAX_SUPPLY = 4173120; // Total number of ten-minute intervals until Oct 8, 2103
2828
uint24 constant DEFAULT_MINT_INTERVAL = 10 minutes; // Duration of each interval

test/foundry/CustomERC721/utils/Constants.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ string constant DEFAULT_PLACEHOLDER_URI_2 = "https://url.com/not-revealed-2/";
2323
bytes constant DEFAULT_ENCRYPT_DECRYPT_KEY = abi.encode("random-encrypt-decrypt-key");
2424
bytes constant DEFAULT_ENCRYPT_DECRYPT_KEY_2 = abi.encode("random-encrypt-decrypt-key-2");
2525

26-
uint40 constant DEFAULT_START_DATE = 1718822400; // Epoch time for June 3, 2024
26+
uint40 constant DEFAULT_START_DATE = 1751038537; // Epoch time for June 27, 2025
2727
uint32 constant DEFAULT_MAX_SUPPLY = 4173120; // Total number of ten-minute intervals until Oct 8, 2103
2828
uint24 constant DEFAULT_MINT_INTERVAL = 10 minutes; // Duration of each interval

0 commit comments

Comments
 (0)