gitextract_zhocjkyg/ ├── .dockerignore ├── .eslintrc.js ├── .github/ │ ├── CODEOWNERS │ ├── actions/ │ │ └── base-setup/ │ │ └── action.yaml │ ├── dependabot.yaml │ └── workflows/ │ ├── cicd.yaml │ └── securesdlc.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierrc ├── .vscode/ │ └── settings.json ├── Dockerfile ├── README.md ├── amplify.yml ├── cspell/ │ └── project-words.txt ├── cspell.json ├── eslint.config.js ├── global-env.d.ts ├── next-env.d.ts ├── next-sitemap.config.js ├── next.config.mjs ├── package.json ├── postcss.config.js ├── src/ │ ├── components/ │ │ ├── AddNetworkButton.tsx │ │ ├── BlockExplorersContentWrapper.tsx │ │ ├── BridgesContentWrapper.tsx │ │ ├── Button.tsx │ │ ├── CommunityContentWrapper.tsx │ │ ├── CopyButton.tsx │ │ ├── CopyableCode.tsx │ │ ├── CrosschainContentWrapper.tsx │ │ ├── DownloadButton.tsx │ │ ├── FaucetsContentWrapper.tsx │ │ ├── Footer.tsx │ │ ├── Head.tsx │ │ ├── MultisigContentWrapper.tsx │ │ ├── SidebarTitleComponent.tsx │ │ ├── TestnetDisclaimer.tsx │ │ ├── ThemeToggle.tsx │ │ └── Toc.tsx │ ├── content/ │ │ └── shared/ │ │ ├── _badges.mdx │ │ ├── block-explorers-content.mdx │ │ ├── bridges-content.mdx │ │ ├── community-content.mdx │ │ ├── crosschain-content.mdx │ │ ├── faucets-content.mdx │ │ └── multisig-content.mdx │ ├── fonts.ts │ ├── globals.css │ ├── icons/ │ │ ├── Check.tsx │ │ ├── ConnectedPulse.tsx │ │ ├── Download.tsx │ │ ├── InkLogo.tsx │ │ ├── Moon.tsx │ │ ├── Pencil.tsx │ │ ├── Sun.tsx │ │ └── ThumbUp.tsx │ ├── pages/ │ │ ├── 404.mdx │ │ ├── 500.mdx │ │ ├── _app.mdx │ │ ├── _meta.json │ │ ├── build/ │ │ │ ├── _meta.json │ │ │ ├── getting-started.mdx │ │ │ ├── ink-kit.mdx │ │ │ ├── onchain-clients.mdx │ │ │ ├── transaction-fees.mdx │ │ │ ├── tutorials/ │ │ │ │ ├── _meta.json │ │ │ │ ├── deploying-a-smart-contract/ │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── foundry.mdx │ │ │ │ │ ├── hardhat.mdx │ │ │ │ │ └── remix.mdx │ │ │ │ ├── deploying-a-superchainerc20.mdx │ │ │ │ ├── shipping-on-the-superchain.mdx │ │ │ │ └── verify-smart-contract.mdx │ │ │ ├── tutorials.mdx │ │ │ └── verify.mdx │ │ ├── faq.mdx │ │ ├── general/ │ │ │ ├── _meta.json │ │ │ ├── about.mdx │ │ │ ├── connect-wallet.mdx │ │ │ ├── faucet.mdx │ │ │ ├── network-information.mdx │ │ │ ├── support/ │ │ │ │ ├── _meta.json │ │ │ │ └── troubleshooting.mdx │ │ │ └── support.mdx │ │ ├── index.mdx │ │ ├── ink-builder-program/ │ │ │ ├── _meta.json │ │ │ ├── echo-program.mdx │ │ │ ├── forge-program.mdx │ │ │ ├── office-hours.mdx │ │ │ ├── overview.mdx │ │ │ └── spark-program.mdx │ │ ├── status.mdx │ │ ├── tools/ │ │ │ ├── _meta.json │ │ │ ├── account-abstraction.mdx │ │ │ ├── block-explorers.mdx │ │ │ ├── bridges.mdx │ │ │ ├── crosschain.mdx │ │ │ ├── faucets.mdx │ │ │ ├── indexers.mdx │ │ │ ├── multisig.mdx │ │ │ ├── oracles.mdx │ │ │ ├── rpc.mdx │ │ │ ├── security.mdx │ │ │ └── vrf.mdx │ │ ├── useful-information/ │ │ │ ├── _meta.json │ │ │ ├── contracts.mdx │ │ │ ├── ink-contracts.mdx │ │ │ ├── ink-token-contracts.mdx │ │ │ └── the-superchain.mdx │ │ └── work-with-ink/ │ │ ├── _meta.json │ │ ├── brand-kit.mdx │ │ ├── community.mdx │ │ └── contributing.mdx │ ├── types/ │ │ └── mdx.d.ts │ └── utils/ │ ├── networks.ts │ └── urls.ts ├── tailwind.config.js ├── theme.config.tsx └── tsconfig.json