-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 1.66 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MetaMask State Diff</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>MetaMask State Diff</h1>
<div class="instructions">
<p>You can export the MetaMask state by running the following command:</p>
<div class="code-container">
<code id="exportCommand">copy(await stateHooks.getPersistedState())</code>
<button class="copy-button" onclick="copyCommand(event)">📋</button>
</div>
<p>⚠️ Warning: this will export the complete state, including your Vault. Use at your own risk.</p>
</div>
<div>
<h2>State A</h2>
<div class="input-container">
<textarea id="input1" placeholder="Paste MetaMask state here..."></textarea>
<button onclick="clearInput('input1')" class="clear-button">Clear State</button>
</div>
</div>
<div>
<h2>State B</h2>
<div class="input-container">
<textarea id="input2" placeholder="Paste MetaMask state here..."></textarea>
<button onclick="clearInput('input2')" class="clear-button">Clear State</button>
</div>
</div>
<div class="btn">
<button onclick="showDiff()">Show Differences</button>
<button onclick="clearAll()" class="clear-all-button">Clear All</button>
</div>
<h2>Controllers Differences</h2>
<div class="diff-container">
<div class="diff-column">
<h2>State A</h2>
<div id="diffOutput1"></div>
</div>
<div class="diff-column">
<h2>State B</h2>
<div id="diffOutput2"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>