using CodexContractsPlugin.Marketplace; using GethPlugin; using Logging; using Utils; namespace CodexContractsPlugin { public interface ICodexContracts { CodexContractsDeployment Deployment { get; } bool IsDeployed(); string MintTestTokens(IHasEthAddress owner, TestToken testTokens); string MintTestTokens(EthAddress ethAddress, TestToken testTokens); TestToken GetTestTokenBalance(IHasEthAddress owner); TestToken GetTestTokenBalance(EthAddress ethAddress); Request[] GetStorageRequests(TimeRange range); } public class CodexContractsAccess : ICodexContracts { private readonly ILog log; private readonly IGethNode gethNode; public CodexContractsAccess(ILog log, IGethNode gethNode, CodexContractsDeployment deployment) { this.log = log; this.gethNode = gethNode; Deployment = deployment; } public CodexContractsDeployment Deployment { get; } public bool IsDeployed() { return !string.IsNullOrEmpty(StartInteraction().GetTokenName(Deployment.TokenAddress)); } public string MintTestTokens(IHasEthAddress owner, TestToken testTokens) { return MintTestTokens(owner.EthAddress, testTokens); } public string MintTestTokens(EthAddress ethAddress, TestToken testTokens) { return StartInteraction().MintTestTokens(ethAddress, testTokens.Amount, Deployment.TokenAddress); } public TestToken GetTestTokenBalance(IHasEthAddress owner) { return GetTestTokenBalance(owner.EthAddress); } public TestToken GetTestTokenBalance(EthAddress ethAddress) { var balance = StartInteraction().GetBalance(Deployment.TokenAddress, ethAddress.Address); return balance.TestTokens(); } public Request[] GetStorageRequests(TimeRange timeRange) { var events = gethNode.GetEvents(Deployment.MarketplaceAddress, timeRange); var i = StartInteraction(); return events .Select(e => i.GetRequest(Deployment.MarketplaceAddress, e.Event.RequestId)) .Select(r => r.ReturnValue1) .ToArray(); } private ContractInteractions StartInteraction() { return new ContractInteractions(log, gethNode); } } }