Skip to content

Commit

Permalink
feat: refactor toollist
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiHaoLu committed Nov 6, 2024
1 parent bb2e257 commit 262c306
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 7 deletions.
5 changes: 0 additions & 5 deletions manifest.json

This file was deleted.

7 changes: 7 additions & 0 deletions pages/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ const Footer = () => {
v0.1.29
</a>
</p>

<h3>Project Inspiration</h3>
<ul>
<li className="list">Tenderly</li>
<li className="list">Pimlico Debugger</li>
<li className="list">Jiffyscan</li>
</ul>
</div>
);
};
Expand Down
7 changes: 5 additions & 2 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Home = () => {
<div className="container">
<Header />
<div className="gif-container">
<img src="/chiikawa.gif" alt="GIF" className="gif" />
<img src="/chiikawa.GIF" alt="GIF" className="gif" />
</div>
<div className="link-container">
<Link href="/explorer">
Expand All @@ -19,7 +19,10 @@ const Home = () => {
<div className="link">Go to 4337 Debugger</div>
</Link>
<Link href="/imaccount-info">
<div className="link">imToken AA Wallet Infomation</div>
<div className="link">imToken AA Wallet Watcher</div>
</Link>
<Link href="/tool">
<div className="link">Debug Toolkit</div>
</Link>
</div>
<Footer />
Expand Down
47 changes: 47 additions & 0 deletions pages/tool.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import React from "react";
import Header from "./header";

const Tool = () => {
return (
<div>
<Header />
<h2>Debug Toolkit</h2>
<ul>
<li>
<a
href="https://tools.deth.net/eth-unit-conversion"
target="_blank"
rel="noopener noreferrer"
>
dETH Tools
</a>
: A handy toolset for every Ethereum developer, includes
<ul>
<li className="list">Eth Unit Conversion</li>
<li className="list">Token Unit Conversion</li>
<li className="list">Unix Epoch (timestamp) Conversion</li>
<li className="list">String - Bytes32 Conversion</li>
<li className="list">Calldata Decoder</li>
<li className="list">Event Decoder</li>
<li className="list">Tx Decoder</li>
<li className="list">Constructor Encoder</li>
<li className="list">Vanity Address Generator</li>
</ul>
</li>
<li>
<a
href="https://www.etherface.io/hash"
target="_blank"
rel="noopener noreferrer"
>
Ethereum Function Signature DataBase
</a>
: Find the function signature (function name and params) by their hash
(function selector).
</li>
</ul>
</div>
);
};

export default Tool;
5 changes: 5 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ a:hover {
text-decoration: underline;
}

.list{
margin-top: 10px;
margin-bottom: 10px;
}

footer {
background-color: #333;
color: #dcdcdc;
Expand Down

0 comments on commit 262c306

Please sign in to comment.