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>;
    }

    Implemented by

    Index

    Properties

    identifier: string

    Methods

    • Parameters

      Returns Promise<{ accountId: string; address: string; publicKey: string }[]>

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

    • Parameters

      Returns Promise<void>

    • Parameters

      Returns Promise<void>