Knocks/BackEnd/Knoks.Core/Entities/Settings/EthereumConnectionSettings.cs

16 lines
467 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Knoks.Core.Entities.Settings
{
public class EthereumConnectionSettings
{
public string KnokTokenContractAddress { get; set; }
public string Web3TargetAddress { get; set; }
public string KnokTokenContractAbi { get; set; }
public string DemoContractOwnerAddress { get; set; }
public string DemoContractOwnerPrivateKey { get; set; }
}
}