This repository contains all the code for running AnySniper DApp which had 500 active users. All the logic codes are in this repository, you can add a custom DEX on src/config.js.
Currently it has Uniswap, Pancakeswap, Sushiswap, Degenswap and some DEX on Crono chain.
Backend is for storing user configrations like contract scanner info, favorite contracts address, copy trading targets etc.
npm install
Open src/config.js
and change the Parse urls into your backend's urls.
You can create a free server on https://back4app.com.
Create New App and then get the applicationId
and javascriptKey
in App Settings / Security & Keys
The final configration would be looking like this
PARSE_APP_ID: 'R0qwhAQIbNmHctk030RjGGlYD9hSTuytv...',
PARSE_URL: 'https://parseapi.back4app.com',
PARSE_MASTER_KEY: '',
PARSE_JS_KEY: '1MT3Ew8i1yQUX4SIvqbDiaggfszvtZ....',
Backend is used to store user configrations like Watching Lists
, Copy Trading Targets
, and Contracts Information
. All the logic is inside the src/store.
Also need to change MAINNET_RPC
which is used to fetch the token balance.
npm run serve
npm run build
npm run lint