@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
26 lines (25 loc) • 703 B
TypeScript
export declare const enum ModuleTypes {
Feature = "FEATURE",
Adapter = "ADAPTER",
Library = "LIBRARY",
Interface = "INTERFACE",
ParserConfig = "CONFIG"
}
export declare const enum StorageTypes {
Swarm = "swarm",
TestRegsitry = "test-registry",
Ipfs = "ipfs"
}
export type WalletInfo = {
compatible: boolean;
protocolVersion: string;
engineVersion: string;
device: {
manufacturer: string;
model: string;
};
};
export declare const DEFAULT_BRANCH_NAME = "default";
export declare const CONTEXT_ID_WILDCARD = "*";
export declare const DAPPLETS_STORE_URL = "https://store.dapplets.org";
export declare const SECURE_AUTH_METHODS: string[];