├── .gitignore ├── LICENSE ├── README.md ├── components ├── counters.module.css ├── counters.tsx └── switch_network_button.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _meta.json ├── about.mdx ├── deployments │ ├── _meta.json │ ├── gas_modified.mdx │ └── rollup.mdx ├── fees.mdx ├── index.mdx ├── network_info.mdx ├── network_info │ ├── _meta.json │ ├── mainnet.mdx │ └── testnet.mdx ├── overview.mdx ├── tools_integrations │ ├── _meta.json │ ├── block_explorer.md │ └── faucets.md ├── using_frame.mdx ├── using_frame │ ├── _meta.json │ ├── funding.mdx │ ├── setting_up.mdx │ └── withdrawals.mdx ├── validator.mdx └── your_first_nft_set │ ├── _meta.json │ ├── foundry │ ├── _meta.json │ ├── deploying_on_frame.mdx │ ├── metadata.mdx │ ├── setting_up_environment.mdx │ └── writing_the_contract.mdx │ ├── introduction.mdx │ └── thirdweb.mdx ├── public ├── apple-icon-180x180.png ├── assets │ ├── condition_thirdweb.png │ ├── detail_thirdweb.png │ ├── mint-1.png │ ├── mint-2.png │ ├── nft_thirdweb.png │ ├── upload_thirdweb.png │ ├── verification-1.png │ ├── verification-2.png │ └── verification-3.png ├── favicon-96x96.png ├── favicon.ico └── logo.png ├── theme.config.tsx ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | 4 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/README.md -------------------------------------------------------------------------------- /components/counters.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/components/counters.module.css -------------------------------------------------------------------------------- /components/counters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/components/counters.tsx -------------------------------------------------------------------------------- /components/switch_network_button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/components/switch_network_button.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/package.json -------------------------------------------------------------------------------- /pages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/_meta.json -------------------------------------------------------------------------------- /pages/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/about.mdx -------------------------------------------------------------------------------- /pages/deployments/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/deployments/_meta.json -------------------------------------------------------------------------------- /pages/deployments/gas_modified.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/deployments/gas_modified.mdx -------------------------------------------------------------------------------- /pages/deployments/rollup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/deployments/rollup.mdx -------------------------------------------------------------------------------- /pages/fees.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/fees.mdx -------------------------------------------------------------------------------- /pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/index.mdx -------------------------------------------------------------------------------- /pages/network_info.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/network_info.mdx -------------------------------------------------------------------------------- /pages/network_info/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/network_info/_meta.json -------------------------------------------------------------------------------- /pages/network_info/mainnet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/network_info/mainnet.mdx -------------------------------------------------------------------------------- /pages/network_info/testnet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/network_info/testnet.mdx -------------------------------------------------------------------------------- /pages/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/overview.mdx -------------------------------------------------------------------------------- /pages/tools_integrations/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/tools_integrations/_meta.json -------------------------------------------------------------------------------- /pages/tools_integrations/block_explorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/tools_integrations/block_explorer.md -------------------------------------------------------------------------------- /pages/tools_integrations/faucets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/tools_integrations/faucets.md -------------------------------------------------------------------------------- /pages/using_frame.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/using_frame.mdx -------------------------------------------------------------------------------- /pages/using_frame/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/using_frame/_meta.json -------------------------------------------------------------------------------- /pages/using_frame/funding.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/using_frame/funding.mdx -------------------------------------------------------------------------------- /pages/using_frame/setting_up.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/using_frame/setting_up.mdx -------------------------------------------------------------------------------- /pages/using_frame/withdrawals.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/using_frame/withdrawals.mdx -------------------------------------------------------------------------------- /pages/validator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/validator.mdx -------------------------------------------------------------------------------- /pages/your_first_nft_set/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/your_first_nft_set/_meta.json -------------------------------------------------------------------------------- /pages/your_first_nft_set/foundry/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/your_first_nft_set/foundry/_meta.json -------------------------------------------------------------------------------- /pages/your_first_nft_set/foundry/deploying_on_frame.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/your_first_nft_set/foundry/deploying_on_frame.mdx -------------------------------------------------------------------------------- /pages/your_first_nft_set/foundry/metadata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/your_first_nft_set/foundry/metadata.mdx -------------------------------------------------------------------------------- /pages/your_first_nft_set/foundry/setting_up_environment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/your_first_nft_set/foundry/setting_up_environment.mdx -------------------------------------------------------------------------------- /pages/your_first_nft_set/foundry/writing_the_contract.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/your_first_nft_set/foundry/writing_the_contract.mdx -------------------------------------------------------------------------------- /pages/your_first_nft_set/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/your_first_nft_set/introduction.mdx -------------------------------------------------------------------------------- /pages/your_first_nft_set/thirdweb.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/pages/your_first_nft_set/thirdweb.mdx -------------------------------------------------------------------------------- /public/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/assets/condition_thirdweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/assets/condition_thirdweb.png -------------------------------------------------------------------------------- /public/assets/detail_thirdweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/assets/detail_thirdweb.png -------------------------------------------------------------------------------- /public/assets/mint-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/assets/mint-1.png -------------------------------------------------------------------------------- /public/assets/mint-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/assets/mint-2.png -------------------------------------------------------------------------------- /public/assets/nft_thirdweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/assets/nft_thirdweb.png -------------------------------------------------------------------------------- /public/assets/upload_thirdweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/assets/upload_thirdweb.png -------------------------------------------------------------------------------- /public/assets/verification-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/assets/verification-1.png -------------------------------------------------------------------------------- /public/assets/verification-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/assets/verification-2.png -------------------------------------------------------------------------------- /public/assets/verification-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/assets/verification-3.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/public/logo.png -------------------------------------------------------------------------------- /theme.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/theme.config.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-network/frame-docs/HEAD/yarn.lock --------------------------------------------------------------------------------