2021-08-08 22:49:45 +00:00
|
|
|
import { BlockTag } from "@ethersproject/abstract-provider";
|
2021-07-23 22:46:21 +00:00
|
|
|
|
2021-07-09 16:54:59 +00:00
|
|
|
export const fourBytesURL = (
|
|
|
|
assetsURLPrefix: string,
|
|
|
|
fourBytes: string
|
|
|
|
): string => `${assetsURLPrefix}/signatures/${fourBytes}`;
|
|
|
|
|
|
|
|
export const tokenLogoURL = (
|
|
|
|
assetsURLPrefix: string,
|
|
|
|
address: string
|
|
|
|
): string => `${assetsURLPrefix}/assets/${address}/logo.png`;
|
2021-07-23 22:46:21 +00:00
|
|
|
|
2021-08-08 22:49:45 +00:00
|
|
|
export const blockURL = (blockNum: BlockTag) => `/block/${blockNum}`;
|
2021-07-23 22:46:21 +00:00
|
|
|
|
2021-08-08 22:49:45 +00:00
|
|
|
export const blockTxsURL = (blockNum: BlockTag) => `/block/${blockNum}/txs`;
|
2021-07-24 23:04:49 +00:00
|
|
|
|
2021-09-10 21:27:42 +00:00
|
|
|
export enum SourcifySource {
|
|
|
|
// Resolve trusted IPNS for root IPFS
|
|
|
|
IPFS_IPNS,
|
|
|
|
|
|
|
|
// Centralized Sourcify servers
|
|
|
|
CENTRAL_SERVER,
|
|
|
|
|
|
|
|
// Snapshot server
|
|
|
|
CUSTOM_SNAPSHOT_SERVER,
|
|
|
|
}
|
|
|
|
|
|
|
|
const sourcifyIPNS =
|
2021-09-05 19:55:37 +00:00
|
|
|
"k51qzi5uqu5dll0ocge71eudqnrgnogmbr37gsgl12uubsinphjoknl6bbi41p";
|
2021-09-13 01:03:56 +00:00
|
|
|
const ipfsGatewayPrefix = `http://localhost:8080/ipns/${sourcifyIPNS}`;
|
2021-09-06 21:32:11 +00:00
|
|
|
const sourcifyHttpRepoPrefix = `https://repo.sourcify.dev`;
|
2021-09-10 21:27:42 +00:00
|
|
|
const snapshotPrefix = "http://localhost:3006";
|
|
|
|
|
|
|
|
const resolveSourcifySource = (source: SourcifySource) => {
|
|
|
|
if (source === SourcifySource.IPFS_IPNS) {
|
|
|
|
return ipfsGatewayPrefix;
|
|
|
|
}
|
|
|
|
if (source === SourcifySource.CENTRAL_SERVER) {
|
|
|
|
return sourcifyHttpRepoPrefix;
|
|
|
|
}
|
|
|
|
return snapshotPrefix;
|
|
|
|
};
|
2021-09-05 19:55:37 +00:00
|
|
|
|
2021-07-24 23:04:49 +00:00
|
|
|
export const sourcifyMetadata = (
|
|
|
|
checksummedAddress: string,
|
2021-09-06 21:32:11 +00:00
|
|
|
networkId: number,
|
2021-09-10 21:27:42 +00:00
|
|
|
source: SourcifySource
|
2021-07-24 23:04:49 +00:00
|
|
|
) =>
|
2021-09-10 21:27:42 +00:00
|
|
|
`${resolveSourcifySource(
|
|
|
|
source
|
|
|
|
)}/contracts/full_match/${networkId}/${checksummedAddress}/metadata.json`;
|
2021-07-24 23:33:45 +00:00
|
|
|
|
|
|
|
export const sourcifySourceFile = (
|
|
|
|
checksummedAddress: string,
|
|
|
|
networkId: number,
|
2021-09-06 21:32:11 +00:00
|
|
|
filepath: string,
|
2021-09-10 21:27:42 +00:00
|
|
|
source: SourcifySource
|
2021-07-24 23:33:45 +00:00
|
|
|
) =>
|
2021-09-10 21:27:42 +00:00
|
|
|
`${resolveSourcifySource(
|
|
|
|
source
|
|
|
|
)}/contracts/full_match/${networkId}/${checksummedAddress}/sources/${filepath}`;
|
2021-09-06 07:14:49 +00:00
|
|
|
|
|
|
|
export const openInRemixURL = (checksummedAddress: string, networkId: number) =>
|
|
|
|
`https://remix.ethereum.org/#call=source-verification//fetchAndSave//${checksummedAddress}//${networkId}`;
|