diff --git a/src/components/ContractTransaction.tsx b/src/components/ContractTransaction.tsx index ee266875..2497932a 100644 --- a/src/components/ContractTransaction.tsx +++ b/src/components/ContractTransaction.tsx @@ -11,11 +11,13 @@ const ContractTransaction = ({ showHr, onClick, address, + children, promptText, buttonText, waitingText, }: { onClick: () => Promise; + children?: any; address: string; buttonText: string; promptText?: string; @@ -63,6 +65,7 @@ const ContractTransaction = ({

{promptText}

+ {children} @@ -69,6 +71,7 @@ const LockupEvm = ({ currentSwap.lockupTx = tx.hash; await setSwapStorage(currentSwap); }} + children={} address={signerAddress} buttonText={t("send")} promptText={t("transaction_prompt", { button: t("send") })}