From 96227333ba20e4f98422e85ec218f0b928e6f275 Mon Sep 17 00:00:00 2001 From: s2quake Date: Wed, 5 Feb 2025 09:43:03 +0900 Subject: [PATCH] add bencoded of evidence --- tools/Libplanet.Explorer/GraphTypes/EvidenceType.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/Libplanet.Explorer/GraphTypes/EvidenceType.cs b/tools/Libplanet.Explorer/GraphTypes/EvidenceType.cs index 15482e7e052..a58bbdeef8d 100644 --- a/tools/Libplanet.Explorer/GraphTypes/EvidenceType.cs +++ b/tools/Libplanet.Explorer/GraphTypes/EvidenceType.cs @@ -34,6 +34,11 @@ public EvidenceType() description: "Indicates the timestamp the infraction occurred.", resolve: x => x.Source.Timestamp ); + Field>( + name: "Bencoded", + description: "The bencoded form of evidence.", + resolve: x => x.Source.Bencoded + ); } } }