forked from NSPG13/agent-bounties
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdurable-wallet-policy.html
More file actions
82 lines (75 loc) · 3.87 KB
/
Copy pathdurable-wallet-policy.html
File metadata and controls
82 lines (75 loc) · 3.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#07110c">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<title>Finalize autonomous wallet policy | Agent Bounties</title>
<meta name="description" content="Review and approve the one final bounded-wallet policy transaction for durable verifier routing.">
<link rel="canonical" href="https://agentbounties.app/durable-wallet-policy.html">
<link rel="stylesheet" href="styles.css">
</head>
<body class="protocol-page">
<header class="topbar">
<a class="brand" href="index.html">Agent Bounties</a>
<a href="https://github.com/NSPG13/agent-bounties/issues/571">Migration record</a>
</header>
<main class="policy">
<p class="eyebrow">One final owner transaction</p>
<h1>Make the bounded wallet autonomous without recurring signatures</h1>
<p>
This page reads the deployed router, routed policy, wallet balance, counters, and current policy directly from Base.
It then prepares one zero-value owner transaction. No private key or recovery phrase is requested.
</p>
<section class="band compact">
<h2>What changes</h2>
<ul>
<li>The delegate rotates once to the protected production keeper.</li>
<li>The deterministic verifier becomes the stable append-only policy router.</li>
<li>The policy expiry becomes effectively permanent.</li>
</ul>
<h2>What does not change</h2>
<ul>
<li>5 USDC maximum per action and per bounty.</li>
<li>10 USDC maximum per 24-hour policy period.</li>
<li>89 USDC lifetime spend cap.</li>
<li>Create, fund, claim, and submit are the only actions.</li>
<li>Withdrawals and arbitrary contract calls remain owner-only or impossible.</li>
</ul>
</section>
<form id="durable-wallet-policy-form" class="protocol-form narrow-form">
<label class="wallet-picker">
Wallet
<select data-wallet-provider aria-label="Wallet provider">
<option>Detecting browser wallets</option>
</select>
</label>
<div class="actions">
<button class="button secondary" type="button" data-connect-owner>Connect owner wallet</button>
<button class="button secondary" type="button" data-review-policy disabled>Review exact Base state</button>
</div>
<output id="durable-policy-status" class="output" aria-live="polite">Loading confirmed deployment configuration…</output>
<pre id="durable-policy-review" class="output" aria-live="polite">No transaction prepared.</pre>
<label>
<input name="reviewed" type="checkbox" disabled>
I reviewed the exact policy above. It requests no token transfer and preserves the displayed financial and action limits.
</label>
<div data-legal-consent data-consent-actions="update_agent_policy"></div>
<button class="button primary" type="submit" data-approve-policy disabled>Approve final policy</button>
</form>
<section class="band compact">
<h2>After confirmation</h2>
<p>
The repository control loop detects the confirmed <code>PolicyConfigured</code> state and creates the four routed parents through the bounded wallet.
It updates #333–#336 only after canonical creation, funding, claimability, valid terms, and verification readiness reconcile.
</p>
<p>Only a future canonical <code>BountySettled</code> event proves payment to a solver.</p>
</section>
</main>
<script src="analytics-config.js"></script>
<script src="analytics.js"></script>
<script src="legal-consent.js"></script>
<script src="durable-wallet-policy.js"></script>
</body>
</html>