Deploy solana smart contract
7.6k353Cách deploy solana smart contract
- Blockchain
- Solana
Create Solana NFTs With Metaplex
8.7k169• Non-Fungible Tokens (NFTs) are represented on Solana as SPL Tokens with an associated metadata account, 0 decimals, and a maximum supply of 1 • Metaplex offers a collection of tools that simplify the creation and distribution of NFTs on the Solana blockchain • The Token Metadata program standardizes the process of attaching metadata to SPL Tokens • The Metaplex SDK is a tool that offers user-friendly APIs to assist developers in utilizing the onchain tools provided by Metaplex • The Candy Machine program is an NFT distribution tool used to create and mint NFTs from a collection • Sugar CLI is a tool that simplifies the process of uploading media/metadata files and creating a Candy Machine for a collection
- Solana
Using custom onchain programs
2.6k51Solana has multiple onchain programs you can use. Instructions that use these programs need to have data in a custom format determined by the program.
- NodeJs
- Solana
Create Transactions on the Solana Network
7.6k5All modifications to onchain data happen through transactions. Transactions are mostly a set of instructions that invoke Solana programs. Transactions are atomic, meaning they either succeed - if all the instructions have been executed properly - or fail as if the transaction hasn't been run at all
- Solana
- NodeJs
Create Tokens With The Token Program
4.1k317• You may recall SOL is the 'native token' of Solana. All other tokens, fungible and non-fungible tokens (NFTs), are called SPL Tokens • The Token Program contains instructions for creating and interacting with SPL Tokens • Token Mints are accounts that define a specific token. This includes information about the token itself (like how many decimals it has), the account allowed to mint more tokens (called the mint authority), and where to find more information about the token like a description, image, etc. The mint authority can use the token mint to make more tokens! • Token Accounts hold tokens of a specific Token Mint. For most users, their balances of each token mint are stored in Associated Token Accounts - accounts with addresses made from their wallet address and the token's mint. • Creating Token Mints and Token Accounts requires allocating rent in SOL. The rent for a Token Account can be refunded when the account is closed, however, Token Mints currently cannot be closed.
- Solana
- NodeJs
Cryptography and the Solana Network
3.9k313• A keypair is a matching pair of public key and secret key. • The public key is used as an “address” that points to an account on the Solana network. A public key can be shared with anyone. • The secret key is used to verify authority over the account. As the name suggests, you should always keep secret keys secret. • @solana/web3.js provides helper functions for creating a brand new keypair, or for constructing a keypair using an existing secret key.
- Solana
Read data from the Solana network
12k350• SOL is the name of Solana’s native token. Each SOL is made from 1 billion Lamports. • Accounts store tokens, NFTs, programs, and data. For now, we’ll focus on accounts that store SOL. • Addresses point to accounts on the Solana network. Anyone can read the data at a given address. Most addresses are also public keys.
- Solana
- NodeJs
Create your own BLINK [Solana Tutorial]
12.5k336Tính năng rất hay của Solana để có thể sử dụng ở tất cả các nơi trên X mà không cần kết nối nhiều
- Solana
- NodeJs