Price reminder and init approval

* Start price reminder grain

* Add config and init grain at startup

* Save init wallet when already init
This commit is contained in:
Oda
2025-09-13 02:29:14 +07:00
committed by GitHub
parent da50b30344
commit 56b4f14eb3
69 changed files with 2373 additions and 701 deletions

View File

@@ -174,7 +174,7 @@ public static class GmxMappers
Low = Convert.ToDecimal(price.l),
Close = Convert.ToDecimal(price.c),
Exchange = TradingExchanges.Evm,
Ticker = ticker.ToString(),
Ticker = ticker,
Timeframe = timeframe
};
}

View File

@@ -122,7 +122,7 @@ internal static class GmxV2Mappers
Low = Convert.ToDecimal(marketPrices[3]),
Close = Convert.ToDecimal(marketPrices[4]),
Exchange = TradingExchanges.Evm,
Ticker = ticker.ToString(),
Ticker = ticker,
Timeframe = timeframe
};
}