using System.Numerics; using Nethereum.Hex.HexConvertors.Extensions; namespace Nethereum.Hex.HexConvertors { public class HexBigIntegerBigEndianConvertor : IHexConvertor { public string ConvertToHex(BigInteger newValue) { return newValue.ToHex(false); } public BigInteger ConvertFromHex(string hex) { return hex.HexToBigInteger(false); } } }