| 16 | |
| 17 | // Define the type for the JSON file content |
| 18 | export interface Data { |
| 19 | privateKey: string; |
| 20 | pubkey: string; |
| 21 | solBalance: number | null; |
| 22 | tokenBuyTx: string | null, |
| 23 | tokenSellTx: string | null, |
| 24 | } |
| 25 | |
| 26 | |
| 27 | export const randVal = (min: number, max: number, count: number, total: number, isEven: boolean): number[] => { |
nothing calls this directly
no outgoing calls
no test coverage detected