Documentation
    Preparing search index...
    interface Blockchain {
        identifier: string;
        getAccountInfosFromPermissionResponse(
            permissionResponse: PermissionResponseV3,
        ): Promise<
            {
                accountId: string;
                address: string;
                network?: Network;
                publicKey: string;
                scopes: PermissionScope[];
            }[],
        >;
        getWalletLists(): Promise<
            {
                desktopList: DesktopApp[];
                extensionList: ExtensionApp[];
                iOSList: App[];
                webList: WebApp[];
            },
        >;
        handleResponse(input: ResponseInput): Promise<void>;
        validateRequest(input: BlockchainMessage): Promise<void>;
    }

    Implemented by

    Index

    Properties

    identifier: string

    Methods

    • Parameters

      Returns Promise<
          {
              accountId: string;
              address: string;
              network?: Network;
              publicKey: string;
              scopes: PermissionScope[];
          }[],
      >

    • Returns Promise<
          {
              desktopList: DesktopApp[];
              extensionList: ExtensionApp[];
              iOSList: App[];
              webList: WebApp[];
          },
      >

    • Parameters

      Returns Promise<void>

    • Parameters

      Returns Promise<void>