├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE └── src ├── abis └── PaprController.json ├── info.rs ├── main.rs ├── papr_controller.rs ├── papr_subgraph ├── client.rs ├── graphql │ ├── allControllers.graphql │ ├── collateralByController.graphql │ ├── controllerByID.graphql │ ├── ongoingAuctionsByController.graphql │ ├── paprSchema.graphql │ └── vaultsExceedingDebtPerCollateral.graphql ├── mod.rs └── queries.rs ├── provider.rs ├── purchase.rs ├── reservoir ├── client.rs ├── mod.rs ├── oracle.rs ├── orders.rs └── sell.rs └── start.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | 3 | Makefile 4 | 5 | .env -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /src/abis/PaprController.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/abis/PaprController.json -------------------------------------------------------------------------------- /src/info.rs: -------------------------------------------------------------------------------- 1 | 2 | struct ReservoirClient { 3 | } -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/papr_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/papr_controller.rs -------------------------------------------------------------------------------- /src/papr_subgraph/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/papr_subgraph/client.rs -------------------------------------------------------------------------------- /src/papr_subgraph/graphql/allControllers.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/papr_subgraph/graphql/allControllers.graphql -------------------------------------------------------------------------------- /src/papr_subgraph/graphql/collateralByController.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/papr_subgraph/graphql/collateralByController.graphql -------------------------------------------------------------------------------- /src/papr_subgraph/graphql/controllerByID.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/papr_subgraph/graphql/controllerByID.graphql -------------------------------------------------------------------------------- /src/papr_subgraph/graphql/ongoingAuctionsByController.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/papr_subgraph/graphql/ongoingAuctionsByController.graphql -------------------------------------------------------------------------------- /src/papr_subgraph/graphql/paprSchema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/papr_subgraph/graphql/paprSchema.graphql -------------------------------------------------------------------------------- /src/papr_subgraph/graphql/vaultsExceedingDebtPerCollateral.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/papr_subgraph/graphql/vaultsExceedingDebtPerCollateral.graphql -------------------------------------------------------------------------------- /src/papr_subgraph/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/papr_subgraph/mod.rs -------------------------------------------------------------------------------- /src/papr_subgraph/queries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/papr_subgraph/queries.rs -------------------------------------------------------------------------------- /src/provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/provider.rs -------------------------------------------------------------------------------- /src/purchase.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/purchase.rs -------------------------------------------------------------------------------- /src/reservoir/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/reservoir/client.rs -------------------------------------------------------------------------------- /src/reservoir/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/reservoir/mod.rs -------------------------------------------------------------------------------- /src/reservoir/oracle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/reservoir/oracle.rs -------------------------------------------------------------------------------- /src/reservoir/orders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/reservoir/orders.rs -------------------------------------------------------------------------------- /src/reservoir/sell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/reservoir/sell.rs -------------------------------------------------------------------------------- /src/start.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/with-backed/papr-liquidation-bot-rs/HEAD/src/start.rs --------------------------------------------------------------------------------