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. Transfer Assets

Solana Transfer Function

This endpoint allows the user to transfer Solana asset.

To initiate a token transfer with the API, the required parameters are:

  1. userEmail - The email address of the authenticated user initiating the transfer

  2. receiverAddress - The wallet address to send the tokens to

  3. sendAddress - The wallet address to send tokens from (must belong to user)

  4. amount - The number of tokens to send.

  5. passKey - The withdrawal passkey of the sendAddress wallet for authorization. This provides an additional security measure to verify the transaction.

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

Request Body

Name
Type
Description

userEmail*

Required

Sender Email

receiverAddress*

Required

Receivers Address

sendAddress*

Required

Sender address

Amount*

Required

Amount to be sent

passKey*

String

Security Authentication

// Make a Solana transfer
{
    "userEmail": "user@gmail.com",
    "receiverAddress": "0xac0063c8D81D77b4a4BbfeE039e8DD8E157d772b",
    "sendAddress": "0xf78a00cf9d8cdfccc4c0c330f0035e5f548ff8f6",
    "amount": "0.1",
    "passKey": "AQICAHjF5MYGrrk+b/1CbpKjZjf3qVXP/zp99I0hBP9oxOO9EgH37YSjlx1BB9/kgbImTKzyAAAApDCBoQYJKoZIhvcNAQcGoIGTMIGQAgEAMIGKBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDPZD4CQ/b0nQbnrG6gIBEIBdCW/a2js8PwumVLfBBiFGDY8BZNHbn5bpZjJd0R79YBQaXxULC889JI+/q1JTvqCULBAQOj19mMkPn1GSnnuwZ1wZzy43mSSYKP9uByGu6i7Dr+b+T/443iMryKpy"
}
PreviousETH USDC Transfer FunctionNextSolana USDT Transfer Function

Last updated 1 year ago

Was this helpful?

Solana USDT Transfer Function
Solana USDC Transfer Function