mirror of
https://github.com/logos-messaging/logos-delivery-js.git
synced 2026-03-13 13:13:08 +00:00
9 lines
265 B
TypeScript
9 lines
265 B
TypeScript
|
|
import type { PeerId } from "@libp2p/interface/peer-id";
|
||
|
|
|
||
|
|
import type { ShardInfo } from "./enr.js";
|
||
|
|
import type { IBaseProtocol } from "./protocols.js";
|
||
|
|
|
||
|
|
export interface IMetadata extends IBaseProtocol {
|
||
|
|
query(peerId: PeerId): Promise<ShardInfo | undefined>;
|
||
|
|
}
|