├── .gitignore ├── Dragon ├── __init__.py ├── bscTraders.py ├── bscWallet.py ├── bundle.py ├── copyWalletFinder.py ├── data │ ├── BSC │ │ ├── BulkWallet │ │ │ └── wallets.txt │ │ └── TopTraders │ │ │ └── tokens.txt │ ├── Ethereum │ │ ├── BulkWallet │ │ │ └── wallets.txt │ │ └── TopTraders │ │ │ └── tokens.txt │ ├── Proxies │ │ └── proxies.txt │ └── Solana │ │ ├── BulkWallet │ │ └── wallets.txt │ │ ├── EarlyBuyers │ │ └── tokens.txt │ │ ├── ScanAllTx │ │ └── tokens.txt │ │ ├── TopHolders │ │ └── tokens.txt │ │ └── TopTraders │ │ └── tokens.txt ├── earlyBuyers.py ├── ethScan.py ├── ethTimestamp.py ├── ethTraders.py ├── ethWallet.py ├── gmgn.py ├── holders.py ├── scan.py ├── timestamp.py ├── traders.py ├── utils.py └── wallet.py ├── README.md ├── dragon.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /Dragon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/__init__.py -------------------------------------------------------------------------------- /Dragon/bscTraders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/bscTraders.py -------------------------------------------------------------------------------- /Dragon/bscWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/bscWallet.py -------------------------------------------------------------------------------- /Dragon/bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/bundle.py -------------------------------------------------------------------------------- /Dragon/copyWalletFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/copyWalletFinder.py -------------------------------------------------------------------------------- /Dragon/data/BSC/BulkWallet/wallets.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dragon/data/BSC/TopTraders/tokens.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dragon/data/Ethereum/BulkWallet/wallets.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dragon/data/Ethereum/TopTraders/tokens.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dragon/data/Proxies/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/data/Proxies/proxies.txt -------------------------------------------------------------------------------- /Dragon/data/Solana/BulkWallet/wallets.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dragon/data/Solana/EarlyBuyers/tokens.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dragon/data/Solana/ScanAllTx/tokens.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dragon/data/Solana/TopHolders/tokens.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dragon/data/Solana/TopTraders/tokens.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dragon/earlyBuyers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/earlyBuyers.py -------------------------------------------------------------------------------- /Dragon/ethScan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/ethScan.py -------------------------------------------------------------------------------- /Dragon/ethTimestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/ethTimestamp.py -------------------------------------------------------------------------------- /Dragon/ethTraders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/ethTraders.py -------------------------------------------------------------------------------- /Dragon/ethWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/ethWallet.py -------------------------------------------------------------------------------- /Dragon/gmgn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/gmgn.py -------------------------------------------------------------------------------- /Dragon/holders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/holders.py -------------------------------------------------------------------------------- /Dragon/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/scan.py -------------------------------------------------------------------------------- /Dragon/timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/timestamp.py -------------------------------------------------------------------------------- /Dragon/traders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/traders.py -------------------------------------------------------------------------------- /Dragon/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/utils.py -------------------------------------------------------------------------------- /Dragon/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/Dragon/wallet.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/README.md -------------------------------------------------------------------------------- /dragon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/dragon.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1f1n/Dragon/HEAD/requirements.txt --------------------------------------------------------------------------------