mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-06 23:43:07 +00:00
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[]
|
|
{
|
|
"🔴",
|
|
"🟠",
|
|
"🟡",
|
|
"🟢",
|
|
"🔵",
|
|
"🟣",
|
|
"🟤",
|
|
"⚫",
|
|
"⚪",
|
|
"🟥",
|
|
"🟧",
|
|
"🟨",
|
|
"🟩",
|
|
"🟦",
|
|
"🟪",
|
|
"🟫",
|
|
"⬛",
|
|
"⬜",
|
|
"🔶",
|
|
"🔷"
|
|
};
|
|
}
|
|
}
|