Team Btcr Here
Vault Breaker is a smart-contract-based "Dead Man’s Switch" integrated into the Team BTCR platform. It allows users to designate beneficiaries or recovery agents who can eventually access funds if the primary user becomes inactive, without giving them access now.
| Method | Endpoint | Description |
| :--- | :--- | :--- |
| POST | /api/v1/teams | Create a new team. |
| GET | /api/v1/teams/team_id/runs | Get history of BTCR test runs. |
| POST | /api/v1/teams/team_id/runs | Trigger a new BTCR regression test. |
| GET | /api/v1/runs/run_id/logs | Stream or download logs for a specific run. |
| POST | /api/v1/teams/team_id/invites | Invite a user to the team. |
Team BTCR was one of the first implementers of BitVM (Bitcoin Virtual Machine) 2.0. This allows them to execute arbitrary off-chain computation while using Bitcoin Script as a fraud-proof mechanism. Simply put, if someone cheats on the BTCR layer, anyone can “punish” them on the Bitcoin main chain using a simple, pre-signed transaction. team btcr
CREATE TABLE teams ( id UUID PRIMARY KEY DEFAULT gen_random_uuid(), name VARCHAR(255) NOT NULL, slug VARCHAR(255) UNIQUE NOT NULL, -- URL friendly name created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP );CREATE TABLE team_members ( team_id UUID REFERENCES teams(id) ON DELETE CASCADE, user_id UUID REFERENCES users(id) ON DELETE CASCADE, role VARCHAR(50) DEFAULT 'DEVELOPER', -- ADMIN, DEVELOPER, VIEWER joined_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (team_id, user_id) );
CREATE TABLE btcr_runs ( id UUID PRIMARY KEY DEFAULT gen_random_uuid(), team_id UUID REFERENCES teams(id), triggered_by UUID REFERENCES users(id), status VARCHAR(50), -- RUNNING, PASSED, FAILED, CANCELLED config_json JSONB, -- Stores the specific test parameters started_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP, completed_at TIMESTAMP WITH TIME ZONE );Team BTCR’s public-facing project is the "Edge Node"
Team BTCR’s public-facing project is the "Edge Node" software. Unlike a standard Bitcoin node that follows the majority chain, an Edge Node runs parallel consensus checks. It alerts the user (and silently reports to Team BTCR) if it detects: By running an Edge Node, you become an
By running an Edge Node, you become an early warning sensor for the network.