File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ export const dcaconfig: DcaConfig[] = [
13
13
outputToken : "USDC" ,
14
14
amount : 0.01 ,
15
15
slippage : 1 ,
16
- cron : "*/2 * * * *" // every t2 minutes
16
+ cron : "*/2 * * * *" // every 2 minutes
17
17
} ,
18
18
{
19
19
inputToken : "USDC" ,
20
20
outputToken : "SOL" ,
21
21
amount : 0.01 ,
22
22
slippage : 1 ,
23
- cron : "* 0 8 * * 0-6" // 8 AM everyday
23
+ cron : "0 8 * * 0-6" // 8 AM everyday
24
24
} ,
25
25
{
26
26
inputToken : "REKT" , // invalid mint
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const jupiterSwap = async ({
55
55
} else {
56
56
console . log (
57
57
`${
58
- swapResult . inputAmount / ( 10 ** inputToken . decimals ) } ${ inputToken . symbol } -> ${ swapResult . outputAmount / ( 10 ** inputToken . decimals ) } ${ outputToken . symbol } - https://solscan.io/tx/${ swapResult . txid } `
58
+ swapResult . inputAmount / ( 10 ** inputToken . decimals ) } ${ inputToken . symbol } -> ${ swapResult . outputAmount / ( 10 ** inputToken . decimals ) } ${ outputToken . symbol } : https://solscan.io/tx/${ swapResult . txid } `
59
59
) ;
60
60
}
61
61
} else {
You can’t perform that action at this time.
0 commit comments