Skip to content

Commit ceff873

Browse files
committed
[Portal] Add video and update prompt guide (#6163)
CORE-0000 <!-- start pr-codex --> --- ## PR-Codex overview This PR enhances the `Nebula` documentation by adding new video tutorials and reorganizing content related to supported chains. It also expands the action descriptions in the `prompt-guide` to include bridging and swapping currencies. ### Detailed summary - Added `Grid` and `ArticleCard` components to introduce video tutorials on using `Nebula`. - Moved the section on supported chains to follow the new video tutorials. - Expanded action descriptions in the `prompt-guide` to include "Bridge & Swap" functionality. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 9a432af commit ceff873

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

apps/portal/src/app/nebula/page.mdx

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Wallet, File, MessageCircle, Braces, Bot, Blocks } from "lucide-react";
2-
import { DocImage, createMetadata, FeatureCard, GithubTemplateCard, Stack } from "@doc";
2+
import { DocImage, createMetadata, FeatureCard, GithubTemplateCard, Stack, Grid, ArticleCard } from "@doc";
33
import NebulaDiagram from "./assets/nebula-diagram.png";
44
import SupportedChains from "./assets/supported-chains.png";
55

@@ -53,10 +53,17 @@ Nebula is currently available in Alpha. [Join the waitlist.](https://thirdweb.co
5353
/>
5454
</div>
5555

56-
## Supported Chains
57-
Nebula is supported on every EVM compatible chain. To view the full list, visit [thirdweb chainlist](https://thirdweb.com/chainlist).
56+
## Video Tutorials
5857

59-
<DocImage src={SupportedChains} />
58+
<Grid>
59+
60+
<ArticleCard
61+
title="Blockchain Explorer"
62+
description="Learn how to use Nebula to create an AI-powered block explorer"
63+
href="https://www.youtube.com/watch?v=vBooJytkXa4&t=596s"
64+
/>
65+
66+
</Grid>
6067

6168
## Templates
6269

@@ -66,6 +73,11 @@ Nebula is supported on every EVM compatible chain. To view the full list, visit
6673

6774
</Stack>
6875

76+
## Supported Chains
77+
Nebula is supported on every EVM compatible chain. To view the full list, visit [thirdweb chainlist](https://thirdweb.com/chainlist).
78+
79+
<DocImage src={SupportedChains} />
80+
6981

7082

7183

apps/portal/src/app/nebula/prompt-guide/page.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,11 @@ Maximize the potential of Nebula. Whether you’re new to blockchain development
66

77
| **Action** | **Description** | **Examples** |
88
|-----------------------------|----------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
9+
| **Bridge & Swap** | Bridge and swap native currencies | • "Swap 1 USDC to 1 USDT on the Ethereum Mainnet"<br/>• "Bridge 0.5 ETH from Ethereum Mainnet to Polygon"<br/> |
910
| **Transfer** | Send native and ERC-20 currencies | • "Send 0.1 ETH to vitalik.eth"<br/>• "Transfer 1 USDC to saminacodes.eth on Base"<br/> |
1011
| **Deploy** | Deploy published contracts | • "Deploy a Token ERC20 Contract"<br/>• "Deploy a Split contract with two recipients."<br/>• "Deploy an ERC1155 Contract named 'Hello World' with description 'Hello badges on Ethereum'"<br/>|
1112
| **Understand** | Retrieve information about smart contracts. | • "What ERC standards are implemented by contract address 0x59325733eb952a92e069C87F0A6168b29E80627f on Ethereum?"<br/>• "What functions can I use to mint more of my contract's NFTs?"<br/>• "What is the total supply of NFTs for my contract?" |
1213
| **Interact** | Query wallet balances, addresses, and token holdings. | • "How much ETH is in my wallet?"<br/>• "What is the wallet address of vitalik.eth?"<br/>• "Does my wallet hold USDC on Base?" |
1314
| **Explore** | Access blockchain-specific data. | • "What is the last block on zkSync?"<br/>• "What is the current gas price on Avalanche C-Chain?"<br/>• "Can you show me transaction details for 0xdfc450bb39e44bd37c22e0bfd0e5212edbea571e4e534d87b5cbbf06f10b9e04 on Optimism?" |
1415
| **Research** | Obtain details about tokens, their addresses, and current prices. | • "What is the address of USDC on Ethereum?"<br/>• "Is there a UNI token on Arbitrum?"<br/>• "What is the current price of ARB?" |
1516
| **Build** | Implement features using Web3 SDKs and tools. | • "How can I add a connect wallet button to my web app? I want to support users connecting with both email/social wallets and MetaMask and use smart wallets."<br/>• "Can you show me how to claim an NFT from an ERC721 using TypeScript?"<br/>• "I have an ERC1155 contract from thirdweb. Can you show me how to generate and mint with a signature?" |
16-
17-
18-

0 commit comments

Comments
 (0)