├── .dockerignore ├── .env.template ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── README.md ├── config ├── local.toml └── production.toml ├── doc └── logo.png ├── rustfmt.toml ├── src ├── bytecode.rs ├── config.rs ├── frameworks │ ├── foundry.rs │ ├── framework.rs │ └── mod.rs ├── lib.rs ├── main.rs ├── provider.rs ├── routes │ ├── contract.rs │ ├── health_check.rs │ ├── mod.rs │ └── verify.rs ├── startup.rs └── telemetry.rs └── tests ├── common └── mod.rs ├── contract.rs ├── health_check.rs └── verify.rs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/.env.template -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/README.md -------------------------------------------------------------------------------- /config/local.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/config/local.toml -------------------------------------------------------------------------------- /config/production.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/config/production.toml -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/doc/logo.png -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/bytecode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/bytecode.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/frameworks/foundry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/frameworks/foundry.rs -------------------------------------------------------------------------------- /src/frameworks/framework.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/frameworks/framework.rs -------------------------------------------------------------------------------- /src/frameworks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/frameworks/mod.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/provider.rs -------------------------------------------------------------------------------- /src/routes/contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/routes/contract.rs -------------------------------------------------------------------------------- /src/routes/health_check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/routes/health_check.rs -------------------------------------------------------------------------------- /src/routes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/routes/mod.rs -------------------------------------------------------------------------------- /src/routes/verify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/routes/verify.rs -------------------------------------------------------------------------------- /src/startup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/startup.rs -------------------------------------------------------------------------------- /src/telemetry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/src/telemetry.rs -------------------------------------------------------------------------------- /tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/tests/common/mod.rs -------------------------------------------------------------------------------- /tests/contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/tests/contract.rs -------------------------------------------------------------------------------- /tests/health_check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/tests/health_check.rs -------------------------------------------------------------------------------- /tests/verify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/cove-backend/HEAD/tests/verify.rs --------------------------------------------------------------------------------