├── .github └── workflows │ └── prettier.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── babel.config.js ├── docs ├── components │ ├── Address.md │ ├── AddressInput.md │ ├── Balance.md │ ├── BlockieAvatar.md │ ├── EtherInput.md │ ├── InputBase.md │ ├── IntergerInput.md │ ├── RainbowKitCustomConnectButton.md │ └── _category_.json ├── contributing │ ├── Issues.md │ ├── contributing.md │ └── pullRequests.md ├── deploying │ ├── _category_.json │ ├── deploy-nextjs-app.mdx │ └── deploy-smart-contracts.mdx ├── disable-type-linting-error-checks.md ├── extensions │ ├── _category_.json │ ├── createExtensions.md │ └── howToInstall.md ├── external-contracts │ └── external-contracts.md ├── hooks │ ├── hooks.md │ ├── useDeployedContractInfo.md │ ├── useScaffoldContract.md │ ├── useScaffoldEventHistory.md │ ├── useScaffoldReadContract.md │ ├── useScaffoldWatchContractEvent.md │ ├── useScaffoldWriteContract.md │ └── useTransactor.md ├── intro.md ├── quick-start │ ├── _category_.json │ ├── environment.mdx │ └── installation.mdx └── recipes │ ├── GetCurrentBalanceFromAccount.md │ ├── ReadUintFromContract.md │ ├── WagmiContractWriteWithFeedback.md │ ├── WriteToContractWriteAsyncButton.md │ ├── _category_.json │ └── add-custom-chain.mdx ├── docusaurus.config.js ├── funding.json ├── package.json ├── sidebars.js ├── src ├── css │ └── custom.css └── theme │ └── SearchBar │ └── index.js └── static ├── .nojekyll ├── img ├── AddressFull.png ├── AddressOnlyEnsOrAddress.png ├── Balance.gif ├── BlockieAvatar.png ├── Bytes32Input.png ├── BytesInput.png ├── EtherInput.gif ├── Faucet.png ├── FaucetButton.png ├── RainbowKitCustomConnectButton.gif ├── addressInput.gif ├── favicon.png ├── inputBase.png ├── integerInput.png ├── logo.svg ├── thumbnail.jpg ├── transactorFail.gif ├── transactorSuccess.gif ├── undraw_docusaurus_mountain.svg ├── undraw_docusaurus_react.svg └── undraw_docusaurus_tree.svg └── llms-full.txt /.github/workflows/prettier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/.github/workflows/prettier.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .docusaurus 3 | build -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .docusaurus 3 | build 4 | static 5 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/components/Address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/components/Address.md -------------------------------------------------------------------------------- /docs/components/AddressInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/components/AddressInput.md -------------------------------------------------------------------------------- /docs/components/Balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/components/Balance.md -------------------------------------------------------------------------------- /docs/components/BlockieAvatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/components/BlockieAvatar.md -------------------------------------------------------------------------------- /docs/components/EtherInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/components/EtherInput.md -------------------------------------------------------------------------------- /docs/components/InputBase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/components/InputBase.md -------------------------------------------------------------------------------- /docs/components/IntergerInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/components/IntergerInput.md -------------------------------------------------------------------------------- /docs/components/RainbowKitCustomConnectButton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/components/RainbowKitCustomConnectButton.md -------------------------------------------------------------------------------- /docs/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/components/_category_.json -------------------------------------------------------------------------------- /docs/contributing/Issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/contributing/Issues.md -------------------------------------------------------------------------------- /docs/contributing/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/contributing/contributing.md -------------------------------------------------------------------------------- /docs/contributing/pullRequests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/contributing/pullRequests.md -------------------------------------------------------------------------------- /docs/deploying/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/deploying/_category_.json -------------------------------------------------------------------------------- /docs/deploying/deploy-nextjs-app.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/deploying/deploy-nextjs-app.mdx -------------------------------------------------------------------------------- /docs/deploying/deploy-smart-contracts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/deploying/deploy-smart-contracts.mdx -------------------------------------------------------------------------------- /docs/disable-type-linting-error-checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/disable-type-linting-error-checks.md -------------------------------------------------------------------------------- /docs/extensions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/extensions/_category_.json -------------------------------------------------------------------------------- /docs/extensions/createExtensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/extensions/createExtensions.md -------------------------------------------------------------------------------- /docs/extensions/howToInstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/extensions/howToInstall.md -------------------------------------------------------------------------------- /docs/external-contracts/external-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/external-contracts/external-contracts.md -------------------------------------------------------------------------------- /docs/hooks/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/hooks/hooks.md -------------------------------------------------------------------------------- /docs/hooks/useDeployedContractInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/hooks/useDeployedContractInfo.md -------------------------------------------------------------------------------- /docs/hooks/useScaffoldContract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/hooks/useScaffoldContract.md -------------------------------------------------------------------------------- /docs/hooks/useScaffoldEventHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/hooks/useScaffoldEventHistory.md -------------------------------------------------------------------------------- /docs/hooks/useScaffoldReadContract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/hooks/useScaffoldReadContract.md -------------------------------------------------------------------------------- /docs/hooks/useScaffoldWatchContractEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/hooks/useScaffoldWatchContractEvent.md -------------------------------------------------------------------------------- /docs/hooks/useScaffoldWriteContract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/hooks/useScaffoldWriteContract.md -------------------------------------------------------------------------------- /docs/hooks/useTransactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/hooks/useTransactor.md -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/quick-start/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/quick-start/_category_.json -------------------------------------------------------------------------------- /docs/quick-start/environment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/quick-start/environment.mdx -------------------------------------------------------------------------------- /docs/quick-start/installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/quick-start/installation.mdx -------------------------------------------------------------------------------- /docs/recipes/GetCurrentBalanceFromAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/recipes/GetCurrentBalanceFromAccount.md -------------------------------------------------------------------------------- /docs/recipes/ReadUintFromContract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/recipes/ReadUintFromContract.md -------------------------------------------------------------------------------- /docs/recipes/WagmiContractWriteWithFeedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/recipes/WagmiContractWriteWithFeedback.md -------------------------------------------------------------------------------- /docs/recipes/WriteToContractWriteAsyncButton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/recipes/WriteToContractWriteAsyncButton.md -------------------------------------------------------------------------------- /docs/recipes/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/recipes/_category_.json -------------------------------------------------------------------------------- /docs/recipes/add-custom-chain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docs/recipes/add-custom-chain.mdx -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/funding.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/package.json -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/theme/SearchBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/src/theme/SearchBar/index.js -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/AddressFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/AddressFull.png -------------------------------------------------------------------------------- /static/img/AddressOnlyEnsOrAddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/AddressOnlyEnsOrAddress.png -------------------------------------------------------------------------------- /static/img/Balance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/Balance.gif -------------------------------------------------------------------------------- /static/img/BlockieAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/BlockieAvatar.png -------------------------------------------------------------------------------- /static/img/Bytes32Input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/Bytes32Input.png -------------------------------------------------------------------------------- /static/img/BytesInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/BytesInput.png -------------------------------------------------------------------------------- /static/img/EtherInput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/EtherInput.gif -------------------------------------------------------------------------------- /static/img/Faucet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/Faucet.png -------------------------------------------------------------------------------- /static/img/FaucetButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/FaucetButton.png -------------------------------------------------------------------------------- /static/img/RainbowKitCustomConnectButton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/RainbowKitCustomConnectButton.gif -------------------------------------------------------------------------------- /static/img/addressInput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/addressInput.gif -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/img/inputBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/inputBase.png -------------------------------------------------------------------------------- /static/img/integerInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/integerInput.png -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/thumbnail.jpg -------------------------------------------------------------------------------- /static/img/transactorFail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/transactorFail.gif -------------------------------------------------------------------------------- /static/img/transactorSuccess.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/transactorSuccess.gif -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /static/llms-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaffold-eth/se-2-docs/HEAD/static/llms-full.txt --------------------------------------------------------------------------------