-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathTxnHash.tsx
40 lines (33 loc) · 1.1 KB
/
TxnHash.tsx
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
import React, { useMemo } from "react";
import styled from "styled-components";
import NewTabIcon from "svgs/icons/new-tab.svg";
import { getTxnExplorerLink } from "src/utils";
import { ExternalLink } from "./ExternalLink";
const TxnLabel = styled.label<{ variant: string }>`
display: flex;
gap: 4px;
color: ${({ theme, variant }) => (variant === "pending" ? theme.primaryBlue : theme[variant])};
cursor: pointer;
path {
fill: ${({ theme, variant }) => (variant === "pending" ? theme.primaryBlue : theme[variant])};
}
`;
interface ITxnHash {
hash: `0x${string}`;
variant: "success" | "error" | "pending";
}
const TxnHash: React.FC<ITxnHash> = ({ hash, variant }) => {
const transactionExplorerLink = useMemo(() => {
return getTxnExplorerLink(hash);
}, [hash]);
return (
<ExternalLink to={transactionExplorerLink} rel="noopener noreferrer" target="_blank">
<TxnLabel {...{ variant }}>
{" "}
<span>{hash.substring(0, 6) + "..." + hash.substring(hash.length - 4)}</span>
<NewTabIcon />
</TxnLabel>
</ExternalLink>
);
};
export default TxnHash;