Solana is a layer 1 blockchain.
Why Solana? Fast, cheap, can be robust https://youtu.be/TTdcs7EYfcw
Current event:
- Solana build during bear market
https://twitter.com/solana/status/1546513148114599939
Solana Summer Camp Hackathon
Twitter space talk
https://twitter.com/i/spaces/1YqKDqqQyeDGV
Prizes : payments ~50K, grants, no need to give up equity (?), Prizes are grants, no equity necessary to participate.
Summer camp. coworking, hacker houses around the world. For example the San Francisco Summer Camp is located at a co-working space called SPACES near the pier 39 occasion front.
Getting started with Solana
What is Rust [flash card] 👇🏼
https://ml.learn-to-code.co/skillView.html?skill=LEhDxIfgayEmO0Ny3yve
Community
Developer lifestyle : really love the solana designs, and color palette, just so good with the new gaming aesthetics, reminds me of cool clubs and gaming conferences. Fun fact, trivia there's even a Solana beer : https://decrypt.co/108376/solana-beer-degods-okay-bears-nfts-summer-shandy There's also the Solana IRL Store in Miami and NYC https://decrypt.co/106088/solana-spaces-irl-store-web3-embassy-new-york
Get involved Solana Ambassador
Past price
solana SOL $165 December 13, 2021
Getting Start with Rust
Rust is a system language like C C++ and GO. It has included memory management. C++ requires DIY.
Task: Create a Rust project
$ cargo init
Definition: Cargo is the package manager for Rust
Task: run the main program in Rust. Source file has main function
$ cargo run
Main function is always the first function that will be executed when running rust. If one changes function to a different name will get error.
Task: Hello World with Rust.
pub fn hello(){
println!("Hello World!");
}
Task: import hello module. Mod is the keyword for module.
mod hello;
fn main(){
hello::hello();
}
Task: use :: syntax to call function in a module
module_name::function_name
Task : view startup scripts Scroll down to the bottom of package.json
"scripts":{
"start": "nodemon app.js",
"serve": "node",
}
Discord
Grape (GRAPE), a solution for validating users on Solana. "Create, Reward & Secure any online community by harnessing the power of Solana" - Coingecko
Solana Mobile
Solana mobile stack in progress, becoming the chain that mobile developers think about (Packy McCormick
Why is the Solana leadership excited about Solana Mobile? All in one Solana platform - comparable to the emergence of super apps like WeChat. Rough transcription: "WeChat moment for crypto. Super app for everything in crypto. Solana mobile. Crypto can track an address interact with u, know the entire history."
Speaker, currently interaction is mostly on desktop, need the wechat moment for crypto - super app),
solana in person todo
learning resource
Seen on twitter “The Solana Development Course on @soldevapp is soo good! Great work and thank you to @jamesrp13 and the other contributors!
Potential Solana courses: (we have not had a chance to try or test these courses) Solana course https://soldev.app/course
Moralis supports Solana. Current two types of development tools are available SDK and REST API. Here are some of the API endpoints https://moralis.io/solana-api/
Solana web3 javascript SDK API
Solana Documentation : Web3 JavaScript API What is Solana-Web3.js? https://docs.solana.com/developing/clients/javascript-api
injected web3 window.solana .
Community size: discord member August 2021 ~ 133,000.
What's Squid Prize? Solana contribution Prize https://twitter.com/solana/status/1555647981281476614
No comments:
Post a Comment