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

@@ -126,4 +126,16 @@ namespace Managing.Infrastructure.Evm.Models.Proxy
Error = error;
}
}
/// <summary>
/// Response for token sending operations
/// </summary>
public class Web3ProxyTokenSendResponse : Web3ProxyResponse
{
/// <summary>
/// Transaction hash if successful
/// </summary>
[JsonPropertyName("hash")]
public string Hash { get; set; }
}
}