Yuki Developer Portal
Go to HomeSupport
  • Yuki Developer Portal
  • INTRODUCTION
    • What Is Yuki?
    • Programmable Web3 accounts
    • Getting Started
  • Product
    • Wallet Service Kit
      • Wallet as a Service
        • Create Wallets
          • Create Polygon Wallets
          • Create Tron Wallets
          • Create Stellar Wallets
          • Create BSC Wallets
          • Create Celo Wallets
          • Create Bitcoin Wallets
          • Create Ethereum Wallets
          • Create Solana Wallets
        • Fetch Wallet Details
          • Fetch User Wallet Addresses
          • Fetch Wallet Balance
            • Fetch Celo Wallet Balance
            • Fetch Bitcoin Wallet Balance
            • Fetch ETH Wallet Balance
              • Fetch ETH USDT Wallet Balance
              • Fetch ETH USDC Wallet Balance
            • Fetch BSC Wallet Balance
              • Fetch BSC USDT Wallet Balance
              • Fetch BSC USDC Wallet Balance
            • Fetch Stellar Wallet Balance
            • Fetch Solana Wallet Balance
            • Fetch Polygon Wallet Balance
              • Fetch Polygon USDT Wallet Balance
              • Fetch Polygon USDC Wallet Balance
            • Fetch Tron Wallet Balance
              • Fetch Tron USDT Wallet Balance
        • Transfer Assets
          • Celo Transfer Function
            • Celo CUSD Transfer Function
          • BTC Transfer Function
          • Stellar Transfer Function
          • ETH Transfer Function
            • ETH USDT Transfer Function
            • ETH USDC Transfer Function
          • Solana Transfer Function
            • Solana USDT Transfer Function
            • Solana USDC Transfer Function
          • BSC USDC Transfer Function
          • BSC USDT Transfer Function
          • Polygon USDT Transfer Function
          • Polygon USDC Transfer Function
          • Polygon MATIC Transfer Function
          • Tron Transfer Function
            • Tron USDT Transfer Function
        • Backup and Recovery
          • Configure Gdrive Storage
          • Configure iCloud Storage
        • Wallet Authentication
      • Account Abstraction Kit
      • Wallet Actions kit
    • Partner Kits Services
      • Payout Orchestration
        • Stablecoin to Fiat USD
          • Create Customer
          • Add external account
          • Stablecoin to USD
      • On/Off Ramp Kit
        • Ramp option 1
        • Ramp option 2
          • Create crypto wallet
            • Create BTC Wallet
            • Create Celo Wallet
            • Create Polygon Wallet
          • Create Fiat Wallet
          • Copy of Create Fiat Wallet
          • Mobile Money
          • Deposit
        • Coverage Map
      • Connect external wallet kit
    • Compliance Kit Services
  • Concepts
    • Supported Blockchains
    • Compliance Standard
    • Direct Custody
    • Account Recovery Standard
    • Testnet Faucets
  • Resources
    • Gas Fees
    • Pricing
Powered by GitBook
On this page

Was this helpful?

  1. Product
  2. Wallet Service Kit
  3. Wallet as a Service
  4. Create Wallets

Create Solana Wallets

This endpoint allows you to create Solana wallets.

To create a Bitcoin wallet for a user, the /wallet/create-solana-wallet API endpoint requires two parameters in the request:

  1. userEmail - The email address of the user for which you want to create the wallet. This links the wallet to their account.

  2. blockChainSupported - Specify ''Solana" to indicate the wallet should be created on the Solana blockchain.

POST https://dev-api.altra.click/wallet/create-solana-wallet

Request Body

Name
Type
Description

userEmail*

Required

blockChainSupported*

String

// Create Bitcoin wallet for user
{  
      "userEmail": "user@gmail.com"
      "blockChainSupported": "Solana" 
}

The wallet creation API request will return a wallet address that can send and receive Solana, USDC and USDT on the Solana blockchain.

Specifically, the response will contain:

  • walletAddress - The public Polygon address tied to the created wallet

  • asset - Sol, USDC and USDT are the supported token on this wallet

Once a wallet is created successfully, users can top up the address by depositing any of the supported tokens.

PreviousCreate Ethereum WalletsNextFetch Wallet Details

Last updated 1 year ago

Was this helpful?