137 lines
4.8 KiB
C#
137 lines
4.8 KiB
C#
using CodexContractsPlugin.Marketplace;
|
|
using GethPlugin;
|
|
using Logging;
|
|
using Nethereum.ABI;
|
|
using Nethereum.Hex.HexTypes;
|
|
using Nethereum.Util;
|
|
using NethereumWorkflow;
|
|
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);
|
|
EthAddress GetSlotHost(Request storageRequest, decimal slotIndex);
|
|
// add 'RequestFulfilled' to see request is started.
|
|
SlotFilledEventDTO[] GetSlotFilledEvents(TimeRange timeRange);
|
|
SlotFreedEventDTO[] GetSlotFreedEvents(TimeRange timeRange);
|
|
}
|
|
|
|
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<StorageRequestedEventDTO>(Deployment.MarketplaceAddress, timeRange);
|
|
var i = StartInteraction();
|
|
return events
|
|
.Select(e =>
|
|
{
|
|
var requestEvent = i.GetRequest(Deployment.MarketplaceAddress, e.Event.RequestId);
|
|
var result = requestEvent.ReturnValue1;
|
|
result.BlockNumber = e.Log.BlockNumber.ToUlong();
|
|
result.RequestId = e.Event.RequestId;
|
|
return result;
|
|
})
|
|
.ToArray();
|
|
}
|
|
|
|
public SlotFilledEventDTO[] GetSlotFilledEvents(TimeRange timeRange)
|
|
{
|
|
var events = gethNode.GetEvents<SlotFilledEventDTO>(Deployment.MarketplaceAddress, timeRange);
|
|
return events.Select(e =>
|
|
{
|
|
var result = e.Event;
|
|
result.BlockNumber = e.Log.BlockNumber.ToUlong();
|
|
result.Host = GetEthAddressFromTransaction(e.Log.TransactionHash);
|
|
return result;
|
|
}).ToArray();
|
|
}
|
|
|
|
public SlotFreedEventDTO[] GetSlotFreedEvents(TimeRange timeRange)
|
|
{
|
|
var events = gethNode.GetEvents<SlotFreedEventDTO>(Deployment.MarketplaceAddress, timeRange);
|
|
return events.Select(e =>
|
|
{
|
|
var result = e.Event;
|
|
result.BlockNumber = e.Log.BlockNumber.ToUlong();
|
|
return result;
|
|
}).ToArray();
|
|
}
|
|
|
|
public EthAddress GetSlotHost(Request storageRequest, decimal slotIndex)
|
|
{
|
|
var encoder = new ABIEncode();
|
|
var encoded = encoder.GetABIEncoded(
|
|
new ABIValue("bytes32", storageRequest.RequestId),
|
|
new ABIValue("uint256", slotIndex.ToBig())
|
|
);
|
|
|
|
var hashed = Sha3Keccack.Current.CalculateHash(encoded);
|
|
|
|
var func = new GetHostFunction
|
|
{
|
|
SlotId = hashed
|
|
};
|
|
return new EthAddress(gethNode.Call<GetHostFunction, string>(Deployment.MarketplaceAddress, func));
|
|
}
|
|
|
|
private EthAddress GetEthAddressFromTransaction(string transactionHash)
|
|
{
|
|
var transaction = gethNode.GetTransaction(transactionHash);
|
|
return new EthAddress(transaction.From);
|
|
}
|
|
|
|
private ContractInteractions StartInteraction()
|
|
{
|
|
return new ContractInteractions(log, gethNode);
|
|
}
|
|
}
|
|
}
|