├── .gitignore ├── README.md ├── recovery-key └── scripts ├── allowcores.list ├── find_car.sh ├── manage.sh ├── run_recovery.sh └── worker.list /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoCraft-Tech/lotus-recovery/HEAD/README.md -------------------------------------------------------------------------------- /recovery-key: -------------------------------------------------------------------------------- 1 | JvyxCtKqrdADWcaTEx8YDYKSC1FAWYIeE914ACjLQOE= 2 | -------------------------------------------------------------------------------- /scripts/allowcores.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoCraft-Tech/lotus-recovery/HEAD/scripts/allowcores.list -------------------------------------------------------------------------------- /scripts/find_car.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoCraft-Tech/lotus-recovery/HEAD/scripts/find_car.sh -------------------------------------------------------------------------------- /scripts/manage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoCraft-Tech/lotus-recovery/HEAD/scripts/manage.sh -------------------------------------------------------------------------------- /scripts/run_recovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoCraft-Tech/lotus-recovery/HEAD/scripts/run_recovery.sh -------------------------------------------------------------------------------- /scripts/worker.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoCraft-Tech/lotus-recovery/HEAD/scripts/worker.list --------------------------------------------------------------------------------