Solana
Solana is a blockchain that can be programmed to carry out transactions quickly without losing its core feature, namely decentralization. This network uses an innovative mechanism called proof-of-history.
The spl-token command line utility can be used to experiment with SPL tokens. Once you've installed Rust, run: $ cargo install spl-token-cli Run spl-token --help for a complete explanation of the available commands. The spl-token configuration is shared with the solana command line tool. At the moment $ solana config get Config File: ${HOME}/.config/solana/cli/config.yml RPC URL: https://api.mainnet-beta.solana.com WebSocket URL: wss://api.mainnet-beta.solana.com/ (computed) Keypair Path: ${HOME}/.config/solana/id.json
Registration for Currently there are several solutions for Mint Token registration: Hard coded address in wallet or dapp Metaplex Token Metadata. Learn more in the Token Metadata Documentation The deprecated token list repo has instructions for creating your own metadata
curl http://api.mainnet-beta.solana.com -X POST -H "Content-Type: application/json" -d '
{
"jsonrpc": "2.0",
"id": 1,
"method": "getProgramAccounts",
"params": [
"TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
{
"encoding": "jsonParsed",
"filters": [
{
"dataSize": 165
},
{
"memcmp": {
"offset": 32,
"bytes": "vines1vzrYbzLMRdu58ou5XTby4qAqVRLmqo36NKPTg"
}
}
]
}
]
}
'