├── .gitignore ├── Readme.md ├── base ├── baseRay.ts ├── baseSpl.ts ├── getMarketAccountSizes.ts ├── orderbookUtils.ts ├── types.ts └── utils.ts ├── config.ts ├── example.env ├── index.ts ├── jito_bundle ├── build-bundle.ts └── send-bundle.ts ├── liquidity ├── index.ts └── liquidity.ts ├── market ├── index.ts └── market.ts ├── package.json ├── types ├── index.ts └── mint.ts └── utils ├── index.ts └── utils.ts /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env 17 | .env.local 18 | .env.development.local 19 | .env.test.local 20 | .env.production.local 21 | 22 | npm-debug.log* 23 | yarn-debug.log* 24 | yarn-error.log* 25 | yarn.lock 26 | package-lock.json -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | ## FLOW 2 | 3 | Enquiry TG: https://t.me/emmarktech 4 | 5 | Discord Community: https://discord.gg/UEmCAbhz9W 6 | 7 | #install 8 | - setup the Node.js 9 | Go to the Node.js Downloads page(https://nodejs.org/en/download) 10 | Download Node.js for macOS by clicking the "Macintosh Installer" option 11 | Run the downloaded Node.js .pkg Installer 12 | Run the installer, including accepting the license, selecting the destination, and authenticating for the install. 13 | You're finished! To ensure Node.js has been installed, run node -v in your terminal 14 | 15 | - install packages 16 | run the 'npm install' on terminal 17 | 18 | 19 | 1. Create Token 20 | 21 | ts-node index.ts create_token 22 | 23 | 2. Update Metadata 24 | 25 | ts-node index.ts update_metadata -a 26 | 27 | 3. Create Market 28 | 29 | ts-node index.ts create-openbook -a -m -t 30 | 31 | 4. Create Pool and Snipe 32 | 33 | ts-node index.ts pool-snipe -o -ta -sa -t