From 95a0702626d697874695f2d54a3ac640a07b50f7 Mon Sep 17 00:00:00 2001 From: Pileks Date: Mon, 19 Jan 2026 09:35:29 -0800 Subject: [PATCH] apply linter to scripts --- scripts/v0.5/squads/executeProposal.ts | 4 +--- scripts/v0.6/launchSOLO.ts | 3 +-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/scripts/v0.5/squads/executeProposal.ts b/scripts/v0.5/squads/executeProposal.ts index 12d796ac..2f3aadc7 100644 --- a/scripts/v0.5/squads/executeProposal.ts +++ b/scripts/v0.5/squads/executeProposal.ts @@ -36,9 +36,7 @@ async function main() { // Add both instructions to create the proposal const vaultTxExecuteIxResolved = await vaultTxExecuteIx; - const tx = new Transaction().add( - vaultTxExecuteIxResolved.instruction, - ); + const tx = new Transaction().add(vaultTxExecuteIxResolved.instruction); tx.recentBlockhash = ( await provider.connection.getLatestBlockhash() ).blockhash; diff --git a/scripts/v0.6/launchSOLO.ts b/scripts/v0.6/launchSOLO.ts index 37e12926..0ec11ec5 100644 --- a/scripts/v0.6/launchSOLO.ts +++ b/scripts/v0.6/launchSOLO.ts @@ -74,8 +74,7 @@ export const launch = async () => { .initializeLaunchIx({ tokenName: "Solomon", tokenSymbol: "SOLO", - tokenUri: - "https://solomonlabs.org/assets/solo.json", + tokenUri: "https://solomonlabs.org/assets/solo.json", minimumRaiseAmount: new BN(MIN_GOAL * 10 ** 6), baseMint: TOKEN, monthlySpendingLimitAmount: new BN(SPENDING_LIMIT * 10 ** 6),