-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
64 additions
and
7 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters