-
Notifications
You must be signed in to change notification settings - Fork 917
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Rinat <rinat@hey.com> Co-authored-by: Shiv Bhonde | shivbhonde.eth <shivbhonde04@gmail.com> Co-authored-by: CJ <53488449+0xChijoke@users.noreply.github.com> Co-authored-by: Zak G <zakgriffith@gmail.com> Co-authored-by: owlwilderness.eth <98717833+OwlWilderness@users.noreply.github.com> Co-authored-by: port <108868128+portdeveloper@users.noreply.github.com> Co-authored-by: Pierre Bertet <hi@bpier.re> Co-authored-by: isabellewei <isabelle.wei@yahoo.ca> Co-authored-by: Filip Harald <Filip.harald@gmail.com>
- Loading branch information
1 parent
0808571
commit 9c967d9
Showing
30 changed files
with
359 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
"create-eth": patch | ||
--- | ||
|
||
1. Fix RainbowKitCustomConnectButton dropdown styles (#500) | ||
|
||
2. chore: footer missalignment & home page on small screens (#502) | ||
|
||
3. Update and typescript version (#499) | ||
|
||
4. fix: header links wrapping icons and text (#510) | ||
|
||
5. Fix typos in useScaffoldContractWrite logs (#512) | ||
|
||
6. fix: spelling in test file name (#522) | ||
|
||
7. Add polygonZkEvm and polygonZkEvmTestnet (#309) | ||
|
||
8. fix: eth price showing 0 on sepolia network (#532) | ||
|
||
9. use websockets client in useFetchBlocks hooks (#529) | ||
|
||
10. Move from react-blockies to blo (#538) | ||
|
||
11. add Prettify type helper locally (#541) | ||
|
||
12. update hardhat version (#546) | ||
|
||
13. Add indexed args to events (#540) | ||
|
||
14. add out of box compatibility with SAFE{Wallet} (#346) | ||
|
||
15. remove parseEther from useScaffoldContractWrite (#548) | ||
|
||
16. Add Scroll Sepolia testnet (#547) | ||
|
||
17. use BuidlGuidl logo on footer (#551) | ||
|
||
18. add types to even data in useScaffoldEventHistory (#553) | ||
|
||
19. foundry: add chain id 31337 while forking chain (#531) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
templates/base/packages/nextjs/components/assets/BuidlGuidlLogo.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
export const BuidlGuidlLogo = ({ className }: { className: string }) => { | ||
return ( | ||
<svg | ||
className={className} | ||
width="53" | ||
height="72" | ||
viewBox="0 0 53 72" | ||
fill="currentColor" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
fillRule="evenodd" | ||
d="M25.9 17.434v15.638h3.927v9.04h9.718v-9.04h6.745v18.08l-10.607 19.88-12.11-.182-12.11.183L.856 51.152v-18.08h6.713v9.04h9.75v-9.04h4.329V2.46a2.126 2.126 0 0 1 4.047-.914c1.074.412 2.157 1.5 3.276 2.626 1.33 1.337 2.711 2.726 4.193 3.095 1.496.373 2.605-.026 3.855-.475 1.31-.47 2.776-.997 5.005-.747 1.67.197 2.557 1.289 3.548 2.509 1.317 1.623 2.82 3.473 6.599 3.752l-.024.017c-2.42 1.709-5.726 4.043-10.86 3.587-1.605-.139-2.736-.656-3.82-1.153-1.546-.707-2.997-1.37-5.59-.832-2.809.563-4.227 1.892-5.306 2.903-.236.221-.456.427-.67.606Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
}; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 12 additions & 9 deletions
21
templates/base/packages/nextjs/components/scaffold-eth/BlockieAvatar.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
import { AvatarComponent } from "@rainbow-me/rainbowkit"; | ||
import Blockies from "react-blockies"; | ||
import { blo } from "blo"; | ||
|
||
// Custom Avatar for RainbowKit | ||
export const BlockieAvatar: AvatarComponent = ({ address, ensImage, size }) => | ||
ensImage ? ( | ||
// Don't want to use nextJS Image here (and adding remote patterns for the URL) | ||
// eslint-disable-next-line | ||
<img className="rounded-full" src={ensImage} width={size} height={size} alt={`${address} avatar`} /> | ||
) : ( | ||
<Blockies className="rounded-full" seed={address?.toLowerCase() as string} scale={size > 30 ? 10 : 3.75} /> | ||
); | ||
export const BlockieAvatar: AvatarComponent = ({ address, ensImage, size }) => ( | ||
// Don't want to use nextJS Image here (and adding remote patterns for the URL) | ||
// eslint-disable-next-line @next/next/no-img-element | ||
<img | ||
className="rounded-full" | ||
src={ensImage || blo(address as `0x${string}`)} | ||
width={size} | ||
height={size} | ||
alt={`${address} avatar`} | ||
/> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.