Add contract creator panel to address overview page
This commit is contained in:
parent
ee0ea1a2e3
commit
d00d6cba0b
|
@ -1,6 +1,10 @@
|
|||
import React, { useContext, useEffect, useMemo, useState } from "react";
|
||||
import { BlockTag } from "@ethersproject/providers";
|
||||
import ContentFrame from "../ContentFrame";
|
||||
import InfoRow from "../components/InfoRow";
|
||||
import TransactionAddress from "../components/TransactionAddress";
|
||||
import Copy from "../components/Copy";
|
||||
import TransactionLink from "../components/TransactionLink";
|
||||
import PendingResults from "../search/PendingResults";
|
||||
import ResultHeader from "../search/ResultHeader";
|
||||
import { SearchController } from "../search/search";
|
||||
|
@ -13,6 +17,7 @@ import { RuntimeContext } from "../useRuntime";
|
|||
import { useParams, useSearchParams } from "react-router-dom";
|
||||
import { ChecksummedAddress, ProcessedTransaction } from "../types";
|
||||
import { useContractsMetadata } from "../hooks";
|
||||
import { useContractCreator } from "../useErigonHooks";
|
||||
|
||||
type AddressTransactionResultsProps = {
|
||||
address: ChecksummedAddress;
|
||||
|
@ -117,31 +122,46 @@ const AddressTransactionResults: React.FC<AddressTransactionResultsProps> = ({
|
|||
return _addresses;
|
||||
}, [address, page]);
|
||||
const metadatas = useContractsMetadata(addresses, provider);
|
||||
const creator = useContractCreator(provider, address);
|
||||
|
||||
return (
|
||||
<ContentFrame tabs>
|
||||
<NavBar address={address} page={page} controller={controller} />
|
||||
<ResultHeader
|
||||
feeDisplay={feeDisplay}
|
||||
feeDisplayToggler={feeDisplayToggler}
|
||||
/>
|
||||
{page ? (
|
||||
<SelectionContext.Provider value={selectionCtx}>
|
||||
{page.map((tx) => (
|
||||
<TransactionItem
|
||||
key={tx.hash}
|
||||
tx={tx}
|
||||
selectedAddress={address}
|
||||
feeDisplay={feeDisplay}
|
||||
priceMap={priceMap}
|
||||
metadatas={metadatas}
|
||||
/>
|
||||
))}
|
||||
<NavBar address={address} page={page} controller={controller} />
|
||||
</SelectionContext.Provider>
|
||||
) : (
|
||||
<PendingResults />
|
||||
)}
|
||||
<SelectionContext.Provider value={selectionCtx}>
|
||||
<InfoRow title="Balance"></InfoRow>
|
||||
{creator && (
|
||||
<InfoRow title="Contract creator">
|
||||
<div className="flex items-baseline space-x-2 -ml-1">
|
||||
<TransactionAddress address={creator.creator} />
|
||||
<Copy value={creator.creator} />
|
||||
<span className="text-gray-400 text-xs">at</span>
|
||||
<span>tx:</span>
|
||||
<TransactionLink txHash={creator.hash} />
|
||||
</div>
|
||||
</InfoRow>
|
||||
)}
|
||||
<NavBar address={address} page={page} controller={controller} />
|
||||
<ResultHeader
|
||||
feeDisplay={feeDisplay}
|
||||
feeDisplayToggler={feeDisplayToggler}
|
||||
/>
|
||||
{page ? (
|
||||
<>
|
||||
{page.map((tx) => (
|
||||
<TransactionItem
|
||||
key={tx.hash}
|
||||
tx={tx}
|
||||
selectedAddress={address}
|
||||
feeDisplay={feeDisplay}
|
||||
priceMap={priceMap}
|
||||
metadatas={metadatas}
|
||||
/>
|
||||
))}
|
||||
<NavBar address={address} page={page} controller={controller} />
|
||||
</>
|
||||
) : (
|
||||
<PendingResults />
|
||||
)}
|
||||
</SelectionContext.Provider>
|
||||
</ContentFrame>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
export const MIN_API_LEVEL = 7;
|
||||
export const MIN_API_LEVEL = 8;
|
||||
|
||||
export const PAGE_SIZE = 25;
|
||||
|
|
|
@ -605,3 +605,56 @@ export const useTransactionBySenderAndNonce = (
|
|||
}
|
||||
return data;
|
||||
};
|
||||
|
||||
type ContractCreatorKey = {
|
||||
type: "cc";
|
||||
network: number;
|
||||
address: ChecksummedAddress;
|
||||
};
|
||||
|
||||
type ContractCreator = {
|
||||
hash: string;
|
||||
creator: ChecksummedAddress;
|
||||
};
|
||||
|
||||
export const useContractCreator = (
|
||||
provider: JsonRpcProvider | undefined,
|
||||
address: ChecksummedAddress | undefined
|
||||
): ContractCreator | null | undefined => {
|
||||
const { data, error } = useSWR<
|
||||
ContractCreator | null | undefined,
|
||||
any,
|
||||
ContractCreatorKey | null
|
||||
>(
|
||||
provider && address
|
||||
? {
|
||||
type: "cc",
|
||||
network: provider.network.chainId,
|
||||
address,
|
||||
}
|
||||
: null,
|
||||
getContractCreatorFetcher(provider!)
|
||||
);
|
||||
|
||||
if (error) {
|
||||
return undefined;
|
||||
}
|
||||
return data as ContractCreator;
|
||||
};
|
||||
|
||||
const getContractCreatorFetcher =
|
||||
(provider: JsonRpcProvider) =>
|
||||
async ({
|
||||
network,
|
||||
address,
|
||||
}: ContractCreatorKey): Promise<ContractCreator | null | undefined> => {
|
||||
const result = (await provider.send("ots_experimentalGetContractCreator", [
|
||||
address,
|
||||
])) as ContractCreator;
|
||||
|
||||
// Empty or success
|
||||
if (result) {
|
||||
result.creator = provider.formatter.address(result.creator);
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue