Fix get Gas fees + position direction list
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Managing.Domain.Accounts;
|
||||
using Managing.Domain.Evm;
|
||||
|
||||
namespace Managing.Infrastructure.Evm.Models.Proxy
|
||||
{
|
||||
@@ -158,21 +159,10 @@ namespace Managing.Infrastructure.Evm.Models.Proxy
|
||||
public class GasFeeResponse : Web3ProxyResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// Estimated gas fee in USD
|
||||
/// Gas fee data object
|
||||
/// </summary>
|
||||
[JsonPropertyName("estimatedGasFeeUsd")]
|
||||
public double? EstimatedGasFeeUsd { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Current ETH price in USD
|
||||
/// </summary>
|
||||
[JsonPropertyName("ethPrice")]
|
||||
public double? EthPrice { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gas price in Gwei
|
||||
/// </summary>
|
||||
[JsonPropertyName("gasPriceGwei")]
|
||||
public double? GasPriceGwei { get; set; }
|
||||
[JsonPropertyName("data")]
|
||||
public GasFeeData? Data { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user