forked from wevm/wagmi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
221 additions
and
26 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
type AuthorsProps = { | ||
date: string | ||
children: React.ReactNode | ||
} | ||
|
||
export function Authors({ date, children }: AuthorsProps) { | ||
return ( | ||
<div className="mt-4 mb-8 text-gray-400 text-sm"> | ||
{date} by{children} | ||
</div> | ||
) | ||
} | ||
|
||
type AuthorProps = { name: string; link: string } | ||
|
||
export function Author({ name, link }: AuthorProps) { | ||
return ( | ||
<span className="after:content-[','] last:after:content-['']"> | ||
<a | ||
key={name} | ||
href={link} | ||
target="_blank" | ||
className="mx-1 text-gray-800 dark:text-gray-100" | ||
> | ||
{name} | ||
</a> | ||
</span> | ||
) | ||
} |
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,43 @@ | ||
import Link from 'next/link' | ||
import type { Page } from 'nextra' | ||
// eslint-disable-next-line import/no-unresolved | ||
import { getPagesUnderRoute } from 'nextra/context' | ||
|
||
export function BlogIndex({ more = 'Read more' }) { | ||
return getPagesUnderRoute('/blog').map( | ||
( | ||
page: Page & { | ||
frontMatter?: { date?: string; description?: string; title?: string } | ||
}, | ||
) => { | ||
return ( | ||
<> | ||
<h1 className="text-center font-extrabold text-3xl mb-10 md:text-5xl mt-10 md:mb-14"> | ||
wagmi Blog | ||
</h1> | ||
|
||
<div className=""> | ||
<h3 className="text-2xl font-bold mb-4"> | ||
<Link href={page.route}> | ||
<a style={{ color: 'inherit', textDecoration: 'none' }}> | ||
{page.meta?.title || page.frontMatter?.title || page.name} | ||
</a> | ||
</Link> | ||
</h3> | ||
|
||
<p className="opacity-80 mb-3"> | ||
{page.frontMatter?.description}{' '} | ||
<Link href={page.route}> | ||
<a className="nx-text-primary-500 underline">{more + ' →'}</a> | ||
</Link> | ||
</p> | ||
|
||
{page.frontMatter?.date ? ( | ||
<p className="opacity-50 text-sm">{page.frontMatter.date}</p> | ||
) : null} | ||
</div> | ||
</> | ||
) | ||
}, | ||
) | ||
} |
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,2 @@ | ||
export { Authors, Author } from '../blog/Authors' | ||
export { BlogIndex } from '../blog/BlogIndex' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,5 +19,9 @@ | |
"examples": { | ||
"title": "Examples", | ||
"type": "page" | ||
}, | ||
"blog": { | ||
"title": "Blog", | ||
"type": "page" | ||
} | ||
} |
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,9 @@ | ||
--- | ||
title: wagmi Blog | ||
description: Updates from the wagmi core team. | ||
searchable: false | ||
--- | ||
|
||
import { BlogIndex } from '../components/blog' | ||
|
||
<BlogIndex /> |
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,9 @@ | ||
{ | ||
"paradigm-wagmi": { | ||
"title": "Paradigm x wagmi", | ||
"type": "page", | ||
"theme": { | ||
"sidebar": false | ||
} | ||
} | ||
} |
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,28 @@ | ||
--- | ||
title: 'Paradigm x wagmi' | ||
description: 'The wagmi core team is now working full-time on the future of wagmi and developer tools for Ethereum, sponsored by Paradigm.' | ||
date: November 28, 2022 | ||
image: 'https://wagmi.sh/paradigm-wagmi.png' | ||
searchable: false | ||
--- | ||
|
||
import { Authors, Author } from '../../components/blog' | ||
|
||
# Paradigm x wagmi | ||
|
||
<Authors date="November 28, 2022"> | ||
<Author name="awkweb" link="https://twitter.com/awkweb" /> | ||
</Authors> | ||
|
||
<div className="text-lg"> | ||
**The wagmi core team is now working full-time on the future of wagmi and | ||
developer tools for Ethereum, sponsored by Paradigm.** | ||
</div> | ||
|
||
When I started working on wagmi [a year ago](https://github.com/wagmi-dev/wagmi/commit/f58ad631c6e696c40ab4915ecc472d2301a01a17), I didn’t expect for it to be as popular as it is today. I just needed a decent tool for hacking on Ethereum side projects so I wanted to see if I could build something for myself. Fast forward to today, there's an incredible community of developers and teams building their projects and businesses with wagmi, like [ENS](https://alpha.ens.domains), [WalletConnect](https://walletconnect.com), [Stripe Crypto](https://stripe.com/use-cases/crypto), [Sushi](https://sushi.com), [LooksRare](https://looksrare.org), [Zora](https://zora.co), and many more. | ||
|
||
The core team has also grown over the last year. [Jake](https://twitter.com/jakemoxey) started getting involved [on January 16](https://twitter.com/awkweb/status/1482772477893824518) and officially joined the core team [on April 25](https://twitter.com/awkweb/status/1518607778209751041), after we collaborated on a major update to wagmi. Together, we've published over 200 new versions of wagmi getting 330k downloads/month, 3.4k GitHub Stars, and being a [finalist](https://twitter.com/markdalgleish/status/1537956391532437510) for “Breakthrough of the Year" at React Summit in June. | ||
|
||
Since wagmi launched [on January 4](https://twitter.com/awkweb/status/1478431834052644870), the focus has been to keep pulling on the thread of developer experience and tooling for Ethereum to see how far we can push them. Over the last eleven months, we shipped some ground-breaking new features: [End-to-end type-safety](https://twitter.com/wagmi_sh/status/1580591788611338240) from your contracts to your frontend, powered by our [ABIType](https://github.com/wagmi-dev/abitype) library; A Vanilla JS core library, [`@wagmi/core`](/core/getting-started), opening up the door for additional JS framework support beyond React; Faster “Time To Open Wallet” and more robust mobile deeplinking with [Prepare Hooks](/react/prepare-hooks/intro); request caching, deduplication, and refetching to keep apps feeling snappy and save money on RPC bills. | ||
|
||
There’s still an incredible number of Ethereum-enabled apps yet to be built on the horizon. We should demand more from our tools so we can get there. To that end, Jake and I are going full-time on developer tooling thanks to [Paradigm](https://www.paradigm.xyz)’s sponsorship. We have some exciting releases planned for wagmi as well as an unannounced project we think is going to change Ethereum developer tooling. We couldn’t think of a better partner than Paradigm to work closely with on the future of wagmi and developer tools. Stay tuned and see you on the Internet. |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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