blob: 3bd1e65c4c492daa0ed7206c6ef84ac8758511bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
import React, { useState, Dispatch, SetStateAction } from "react";
import { TezosToolkit } from "@taquito/taquito";
const Transfers = ({
Tezos,
setUserBalance,
userAddress
}: {
Tezos: TezosToolkit;
setUserBalance: Dispatch<SetStateAction<number>>;
userAddress: string;
}): JSX.Element => {
const [recipient, setRecipient] = useState<string>("");
const [amount, setAmount] = useState<string>("");
const [loading, setLoading] = useState<boolean>(false);
const sendTransfer = async (): Promise<void> => {
if (recipient && amount) {
setLoading(true);
try {
const op = await Tezos.wallet
.transfer({ to: recipient, amount: parseInt(amount) })
.send();
await op.confirmation();
setRecipient("");
setAmount("");
const balance = await Tezos.tz.getBalance(userAddress);
setUserBalance(balance.toNumber());
} catch (error) {
console.log(error);
} finally {
setLoading(false);
}
}
};
return (
<div id="transfer-inputs">
<input
type="text"
placeholder="Recipient"
value={recipient}
onChange={e => setRecipient(e.target.value)}
/>
<input
type="number"
placeholder="Amount"
value={amount}
onChange={e => setAmount(e.target.value)}
/>
<button
className="button"
disabled={!recipient && !amount}
onClick={sendTransfer}
>
{loading ? (
<span>
<i className="fas fa-spinner fa-spin"></i> Please wait
</span>
) : (
<span>
<i className="far fa-paper-plane"></i> Send
</span>
)}
</button>
</div>
);
};
export default Transfers;
|