Documentation
    Preparing search index...

    Interface Blockchain

    interface Blockchain {
        identifier: string;
        getAccountInfosFromPermissionResponse(
            permissionResponse: PermissionResponseV3,
        ): Promise<{ accountId: string; address: string; publicKey: string }[]>;
        getWalletLists(): Promise<
            {
                desktopList: DesktopApp[];
                extensionList: ExtensionApp[];
                iOSList: App[];
                webList: WebApp[];
            },
        >;
        handleResponse(input: ResponseInput): Promise<void>;
        validateRequest(input: BlockchainMessage): Promise<void>;
    }
    Index

    Properties

    identifier: string

    Methods