Skip to content

Commit 468d005

Browse files
committed
Updated readmes + project 3
1 parent 4d66b86 commit 468d005

File tree

5 files changed

+47
-6
lines changed

5 files changed

+47
-6
lines changed

project-1-favorites/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,18 @@ We recommend creating a separate github repository for each project and commitin
88

99
[![Favorites Program](https://ik.imagekit.io/mkpjlhtny/solpg_button_zWM8WlPKs.svg?ik-sdk-version=javascript-1.4.3&updatedAt=1662621556513)](https://beta.solpg.io/67060f00cffcf4b13384d3dc)
1010

11+
## Resources
12+
13+
- [Anchor Documentation](https://www.anchor-lang.com/)
14+
- [Solana Documentation](https://solana.com/docs)
15+
- [Solana Playground](https://beta.solpg.io)
16+
- [Rust Documentation](https://doc.rust-lang.org/book/)
17+
1118
## Running This Project
1219

13-
Run the following commands:
20+
We highly recommend [creating your own github repository](https://github.com/new) and building along with the video. This will help you learn the most and give you a reference to look back on later.
21+
22+
If you want to check the final result of the project, you can clone this repository and run the following commands:
1423

1524
```
1625
npm i

project-2-voting/README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1-
# Project 2: Votiing Application
1+
# Project 2: Voting Application
22

33
The Voting Application is a program that allows people to vote between multiple options and have the results automatically tallied. Votes will count up on each vote cast and the results will be saved to an account on the Solana network.
44

5+
## Resources
6+
7+
- [Anchor Documentation](https://www.anchor-lang.com/)
8+
- [Solana Documentation](https://solana.com/docs)
9+
510
## Running This Project
611

7-
Run the following commands:
12+
We highly recommend [creating your own github repository](https://github.com/new) and building along with the video. This will help you learn the most and give you a reference to look back on later.
13+
14+
If you want to check the final result of the project, you can clone this repository and run the following commands:
815

916
```
1017
npm i

project-3-blinks/README.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,25 @@
1-
# developer-bootcamp-2024
1+
# Project 3: Integrating Blinks
2+
3+
[Blinks and Actions]() bring the blockchain to any website that can handle a hyperlink. Throughout this project, we will learn how to integrate Blinks into a website and use them to interact with a Solana smart contract.
4+
5+
## Resources
6+
7+
- [Blinks Documentation](https://solana.com/docs/advanced/actions)
8+
- [Blinks Tester](https://dial.to)
9+
10+
## Running This Project
11+
12+
We highly recommend creating your own github repository and building along with the video. This will help you learn the most and give you a reference to look back on later.
13+
14+
If you want to check the final result of the project, you can clone this repository and run the following commands:
15+
16+
```
17+
npm i
18+
cd anchor
19+
anchor build
20+
anchor test
21+
cd ..
22+
npm run dev
23+
```
24+
25+
You should be able to view the project at [http://localhost:3000](http://localhost:3000) and interact with the blinks at [dial.to](https://dial.to/?action=solana-action:http://localhost:3000/api/vote)

project-3-blinks/anchor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
members = ["programs/*", "trident-tests/fuzz_tests"]
2+
members = ["programs/*"]
33
resolver = "2"
44
[profile.release]
55
overflow-checks = true

project-3-blinks/anchor/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"dependencies": {
55
"@coral-xyz/anchor": "^0.30.0",
66
"@solana/web3.js": "1.91.9",
7-
"anchor-bankrun": "^0.4.0"
7+
"anchor-bankrun": "^0.4.0",
8+
"solana-bankrun": "^0.2.0"
89
},
910
"main": "./index.cjs",
1011
"module": "./index.js",

0 commit comments

Comments
 (0)