├── .eslintrc.json ├── .gitignore ├── .gitmodules ├── .prettierrc.js ├── LICENSE ├── README.md ├── next.config.js ├── package.json ├── public ├── images │ ├── abstract-logo.svg │ ├── added-triangle-icon.svg │ ├── arbitrum-one-logo.svg │ ├── armadillo-dark.png │ ├── armadillo-light.png │ ├── arrow-icon.svg │ ├── base-logo.svg │ ├── blast-logo.svg │ ├── bottom-right-corner-dark.svg │ ├── bottom-right-corner-light.svg │ ├── bottom-right-shadow.svg │ ├── checkmark-icon.svg │ ├── chevron-down-icon.svg │ ├── chevron-right-icon.svg │ ├── close-icon.svg │ ├── copy-icon.svg │ ├── discord-icon.svg │ ├── docs-icon.svg │ ├── email-icon.svg │ ├── favicon.ico │ ├── github-icon.svg │ ├── ink-logo.svg │ ├── kakarot-logo.svg │ ├── l2beat-icon.svg │ ├── limechain-logo.svg │ ├── linea-dark-logo.svg │ ├── linea-logo.svg │ ├── link-icon-dark-active.png │ ├── link-icon-light-active.png │ ├── link-icon.png │ ├── link-icon.svg │ ├── minus-gradient-icon.svg │ ├── minus-gray-icon.svg │ ├── modified-triangle-icon.svg │ ├── moon-icon.svg │ ├── not-found-icon.svg │ ├── optimism-logo.svg │ ├── plus-gradient-icon.svg │ ├── plus-gray-icon.svg │ ├── plus-icon.svg │ ├── polygon-zkevm-logo.svg │ ├── question-mark-icon.svg │ ├── reference-icon.svg │ ├── scroll-logo.svg │ ├── soneium-logo.svg │ ├── sun-icon.svg │ ├── taiko-logo.svg │ ├── thumbnail.png │ ├── top-left-corner-dark.svg │ ├── top-left-corner-light.svg │ ├── top-left-shadow.svg │ ├── unsupported-triangle-icon.svg │ ├── website-icon.svg │ ├── world-chain-logo.svg │ ├── x-icon.svg │ ├── zircuit-logo.svg │ └── zksync-era-logo.svg └── js │ └── details.js ├── src ├── components │ ├── Avatar │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Breadcrumbs │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Container │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── DropdownLinks │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Feedback │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Footer │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── GoogleAnalytics │ │ └── index.tsx │ ├── Grid │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Hero │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Icon │ │ ├── icons.tsx │ │ └── index.tsx │ ├── Label │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Labels │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Layout │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── LinksGroup │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Loading │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── MCPBanner │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── MCPSection │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── MDXShortcodes │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Nav │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── RollupSummaryCard │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Section │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── ThemeSwitch │ │ ├── index.tsx │ │ └── styles.module.scss │ └── Typography │ │ ├── index.tsx │ │ └── styles.module.scss ├── docs │ ├── abstract.mdx │ ├── arbitrum-one.mdx │ ├── base.mdx │ ├── blast.mdx │ ├── ink.mdx │ ├── kakarot.mdx │ ├── linea.mdx │ ├── optimism.mdx │ ├── polygon-zkevm.mdx │ ├── scroll.mdx │ ├── soneium.mdx │ ├── taiko.mdx │ ├── world-chain.mdx │ ├── zircuit.mdx │ └── zksync-era.mdx ├── hooks │ ├── useBreadcrumbs.tsx │ ├── useLastModifiedDate.tsx │ ├── useScreenModes.tsx │ └── useScrollTo.tsx ├── pages │ ├── 404.tsx │ ├── 500.tsx │ ├── [slug] │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── _app.tsx │ ├── _document.tsx │ ├── index.tsx │ └── privacy-policy │ │ ├── index.tsx │ │ └── styles.module.scss ├── styles │ ├── error.module.scss │ ├── globals.scss │ └── mixins.scss └── utils │ ├── chain-spec-info.ts │ └── types.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/package.json -------------------------------------------------------------------------------- /public/images/abstract-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/abstract-logo.svg -------------------------------------------------------------------------------- /public/images/added-triangle-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/added-triangle-icon.svg -------------------------------------------------------------------------------- /public/images/arbitrum-one-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/arbitrum-one-logo.svg -------------------------------------------------------------------------------- /public/images/armadillo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/armadillo-dark.png -------------------------------------------------------------------------------- /public/images/armadillo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/armadillo-light.png -------------------------------------------------------------------------------- /public/images/arrow-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/arrow-icon.svg -------------------------------------------------------------------------------- /public/images/base-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/base-logo.svg -------------------------------------------------------------------------------- /public/images/blast-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/blast-logo.svg -------------------------------------------------------------------------------- /public/images/bottom-right-corner-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/bottom-right-corner-dark.svg -------------------------------------------------------------------------------- /public/images/bottom-right-corner-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/bottom-right-corner-light.svg -------------------------------------------------------------------------------- /public/images/bottom-right-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/bottom-right-shadow.svg -------------------------------------------------------------------------------- /public/images/checkmark-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/checkmark-icon.svg -------------------------------------------------------------------------------- /public/images/chevron-down-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/chevron-down-icon.svg -------------------------------------------------------------------------------- /public/images/chevron-right-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/chevron-right-icon.svg -------------------------------------------------------------------------------- /public/images/close-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/close-icon.svg -------------------------------------------------------------------------------- /public/images/copy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/copy-icon.svg -------------------------------------------------------------------------------- /public/images/discord-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/discord-icon.svg -------------------------------------------------------------------------------- /public/images/docs-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/docs-icon.svg -------------------------------------------------------------------------------- /public/images/email-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/email-icon.svg -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/github-icon.svg -------------------------------------------------------------------------------- /public/images/ink-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/ink-logo.svg -------------------------------------------------------------------------------- /public/images/kakarot-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/kakarot-logo.svg -------------------------------------------------------------------------------- /public/images/l2beat-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/l2beat-icon.svg -------------------------------------------------------------------------------- /public/images/limechain-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/limechain-logo.svg -------------------------------------------------------------------------------- /public/images/linea-dark-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/linea-dark-logo.svg -------------------------------------------------------------------------------- /public/images/linea-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/linea-logo.svg -------------------------------------------------------------------------------- /public/images/link-icon-dark-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/link-icon-dark-active.png -------------------------------------------------------------------------------- /public/images/link-icon-light-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/link-icon-light-active.png -------------------------------------------------------------------------------- /public/images/link-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/link-icon.png -------------------------------------------------------------------------------- /public/images/link-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/link-icon.svg -------------------------------------------------------------------------------- /public/images/minus-gradient-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/minus-gradient-icon.svg -------------------------------------------------------------------------------- /public/images/minus-gray-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/minus-gray-icon.svg -------------------------------------------------------------------------------- /public/images/modified-triangle-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/modified-triangle-icon.svg -------------------------------------------------------------------------------- /public/images/moon-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/moon-icon.svg -------------------------------------------------------------------------------- /public/images/not-found-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/not-found-icon.svg -------------------------------------------------------------------------------- /public/images/optimism-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/optimism-logo.svg -------------------------------------------------------------------------------- /public/images/plus-gradient-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/plus-gradient-icon.svg -------------------------------------------------------------------------------- /public/images/plus-gray-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/plus-gray-icon.svg -------------------------------------------------------------------------------- /public/images/plus-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/plus-icon.svg -------------------------------------------------------------------------------- /public/images/polygon-zkevm-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/polygon-zkevm-logo.svg -------------------------------------------------------------------------------- /public/images/question-mark-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/question-mark-icon.svg -------------------------------------------------------------------------------- /public/images/reference-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/reference-icon.svg -------------------------------------------------------------------------------- /public/images/scroll-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/scroll-logo.svg -------------------------------------------------------------------------------- /public/images/soneium-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/soneium-logo.svg -------------------------------------------------------------------------------- /public/images/sun-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/sun-icon.svg -------------------------------------------------------------------------------- /public/images/taiko-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/taiko-logo.svg -------------------------------------------------------------------------------- /public/images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/thumbnail.png -------------------------------------------------------------------------------- /public/images/top-left-corner-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/top-left-corner-dark.svg -------------------------------------------------------------------------------- /public/images/top-left-corner-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/top-left-corner-light.svg -------------------------------------------------------------------------------- /public/images/top-left-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/top-left-shadow.svg -------------------------------------------------------------------------------- /public/images/unsupported-triangle-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/unsupported-triangle-icon.svg -------------------------------------------------------------------------------- /public/images/website-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/website-icon.svg -------------------------------------------------------------------------------- /public/images/world-chain-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/world-chain-logo.svg -------------------------------------------------------------------------------- /public/images/x-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/x-icon.svg -------------------------------------------------------------------------------- /public/images/zircuit-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/zircuit-logo.svg -------------------------------------------------------------------------------- /public/images/zksync-era-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/images/zksync-era-logo.svg -------------------------------------------------------------------------------- /public/js/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/public/js/details.js -------------------------------------------------------------------------------- /src/components/Avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Avatar/index.tsx -------------------------------------------------------------------------------- /src/components/Avatar/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Avatar/styles.module.scss -------------------------------------------------------------------------------- /src/components/Breadcrumbs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Breadcrumbs/index.tsx -------------------------------------------------------------------------------- /src/components/Breadcrumbs/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Breadcrumbs/styles.module.scss -------------------------------------------------------------------------------- /src/components/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Container/index.tsx -------------------------------------------------------------------------------- /src/components/Container/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Container/styles.module.scss -------------------------------------------------------------------------------- /src/components/DropdownLinks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/DropdownLinks/index.tsx -------------------------------------------------------------------------------- /src/components/DropdownLinks/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/DropdownLinks/styles.module.scss -------------------------------------------------------------------------------- /src/components/Feedback/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Feedback/index.tsx -------------------------------------------------------------------------------- /src/components/Feedback/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Feedback/styles.module.scss -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Footer/styles.module.scss -------------------------------------------------------------------------------- /src/components/GoogleAnalytics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/GoogleAnalytics/index.tsx -------------------------------------------------------------------------------- /src/components/Grid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Grid/index.tsx -------------------------------------------------------------------------------- /src/components/Grid/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Grid/styles.module.scss -------------------------------------------------------------------------------- /src/components/Hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Hero/index.tsx -------------------------------------------------------------------------------- /src/components/Hero/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Hero/styles.module.scss -------------------------------------------------------------------------------- /src/components/Icon/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Icon/icons.tsx -------------------------------------------------------------------------------- /src/components/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Icon/index.tsx -------------------------------------------------------------------------------- /src/components/Label/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Label/index.tsx -------------------------------------------------------------------------------- /src/components/Label/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Label/styles.module.scss -------------------------------------------------------------------------------- /src/components/Labels/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Labels/index.tsx -------------------------------------------------------------------------------- /src/components/Labels/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Labels/styles.module.scss -------------------------------------------------------------------------------- /src/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Layout/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Layout/styles.module.scss -------------------------------------------------------------------------------- /src/components/LinksGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/LinksGroup/index.tsx -------------------------------------------------------------------------------- /src/components/LinksGroup/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/LinksGroup/styles.module.scss -------------------------------------------------------------------------------- /src/components/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Loading/index.tsx -------------------------------------------------------------------------------- /src/components/Loading/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Loading/styles.module.scss -------------------------------------------------------------------------------- /src/components/MCPBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/MCPBanner/index.tsx -------------------------------------------------------------------------------- /src/components/MCPBanner/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/MCPBanner/styles.module.scss -------------------------------------------------------------------------------- /src/components/MCPSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/MCPSection/index.tsx -------------------------------------------------------------------------------- /src/components/MCPSection/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/MCPSection/styles.module.scss -------------------------------------------------------------------------------- /src/components/MDXShortcodes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/MDXShortcodes/index.tsx -------------------------------------------------------------------------------- /src/components/MDXShortcodes/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/MDXShortcodes/styles.module.scss -------------------------------------------------------------------------------- /src/components/Nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Nav/index.tsx -------------------------------------------------------------------------------- /src/components/Nav/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Nav/styles.module.scss -------------------------------------------------------------------------------- /src/components/RollupSummaryCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/RollupSummaryCard/index.tsx -------------------------------------------------------------------------------- /src/components/RollupSummaryCard/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/RollupSummaryCard/styles.module.scss -------------------------------------------------------------------------------- /src/components/Section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Section/index.tsx -------------------------------------------------------------------------------- /src/components/Section/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Section/styles.module.scss -------------------------------------------------------------------------------- /src/components/ThemeSwitch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/ThemeSwitch/index.tsx -------------------------------------------------------------------------------- /src/components/ThemeSwitch/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/ThemeSwitch/styles.module.scss -------------------------------------------------------------------------------- /src/components/Typography/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Typography/index.tsx -------------------------------------------------------------------------------- /src/components/Typography/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/components/Typography/styles.module.scss -------------------------------------------------------------------------------- /src/docs/abstract.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/abstract.mdx -------------------------------------------------------------------------------- /src/docs/arbitrum-one.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/arbitrum-one.mdx -------------------------------------------------------------------------------- /src/docs/base.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/base.mdx -------------------------------------------------------------------------------- /src/docs/blast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/blast.mdx -------------------------------------------------------------------------------- /src/docs/ink.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/ink.mdx -------------------------------------------------------------------------------- /src/docs/kakarot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/kakarot.mdx -------------------------------------------------------------------------------- /src/docs/linea.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/linea.mdx -------------------------------------------------------------------------------- /src/docs/optimism.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/optimism.mdx -------------------------------------------------------------------------------- /src/docs/polygon-zkevm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/polygon-zkevm.mdx -------------------------------------------------------------------------------- /src/docs/scroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/scroll.mdx -------------------------------------------------------------------------------- /src/docs/soneium.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/soneium.mdx -------------------------------------------------------------------------------- /src/docs/taiko.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/taiko.mdx -------------------------------------------------------------------------------- /src/docs/world-chain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/world-chain.mdx -------------------------------------------------------------------------------- /src/docs/zircuit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/zircuit.mdx -------------------------------------------------------------------------------- /src/docs/zksync-era.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/docs/zksync-era.mdx -------------------------------------------------------------------------------- /src/hooks/useBreadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/hooks/useBreadcrumbs.tsx -------------------------------------------------------------------------------- /src/hooks/useLastModifiedDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/hooks/useLastModifiedDate.tsx -------------------------------------------------------------------------------- /src/hooks/useScreenModes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/hooks/useScreenModes.tsx -------------------------------------------------------------------------------- /src/hooks/useScrollTo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/hooks/useScrollTo.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/pages/500.tsx -------------------------------------------------------------------------------- /src/pages/[slug]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/pages/[slug]/index.tsx -------------------------------------------------------------------------------- /src/pages/[slug]/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/pages/[slug]/styles.module.scss -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/privacy-policy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/pages/privacy-policy/index.tsx -------------------------------------------------------------------------------- /src/pages/privacy-policy/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/pages/privacy-policy/styles.module.scss -------------------------------------------------------------------------------- /src/styles/error.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/styles/error.module.scss -------------------------------------------------------------------------------- /src/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/styles/globals.scss -------------------------------------------------------------------------------- /src/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/styles/mixins.scss -------------------------------------------------------------------------------- /src/utils/chain-spec-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/utils/chain-spec-info.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/RollupCodes/HEAD/tsconfig.json --------------------------------------------------------------------------------