A decentralized dead man's switch service.
- Frontend: React 19, TanStack Router, TanStack Start
- Blockchain: Foundry (Forge, Cast, Anvil, Chisel)
- Database: PostgreSQL with Drizzle ORM
- Styling: Tailwind CSS
-
Enter the development environment:
nix develop
-
Start all services (Postgres, Anvil, Dev Server):
mprocs
-
Initialize the database (first time only):
pnpm db:init
-
Visit
http://localhost:5173
The application uses PostgreSQL to track switches. See DATABASE.md for detailed setup and usage instructions.
Foundry is a blazing fast, portable and modular toolkit for Ethereum application development written in Rust.
Foundry consists of:
- Forge: Ethereum testing framework (like Truffle, Hardhat and DappTools).
- Cast: Swiss army knife for interacting with EVM smart contracts, sending transactions and getting chain data.
- Anvil: Local Ethereum node, akin to Ganache, Hardhat Network.
- Chisel: Fast, utilitarian, and verbose solidity REPL.
$ forge build$ forge test$ forge fmt$ forge snapshot$ anvil$ forge script script/Counter.s.sol:CounterScript --rpc-url <YOUR_RPC_URL> --private-key <YOUR_PRIVATE_KEY>$ cast <subcommand>$ forge --help
$ anvil --help
$ cast --help