Solana Integration

Overview

Eitherway provides full Solana blockchain support:

  • SPL Token creation and management

  • Metaplex NFT minting

  • Collection management

  • Devnet/testnet deployment


SPL Token Creation

POST  /api/solana/tokens/create
{
"userId": "user-123",
"name": "My Token",
"symbol": "MTK", "decimals": 9,
"initialSupply": "1000000", "cluster": "devnet"
}

Response:

{
"success": true, "tokenId": "uuid",
"mintAddress": "So1ana...",
"signature": "5abc...",
"explorerUrl": "https://explorer.solana.com/..."
}

NFT Collection Creation


NFT Minting


Wallet Support

Frontend applications use:

  • @solana/wallet-adapter-react – React integration

  • @solana/wallet-adapter-wallets – Wallet adapters

  • @metaplex-foundation/js – NFT operations

Supported wallets: Phantom, Solflare, Torus


Airdrop (Devnet Only)

Get free test SOL:

Last updated