https://github.com/romanian-solana-developer-program-c3/c3_comets_panta_robert
π Solana Projects π
https://github.com/romanian-solana-developer-program-c3/c3_comets_panta_robert
anchor blockchain blockchain-technology blockchain-wallet crypto cryptocurrency nfts nodejs project-repository rust solana solana-program solana-programming solana-web3 tokens typescript web3
Last synced: about 2 months ago
JSON representation
π Solana Projects π
- Host: GitHub
- URL: https://github.com/romanian-solana-developer-program-c3/c3_comets_panta_robert
- Owner: Romanian-Solana-Developer-Program-C3
- License: mit
- Created: 2025-03-13T07:51:27.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-21T16:07:20.000Z (about 1 year ago)
- Last Synced: 2025-04-21T16:26:39.003Z (about 1 year ago)
- Topics: anchor, blockchain, blockchain-technology, blockchain-wallet, crypto, cryptocurrency, nfts, nodejs, project-repository, rust, solana, solana-program, solana-programming, solana-web3, tokens, typescript, web3
- Language: Makefile
- Homepage:
- Size: 96.1 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# βοΈC3 Comets PanΘa RobertβοΈ
## Table of Contents π
1. [**Introduction**](#introduction-)
2. [**Laboratory 1: Transactions**](#laboratory-1-)
3. [**Laboratory 2: Tokens**](#laboratory-2-)
4. [**Laboratory 3: NFTs**](#laboratory-3-)
5. [**Laboratory 4: RUST**](#laboratory-4-)
## Introduction π
This repository contains TypeScript, Rust and Anchor scripts to interact with the Solana blockchain from the **[Solana Developer Program](https://cometsweb3.space/solana-c3)**.
## Laboratory 1 π
### Solana Transaction Scripts
This section covers fundamental operations on the Solana blockchain, such as generating keypairs, checking balances, and sending SOL between accounts.
### Commands π οΈ
- **Generate Keypair** ποΈ
```sh
npx tsx generate-keypair.ts
```
- **Check Balance** π°
```sh
npx tsx check-balance.ts
```
- **Send SOL** πΈ
```sh
npx tsx send.ts --
```
## Laboratory 2 π
### Solana Token Management
This section explores creating token mints, minting tokens, and transferring SPL tokens on Solana.
### Commands π οΈ
- **Create Token Mint** π¦
```sh
npx esrun create-token-mint.ts
```
- **Mint Tokens** π
```sh
npx esrun mint-tokens.ts
```
- **Transfer Tokens** π
```sh
npx esrun transfer-tokens.ts
```
## Laboratory 3 π¨
### NFT Creation on Solana
This section details uploading NFT images, metadata, and minting NFTs on Solana.
### Commands π οΈ
- **Upload NFT Image** πΌοΈ
```sh
npx esrun nft-image.ts
```
- **Upload NFT Metadata** π
```sh
npx esrun nft-metadata.ts
```
- **Create NFT** ποΈ
```sh
npx esrun nft-create.ts
```
## Laboratory 4 π