otterscan/src/sourcify/useSourcify.ts

245 lines
5.3 KiB
TypeScript
Raw Normal View History

2022-08-10 07:58:16 +00:00
import { useMemo } from "react";
2021-09-15 17:43:36 +00:00
import { Interface } from "@ethersproject/abi";
2021-12-14 00:03:13 +00:00
import { ErrorDescription } from "@ethersproject/abi/lib/interface";
2022-08-09 22:23:38 +00:00
import useSWRImmutable from "swr/immutable";
2021-11-25 18:50:59 +00:00
import { ChecksummedAddress, TransactionData } from "../types";
import { sourcifyMetadata, SourcifySource, sourcifySourceFile } from "../url";
2022-08-22 21:02:17 +00:00
import { useAppConfigContext } from "../useAppConfig";
2021-09-06 00:08:06 +00:00
export type UserMethod = {
notice?: string | undefined;
};
export type UserEvent = {
notice?: string | undefined;
};
2021-12-14 00:03:13 +00:00
export type UserError = [
{
notice?: string | undefined;
}
];
export type UserDoc = {
kind: "user";
version?: number | undefined;
notice?: string | undefined;
methods: Record<string, UserMethod>;
events: Record<string, UserEvent>;
2021-12-14 00:03:13 +00:00
errors?: Record<string, UserError> | undefined;
};
export type DevMethod = {
params?: Record<string, string>;
returns?: Record<string, string>;
};
2021-12-14 00:03:13 +00:00
export type DevError = [
{
params?: Record<string, string>;
}
];
export type DevDoc = {
kind: "dev";
version?: number | undefined;
methods: Record<string, DevMethod>;
2021-12-14 00:03:13 +00:00
errors?: Record<string, DevError> | undefined;
};
2021-09-06 00:08:06 +00:00
export type Metadata = {
version: string;
language: string;
compiler: {
version: string;
keccak256?: string | undefined;
};
sources: {
[filename: string]: {
keccak256: string;
content?: string | undefined;
urls?: string[];
license?: string;
};
};
settings: {
remappings: string[];
optimizer?: {
enabled: boolean;
runs: number;
};
compilationTarget: {
[filename: string]: string;
};
libraries: {
[filename: string]: string;
};
};
output: {
abi: any[];
userdoc?: UserDoc | undefined;
devdoc?: DevDoc | undefined;
2021-09-06 00:08:06 +00:00
};
};
export enum MatchType {
FULL_MATCH,
PARTIAL_MATCH,
}
export type Match = {
type: MatchType;
metadata: Metadata;
};
const sourcifyFetcher = async (
_: "sourcify",
address: ChecksummedAddress,
chainId: number,
sourcifySource: SourcifySource
): Promise<Match | null | undefined> => {
// Try full match
try {
const url = sourcifyMetadata(
address,
chainId,
sourcifySource,
MatchType.FULL_MATCH
);
const res = await fetch(url);
if (res.ok) {
return {
type: MatchType.FULL_MATCH,
metadata: await res.json(),
};
}
} catch (err) {
console.info(
`error while getting Sourcify full_match metadata: chainId=${chainId} address=${address} err=${err}; falling back to partial_match`
);
}
// Fallback to try partial match
try {
const url = sourcifyMetadata(
address,
chainId,
sourcifySource,
MatchType.PARTIAL_MATCH
);
const res = await fetch(url);
if (res.ok) {
return {
type: MatchType.PARTIAL_MATCH,
metadata: await res.json(),
};
}
return null;
} catch (err) {
console.warn(
`error while getting Sourcify partial_match metadata: chainId=${chainId} address=${address} err=${err}`
);
return null;
}
};
2022-08-09 22:23:38 +00:00
export const useSourcifyMetadata = (
address: ChecksummedAddress | undefined,
2022-08-22 21:02:17 +00:00
chainId: number | undefined
): Match | null | undefined => {
2022-08-22 21:02:17 +00:00
const { sourcifySource } = useAppConfigContext();
2022-08-09 22:23:38 +00:00
const metadataURL = () =>
address === undefined || chainId === undefined
? null
: ["sourcify", address, chainId, sourcifySource];
const { data, error } = useSWRImmutable<Match | null | undefined>(
metadataURL,
sourcifyFetcher
2022-08-09 22:23:38 +00:00
);
if (error) {
return null;
}
return data;
2021-09-06 00:08:06 +00:00
};
2021-09-06 05:09:12 +00:00
const contractFetcher = async (url: string): Promise<string | null> => {
const res = await fetch(url);
if (res.ok) {
return await res.text();
}
return null;
};
2021-09-06 05:09:12 +00:00
export const useContract = (
checksummedAddress: string,
networkId: number,
filename: string,
sourcifySource: SourcifySource,
type: MatchType
2021-09-06 05:09:12 +00:00
) => {
const normalizedFilename = filename.replaceAll(/[@:]/g, "_");
const url = sourcifySourceFile(
checksummedAddress,
networkId,
normalizedFilename,
sourcifySource,
type
);
2021-09-06 05:09:12 +00:00
const { data, error } = useSWRImmutable(url, contractFetcher);
if (error) {
return undefined;
}
return data;
2021-09-06 05:09:12 +00:00
};
2021-09-15 17:43:36 +00:00
export const useTransactionDescription = (
metadata: Metadata | null | undefined,
txData: TransactionData | null | undefined
) => {
const txDesc = useMemo(() => {
2021-09-18 18:40:19 +00:00
if (metadata === null) {
return null;
}
2021-09-15 17:43:36 +00:00
if (!metadata || !txData) {
return undefined;
}
const abi = metadata.output.abi;
const intf = new Interface(abi as any);
2021-09-22 06:02:21 +00:00
try {
return intf.parseTransaction({
data: txData.data,
value: txData.value,
});
} catch (err) {
console.warn("Couldn't find function signature", err);
return null;
}
2021-09-15 17:43:36 +00:00
}, [metadata, txData]);
return txDesc;
};
2021-12-14 00:03:13 +00:00
export const useError = (
metadata: Metadata | null | undefined,
output: string | null | undefined
): ErrorDescription | null | undefined => {
const err = useMemo(() => {
if (!metadata || !output) {
return undefined;
}
const abi = metadata.output.abi;
const intf = new Interface(abi as any);
try {
return intf.parseError(output);
} catch (err) {
console.warn("Couldn't find error signature", err);
return null;
}
}, [metadata, output]);
return err;
};