Documentation Index
Fetch the complete documentation index at: https://docs.kynesys.xyz/llms.txt
Use this file to discover all available pages before exploring further.
This mechanism allows for the discovery of multiple providers without race conditions. The injected providers communicate with the DApp through window…
Documentation Index
Fetch the complete documentation index at: https://docs.kynesys.xyz/llms.txt
Use this file to discover all available pages before exploring further.
interface DemosRequestProviderEvent extends Event{
type:"demosRequestProvider",
}
interface DemosAnnounceProviderEvent extends CustomEvent{
type:"demosAnnounceProvider",
detail: DemosProviderDetail;
}
interface DemosProviderDetail {
info: DemosProviderInfo;
provider: DemosProvider;
}
export default interface DemosProviderInfo {
uuid: string;
name: string;
icon: string;
url: string;
}