cs-codex-dist-tests/ProjectPlugins/CodexContractsPlugin/CodexContractsAccess.cs

54 lines
1.7 KiB
C#
Raw Normal View History

2023-09-19 11:39:24 +00:00
using GethPlugin;
using Logging;
namespace CodexContractsPlugin
2023-09-19 08:24:43 +00:00
{
public interface ICodexContracts
{
2023-09-20 08:13:29 +00:00
CodexContractsDeployment Deployment { get; }
2023-09-19 11:39:24 +00:00
2023-10-30 12:30:14 +00:00
void MintTestTokens(IHasEthAddress owner, TestToken testTokens);
void MintTestTokens(EthAddress ethAddress, TestToken testTokens);
TestToken GetTestTokenBalance(IHasEthAddress owner);
TestToken GetTestTokenBalance(EthAddress ethAddress);
2023-09-19 08:24:43 +00:00
}
public class CodexContractsAccess : ICodexContracts
{
2023-09-19 11:39:24 +00:00
private readonly ILog log;
2023-10-30 12:30:14 +00:00
private readonly IGethNode gethNode;
2023-09-19 11:39:24 +00:00
2023-10-30 12:30:14 +00:00
public CodexContractsAccess(ILog log, IGethNode gethNode, CodexContractsDeployment deployment)
2023-09-19 08:24:43 +00:00
{
2023-09-19 11:39:24 +00:00
this.log = log;
2023-10-30 12:30:14 +00:00
this.gethNode = gethNode;
Deployment = deployment;
2023-09-19 08:24:43 +00:00
}
2023-09-20 08:13:29 +00:00
public CodexContractsDeployment Deployment { get; }
2023-09-19 11:39:24 +00:00
2023-10-30 12:30:14 +00:00
public void MintTestTokens(IHasEthAddress owner, TestToken testTokens)
2023-09-19 14:22:07 +00:00
{
2023-10-30 12:30:14 +00:00
MintTestTokens(owner.EthAddress, testTokens);
2023-09-19 14:22:07 +00:00
}
2023-10-30 12:30:14 +00:00
public void MintTestTokens(EthAddress ethAddress, TestToken testTokens)
2023-09-19 11:39:24 +00:00
{
var interaction = new ContractInteractions(log, gethNode);
interaction.MintTestTokens(ethAddress, testTokens.Amount, Deployment.TokenAddress);
2023-09-19 11:39:24 +00:00
}
2023-10-30 12:30:14 +00:00
public TestToken GetTestTokenBalance(IHasEthAddress owner)
2023-09-19 14:22:07 +00:00
{
2023-10-30 12:30:14 +00:00
return GetTestTokenBalance(owner.EthAddress);
2023-09-19 14:22:07 +00:00
}
2023-10-30 12:30:14 +00:00
public TestToken GetTestTokenBalance(EthAddress ethAddress)
2023-09-19 11:39:24 +00:00
{
var interaction = new ContractInteractions(log, gethNode);
var balance = interaction.GetBalance(Deployment.TokenAddress, ethAddress.Address);
2023-09-19 11:39:24 +00:00
return balance.TestTokens();
}
2023-09-19 08:24:43 +00:00
}
}