28 lines
789 B
TypeScript
28 lines
789 B
TypeScript
import { useVegaWallet } from '@vegaprotocol/wallet';
|
|
import { WithdrawFormContainer } from '@vegaprotocol/withdraws';
|
|
import { useVegaTransactionStore } from '@vegaprotocol/web3';
|
|
|
|
export const WithdrawContainer = ({ assetId }: { assetId?: string }) => {
|
|
const { pubKey } = useVegaWallet();
|
|
const createTransaction = useVegaTransactionStore((state) => state.create);
|
|
return (
|
|
<WithdrawFormContainer
|
|
assetId={assetId}
|
|
partyId={pubKey ? pubKey : undefined}
|
|
submit={({ amount, asset, receiverAddress }) => {
|
|
createTransaction({
|
|
withdrawSubmission: {
|
|
amount,
|
|
asset,
|
|
ext: {
|
|
erc20: {
|
|
receiverAddress,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
}}
|
|
/>
|
|
);
|
|
};
|