-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
cbd98b1
commit df62763
Showing
43 changed files
with
528 additions
and
91 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
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,57 @@ | ||
--- | ||
title: Account Balance | ||
description: Display the balance of the connected account. | ||
component: true | ||
wagmi: | ||
link: https://wagmi.sh/react/hooks/useAccount | ||
--- | ||
|
||
<ComponentPreview | ||
name="account-balance-demo" | ||
className="[&_.preview>[data-orientation=vertical]]:sm:max-w-[70%]" | ||
/> | ||
|
||
## Installation | ||
|
||
<Tabs defaultValue="manual"> | ||
|
||
<TabsList> | ||
<TabsTrigger value="manual">Manual</TabsTrigger> | ||
<TabsTrigger disabled={true} value="cli"> | ||
CLI (Coming Soon) | ||
</TabsTrigger> | ||
</TabsList> | ||
|
||
<TabsContent value="cli"> | ||
|
||
<Steps> | ||
|
||
<Step>Coming soon...</Step> | ||
|
||
</Steps> | ||
|
||
</TabsContent> | ||
|
||
<TabsContent value="manual"> | ||
|
||
<Steps> | ||
|
||
<Step>Copy and paste the following code into your project.</Step> | ||
|
||
<ComponentSource name="account-balance" /> | ||
|
||
</Steps> | ||
|
||
</TabsContent> | ||
|
||
</Tabs> | ||
|
||
## Usage | ||
|
||
```tsx | ||
import { AccountBalance } from "@/components/buidl/account-balance" | ||
``` | ||
|
||
```tsx | ||
<AccountBalance /> | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
title: Account Nonce | ||
description: Display the nonce of the connected account. | ||
component: true | ||
wagmi: | ||
link: https://wagmi.sh/react/hooks/useAccount | ||
--- | ||
|
||
<ComponentPreview | ||
name="account-nonce-demo" | ||
className="[&_.preview>[data-orientation=vertical]]:sm:max-w-[70%]" | ||
/> | ||
|
||
## Installation | ||
|
||
<Tabs defaultValue="manual"> | ||
|
||
<TabsList> | ||
<TabsTrigger value="manual">Manual</TabsTrigger> | ||
<TabsTrigger disabled={true} value="cli"> | ||
CLI (Coming Soon) | ||
</TabsTrigger> | ||
</TabsList> | ||
|
||
<TabsContent value="cli"> | ||
|
||
<Steps> | ||
|
||
<Step>Coming soon...</Step> | ||
|
||
</Steps> | ||
|
||
</TabsContent> | ||
|
||
<TabsContent value="manual"> | ||
|
||
<Steps> | ||
|
||
<Step>Copy and paste the following code into your project.</Step> | ||
|
||
<ComponentSource name="account-nonce" /> | ||
|
||
</Steps> | ||
|
||
</TabsContent> | ||
|
||
</Tabs> | ||
|
||
## Usage | ||
|
||
```tsx | ||
import { AccountNonce } from "@/components/buidl/account-nonce" | ||
``` | ||
|
||
```tsx | ||
<AccountNonce /> | ||
``` |
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,58 @@ | ||
--- | ||
title: Block Explorer Link | ||
description: Link to an address or transaction to the block explorer of a given network. | ||
component: true | ||
wagmi: | ||
link: https://wagmi.sh/react/hooks/useNetwork | ||
--- | ||
|
||
<ComponentPreview | ||
name="block-explorer-link-demo" | ||
className="[&_.preview>[data-orientation=vertical]]:sm:max-w-[70%]" | ||
/> | ||
|
||
## Installation | ||
|
||
<Tabs defaultValue="manual"> | ||
|
||
<TabsList> | ||
<TabsTrigger value="manual">Manual</TabsTrigger> | ||
<TabsTrigger disabled={true} value="cli"> | ||
CLI (Coming Soon) | ||
</TabsTrigger> | ||
</TabsList> | ||
|
||
<TabsContent value="cli"> | ||
|
||
<Steps> | ||
|
||
<Step>Coming soon...</Step> | ||
|
||
</Steps> | ||
|
||
</TabsContent> | ||
|
||
<TabsContent value="manual"> | ||
|
||
<Steps> | ||
|
||
<Step>Copy and paste the following code into your project.</Step> | ||
|
||
<ComponentSource name="block-explorer-link" /> | ||
|
||
</Steps> | ||
|
||
</TabsContent> | ||
|
||
</Tabs> | ||
|
||
## Usage | ||
|
||
```tsx | ||
import { WalletConnect } from "@/components/buidl/wallet-connect" | ||
``` | ||
|
||
```tsx | ||
<WalletConnect /> | ||
<WalletConnect>Custom Text</WalletConnect> | ||
``` |
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
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.