Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rootstock metadata #288

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified apps/academy/public/meta-images/rootstock-101/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/academy/public/meta-images/rootstock-101/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/academy/public/track-rootstock-101.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions apps/academy/src/pages/tracks/rootstock-101/2.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Rootstock 101: Lesson 2
description: What is Rootstock, how is it connected to Bitcoin, and what are the differences between Rootstock and Ethereum?
description: Reading Rootstock onchain data and existing smart contract state via a Web frontend and a Node.js backend.
icons: ["rootstock", "fundamentals"]
---

Expand All @@ -14,7 +14,7 @@ import LessonInformationalModal from "../../../components/mdx/LessonInformationa
<LessonLayout
lessonTitle="Accessing On-Chain Data on Rootstock via The Graph"
lessonImage="/meta-images/rootstock-101/2.png"
lessonDescription="What is Rootstock, how is it connected to Bitcoin, and what are the differences between Rootstock and Ethereum?"
lessonDescription="Reading Rootstock onchain data and existing smart contract state via a Web frontend and a Node.js backend."
author="DappaDan"
authorImage="/authors/dappadan.jpg"
authorPosition="Developer DAO"
Expand Down
4 changes: 2 additions & 2 deletions apps/academy/src/pages/tracks/rootstock-101/3.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Rootstock 101: Lesson 3
description: What is Rootstock, how is it connected to Bitcoin, and what are the differences between Rootstock and Ethereum?
description: Creating a simple, smart contract and deploying it to Rootstock.
icons: ["rootstock", "fundamentals"]
---

Expand All @@ -14,7 +14,7 @@ import LessonInformationalModal from "../../../components/mdx/LessonInformationa
<LessonLayout
lessonTitle="Building Smart Contracts on Rootstock with Hardhat"
lessonImage="/meta-images/rootstock-101/3.png"
lessonDescription="What is Rootstock, how is it connected to Bitcoin, and what are the differences between Rootstock and Ethereum?"
lessonDescription="Creating a simple, smart contract and deploying it to Rootstock."
author="DappaDan"
authorImage="/authors/dappadan.jpg"
authorPosition="Developer DAO"
Expand Down
10 changes: 5 additions & 5 deletions apps/academy/src/pages/tracks/rootstock-101/4.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Rootstock 101: Lesson 4
description: What is Rootstock, how is it connected to Bitcoin, and what are the differences between Rootstock and Ethereum?
description: Connect your deployed contract to a React frontend application, allowing users to interact with that contract.
icons: ["rootstock", "fundamentals"]
---

Expand All @@ -14,7 +14,7 @@ import LessonInformationalModal from "../../../components/mdx/LessonInformationa
<LessonLayout
lessonTitle="Building a Rootstock Powered DApp with NextJS and wagmi"
lessonImage="/meta-images/rootstock-101/4.png"
lessonDescription="What is Rootstock, how is it connected to Bitcoin, and what are the differences between Rootstock and Ethereum?"
lessonDescription="Connect your deployed contract to a React frontend application, allowing users to interact with that contract."
author="DappaDan"
authorImage="/authors/dappadan.jpg"
authorPosition="Developer DAO"
Expand Down Expand Up @@ -299,7 +299,7 @@ To do this:

- Connect Your Wallet using the Rainbow Wallet button.
- Make sure you have tRBTC to sign the transaction. If not, head over to the faucet to get some.
- Click on any of the `Vote`buttons
- Click on any of the `Vote` buttons
- Your wallet should now open up so that you can sign the transaction

After signing the transaction, you should now see that the `Voting Results` has increased by 1.
Expand All @@ -322,7 +322,7 @@ Congrats on finishing this lesson and course! This is only the start of your joi

To keep you going, here are some additional resources that will be helpful:

[Rootstock Developer Portal ](https://dev.rootstock.io/?_gl=1*rhhhf5*_gcl_au*MzA2ODIzMDY5LjE3MjQ2NjM0MjU)
[Rootstock Collective](https://rootstockcollective.xyz/) - DAO rewarding builders and users of Rootstock
- [Rootstock Developer Portal](https://dev.rootstock.io/?_gl=1*rhhhf5*_gcl_au*MzA2ODIzMDY5LjE3MjQ2NjM0MjU)
- [Rootstock Collective](https://rootstockcollective.xyz/) - DAO rewarding builders and users of Rootstock

</LessonLayout>
4 changes: 2 additions & 2 deletions apps/academy/src/pages/tracks/rootstock-101/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const Rootstock101TrackPage = () => {
<div className="relative m-10 flex lg:mx-auto lg:max-w-screen-lg">
<TracksLayout
trackTitle="Rootstock 101: Building Apps with Bitcoin"
trackDescription="Leverage your Ethereum and Solidity skills to build apps that on Bitcoin."
trackDescription="Leverage your Ethereum and Solidity skills to build apps on Bitcoin."
trackAuthor="DappaDan"
trackAuthorImage="/authors/dappadan.jpg"
trackAuthorDescription="Your Protocol's BFF ❤️ | Helping teams build a better developer experience and have fun doing it."
Expand Down Expand Up @@ -60,7 +60,7 @@ Rootstock101TrackPage.getLayout = function getLayout(page: ReactElement) {
return (
<PageSeoLayout
title="Rootstock 101: Building Apps with Bitcoin"
description="Leverage your Ethereum and Solidity skills to build apps that on Bitcoin."
description="Leverage your Ethereum and Solidity skills to build apps on Bitcoin."
openGraph={{
images: [
{
Expand Down