-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.ts
194 lines (170 loc) · 5.11 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
import {
NATIVE_MINT,
getAssociatedTokenAddress,
} from '@solana/spl-token'
import {
Keypair,
Connection,
PublicKey,
LAMPORTS_PER_SOL,
SystemProgram,
VersionedTransaction,
TransactionInstruction,
TransactionMessage,
ComputeBudgetProgram,
Transaction
} from '@solana/web3.js'
import {
ADDITIONAL_FEE,
BUY_AMOUNT,
BUY_INTERVAL_MAX,
BUY_INTERVAL_MIN,
BUY_LOWER_AMOUNT,
BUY_UPPER_AMOUNT,
DISTRIBUTE_WALLET_NUM,
DISTRIBUTION_AMOUNT,
IS_RANDOM,
PRIVATE_KEY,
RPC_ENDPOINT,
RPC_WEBSOCKET_ENDPOINT,
TOKEN_MINT,
} from './constants'
import { Data, editJson, readJson, saveDataToFile, sleep } from './utils'
import base58 from 'bs58'
import { getBuyTx, getBuyTxWithJupiter, getSellTx, getSellTxWithJupiter } from './utils/swapOnlyAmm'
import { execute } from './executor/legacy'
import { bundle } from './executor/jito'
import { getPoolKeys } from './utils/getPoolInfo'
import { SWAP_ROUTING } from './constants'
export const solanaConnection = new Connection(RPC_ENDPOINT, {
wsEndpoint: RPC_WEBSOCKET_ENDPOINT,
})
export const mainKp = Keypair.fromSecretKey(base58.decode(PRIVATE_KEY))
const baseMint = new PublicKey(TOKEN_MINT)
const distritbutionNum = DISTRIBUTE_WALLET_NUM > 10 ? 10 : DISTRIBUTE_WALLET_NUM
let quoteVault: PublicKey | null = null
let vaultAmount: number = 0
let poolId: PublicKey
let poolKeys = null
let sold: number = 0
let bought: number = 0
let totalSolPut: number = 0
let changeAmount = 0
let buyNum = 0
let sellNum = 0
const main = async () => {
const solBalance = (await solanaConnection.getBalance(mainKp.publicKey)) / LAMPORTS_PER_SOL
console.log(`Volume bot is running`)
console.log(`Wallet address: ${mainKp.publicKey.toBase58()}`)
console.log(`Pool token mint: ${baseMint.toBase58()}`)
console.log(`Wallet SOL balance: ${solBalance.toFixed(3)}SOL`)
console.log(`Buying interval max: ${BUY_INTERVAL_MAX}ms`)
console.log(`Buying interval min: ${BUY_INTERVAL_MIN}ms`)
console.log(`Buy upper limit amount: ${BUY_UPPER_AMOUNT}SOL`)
console.log(`Buy lower limit amount: ${BUY_LOWER_AMOUNT}SOL`)
console.log(`Distribute SOL to ${distritbutionNum} wallets`)
if (SWAP_ROUTING) {
console.log("Buy and sell with jupiter swap v6 routing")
} else {
poolKeys = await getPoolKeys(solanaConnection, baseMint)
if (poolKeys == null) {
return
}
// poolKeys = await PoolKeys.fetchPoolKeyInfo(solanaConnection, baseMint, NATIVE_MINT)
poolId = new PublicKey(poolKeys.id)
quoteVault = new PublicKey(poolKeys.quoteVault)
console.log(`Successfully fetched pool info`)
console.log(`Pool id: ${poolId.toBase58()}`)
}
let data: {
kp: Keypair;
buyAmount: number;
}[] | null = null
if (solBalance < (BUY_LOWER_AMOUNT + ADDITIONAL_FEE) * distritbutionNum) {
console.log("Sol balance is not enough for distribution")
}
data = await distributeSol(mainKp, distritbutionNum)
if (data === null) {
console.log("Distribution failed")
return
}
data.map(async ({ kp }, i) => {
await sleep((BUY_INTERVAL_MAX + BUY_INTERVAL_MIN) * i / 2)
while (true) {
// buy part
const BUY_INTERVAL = Math.round(Math.random() * (BUY_INTERVAL_MAX - BUY_INTERVAL_MIN) + BUY_INTERVAL_MIN)
const solBalance = await solanaConnection.getBalance(kp.publicKey) / LAMPORTS_PER_SOL
let buyAmount: number
if (IS_RANDOM)
buyAmount = Number((Math.random() * (BUY_UPPER_AMOUNT - BUY_LOWER_AMOUNT) + BUY_LOWER_AMOUNT).toFixed(6))
else
buyAmount = BUY_AMOUNT
if (solBalance < ADDITIONAL_FEE) {
console.log("Balance is not enough: ", solBalance, "SOL")
return
}
// try buying until success
let i = 0
while (true) {
if (i > 10) {
console.log("Error in buy transaction")
return
}
const result = await buy(kp, baseMint, buyAmount, poolId)
if (result) {
break
} else {
i++
console.log("Buy failed, try again")
await sleep(2000)
}
}
await sleep(3000)
// try selling until success
let j = 0
while (true) {
if (j > 10) {
console.log("Error in sell transaction")
return
}
const result = await sell(poolId, baseMint, kp)
if (result) {
break
} else {
j++
console.log("Sell failed, try again")
await sleep(2000)
}
}
await sleep(5000 + distritbutionNum * BUY_INTERVAL)
}
})
}
const distributeSol = async (mainKp: Keypair, distritbutionNum: number) => {
const data: Data[] = []
const wallets = []
try {
// Private code
console.log("Success in transferring sol")
return wallets
} catch (error) {
console.log(`Failed to transfer SOL`)
return null
}
}
const buy = async (newWallet: Keypair, baseMint: PublicKey, buyAmount: number, poolId: PublicKey) => {
let solBalance: number = 0
// Private code
return tokenBuyTx
} catch (error) {
return null
}
}
const sell = async (poolId: PublicKey, baseMint: PublicKey, wallet: Keypair) => {
try {
// Private code
} catch (error) {
return null
}
}
main()