GMX v2 - Trading (#7)
* 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
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System.Numerics;
|
||||
using Nethereum.ABI.FunctionEncoding.Attributes;
|
||||
|
||||
namespace Managing.ABI.GmxV2.SyntheticsReader.ContractDefinition
|
||||
{
|
||||
public partial class IsPositionLiquidatableInfo : IsPositionLiquidatableInfoBase { }
|
||||
|
||||
public class IsPositionLiquidatableInfoBase
|
||||
{
|
||||
[Parameter("int256", "remainingCollateralUsd", 1)]
|
||||
public virtual BigInteger RemainingCollateralUsd { get; set; }
|
||||
[Parameter("int256", "minCollateralUsd", 2)]
|
||||
public virtual BigInteger MinCollateralUsd { get; set; }
|
||||
[Parameter("int256", "minCollateralUsdForLeverage", 3)]
|
||||
public virtual BigInteger MinCollateralUsdForLeverage { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user