Send tokens

This commit is contained in:
2025-07-06 14:39:01 +07:00
parent c7dec76809
commit f973be2e08
13 changed files with 693 additions and 12 deletions

View File

@@ -0,0 +1,34 @@
using System.ComponentModel.DataAnnotations;
using static Managing.Common.Enums;
namespace Managing.Api.Models.Requests;
/// <summary>
/// Request model for token sending operations
/// </summary>
public class SendTokenRequest
{
/// <summary>
/// The recipient's wallet address
/// </summary>
[Required]
public string RecipientAddress { get; set; }
/// <summary>
/// The ticker symbol of the token to send
/// </summary>
[Required]
public Ticker Ticker { get; set; }
/// <summary>
/// The amount to send
/// </summary>
[Required]
[Range(0.000001, double.MaxValue, ErrorMessage = "Amount must be greater than 0")]
public decimal Amount { get; set; }
/// <summary>
/// The chain ID where the transaction will be executed (optional, defaults to ARBITRUM)
/// </summary>
public int? ChainId { get; set; }
}