Type Alias BlockchainAuthParamsWithPublicKeyAndAddress

BlockchainAuthParamsWithPublicKeyAndAddress: {
    accountAddress: string;
    walletBlockchain: Exclude<Types.BlockchainType,
        | EvmBlockchain
        | "SOLANA"
        | "OFF_CHAIN"
        | "UNSPECIFIED">;
    walletPublicKey: string;
}

NOTE: Extract<AuthParams, { authenticationKey: string }>