From 3297693ab2707f1454dc0882db741896d54a332b Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Tue, 19 Aug 2025 14:54:25 -0700 Subject: [PATCH] feat: add a method to return a FID by an authorized verification address Signed-off-by: Ryan Leckey --- docs/SPECIFICATION.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/SPECIFICATION.md b/docs/SPECIFICATION.md index 53a623c..417d028 100644 --- a/docs/SPECIFICATION.md +++ b/docs/SPECIFICATION.md @@ -847,6 +847,7 @@ service HubService { // Verifications rpc GetVerification(VerificationRequest) returns (Message); rpc GetVerificationsByFid(FidRequest) returns (MessagesResponse); + rpc GetFidByVerification(VerificationFidRequest) returns (VerificationFidResponse); // OnChain Events rpc GetOnChainSigner(SignerRequest) returns (OnChainEvent); @@ -1084,6 +1085,14 @@ message StorageLimit { StoreType store_type = 1; uint64 limit = 2; } + +message VerificationFidRequest { + bytes address = 1; +} + +message VerificationFidResponse { + uint64 fid = 1; +} ``` # 5. Fname Specifications