vega-frontend-monorepo/apps/trading/pages/index.page.tsx
2022-03-10 20:51:05 -08:00

50 lines
1.4 KiB
TypeScript

import { Callout, Button } from '@vegaprotocol/ui-toolkit';
import { useVegaWallet } from '@vegaprotocol/react-helpers';
import { useEffect, useMemo, useState } from 'react';
import { Connectors } from '../lib/connectors';
export function Index() {
const { keypair, keypairs, selectPublicKey } = useVegaWallet();
return (
<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>
</Callout>
<h1>Vega wallet</h1>
{keypair && <p>Current: {keypair.pub}</p>}
{keypairs?.length && (
<select
name="change-key"
value={keypair ? keypair.pub : 'none'}
onChange={(e) => selectPublicKey(e.target.value)}
>
<option value="none" disabled={true}>
Please select
</option>
{keypairs.map((pk) => (
<option key={pk.pub} value={pk.pub}>
{pk.name} ({pk.pub})
</option>
))}
</select>
) : null}
<hr />
<h2>Public keys</h2>
<pre>{JSON.stringify(keypairs, null, 2)}</pre>
</div>
);
}
export default Index;