reference
Predefined reference configurations.
The reference component is responsible for looking up and updating various pointers.
Specifically, the data root, a user's DID root, DNSLinks, DNS TXT records.
It also holds repositories (see Repository
class), which contain UCANs and CIDs.
NOTE: If you're using a non-default component, you'll want to pass that in here as a parameter as well. Dependencies: crypto, manners, storage.
const reference: {
fission(settings: Configuration & {
};staging?: boolean;
crypto?: Crypto.Implementation;
manners?: Manners.Implementation;
storage?: Storage.Implementation;
}): Promise<Reference.Implementation>;