36 lines
680 B
C#
36 lines
680 B
C#
using CodexContractsPlugin;
|
|
using CodexContractsPlugin.Marketplace;
|
|
using NethereumWorkflow.BlockUtils;
|
|
using Newtonsoft.Json;
|
|
using Utils;
|
|
|
|
namespace TestNetRewarder
|
|
{
|
|
public class Keepers
|
|
{
|
|
private readonly string[] colorIcons = new[]
|
|
{
|
|
"🔴",
|
|
"🟠",
|
|
"🟡",
|
|
"🟢",
|
|
"🔵",
|
|
"🟣",
|
|
"🟤",
|
|
"⚫",
|
|
"⚪",
|
|
"🟥",
|
|
"🟧",
|
|
"🟨",
|
|
"🟩",
|
|
"🟦",
|
|
"🟪",
|
|
"🟫",
|
|
"⬛",
|
|
"⬜",
|
|
"🔶",
|
|
"🔷"
|
|
};
|
|
}
|
|
}
|