Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions app/vibenet/demos/account/components/ConfigView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,17 @@ function SessionForm({ p }: { p: ConfigViewModel }) {
};
})}
/>
<button
type="button"
onClick={async () => {
const s = await p.createSigner('k1');
if (s) p.setSkSignerId(s.id);
}}
disabled={p.busy !== null}
className="self-start text-[11px] text-base-blue hover:underline disabled:cursor-not-allowed disabled:opacity-50"
>
{p.busy === 'k1' ? 'Minting…' : '+ New signer'}
</button>
</label>
<label className="flex flex-col gap-1 text-[12px] text-bds-gray-60 dark:text-bds-gray-40">
Chain
Expand Down
Loading