04872522d6
* add fixture for markets query * stub graphql requests * re-add assertion for tx hash, stub command/sync requests * refactor to get tests to run with trading page mocked queries * add test wallet credentials * split up markets page from trading page * add portfolio page feature, add market page scenarios * move hasOperationName helper to support/index * fix home-page.feature * fix missing feature step * Minor changes to BDD steps * Use in object syntax to get better type safety on hasOperationName helper function * remove bypass placing orders env var and usage in tests * use UI_Trading_Test wallet publick key in command/sync mock * move public key to cypress env * replace fixtures with generator functions * colocate query generators with queries * add custom commands, add index files * fix dodgy merge, remove duplicate market page feature * make tsconfig for cypress lib match * update tsconfig for explorer e2e so commands using merge work * revert trading step to js Co-authored-by: Joe <joe@vega.xyz>
26 lines
807 B
TypeScript
26 lines
807 B
TypeScript
import { t } from '@vegaprotocol/react-helpers';
|
|
import { AnchorButton } from '@vegaprotocol/ui-toolkit';
|
|
import { useVegaWallet } from '@vegaprotocol/wallet';
|
|
|
|
const Portfolio = () => {
|
|
const { keypair } = useVegaWallet();
|
|
return (
|
|
<div className="p-24">
|
|
<h1 className="text-h3 mb-12">{t('Portfolio')}</h1>
|
|
{keypair && <p>{t(`Keypair: ${keypair.name} ${keypair.pub}`)}</p>}
|
|
<div className="flex gap-4">
|
|
<AnchorButton href="/portfolio/deposit">{t('Deposit')}</AnchorButton>
|
|
<AnchorButton href="/portfolio/deposit?assetId=8b52d4a3a4b0ffe733cddbc2b67be273816cfeb6ca4c8b339bac03ffba08e4e4">
|
|
{t('Deposit tEURO')}
|
|
</AnchorButton>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
Portfolio.getInitialProps = () => ({
|
|
page: 'portfolio',
|
|
});
|
|
|
|
export default Portfolio;
|