2024-01-29 16:02:47 +00:00
|
|
|
|
using CodexContractsPlugin.Marketplace;
|
|
|
|
|
using GethPlugin;
|
2024-01-26 22:29:57 +00:00
|
|
|
|
using NethereumWorkflow;
|
|
|
|
|
using Utils;
|
|
|
|
|
|
|
|
|
|
namespace TestNetRewarder
|
|
|
|
|
{
|
|
|
|
|
public interface ICheck
|
|
|
|
|
{
|
|
|
|
|
EthAddress[] Check(ChainState state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class FilledAnySlotCheck : ICheck
|
|
|
|
|
{
|
|
|
|
|
public EthAddress[] Check(ChainState state)
|
|
|
|
|
{
|
|
|
|
|
return state.SlotFilledEvents.Select(e => e.Host).ToArray();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class FinishedSlotCheck : ICheck
|
|
|
|
|
{
|
|
|
|
|
private readonly ByteSize minSize;
|
|
|
|
|
private readonly TimeSpan minDuration;
|
|
|
|
|
|
2024-01-26 23:17:56 +00:00
|
|
|
|
public FinishedSlotCheck(ByteSize minSize, TimeSpan minDuration)
|
2024-01-26 22:29:57 +00:00
|
|
|
|
{
|
|
|
|
|
this.minSize = minSize;
|
|
|
|
|
this.minDuration = minDuration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EthAddress[] Check(ChainState state)
|
|
|
|
|
{
|
|
|
|
|
return state.FinishedRequests
|
|
|
|
|
.Where(r =>
|
|
|
|
|
MeetsSizeRequirement(r) &&
|
|
|
|
|
MeetsDurationRequirement(r))
|
|
|
|
|
.SelectMany(r => r.Hosts)
|
|
|
|
|
.ToArray();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool MeetsSizeRequirement(StorageRequest r)
|
|
|
|
|
{
|
|
|
|
|
var slotSize = r.Request.Ask.SlotSize.ToDecimal();
|
|
|
|
|
decimal min = minSize.SizeInBytes;
|
|
|
|
|
return slotSize >= min;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool MeetsDurationRequirement(StorageRequest r)
|
|
|
|
|
{
|
|
|
|
|
var duration = TimeSpan.FromSeconds((double)r.Request.Ask.Duration);
|
|
|
|
|
return duration >= minDuration;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class PostedContractCheck : ICheck
|
|
|
|
|
{
|
2024-01-29 16:02:47 +00:00
|
|
|
|
private readonly ulong minNumberOfHosts;
|
|
|
|
|
private readonly ByteSize minSlotSize;
|
|
|
|
|
private readonly TimeSpan minDuration;
|
|
|
|
|
|
|
|
|
|
public PostedContractCheck(ulong minNumberOfHosts, ByteSize minSlotSize, TimeSpan minDuration)
|
|
|
|
|
{
|
|
|
|
|
this.minNumberOfHosts = minNumberOfHosts;
|
|
|
|
|
this.minSlotSize = minSlotSize;
|
|
|
|
|
this.minDuration = minDuration;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-26 22:29:57 +00:00
|
|
|
|
public EthAddress[] Check(ChainState state)
|
|
|
|
|
{
|
2024-01-29 16:02:47 +00:00
|
|
|
|
return state.NewRequests
|
|
|
|
|
.Where(r =>
|
|
|
|
|
MeetsNumSlotsRequirement(r) &&
|
|
|
|
|
MeetsSizeRequirement(r) &&
|
|
|
|
|
MeetsDurationRequirement(r))
|
|
|
|
|
.Select(r => r.ClientAddress)
|
|
|
|
|
.ToArray();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool MeetsNumSlotsRequirement(Request r)
|
|
|
|
|
{
|
|
|
|
|
return r.Ask.Slots >= minNumberOfHosts;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool MeetsSizeRequirement(Request r)
|
|
|
|
|
{
|
|
|
|
|
var slotSize = r.Ask.SlotSize.ToDecimal();
|
|
|
|
|
decimal min = minSlotSize.SizeInBytes;
|
|
|
|
|
return slotSize >= min;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool MeetsDurationRequirement(Request r)
|
|
|
|
|
{
|
|
|
|
|
var duration = TimeSpan.FromSeconds((double)r.Ask.Duration);
|
|
|
|
|
return duration >= minDuration;
|
2024-01-26 22:29:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class StartedContractCheck : ICheck
|
|
|
|
|
{
|
|
|
|
|
private readonly ulong minNumberOfHosts;
|
|
|
|
|
private readonly ByteSize minSlotSize;
|
|
|
|
|
private readonly TimeSpan minDuration;
|
|
|
|
|
|
2024-01-26 23:17:56 +00:00
|
|
|
|
public StartedContractCheck(ulong minNumberOfHosts, ByteSize minSlotSize, TimeSpan minDuration)
|
2024-01-26 22:29:57 +00:00
|
|
|
|
{
|
|
|
|
|
this.minNumberOfHosts = minNumberOfHosts;
|
|
|
|
|
this.minSlotSize = minSlotSize;
|
|
|
|
|
this.minDuration = minDuration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EthAddress[] Check(ChainState state)
|
|
|
|
|
{
|
|
|
|
|
return state.StartedRequests
|
|
|
|
|
.Where(r =>
|
|
|
|
|
MeetsNumSlotsRequirement(r) &&
|
|
|
|
|
MeetsSizeRequirement(r) &&
|
|
|
|
|
MeetsDurationRequirement(r))
|
|
|
|
|
.Select(r => r.Request.ClientAddress)
|
|
|
|
|
.ToArray();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool MeetsNumSlotsRequirement(StorageRequest r)
|
|
|
|
|
{
|
|
|
|
|
return r.Request.Ask.Slots >= minNumberOfHosts;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool MeetsSizeRequirement(StorageRequest r)
|
|
|
|
|
{
|
|
|
|
|
var slotSize = r.Request.Ask.SlotSize.ToDecimal();
|
|
|
|
|
decimal min = minSlotSize.SizeInBytes;
|
|
|
|
|
return slotSize >= min;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool MeetsDurationRequirement(StorageRequest r)
|
|
|
|
|
{
|
|
|
|
|
var duration = TimeSpan.FromSeconds((double)r.Request.Ask.Duration);
|
|
|
|
|
return duration >= minDuration;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|