* Move PrivateKeys.cs * Update gitignore * Update gitignore * updt * Extract GmxServiceTests.cs * Refact * update todo * Update code * Fix hashdata * Replace static token hashed datas * Set allowance * Add get orders * Add get orders tests * Add ignore * add close orders * revert * Add get gas limit * Start increasePosition. Todo: Finish GetExecutionFee and estimateGas * little refact * Update gitignore * Fix namespaces and clean repo * Add tests samples * Add execution fee * Add increase position * Handle backtest on the frontend * Add tests * Update increase * Test increase * fix increase * Fix size * Start get position * Update get positions * Fix get position * Update rpc and trade mappers * Finish close position * Fix leverage
17 lines
529 B
C#
17 lines
529 B
C#
using System.Net.Http.Json;
|
|
using Managing.Common;
|
|
using Managing.Infrastructure.Evm.Models.Gmx.v2;
|
|
|
|
namespace Managing.Infrastructure.Evm.Services.Gmx;
|
|
|
|
public class OracleKeeperService()
|
|
{
|
|
private readonly HttpClient _httpClient = new HttpClient();
|
|
private readonly string _baseUrl = Constants.GMX.Config.OracleKeeperUrl;
|
|
|
|
public async Task<List<GmxTicker>> GetTickers()
|
|
{
|
|
var response = await _httpClient.GetFromJsonAsync<List<GmxTicker>>(_baseUrl + "/prices/tickers");
|
|
return response;
|
|
}
|
|
} |