Skip to content

Commit

Permalink
fix: give rpc url in wallet info
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiHaoLu committed Nov 5, 2024
1 parent 75b190a commit 48d6d0b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Tenderly 4337 Debugger
# ERC-4337 Debugger

Directly gives your Tenderly's user name, project name and access key, you can debug any userOp!
You can debug any userOp here!
27 changes: 18 additions & 9 deletions pages/imaccount-info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,6 @@ const AccountInfo = () => {
<p>It is an experimental feature. Please use it cautiously.</p>
</div>
<div>
<h4>Address</h4>
<label>
<input
type="text"
value={address}
onChange={(e) => setAddress(e.target.value as Address)}
required
/>
</label>
<h4>Contract Type</h4>
<label>
<select
Expand All @@ -83,6 +74,24 @@ const AccountInfo = () => {
))}
</select>
</label>
<h4>Address</h4>
<label>
<input
type="text"
value={address}
onChange={(e) => setAddress(e.target.value as Address)}
required
/>
</label>
<h4>Alchemy RPC URL</h4>
<label>
<input
type="text"
value={ALCHEMY_RPC_URL}
onChange={(e) => setALCHEMY_RPC_URL(e.target.value)}
required
/>
</label>
</div>
<div>
<button onClick={getWalletInfo} disabled={fetching || isFetchDisabled}>
Expand Down

0 comments on commit 48d6d0b

Please sign in to comment.