Helius Profile picture
The API for internet markets. Solana's top RPCs, APIs, and data. 24/7 dev support. Discord: https://t.co/TVc0YoxbEg
Nov 23, 2023 • 12 tweets • 3 min read
Inscriptions are taking Solana by storm.

Drawing from Bitcoin's BRC-20 standard, SPL20 inscriptions enable the direct on-chain storage of digital art

Still don't understand what's going on? Don't worry, we've got you covered šŸ‘‡šŸ§µ Image SPL20 inscriptions are unique Solana addresses that contain images stored directly on the blockchain. This differs from regular NFTs that store their art on a third-party service like Arweave. Now, your images have their own address instead of an HTML link Image
Mar 22, 2023 • 11 tweets • 3 min read
NFT Compression is taking Solana by storm.

Top-tier teams like Crossmint, Dialect, Helium, and Drip Haus are utilizing it for novel crypto use-cases.

But how does compression work? What does it even mean?

A brief explainer 🧵 On Solana, on-chain storage is not cheap.

NFT Compression simply refers to the process of storing the bulk of NFT data (such as image URLs, traits, etc) off-chain instead of on-chain.

But, how can we do this while still remaining decentralized and secure?

Via Merkle Trees!
Mar 20, 2023 • 4 tweets • 8 min read
It's time to announce the first cohort of Helius Hacker Advocates 🧵

Reminder: these are devs dedicated to improving the Solana dev experience and will have access to exclusive networking, growth and educational opportunities. They will play a big role for Solana devs. The cohort:

- @r2djo
- @CloakdDev
- @tuanpmhd
- @Chasewhip
- @0xMiyu
- @eggsquad_sol
- @0xCasual
- @Code_Cowboy_
- @scammo_
- @0xDistro_
- @0xSavant
- @Monst3rWayne
- @0xlarry8
- @tschampagne_
- @cryptofrog08
- @mdstevens044
- @Iam_AshrafSyed
- @cihancanay
Mar 20, 2023 • 12 tweets • 3 min read
Accounts on Solana and how they differ from Ethereum — explained 🧵 Image Accounts are ubiquitous on Solana.

You may hear someone refer to their wallet as an account, you may see a developer refer to a program as an account, or you might read that an NFT is stored in a token account.

All are true.

In Solana, everything is an account.
Mar 18, 2023 • 12 tweets • 2 min read
Crash Course: Blocks, Slots, and Epochs on Solana 🧵 Solana's terminology is a bit overwhelming sometimes. What is a block, a slot, or an epoch? What are the differences between them?

In this thread, we'll explain everything.
Nov 28, 2022 • 10 tweets • 3 min read
Solana Transaction History Crash-course 🧵 When you make a transaction on Solana, you specify which accounts are involved in the transaction — state and data are decoupled.

Solana validators keep track of the signatures for these transactions in something called Blockstore (and generally BigTable for older records).
Nov 19, 2022 • 7 tweets • 2 min read
Solana RPC Crash-course 🧵 In Web2 dev, you interact with a myriad of APIs to get the data you need. You use Stripe for payments data, Plaid for banking data, Twilio for SMS data, and so on.

In crypto — all of the data is on-chain. To fetch it, you interface with the nodes participating in the network.
Oct 17, 2022 • 5 tweets • 2 min read
TUTORIAL: How to build a balance monitor / wallet watcher on Solana in 2 minutes 🧵 Go to replit.com and create a basic Node server for accepting POST requests.

Note down its URL.