This repository has no description
1import type { ContrailConfig } from "@atmo-dev/contrail";
2
3export const config: ContrailConfig = {
4 namespace: "org.latha.nanopub",
5 collections: {
6 nanopub: {
7 collection: "org.latha.nanopub",
8 queryable: {
9 nanopubType: {},
10 signerPubkey: {},
11 },
12 searchable: ["assertion.label"],
13 methods: ["listRecords", "getRecord"],
14 },
15 },
16 profiles: ["app.bsky.actor.profile"],
17 notify: true,
18};