Skip to content

Commit

Permalink
chore: up
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Jan 12, 2025
1 parent c6cd76b commit d336837
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
1 change: 1 addition & 0 deletions playground/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
</head>
<body>
<h1>Playground</h1>
<hr />
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
Expand Down
23 changes: 16 additions & 7 deletions playground/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,25 @@ export function App() {
<div>
<State />
<Events />
<GetCapabilities />
<p>
<hr />
</p>
<Connect />
<Register />
<Login />
<UpgradeAccount />
<Disconnect />
<Register />
<Accounts />
<GetCapabilities />
<Disconnect />
<UpgradeAccount />
<p>
<hr />
</p>
<AuthorizeKey />
<RevokeKey />
<GetKeys />
<RevokeKey />
<p>
<hr />
</p>
<SendCalls />
<SendTransaction />
<SignMessage />
Expand Down Expand Up @@ -171,7 +180,7 @@ function Connect() {
Register
</button>
</div>
<pre>{JSON.stringify(result, null, 2)}</pre>
{result ? <pre>{JSON.stringify(result, null, 2)}</pre> : null}
</div>
)
}
Expand Down Expand Up @@ -263,7 +272,7 @@ function GetCapabilities() {
>
Get Capabilities
</button>
<pre>{JSON.stringify(result, null, 2)}</pre>
{result ? <pre>{JSON.stringify(result, null, 2)}</pre> : null}
</div>
)
}
Expand Down

0 comments on commit d336837

Please sign in to comment.