mirror of
https://github.com/luxfi/explore.git
synced 2026-07-27 05:54:15 +00:00
* update styles for chain widgets on home page * update latest txs styles and slug creation algorithm * list of local txs * list of local blocks * local view for address internal tx tab * local view for address coin history * local view for address logs * local view for address token transfers * address details, kind of * [wip] local view for address contract tab * user ops views * chain popover * csv-export page * advanced filter page * block countdown pages * fixes for contract tab * refactor address txs and transfers tabs * refactor getServerSideProps * internal txs page * tokens and token transfers pages * simple tag for address page and details info placeholders * add chain icon to the local lists * show creator in contract tab * OP Superchain: local views for chains in the cluster Fixes #2827 * highlight current chain in the title of local entities * tokens nfts tab for address * allow entity icon to be an image * adjust cross-chain txs table and add placeholder to home page * cross-chain txs for address * fetch multichain config from microservice * fix skeleton in token transfers table * tests, pt.1 * wtf with gh * verified contracts page * change chain info in block and token page header * fix some tests * update styles for token icon with chain logo in header * fix links and address internal txs tab * update screenshots * fix margins for tx info button and chain icon in tx tables * add some tests * fix screenshots
20 lines
533 B
TypeScript
20 lines
533 B
TypeScript
import type { NextPage } from 'next';
|
|
import React from 'react';
|
|
|
|
import type { Props } from 'nextjs/getServerSideProps/handlers';
|
|
import PageNextJs from 'nextjs/PageNextJs';
|
|
|
|
import ContractVerification from 'ui/pages/ContractVerification';
|
|
|
|
const Page: NextPage<Props> = (props: Props) => {
|
|
return (
|
|
<PageNextJs pathname="/contract-verification" query={ props.query }>
|
|
<ContractVerification/>
|
|
</PageNextJs>
|
|
);
|
|
};
|
|
|
|
export default Page;
|
|
|
|
export { base as getServerSideProps } from 'nextjs/getServerSideProps/main';
|