2022-03-09 13:05:42 +00:00
|
|
|
import { Callout, Button } from '@vegaprotocol/ui-toolkit';
|
2022-02-23 17:57:44 +00:00
|
|
|
|
|
|
|
export function Index() {
|
2022-02-23 05:05:39 +00:00
|
|
|
const { publicKey, publicKeys, selectPublicKey } = useVegaWallet();
|
2022-02-11 13:56:28 +00:00
|
|
|
return (
|
2022-03-09 13:05:42 +00:00
|
|
|
<div className="m-24 ">
|
|
|
|
<Callout
|
|
|
|
intent="help"
|
|
|
|
title="This is what this thing does"
|
|
|
|
iconName="endorsed"
|
|
|
|
headingLevel={1}
|
|
|
|
>
|
|
|
|
<div className="flex flex-col">
|
|
|
|
<div>With a longer explaination</div>
|
|
|
|
<Button className="block mt-8" variant="secondary">
|
|
|
|
Action
|
|
|
|
</Button>
|
|
|
|
</div>
|
2022-02-24 02:06:52 +00:00
|
|
|
</Callout>
|
2022-02-23 05:05:39 +00:00
|
|
|
<h1>Vega wallet</h1>
|
|
|
|
{publicKey && <p>Current: {publicKey.pub}</p>}
|
|
|
|
{publicKeys?.length && (
|
|
|
|
<select
|
|
|
|
name="change-key"
|
|
|
|
value={publicKey?.pub}
|
|
|
|
onChange={(e) => selectPublicKey(e.target.value)}
|
|
|
|
>
|
|
|
|
{publicKeys.map((pk) => (
|
|
|
|
<option key={pk.pub} value={pk.pub}>
|
|
|
|
{pk.name} ({pk.pub})
|
|
|
|
</option>
|
|
|
|
))}
|
|
|
|
</select>
|
|
|
|
)}
|
|
|
|
<h2>Public keys</h2>
|
|
|
|
<pre>{JSON.stringify(publicKeys, null, 2)}</pre>
|
2022-02-11 13:56:28 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2022-02-23 17:57:44 +00:00
|
|
|
|
|
|
|
export default Index;
|