Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run script with dynamic time #141

Merged
merged 3 commits into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 32 additions & 18 deletions src/scripts/runFundingPotService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,22 @@ async function pullLatestVersionOfFundingPot() {
}
}

async function generateBatchFile(batchNumber: number) {
async function generateBatchFile(batchNumber: number, dryRun: boolean) {
console.info(`Generating batch config for batch number: ${batchNumber}`);
const { round, isEarlyAccess } = await getRoundByBatchNumber(batchNumber);
if (!isEarlyAccess) {
round.startDate = round.beginDate;
}

const now = new Date();
const offsetSecs = now.getTimezoneOffset() * 60;

const batchConfig = {
TIMEFRAME: {
FROM_TIMESTAMP: Math.floor(new Date(round.startDate).getTime() / 1000), // Convert to timestamp
TO_TIMESTAMP: Math.floor(new Date(round.endDate).getTime() / 1000),
FROM_TIMESTAMP:
Math.floor(new Date(round.startDate).getTime() / 1000) - offsetSecs, // Convert to timestamp
TO_TIMESTAMP:
Math.floor(new Date(round.endDate).getTime() / 1000) - offsetSecs,
},
VESTING_DETAILS: getStreamDetails(isEarlyAccess),
LIMITS: {
Expand All @@ -66,7 +71,7 @@ async function generateBatchFile(batchNumber: number) {
},
IS_EARLY_ACCESS: isEarlyAccess, // Set based on the round type
PRICE: (round.tokenPrice || '0.1').toString(), // Default price to "0.1" if not provided
// ONLY_REPORT: onlyReport, // If we set this flag, only report will be generated and no transactions propose to the safes
ONLY_REPORT: dryRun, // If we set this flag, only report will be generated and no transactions propose to the safes
};

const batchFilePath = path.join(
Expand Down Expand Up @@ -173,7 +178,11 @@ async function createEnvFile() {
'RPC_URL="https://rpc.ankr.com/base_sepolia"',
'RPC_URL="https://zkevm-rpc.com"',
)
.replace('CHAIN_ID=84532', 'CHAIN_ID=1101');
.replace('CHAIN_ID=84532', 'CHAIN_ID=1101')
.replace(
'BACKEND_URL="https://staging.qacc-be.generalmagic.io/graphql"',
`BACKEND_URL="${config.get('SERVER_URL')}/graphql"`,
);

await fs.writeFile(envFilePath, updatedEnvContent, 'utf-8');
} catch (error) {
Expand Down Expand Up @@ -221,16 +230,18 @@ async function installDependencies() {
await execShellCommand('npm install --loglevel=error', serviceDir);
}

async function runFundingPotService(batchNumber: number) {
async function runFundingPotService(batchNumber: number, dryRun?: boolean) {
const command = 'npm run all ' + batchNumber;
console.info(`Running "${command}" in ${serviceDir}...`);
try {
await execShellCommand(command, serviceDir);
} catch (e) {
console.error('Error in funding pot execution:', e);
}
console.info('Saving reports to the DB...');
await saveReportsToDB(reportFilesDir);
if (!dryRun) {
console.info('Saving reports to the DB...');
await saveReportsToDB(reportFilesDir);
}
}

async function getFirstRoundThatNeedExecuteBatchMinting() {
Expand Down Expand Up @@ -322,6 +333,7 @@ async function main() {
(await getFirstRoundThatNeedExecuteBatchMinting()).batchNumber;
console.info('Batch number is:', batchNumber);

const dryRun = Boolean(process.argv[3]) || false;
// Step 1
console.info('Start pulling latest version of funding pot service...');
await pullLatestVersionOfFundingPot();
Expand All @@ -339,7 +351,7 @@ async function main() {

// Step 5
console.info('Create batch config in the funding pot service...');
await generateBatchFile(batchNumber);
await generateBatchFile(batchNumber, dryRun);
console.info('Batch config created successfully.');

// Step 4
Expand All @@ -354,18 +366,20 @@ async function main() {

// Step 6
console.info('Running funding pot service...');
await runFundingPotService(batchNumber);
await runFundingPotService(batchNumber, dryRun);
console.info('Funding pot service executed successfully!');

// Step 7
console.info('Setting batch minting execution flag in round data...');
await setBatchMintingExecutionFlag(batchNumber);
console.info('Batch minting execution flag set successfully.');

// Step 8
console.info('Start Syncing reward data in donations...');
await updateRewardsForDonations(batchNumber);
console.info('Rewards data synced successfully.');
if (!dryRun) {
console.info('Setting batch minting execution flag in round data...');
await setBatchMintingExecutionFlag(batchNumber);
console.info('Batch minting execution flag set successfully.');

// Step 8
console.info('Start Syncing reward data in donations...');
await updateRewardsForDonations(batchNumber);
console.info('Rewards data synced successfully.');
}
console.info('Done!');
process.exit();
} catch (error) {
Expand Down
Loading