Skip to content

Commit

Permalink
update sepolia deployments (#30)
Browse files Browse the repository at this point in the history
* update sepolia deployments

* commit proxy upgrade manifest; fix epochStart script
  • Loading branch information
MikeHathaway authored Nov 18, 2024
1 parent d12e086 commit b9dbb2a
Show file tree
Hide file tree
Showing 24 changed files with 3,274 additions and 1,095 deletions.
1,997 changes: 1,997 additions & 0 deletions .openzeppelin/sepolia.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/epochStart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ date.setUTCHours(16, 0, 0, 0);
// Get current day (0 = Sunday, 3 = Wednesday)
const currentDay = date.getUTCDay();
// Calculate days to subtract to reach previous Wednesday
const daysToSubtract = (currentDay - 3 + 7) % 7;
const daysToSubtract = (currentDay - 3 + 7) % 7 || 7; // If result is 0, subtract 7 days
date.setUTCDate(date.getUTCDate() - daysToSubtract);
const epochStart = Math.round(date.getTime() / 1000);
console.log(epochStart);
63 changes: 19 additions & 44 deletions deployments/testnet-sepolia-staging/EarthfastBilling.json

Large diffs are not rendered by default.

104 changes: 52 additions & 52 deletions deployments/testnet-sepolia-staging/EarthfastGovernor.json

Large diffs are not rendered by default.

194 changes: 65 additions & 129 deletions deployments/testnet-sepolia-staging/EarthfastNodes.json

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions deployments/testnet-sepolia-staging/EarthfastNodesImpl.json

Large diffs are not rendered by default.

64 changes: 23 additions & 41 deletions deployments/testnet-sepolia-staging/EarthfastOperators.json

Large diffs are not rendered by default.

73 changes: 27 additions & 46 deletions deployments/testnet-sepolia-staging/EarthfastProjects.json

Large diffs are not rendered by default.

94 changes: 35 additions & 59 deletions deployments/testnet-sepolia-staging/EarthfastRegistry.json

Large diffs are not rendered by default.

34 changes: 12 additions & 22 deletions deployments/testnet-sepolia-staging/EarthfastReservations.json

Large diffs are not rendered by default.

160 changes: 80 additions & 80 deletions deployments/testnet-sepolia-staging/EarthfastTimelock.json

Large diffs are not rendered by default.

122 changes: 61 additions & 61 deletions deployments/testnet-sepolia-staging/EarthfastToken.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

63 changes: 19 additions & 44 deletions deployments/testnet-sepolia/EarthfastBilling.json

Large diffs are not rendered by default.

104 changes: 52 additions & 52 deletions deployments/testnet-sepolia/EarthfastGovernor.json

Large diffs are not rendered by default.

194 changes: 65 additions & 129 deletions deployments/testnet-sepolia/EarthfastNodes.json

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions deployments/testnet-sepolia/EarthfastNodesImpl.json

Large diffs are not rendered by default.

64 changes: 23 additions & 41 deletions deployments/testnet-sepolia/EarthfastOperators.json

Large diffs are not rendered by default.

73 changes: 27 additions & 46 deletions deployments/testnet-sepolia/EarthfastProjects.json

Large diffs are not rendered by default.

94 changes: 35 additions & 59 deletions deployments/testnet-sepolia/EarthfastRegistry.json

Large diffs are not rendered by default.

34 changes: 12 additions & 22 deletions deployments/testnet-sepolia/EarthfastReservations.json

Large diffs are not rendered by default.

160 changes: 80 additions & 80 deletions deployments/testnet-sepolia/EarthfastTimelock.json

Large diffs are not rendered by default.

122 changes: 61 additions & 61 deletions deployments/testnet-sepolia/EarthfastToken.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit b9dbb2a

Please sign in to comment.