diff --git a/.changeset/real-rockets-rule.md b/.changeset/real-rockets-rule.md new file mode 100644 index 000000000..d961b109a --- /dev/null +++ b/.changeset/real-rockets-rule.md @@ -0,0 +1,10 @@ +--- +"create-eth": patch +--- + +- Add celo to networks (https://github.com/scaffold-eth/scaffold-eth-2/pull/980) +- fix: Input components in form tag (https://github.com/scaffold-eth/scaffold-eth-2/pull/992) +- fix: removed unecessary logs for decoding tx in block-explorer (https://github.com/scaffold-eth/scaffold-eth-2/pull/985) +- Remove hardcoded colors (https://github.com/scaffold-eth/scaffold-eth-2/pull/991) +- Fix typo in blockexplorer notification (https://github.com/scaffold-eth/scaffold-eth-2/pull/995) +- Prettier for solidity (https://github.com/scaffold-eth/scaffold-eth-2/pull/994) diff --git a/README.md b/README.md index 99bbe8435..c2434a1f2 100644 --- a/README.md +++ b/README.md @@ -73,15 +73,18 @@ Run smart contract test with `yarn hardhat:test` or `yarn foundry:test` dependin **What's next**: -- Edit your smart contract `YourContract.sol` in `packages/hardhat/contracts` -- Edit your frontend homepage at `packages/nextjs/app/page.tsx`. For guidance on [routing](https://nextjs.org/docs/app/building-your-application/routing/defining-routes) and configuring [pages/layouts](https://nextjs.org/docs/app/building-your-application/routing/pages-and-layouts) checkout the Next.js documentation. -- Edit your deployment scripts in `packages/hardhat/deploy` -- Edit your smart contract test in: `packages/hardhat/test`. To run test use `yarn hardhat:test` -- You can add your Alchemy API Key in `scaffold.config.ts` if you want more reliability in your RPC requests. +Visit the [What's next section of our docs](https://docs.scaffoldeth.io/quick-start/environment#whats-next) to learn how to: + +- Edit your smart contracts +- Edit your deployment scripts +- Customize your frontend +- Edit the app config +- Writing and running tests +- [Setting up external services and API keys](https://docs.scaffoldeth.io/deploying/deploy-smart-contracts#configuration-of-third-party-services-for-production-grade-apps) ## Documentation -Visit our [docs](https://docs.scaffoldeth.io) to learn how to start building with Scaffold-ETH 2. +Visit our [docs](https://docs.scaffoldeth.io) to learn all the technical details and guides of Scaffold-ETH 2. To know more about its features, check out our [website](https://scaffoldeth.io). diff --git a/templates/base/packages/nextjs/app/blockexplorer/_components/PaginationButton.tsx b/templates/base/packages/nextjs/app/blockexplorer/_components/PaginationButton.tsx index 77aefbc14..15a4f62a6 100644 --- a/templates/base/packages/nextjs/app/blockexplorer/_components/PaginationButton.tsx +++ b/templates/base/packages/nextjs/app/blockexplorer/_components/PaginationButton.tsx @@ -12,8 +12,8 @@ export const PaginationButton = ({ currentPage, totalItems, setCurrentPage }: Pa const isPrevButtonDisabled = currentPage === 0; const isNextButtonDisabled = currentPage + 1 >= Math.ceil(totalItems / ITEMS_PER_PAGE); - const prevButtonClass = isPrevButtonDisabled ? "bg-gray-200 cursor-default" : "btn btn-primary"; - const nextButtonClass = isNextButtonDisabled ? "bg-gray-200 cursor-default" : "btn btn-primary"; + const prevButtonClass = isPrevButtonDisabled ? "btn-disabled cursor-default" : "btn-primary"; + const nextButtonClass = isNextButtonDisabled ? "btn-disabled cursor-default" : "btn-primary"; if (isNextButtonDisabled && isPrevButtonDisabled) return null; diff --git a/templates/base/packages/nextjs/app/blockexplorer/_components/SearchBar.tsx b/templates/base/packages/nextjs/app/blockexplorer/_components/SearchBar.tsx index e602096d3..9bd7618c0 100644 --- a/templates/base/packages/nextjs/app/blockexplorer/_components/SearchBar.tsx +++ b/templates/base/packages/nextjs/app/blockexplorer/_components/SearchBar.tsx @@ -35,7 +35,7 @@ export const SearchBar = () => { return (