Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
g0drlc committed Jan 20, 2025
0 parents commit 51b1598
Show file tree
Hide file tree
Showing 26 changed files with 9,279 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.env
/node_modules
package-lock.json
/dist
todo.txt
data.json
priv
minting.json
cretePoollog.json
mine.json
test.json
test.ts
724 changes: 724 additions & 0 deletions log.txt

Large diffs are not rendered by default.

53 changes: 53 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"name": "sniper-backend",
"version": "1.0.0",
"description": "Sniper-Backend",
"main": "index.ts",
"pre-commit": [],
"scripts": {
"dev": "nodemon src/sniper.ts",
"start": "tsc --skipLibCheck && node dist/index.js",
"ts.check": "tsc --project tsconfig.json",
"build": "tsc --skipLibCheck",
"add-build": "git add dist"
},
"dependencies": {
"@metaplex-foundation/js": "0.19.4",
"@metaplex-foundation/mpl-token-metadata": "2.9.1",
"@metaplex-foundation/umi": "^0.9.1",
"@openbook-dex/openbook": "^0.0.9",
"@project-serum/anchor": "^0.26.0",
"@raydium-io/raydium-sdk": "^1.3.1-beta.51",
"@solana/spl-token": "^0.4.3",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/web3.js": "^1.91.4",
"@types/bn.js": "^5.1.6",
"@types/lodash": "^4.17.13",
"@types/node-telegram-bot-api": "^0.64.7",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"colors": "^1.4.0",
"dotenv": "^16.3.1",
"global": "^4.4.0",
"jito-ts": "^3.0.1",
"lodash": "^4.17.21",
"mongodb": "^6.10.0",
"mongoose": "^8.8.4",
"node-telegram-bot-api": "^0.66.0",
"nodemon": "^3.1.0",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"socket.io": "^4.7.5",
"typescript": "^5.2.2",
"yarn": "^1.22.22"
},
"devDependencies": {
"@types/base-64": "^1.0.2",
"@types/bs58": "^4.0.4",
"@types/debug": "^4.1.12",
"@types/dotenv": "^8.2.0",
"cross-env": "^7.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
}
}
1 change: 1 addition & 0 deletions raydium.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Loading

0 comments on commit 51b1598

Please sign in to comment.