Skip to content

Commit e25ce25

Browse files
lint
1 parent 28a4d13 commit e25ce25

File tree

4 files changed

+712
-699
lines changed

4 files changed

+712
-699
lines changed

core/src/actions/swapUtils.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ import {
77
RpcResponseAndContext,
88
SimulatedTransactionResponse,
99
TokenAmount,
10-
VersionedTransaction
10+
VersionedTransaction,
1111
} from "@solana/web3.js";
1212
import settings from "../core/settings.ts";
1313

1414
const solAddress = settings.SOL_ADDRESS;
1515
const SLIPPAGE = settings.SLIPPAGE;
16-
const connection = new Connection(settings.RPC_URL || "https://api.mainnet-beta.solana.com");
16+
const connection = new Connection(
17+
settings.RPC_URL || "https://api.mainnet-beta.solana.com"
18+
);
1719
const delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
1820

1921
export async function delayedCall<T>(

0 commit comments

Comments
 (0)