37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Block Explorer</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<h1>Block Explorer</h1>
|
|
<div>
|
|
<input type="text" id="blockNumber" placeholder="Enter block number">
|
|
<button onclick="fetchBlock()">Fetch Block</button>
|
|
</div>
|
|
<div>
|
|
<input type="text" id="txHash" placeholder="Enter transaction hash">
|
|
<button onclick="fetchTransaction()">Fetch Transaction</button>
|
|
</div>
|
|
<div>
|
|
<input type="text" id="address" placeholder="Enter wallet address">
|
|
<button onclick="fetchAddress()">Fetch Address</button>
|
|
</div>
|
|
<div>
|
|
<input type="text" id="addressTx" placeholder="Enter wallet address for transactions">
|
|
<button onclick="fetchAddressTransactions()">Fetch Address Transactions</button>
|
|
</div>
|
|
<div>
|
|
<input type="text" id="contractFrom" placeholder="Enter from address">
|
|
<input type="text" id="contractData" placeholder="Enter contract data">
|
|
<input type="text" id="contractGas" placeholder="Enter gas limit">
|
|
<button onclick="deployContract()">Deploy Contract</button>
|
|
</div>
|
|
<div id="result"></div>
|
|
<script src="scripts.js"></script>
|
|
</body>
|
|
</html>
|