-
Notifications
You must be signed in to change notification settings - Fork 22
/
utils.ts
217 lines (201 loc) · 5.57 KB
/
utils.ts
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
import { fromUnixTime, formatDistance, format } from "date-fns";
import { utc } from "@date-fns/utc";
import {
formatEther as viemFormatEther,
formatGwei as viemFormatGwei,
Address,
Hex,
TransactionType,
Log,
getAddress,
parseEventLogs,
erc20Abi,
erc721Abi,
Abi,
} from "viem";
import { AbiConstructor } from "abitype";
import { capitalize } from "lodash";
import { Erc20Transfer, NftTransfer } from "@/lib/types";
import erc1155Abi from "@/lib/contracts/erc-1155/abi";
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
export const sleep = (ms: number) =>
new Promise((resolve) => setTimeout(resolve, ms));
export const formatEther = (wei: bigint, precision = 5) =>
new Intl.NumberFormat("en-US", {
style: "decimal",
minimumFractionDigits: 0,
maximumFractionDigits: precision,
}).format(Number(viemFormatEther(wei)));
export const formatGwei = (wei: bigint, precision = 8) =>
new Intl.NumberFormat("en-US", {
style: "decimal",
minimumFractionDigits: 0,
maximumFractionDigits: precision,
}).format(Number(viemFormatGwei(wei)));
export const formatPrice = (price: number) =>
new Intl.NumberFormat("en-US", { style: "currency", currency: "USD" }).format(
price,
);
export const formatPercent = (
percent: number,
signDisplay: "auto" | "never" | "always" | "exceptZero" = "auto",
) =>
new Intl.NumberFormat("en-US", {
style: "percent",
maximumFractionDigits: 2,
signDisplay,
}).format(percent);
export const formatTimestamp = (timestamp: bigint) => {
const timestampDate = fromUnixTime(Number(timestamp));
return {
distance: formatDistance(timestampDate, new Date(), {
includeSeconds: true,
addSuffix: true,
}),
utc: format(utc(timestampDate), "MMM-dd-yyyy hh:mm:ss aa"),
};
};
export const formatAddress = (address: Address) =>
`${address.slice(0, 10)}…${address.slice(-8)}`;
export const formatNumber = (
value: number | bigint,
options?: Intl.NumberFormatOptions,
) => new Intl.NumberFormat("en-US", options).format(value);
export const formatGas = (value: bigint, total: bigint = BigInt(1)) => ({
value: formatNumber(value),
percentage: (Number(value) / Number(total)) * 100,
percentageFormatted: formatPercent(Number(value) / Number(total)),
});
export const formatTransactionType = (type: TransactionType, typeHex: Hex) => {
const typeString = type.startsWith("eip")
? `EIP-${type.slice(3)}`
: capitalize(type);
return `${Number(typeHex)} (${typeString})`;
};
export const parseErc20Transfers = (logs: Log[]): Erc20Transfer[] =>
parseEventLogs({
abi: erc20Abi,
eventName: "Transfer",
logs,
}).map(
({
blockNumber,
transactionIndex,
logIndex,
transactionHash,
args,
address,
}) => ({
blockNumber,
transactionIndex,
logIndex,
transactionHash,
address: getAddress(address),
from: getAddress(args.from),
to: getAddress(args.to),
value: args.value,
}),
);
export const parseErc721Transfers = (logs: Log[]): NftTransfer[] =>
parseEventLogs({
abi: erc721Abi,
eventName: "Transfer",
logs,
}).map(
({
blockNumber,
transactionIndex,
logIndex,
transactionHash,
args,
address,
}) => ({
blockNumber,
transactionIndex,
logIndex,
transactionHash,
address: getAddress(address),
operator: null,
from: getAddress(args.from),
to: getAddress(args.to),
tokenId: args.tokenId,
value: BigInt(1),
erc721TokenAddress: getAddress(address),
erc1155TokenAddress: null,
}),
);
export const parseErc1155Transfers = (logs: Log[]): NftTransfer[] => {
const transfersSingle = parseEventLogs({
abi: erc1155Abi,
eventName: "TransferSingle",
logs,
}).map(
({
blockNumber,
transactionIndex,
logIndex,
transactionHash,
args,
address,
}) => ({
blockNumber,
transactionIndex,
logIndex,
transactionHash,
address: getAddress(address),
operator: getAddress(args.operator),
from: getAddress(args.from),
to: getAddress(args.to),
tokenId: args.id,
value: args.value,
erc721TokenAddress: null,
erc1155TokenAddress: getAddress(address),
}),
);
const transfersBatch = parseEventLogs({
abi: erc1155Abi,
eventName: "TransferBatch",
logs,
}).reduce<NftTransfer[]>(
(
previousValue,
{
blockNumber,
transactionIndex,
logIndex,
transactionHash,
args,
address,
},
) => [
...previousValue,
...args.ids.map((tokenId, index) => ({
blockNumber,
transactionIndex,
logIndex,
transactionHash,
address: getAddress(address),
operator: getAddress(args.operator),
from: getAddress(args.from),
to: getAddress(args.to),
tokenId,
value: args.values[index] ?? BigInt(0),
erc721TokenAddress: null,
erc1155TokenAddress: getAddress(address),
})),
],
[],
);
return [...transfersSingle, ...transfersBatch];
};
export const getContractMetadata = (bytecode: Hex) => {
const last2Bytes = bytecode.slice(-4);
const cborLength = Number(`0x${last2Bytes}`);
return bytecode.slice(-cborLength * 2 - 4, -4);
};
export const findAbiConstructor = (abi: Abi) => {
const abiConstructor = abi.find(({ type }) => type === "constructor");
return abiConstructor ? (abiConstructor as AbiConstructor) : null;
};