ab77e99f96
* feat: handle withdrawal limits * feat: add withdraw limit ui to withdraw form * chore: lint error * fix: mock network param query for e2e tests * fix: wrong translation in tests * fix: withdrawals test and revert change in text for trade grid elements * fix: add check for signature length before progressing withdraw
16 lines
422 B
TypeScript
16 lines
422 B
TypeScript
import { VegaWalletContainer } from '../../../components/vega-wallet-container';
|
|
import { Web3Container } from '../../../components/web3-container';
|
|
import { WithdrawalsContainer } from '../withdrawals-container';
|
|
|
|
const Withdrawals = () => {
|
|
return (
|
|
<VegaWalletContainer>
|
|
<Web3Container>
|
|
<WithdrawalsContainer />
|
|
</Web3Container>
|
|
</VegaWalletContainer>
|
|
);
|
|
};
|
|
|
|
export default Withdrawals;
|